summaryrefslogtreecommitdiffstats
path: root/bin/subtle-contrib/ruby/selector.rb
blob: 13857df914021a5411850fb28eb4350597b5684b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
#!/usr/bin/ruby
#
# @file Selector
#
# @copyright (c) 2011-2012, Christoph Kappel <unexist@dorfelite.net>
# @version $Id$
#
# Client selector that works like the subscription selector in google reader.
#
# Colors:
#
# Focus      - Currently selected client
# Occupied   - Visible clients on current views
# Unoccupied - Currently no visible clients
#
# Keys:
#
# Left, Up          - Move to left
# Right, Down       - Move to right
# Tab               - Cycle through windows/matches
# Escape            - Leave input mode/exit selector
# Return            - Focus currently selected and hide/exit selector
# Any capital/digit - Select client prefixed with capital letter/digit
# Any text          - Select client with matching instance name
#
# http://subforge.org/projects/subtle-contrib/wiki/Selector
#

require 'singleton'

begin
  require 'subtle/subtlext'
rescue LoadError
  puts ">>> ERROR: Couldn't find subtlext"
  exit
end

# Check for subtlext version
major, minor, teeny = Subtlext::VERSION.split('.').map(&:to_i)
if major == 0 and minor == 10 and 3216 > teeny
  puts ">>> ERROR: selector needs at least subtle `0.10.3216' (found: %s)" % [
    Subtlext::VERSION
   ]
  exit
end

