summaryrefslogtreecommitdiffstats
path: root/bin/subtle-contrib/ruby/merger.rb
blob: 30839ac379dc73d590363f6dfcdd4a7b4816a23a (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
#!/usr/bin/ruby
#
# @file Merger
#
# @copyright (c) 2011, 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 3006 > teeny)
  puts ">>> ERROR: merger needs at least subtle `0.10.3006' (found: %s)" % [
    Subtlext::VERSION
   ]
  exit
end

# Merger class
module Subtle # {{{
  module Contrib # {{{
    class Merger # {{{
      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
        @merged = {}
        @backup = {}

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

        case key
          when :left, :up # {{{
            idx        = @views.index(@selected)
            idx       -= 1 if(1 < idx)
            @selected  = @views[idx] # }}}
          when :right, :down # {{{
            idx        = @views.index(@selected)
            idx       += 1 if(idx < (@views.size - 1))
            @selected  = @views[idx] # }}}
          when :space # {{{
            if(@merged[@current.name].include?(@selected))
              @merged[@current.name].delete(@selected)
            else
              @merged[@current.name] << @selected
            end # }}}

            p @merged
          when :return # {{{
            # Restore tags or update
            if(@merged[@current.name].empty?)
              @merged.delete(@current.name)
              @current.tags = @backup[@current.name]
            else
              @current.tags = @merged[@current.name].inject(
                @backup[@current.name]) { |r, v| r | v.tags }
            end

            ret = false # }}}
          when :escape # {{{
            @merged.delete(@current.name)
            ret = false # }}}
        end

        redraw(@win) if(ret)

        ret
      end # }}}

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

      def update
        @current  = Subtlext::View.current
        @views    = Subtlext::View.all.select { |v| v != @current }
        @selected = @views.first

        @views.unshift(@current)

        # Backup tags of current view
        unless(@backup.keys.include?(@current.name))
          @backup[@current.name] = @current.tags
        end

        # Create empty array
        unless(@merged.keys.include?(@current.name))
          @merged[@current.name] = []
        end

        arrange
      end # }}}

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

      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

        # 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(v == @selected)
            fg = @colors[:focus_fg]
            bg = @colors[:focus_bg]
          elsif(v == @current)
            fg = @colors[:occupied_fg]
            bg = @colors[:occupied_bg]
          else
            fg = @colors[:unoccupied_fg]
            bg = @colors[:unoccupied_bg]
          end

          if(@merged[@current.name].include?(v))
            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::Merger.run
end

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