summaryrefslogtreecommitdiffstats
path: root/bin/subtle-contrib/ruby/positioner.rb
blob: 153b759cb0bebaf367beb03835e9c976df2ba5fe (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
#!/usr/bin/ruby
#
# @file Positioner
#
# @copyright (c) 2011-2012, Christoph Kappel <unexist@dorfelite.net>
# @version $Id$
#
# This program can be distributed under the terms of the GNU GPLv2.
# See the file COPYING for details.
#
# Select and tag/untag visible views of current client window
#
# Colors:
#
# Focus    - Currently selected view
# View     - Other views
# Occupied - Views client is visible
# Urgent   - Selected views
#
# Keys:
#
# Left, Up    - Move to left
# Right, Down - Move to right
# Escape      - Hide/exit
# Space       - Select view
# Return      - Tag/untag selected views and exit hide/exit
#
# http://subforge.org/projects/subtle-contrib/wiki/Positioner
#

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: positioner needs at least subtle `0.10.3216' (found: %s)" % [
    Subtlext::VERSION
   ]
  exit
end

# Positioner class
module Subtle # {{{
  module Contrib # {{{
    class Positioner # {{{
      include Singleton

      # 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

        # Create main window
        @win = Subtlext::Window.new(:x => 0, :y => 0, :width => 1, :height => 1) do |w|
          w.name        = 'Positioner'
          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 positioner
      ##

      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       = @views.index(@cur_sel)
            idx      -= 1 if 0 < idx
            @cur_sel  = @views[idx] # }}}
          when :right, :down # {{{
            idx       = @views.index(@cur_sel)
            idx      += 1 if idx < (@views.size - 1)
            @cur_sel  = @views[idx] # }}}
          when :space # {{{
            if @selected.include?(@cur_sel)
              @selected.delete(@cur_sel)
              @unselected << @cur_sel
            else
              @selected << @cur_sel
            end # }}}
          when :return # {{{
            tags = @cur_client.tags

            # Add view tags
            @selected.each do |sel|
              unless @cur_views.include?(sel)
                # Find or create tag
                tag = Subtlext::Tag.first(sel.name) || Subtlext::Tag.new(sel.name)
                tag.save

                # Add tag to view
                sel.tag(tag) unless sel.tags.include?(sel.name)

                tags << tag
              end
            end

            # Remove unselected views from tags
            tags -= @unselected.map(&:name).map { |n| Subtlext::Tag.first(n) }

            # Finally apply tags
            @cur_client.tags = tags

            ret = false # }}}
          when :escape # {{{
            ret = false # }}}
        end

        redraw(@win) if ret

        ret
      end # }}}

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

      def update
        @views      = Subtlext::View.all
        @selected   = []
        @unselected = []
        @cur_client = Subtlext::Client.current
        @cur_views  = @cur_client.views
        @cur_sel    = Subtlext::View.current

        names = @views.map(&:name)

        # Updated selected list
        @cur_client.tags.each do |t|
          if names.include?(t.name)
            @selected << @views[names.index(t.name)]
          end
        end

        arrange
      end # }}}

      ## arrange {{{
      # Arrange window and subwindows
      ##

      def arrange
        geo     = @cur_client.geometry
        width   = geo.width #< Max width
        height  = @font_height
        wx      = 0
        wy      = 0
        len     = 0
        wwidth  = 0

        # Arrange client windows
        @views.each_with_index do |v, i|
          len = @win.font_width(v.name) + 6

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

          wx += len
        end

        # Update 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)
        @win.clear

        wx  = 0
        wy  = 0
        len = 0

        @views.each_with_index do |v, i|
          len = @win.font_width(v.name) + 6

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

          if @selected.include?(@views[i])
            fg = @colors[:urgent_fg]
          end

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

          wx += len
        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::Merger.font =
  # 'xft:DejaVu Sans Mono:pixelsize=80:antialias=true'

  Subtle::Contrib::Positioner.run
end

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