# Launcher class
module Subtle # {{{
  module Contrib # {{{
    class Selector # {{{
      include Singleton

      # Prefix letters
      LETTERS = ((49..57).to_a|(65..89).to_a).map(&:chr)

      # Default values
      @@font = '-*-*-medium-*-*-*-14-*-*-*-*-*-*-*'

      # Singleton methods

      ## fonts {{{
      # Set font strings
      # @param [String]  fonts  Fonts array
      ##

      def self.font=(font)
        @@font = font
      end # }}}

      ## run {{{
      # Run expose
      ##

      def self.run
        self.instance.run
      end # }}}

      # Instance methods

      ## initialize {{{
      # Create expose instance
      ##

      def initialize
        # Values
        @colors   = Subtlext::Subtle.colors
        @expanded = false
        @buffer   = ''
        @x        = 0
        @y        = 0
        @width    = 0
        @height   = 0

        # Create main window
        @win = Subtlext::Window.new(:x => 0, :y => 0, :width => 1, :height => 1) do |w|
          w.name        = 'Selector'
          w.font        = @@font
          w.foreground  = @colors[:title_fg]
          w.background  = @colors[:title_bg]
          w.border_size = 0
        end

        # Font metrics
        @font_height = @win.font_height + 6
        @font_y      = @win.font_y

        # Handler
        @win.on :key_down, method(:key_down)
        @win.on :draw, method(:redraw)
      end # }}}

      ## run {{{
      # Show and run launcher
      ##

      def run
        update
        show
        hide
      end # }}}

      private

      ## key_down {{{
      # Key down handler
      # @param [String]  key  Pressed key
      ##

      def key_down(key, mods)
        ret = true

        case key
          when :left, :up # {{{
            idx       = @clients.index(@current) || 0
            idx      -= 1 if 0 < idx
            @current  = @clients[idx] # }}}
          when :right, :down # {{{
            idx       = @clients.index(@current) || 0
            idx      += 1 if idx < (@clients.size - 1)
            @current  = @clients[idx] # }}}
          when :return # {{{
            @current.focus

            ret = false # }}}
          when :escape # {{{
            if @expanded
              @buffer   = ''
              @expanded = false
            else
              ret = false
            end

            arrange # }}}
          when :backspace # {{{
            if @expanded
              @expanded = (0 < @buffer.chop!.size)

              arrange
            end # }}}
          when :tab # {{{
            if @buffer.empty?
              clients = @clients
            else
              # Select matching clients
              clients = @clients.select do |c|
                c.instance.downcase.start_with?(@buffer)
              end
            end

            unless (idx = clients.index(@current)).nil?
              # Cycle between clients
              if idx < (clients.size - 1)
                idx += 1
              else
                idx = 0
              end

              @current = clients[idx]
            end # }}}
          else # {{{
            str = key.to_s

            if !(idx = LETTERS.index(str)).nil? and idx < @clients.size
              @clients[idx].focus

              ret = false
            elsif !str.empty?
              @buffer << str.downcase

              @clients.each do |c|
                if c.instance.downcase.start_with?(@buffer)
                  @current = c

                  break
                end
              end

              arrange
            end # }}}
        end

        redraw(@win) if ret

        ret
      end # }}}

      ## update # {{{
      # Update clients and windows
      ##

      def update
        @buffer  = ''
        @clients = Subtlext::Client.all
        @visible = Subtlext::Client.visible
        @current = Subtlext::Client.current rescue nil

        arrange
      end # }}}

      ## arrange {{{
      # Arrange window
      ##

      def arrange
        geo     = Subtlext::Screen.current.geometry
        @width  = geo.width * 50 / 100 #< Max width
        @height = @font_height
        wx      = 0
        wy      = 0
        len     = 0
        wwidth  = 0

        # Toggle expand
        if @buffer.empty?
          @height   = @font_height
          @expanded = false
        else
          @height   += @font_height
          @expanded  = true
        end

        # Calculate window width
        @clients.each_with_index do |c, i|
          str  = '%s:%s' % [ LETTERS[i], c.instance ]
          len  = @win.font_width(str) + 6

          # Wrap lines
          if wx + len > @width
            wwidth  = wx if wx > wwidth
            wx      = 0
            wy     += @font_height
          end

          wx += len
        end

        # Update window geometry
        @width   = 0 == wwidth ? wx : wwidth
        @height += wy
        @x       = geo.x + ((geo.width - @width) / 2)
        @y       = geo.y + ((geo.height - @height) / 2)

        @win.geometry = [ @x , @y, @width, @height ]
      end # }}}

      ## redraw {{{
      # Redraw window content
      # @param [Window]  w  Window instance
      ##

      def redraw(w)
        wx     = 0
        wy     = 0
        len    = 0
        wwidth = 0

        @win.clear

        # Render window
        @clients.each_with_index do |c, i|
          str  = '%s:%s' % [ LETTERS[i], c.instance ]
          len  = @win.font_width(str) + 6

          # Wrap lines
          if wx + len > @width
            wwidth  = wx if wx > wwidth
            wx      = 0
            wy     += @font_height
          end

          # Select color
          if @clients[i] == @current
            fg = @colors[:focus_fg]
            bg = @colors[:focus_bg]
          elsif @visible.include?(@clients[i])
            fg = @colors[:occupied_fg]
            bg = @colors[:occupied_bg]
          else
            fg = @colors[:views_fg]
            bg = @colors[:views_bg]
          end

          @win.draw_rect(wx, wy, len, @font_height, bg, true)
          @win.draw_text(wx + 3, wy + @font_y + 3, str, fg)

          wx += len
        end

        # Draw input buffer
        unless @buffer.empty?
          @win.draw_text(6, @height - @font_height + @font_y + 3,
            'Input: %s' % [ @buffer ])
        end
      end # }}}

      ## show {{{
      # Show launcher
      ##

      def show
        @win.show
      end # }}}

      ## hide # {{{
      # Hide launcher
      ##

      def hide
        @win.hide
      end # }}}
    end # }}}
  end # }}}
end # }}}

# Implicitly run
if __FILE__ == $0
  # Set font
  #Subtle::Contrib::Selector.font =
  # 'xft:DejaVu Sans Mono:pixelsize=80:antialias=true'

  Subtle::Contrib::Selector.run
end

# vim:ts=2:bs=2:sw=2:et:fdm=marker