clean-ups
[drlaunch] / src / widget.py
1 #!/usr/bin/env python
2 # coding=UTF-8
3
4 # Copyright (C) 2010 Stefanos Harhalakis
5 #
6 # This file is part of wifieye.
7 #
8 # wifieye is free software: you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation, either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # wifieye is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with wifieye.  If not, see <http://www.gnu.org/licenses/>.
20 #
21 # $Id: 0.py 2265 2010-02-21 19:16:26Z v13 $
22
23 __version__ = "$Id: 0.py 2265 2010-02-21 19:16:26Z v13 $"
24
25 # HACK
26 # Add the current module's directory to sys.path to bypass
27 # problems when running as widget.
28 # Restore the path at the end of the imports
29 import sys
30 import os
31
32 orig_path=sys.path[:]
33 tmp_path=os.path.dirname( os.path.realpath( __file__ ) )
34 sys.path.append(tmp_path)
35
36 # End of hack
37
38 import gtk
39 import gobject
40 import hildon
41 from hildondesktop import *
42 from gtk import gdk
43 from math import pi
44 import cairo
45 import time
46
47 from portrait import FremantleRotation
48 import launcher
49 from xdg.IconTheme import getIconPath
50 from win_config import WinConfig
51
52 import config
53 import apps
54 from icon import Icon
55 from icongrid import IconGrid
56
57 # Restore path
58 sys.path=orig_path
59
60 # IconGrid must be before HomePluginItem for its connect()
61 # and do_button_*() to override those of HomePluginItem
62 class DrlaunchPlugin(IconGrid, HomePluginItem, FremantleRotation):
63     def __init__(self):
64         IconGrid.__init__(self)
65         HomePluginItem.__init__(self)
66         FremantleRotation.__init__(self, 'DrlaunchPlugin')
67
68         launcher.init()
69         config.load()
70         self.setSize(config.getSize())
71         self.reloadIcons()
72
73         self.set_settings(True)
74         self.connect('show-settings', self.slot_show_settings)
75         self.connect('long-press', self.signalLongpress)
76
77     def do_realize(self):
78         screen=self.get_screen()
79         self.set_colormap(screen.get_rgba_colormap())
80         self.set_app_paintable(True)
81
82         HomePluginItem.do_realize(self)
83
84     def on_orientation_changed(self, orientation):
85         o=orientation[0]
86         self.setMode(o)
87 #       self.queue_draw()
88
89     def do_expose_event(self, event):
90         IconGrid.do_expose_event(self, event)
91         HomePluginItem.do_expose_event(self, event)
92
93     def slot_show_settings(self, dt):
94         s=WinConfig()
95         s.show_all()
96         s.connect('destroy', self.slotConfigDestroy)
97
98     def slotConfigDestroy(self, sender):
99         dt=sender.getData()
100         config.setSize(dt['size'])
101         config.setApps(dt['apps'])
102         config.save()
103         
104         # Resize widget
105         self.setSize(dt['size'])
106         self.reloadIcons()
107
108 #       self.queue_draw()
109
110     def signalLongpress(self, sender, icon):
111         if icon.name!=None and icon.name!='':
112             launcher.launch(icon.name)
113
114     def resize(self):
115         w=(self.size * config.iconsize) + \
116             (self.size * config.iconspace)
117         self.set_size_request(w, w)
118
119     def setSize(self, size):
120         IconGrid.setSize(self, size)
121         self.resize()
122
123 hd_plugin_type = DrlaunchPlugin
124
125 if __name__=="__main__":
126     gobject.type_register(hd_plugin_type)
127     obj=gobject.new(hd_plugin_type, plugin_id="plugin_id")
128     obj.show_all()
129     gtk.main()
130
131
132
133 # vim: set ts=8 sts=4 sw=4 noet formatoptions=r ai nocindent:
134