(no commit message)
[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         print "orch:", orientation
86         o=orientation[0]
87         self.setMode(o)
88 #       self.queue_draw()
89
90     def do_expose_event(self, event):
91         IconGrid.do_expose_event(self, event)
92         HomePluginItem.do_expose_event(self, event)
93
94     def do_buttonn_press_event(self, event):
95         print "press0"
96
97     def slot_show_settings(self, dt):
98         print "settings", dt
99         s=WinConfig()
100         s.show_all()
101         s.connect('destroy', self.slotConfigDestroy)
102
103     def slotConfigDestroy(self, sender):
104         print "destroy", sender
105         dt=sender.getData()
106         print "dt:", dt
107         config.setSize(dt['size'])
108         config.setApps(dt['apps'])
109         config.save()
110         
111         # Resize widget
112         self.setSize(dt['size'])
113         self.reloadIcons()
114
115 #       self.queue_draw()
116
117     def signalLongpress(self, sender, icon):
118         print "launch:", icon.name
119         launcher.launch(icon.name)
120
121     def resize(self):
122         w=(self.size * config.iconsize) + \
123             (self.size * config.iconspace)
124         self.set_size_request(w, w)
125
126     def setSize(self, size):
127         IconGrid.setSize(self, size)
128         self.resize()
129
130 hd_plugin_type = DrlaunchPlugin
131
132 if __name__=="__main__":
133     gobject.type_register(hd_plugin_type)
134     obj=gobject.new(hd_plugin_type, plugin_id="plugin_id")
135     obj.show_all()
136     gtk.main()
137
138
139
140 # vim: set ts=8 sts=4 sw=4 noet formatoptions=r ai nocindent:
141