Disable animation when doing config.
[drlaunch] / src / icongrid.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 import gtk
26 import gobject
27 import hildon
28 from hildondesktop import *
29 from gtk import gdk
30 from math import pi
31 import cairo
32 import time
33
34 from portrait import FremantleRotation
35 #from xdg.IconTheme import getIconPath
36
37 #import config
38 import apps
39 import icon
40 from icon import Icon
41 from icons import Icons
42
43 #def getIcon(name, iconsize):
44 #    ico=getIconPath(name, iconsize)
45 #    ret=gtk.gdk.pixbuf_new_from_file_at_size(ico, iconsize, iconsize)
46 #
47 #    return(ret)
48
49 #class IconGrid(gtk.Widget, FremantleRotation):
50 class IconGrid(object): #(gobject.GObject):
51     def __init__(self, isconfig=False):
52 #       self.__gobject_init__()
53
54         self.init_done=False
55
56         self.size=(0,0)
57
58         self.isconfig=isconfig
59
60         self.icons=None
61         self.lasticon=None  # The last icon that got selected
62
63         self.draw_pending=False
64
65         self.mode=None
66
67         # If this is False then animations are forcefully disabled
68         self.do_animations=True
69
70     def do_realize(self, config):
71         self.config=config
72
73         self.icons=Icons(self.isconfig, self.config)
74         self.setMode('l')
75         self.setSize((8,4))
76         self.reloadIcons()
77
78     def connect(self, what, *args):
79         if what in icon.signals:
80             self.icons.connect(what, *args)
81         else:
82             super(IconGrid, self).connect(what, *args)
83
84     def setSize(self, size):
85         self.size=size
86         self.icons.setSize(size)
87
88     def getSize(self):
89         ret=self.icons.getSize()
90         return(ret)
91
92     def setMode(self, mode):
93         if self.mode==mode:
94             print "same mode"
95             return
96
97         self.mode=mode
98         if not isinstance(self, gtk.Widget):
99             return
100
101         do_draw=False
102
103         try:
104             v=self.get_property('is-on-current-desktop')
105             if v:
106                 do_draw=True
107             else:
108                 self.draw_pending=True
109         except TypeError:
110             do_draw=True
111
112         if do_draw and self.config.getAnimate() and self.do_animations:
113             #self.queue_draw()
114             self.angle_timer_start=time.time()
115             gobject.timeout_add(20, self.timerAngle)
116         else:
117             if self.mode=='l':
118                 self.setAngle(0)
119             else:
120                 self.setAngle(90)
121
122             if do_draw:
123                 self.queue_draw()
124
125     def disableAnimation(self):
126         self.do_animations=False
127
128     def enableAnimation(self):
129         self.do_animations=True
130
131     def setAnimationEnable(self, value):
132         if value:
133             self.enableAnimation()
134         else
135             self.disableAnimation()
136
137     def timerAngle(self):
138         if self.angle_timer_start==0:
139             self.angle_timer_start=time.time()-0.05
140
141         dt=time.time()-self.angle_timer_start
142
143         # Duration of the rotation effect
144         rotation_time=0.8
145
146         da=90.0*dt/rotation_time
147
148         if self.mode=='l':
149             angle=90-da
150         else:
151             angle=da
152
153         if angle>=90:
154             angle=90
155             ret=False
156         elif angle<0:
157             angle=0
158             ret=False
159         else:
160             ret=True
161
162         if self.setAngle(angle):
163             self.queue_draw()
164
165         if ret==False:
166             self.angle_timer_start=0
167
168         return(ret)
169
170     def iconAt(self, x, y):
171         """ Get icon at coordinates x,y. X and Y are in pixels """
172
173         w=self.config.iconsize + self.config.iconspace
174
175         if self.mode=='l' or self.config.getIndiv():
176             x2=int(x / w)
177             y2=int(y / w)
178         else:
179             x2=self.size[1] - int(y/w) - 1
180             y2=int(x/w)
181
182         ret=self.get(x2,y2)
183
184         return(ret)
185
186     def get(self, x, y):
187         ret=self.icons.get(x,y)
188
189         return(ret)
190
191     def _draw(self, cr, event):
192         self.draw_pending=False
193
194         w=self.config.iconsize + self.config.iconspace
195         for x,y in self.icons:
196             if self.mode=='l' or self.config.getIndiv():
197                 x2=x * (self.config.iconsize + self.config.iconspace)
198                 y2=y * (self.config.iconsize + self.config.iconspace)
199             else:
200                 x2=y * (self.config.iconsize + self.config.iconspace)
201                 y2=(self.size[1]-x-1) * \
202                         (self.config.iconsize + self.config.iconspace)
203
204             # Only repaint the needed icons
205             rect=gdk.Rectangle(x2, y2, w, w)
206             t=rect.intersect(event.area)
207             if t.width==0 and t.height==0:
208                 continue
209
210             ico=self.icons.get(x,y)
211             ico.draw(cr, x2, y2)
212
213     def setAngle(self, angle):
214         """ Return True/False indicating that angle has changed """
215         ret=False
216         for x,y in self.icons:
217             ic=self.icons.get(x,y)
218             if ic.setAngle(angle):
219                 ret=True
220
221         return(ret)
222
223     def do_expose_event(self, event):
224         cr=self.window.cairo_create()
225
226         cr.rectangle(event.area.x, event.area.y,
227             event.area.width, event.area.height)
228
229         cr.clip()
230
231         if not self.init_done:
232             self.icons.setWindow(self.window)
233             self.init_done=True
234
235         self._draw(cr, event)
236
237     def setLastIcon(self, icon):
238         if icon==self.lasticon:
239             return
240
241         if self.lasticon!=None:
242             self.lasticon.doCancel()
243             self.lasticon.invalidate(self.window)
244         self.lasticon=icon
245
246     def do_button_press_event(self, event):
247         icon=self.iconAt(event.x, event.y)
248         if icon==None:
249             return
250 #       rect=gdk.Rectangle(event.x,event.y,1,1)
251 #       rect=gdk.Rectangle(0, 0, 100, 100)
252         icon.doPress()
253         icon.invalidate(self.window)
254         self.setLastIcon(icon)
255
256 #       gdk.Window.invalidate_rect(self.window, rect, True)
257
258         return(True)
259
260     def do_button_release_event(self, event):
261         if self.lasticon!=None:
262             self.lasticon.invalidate(self.window)
263             self.lasticon.doRelease()
264
265         self.setLastIcon(None)
266
267         return(True)
268
269     def do_leave_notify_event(self, event):
270         self.setLastIcon(None)
271         return(True)
272
273     def do_pproperty_notify_event(self, event):
274         icon=self.iconAt(event.x, event.y)
275         if icon==None:
276             return
277         icon.doCancel()
278         icon.invalidate(self.window)
279         return(True)
280
281     def do_motion_notify_event(self, event):
282         icon=self.iconAt(event.x, event.y)
283         if self.lasticon==icon:
284             return(True)
285
286         self.setLastIcon(None)
287         icon.doCancel()
288         icon.invalidate(self.window)
289         return(True)
290
291     def do_button_press_event_old(self, event):
292         if event.type==gdk.BUTTON_PRESS:
293             if self.mode=='p':
294                 self.setMode('l')
295             else:
296                 self.setMode('p')
297             self.queue_draw()
298         return True
299
300     # For debugging
301     def do_event1(self, event):
302         print "event:", event, event.type
303
304     def reloadIcons(self):
305         self.icons.load()
306
307 #    def on_orientation_changed(self, orientation):
308 #       print "orch:", orientation
309 #       o=orientation[0]
310 #       self.setMode(o)
311
312 class IconGridWidget(IconGrid, gtk.Widget):
313     def __init__(self, isconfig, config, animation=True):
314         IconGrid.__init__(self, isconfig)
315         gtk.Widget.__init__(self)
316
317         # This must be called before do_realize
318         self.setAnimationEnable(animation)
319
320         self.config=config
321
322         IconGrid.do_realize(self, self.config)
323
324         self.setSize(self.size)
325
326     def setSize(self, size):
327         IconGrid.setSize(self, size)
328
329         w=self.size[0] * (self.config.iconsize + self.config.iconspace)
330         h=self.size[1] * (self.config.iconsize + self.config.iconspace)
331
332         self.set_size_request(w, h)
333
334     def do_realize(self):
335         screen=self.get_screen()
336         self.set_colormap(screen.get_rgba_colormap())
337         self.set_app_paintable(True)
338
339         self.set_flags(self.flags() | gtk.REALIZED)
340
341         self.window=gdk.Window(
342             self.get_parent_window(),
343             width=self.allocation.width,
344             height=self.allocation.height,
345             window_type=gdk.WINDOW_CHILD,
346             wclass=gdk.INPUT_OUTPUT,
347             event_mask=self.get_events() | gdk.EXPOSURE_MASK
348                 | gdk.BUTTON_PRESS_MASK 
349                 | gdk.BUTTON_RELEASE_MASK 
350                 | gdk.BUTTON_MOTION_MASK
351                 | gdk.POINTER_MOTION_MASK
352                 | gdk.POINTER_MOTION_HINT_MASK 
353                 | gdk.ENTER_NOTIFY_MASK
354                 | gdk.LEAVE_NOTIFY_MASK )
355
356         self.window.set_user_data(self)
357         self.style.attach(self.window)
358
359 #       self.style.set_background(self.window, gtk.STATE_NORMAL)
360         self.window.move_resize(*self.allocation)
361
362 #       self.pixmap, mask = gtk.gdk.pixmap_create_from_xpm_d(
363 #             self.window, self.style.bg[gtk.STATE_NORMAL], STAR_PIXMAP)
364         
365 #       self.gc = self.style.fg_gc[gtk.STATE_NORMAL]
366
367         #gtk.Widget.do_realize(self)
368         #HomePluginItem.do_realize(self)
369
370 #       screen=self.get_screen()
371 #       self.set_colormap(screen.get_rgba_colormap())
372 #       self.set_app_paintable(True)
373
374     def do_unrealize(self):
375         #self.window.set_user_data(None)
376         self.window.destroy()
377
378 #gobject.type_register(IconGrid)
379 gobject.type_register(IconGridWidget)
380
381
382 # vim: set ts=8 sts=4 sw=4 noet formatoptions=r ai nocindent:
383