~rainct/screenruler/screenruler-gtk3

« back to all changes in this revision

Viewing changes to utils/addons_gtk.rb

  • Committer: yella
  • Date: 2008-06-21 20:35:54 UTC
  • Revision ID: yella@nutwork-20080621203554-l000prfufb26azrt
- Added files

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 ###############################################################################
 
2
 #  Copyright 2008 Ian McIntosh <ian@openanswers.org>
 
3
 #
 
4
 #  This program is free software; you can redistribute it and/or modify
 
5
 #  it under the terms of the GNU General Public License as published by
 
6
 #  the Free Software Foundation; either version 2 of the License, or
 
7
 #  (at your option) any later version.
 
8
 #
 
9
 #  This program is distributed in the hope that it will be useful,
 
10
 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 #  GNU Library General Public License for more details.
 
13
 #
 
14
 #  You should have received a copy of the GNU General Public License
 
15
 #  along with this program; if not, write to the Free Software
 
16
 #  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
17
 ###############################################################################
 
18
 
 
19
# extend/simplify/standardize some GTK objects
 
20
 
 
21
#################################
 
22
# GTK classes
 
23
#################################
 
24
 
 
25
class Gtk::Window
 
26
        def toggle_visibility
 
27
                if active?              # is this window the current top level window on the current desktop?
 
28
                        hide
 
29
                else
 
30
                        present          # show / move to current desktop / bring to top
 
31
                end
 
32
        end
 
33
end
 
34
 
 
35
class Gdk::Rectangle
 
36
        def grow(m)
 
37
                return Gdk::Rectangle.new(self.x - m, self.y - m, self.width + m*2, self.height + m*2)
 
38
        end
 
39
 
 
40
        def shrink(m)
 
41
                grow(-m)
 
42
        end
 
43
 
 
44
        def contains(x, y)
 
45
                return false if x < self.x
 
46
                return false if y < self.y
 
47
                return false if x > self.x + self.width
 
48
                return false if y > self.y + self.height
 
49
                return true
 
50
        end
 
51
 
 
52
        def center
 
53
                return [self.x + (self.width/2), self.y + (self.height/2)]
 
54
        end
 
55
end
 
56
 
 
57
class Gdk::Color
 
58
        def to_hex              # use Gdk::Color.parse to parse
 
59
                sprintf('#%x%x%x', red, green, blue)
 
60
        end
 
61
end
 
62
 
 
63
#################################
 
64
# other
 
65
#################################
 
66
 
 
67
class Cairo::Context
 
68
        def show_pango_layout_centered(pangolayout, x, y)
 
69
                w,h = pangolayout.pixel_size
 
70
                move_to(x - (w / 2), y - (h / 2))
 
71
                show_pango_layout(pangolayout)
 
72
        end
 
73
end
 
74
 
 
75
class Pango::Layout
 
76
        def set_font_from_string(str)
 
77
                set_font_description(Pango::FontDescription.new(str))
 
78
        end
 
79
end
 
80
 
 
81
class GConf::Client
 
82
        def set_root(root)
 
83
                @root = root
 
84
        end
 
85
 
 
86
        def full_key_name(key)
 
87
                return @root + '/' + key if @root
 
88
                return key
 
89
        end
 
90
 
 
91
        def [](key)
 
92
                get(full_key_name(key))
 
93
        end
 
94
 
 
95
        def []=(key, value)
 
96
                set(full_key_name(key), value)
 
97
        end
 
98
end