Fixed issues with the credentials dialog
[gc-dialer] / src / util / qtpie.py
1 #!/usr/bin/env python
2
3 import math
4 import logging
5
6 from PyQt4 import QtGui
7 from PyQt4 import QtCore
8
9 try:
10         from util import misc as misc_utils
11 except ImportError:
12         class misc_utils(object):
13
14                 @staticmethod
15                 def log_exception(logger):
16
17                         def wrapper(func):
18                                 return func
19                         return wrapper
20
21
22 _moduleLogger = logging.getLogger(__name__)
23
24
25 _TWOPI = 2 * math.pi
26
27
28 def _radius_at(center, pos):
29         delta = pos - center
30         xDelta = delta.x()
31         yDelta = delta.y()
32
33         radius = math.sqrt(xDelta ** 2 + yDelta ** 2)
34         return radius
35
36
37 def _angle_at(center, pos):
38         delta = pos - center
39         xDelta = delta.x()
40         yDelta = delta.y()
41
42         radius = math.sqrt(xDelta ** 2 + yDelta ** 2)
43         angle = math.acos(xDelta / radius)
44         if 0 <= yDelta:
45                 angle = _TWOPI - angle
46
47         return angle
48
49
50 class QActionPieItem(object):
51
52         def __init__(self, action, weight = 1):
53                 self._action = action
54                 self._weight = weight
55
56         def action(self):
57                 return self._action
58
59         def setWeight(self, weight):
60                 self._weight = weight
61
62         def weight(self):
63                 return self._weight
64
65         def setEnabled(self, enabled = True):
66                 self._action.setEnabled(enabled)
67
68         def isEnabled(self):
69                 return self._action.isEnabled()
70
71
72 class PieFiling(object):
73
74         INNER_RADIUS_DEFAULT = 64
75         OUTER_RADIUS_DEFAULT = 192
76
77         SELECTION_CENTER = -1
78         SELECTION_NONE = -2
79
80         NULL_CENTER = QActionPieItem(QtGui.QAction(None))
81
82         def __init__(self):
83                 self._innerRadius = self.INNER_RADIUS_DEFAULT
84                 self._outerRadius = self.OUTER_RADIUS_DEFAULT
85                 self._children = []
86                 self._center = self.NULL_CENTER
87
88                 self._cacheIndexToAngle = {}
89                 self._cacheTotalWeight = 0
90
91         def insertItem(self, item, index = -1):
92                 self._children.insert(index, item)
93                 self._invalidate_cache()
94
95         def removeItemAt(self, index):
96                 item = self._children.pop(index)
97                 self._invalidate_cache()
98
99         def set_center(self, item):
100                 if item is None:
101                         item = self.NULL_CENTER
102                 self._center = item
103
104         def center(self):
105                 return self._center
106
107         def clear(self):
108                 del self._children[:]
109                 self._center = self.NULL_CENTER
110                 self._invalidate_cache()
111
112         def itemAt(self, index):
113                 return self._children[index]
114
115         def indexAt(self, center, point):
116                 return self._angle_to_index(_angle_at(center, point))
117
118         def innerRadius(self):
119                 return self._innerRadius
120
121         def setInnerRadius(self, radius):
122                 self._innerRadius = radius
123
124         def outerRadius(self):
125                 return self._outerRadius
126
127         def setOuterRadius(self, radius):
128                 self._outerRadius = radius
129
130         def __iter__(self):
131                 return iter(self._children)
132
133         def __len__(self):
134                 return len(self._children)
135
136         def __getitem__(self, index):
137                 return self._children[index]
138
139         def _invalidate_cache(self):
140                 self._cacheIndexToAngle.clear()
141                 self._cacheTotalWeight = sum(child.weight() for child in self._children)
142                 if self._cacheTotalWeight == 0:
143                         self._cacheTotalWeight = 1
144
145         def _index_to_angle(self, index, isShifted):
146                 key = index, isShifted
147                 if key in self._cacheIndexToAngle:
148                         return self._cacheIndexToAngle[key]
149                 index = index % len(self._children)
150
151                 baseAngle = _TWOPI / self._cacheTotalWeight
152
153                 angle = math.pi / 2
154                 if isShifted:
155                         if self._children:
156                                 angle -= (self._children[0].weight() * baseAngle) / 2
157                         else:
158                                 angle -= baseAngle / 2
159                 while angle < 0:
160                         angle += _TWOPI
161
162                 for i, child in enumerate(self._children):
163                         if index < i:
164                                 break
165                         angle += child.weight() * baseAngle
166                 while _TWOPI < angle:
167                         angle -= _TWOPI
168
169                 self._cacheIndexToAngle[key] = angle
170                 return angle
171
172         def _angle_to_index(self, angle):
173                 numChildren = len(self._children)
174                 if numChildren == 0:
175                         return self.SELECTION_CENTER
176
177                 baseAngle = _TWOPI / self._cacheTotalWeight
178
179                 iterAngle = math.pi / 2 - (self.itemAt(0).weight() * baseAngle) / 2
180                 while iterAngle < 0:
181                         iterAngle += _TWOPI
182
183                 oldIterAngle = iterAngle
184                 for index, child in enumerate(self._children):
185                         iterAngle += child.weight() * baseAngle
186                         if oldIterAngle < angle and angle <= iterAngle:
187                                 return index - 1 if index != 0 else numChildren - 1
188                         elif oldIterAngle < (angle + _TWOPI) and (angle + _TWOPI <= iterAngle):
189                                 return index - 1 if index != 0 else numChildren - 1
190                         oldIterAngle = iterAngle
191
192
193 class PieArtist(object):
194
195         ICON_SIZE_DEFAULT = 48
196
197         SHAPE_CIRCLE = "circle"
198         SHAPE_SQUARE = "square"
199         DEFAULT_SHAPE = SHAPE_SQUARE
200
201         def __init__(self, filing):
202                 self._filing = filing
203
204                 self._cachedOuterRadius = self._filing.outerRadius()
205                 self._cachedInnerRadius = self._filing.innerRadius()
206                 canvasSize = self._cachedOuterRadius * 2 + 1
207                 self._canvas = QtGui.QPixmap(canvasSize, canvasSize)
208                 self._mask = None
209                 self.palette = None
210
211         def pieSize(self):
212                 diameter = self._filing.outerRadius() * 2 + 1
213                 return QtCore.QSize(diameter, diameter)
214
215         def centerSize(self):
216                 painter = QtGui.QPainter(self._canvas)
217                 text = self._filing.center().action().text()
218                 fontMetrics = painter.fontMetrics()
219                 if text:
220                         textBoundingRect = fontMetrics.boundingRect(text)
221                 else:
222                         textBoundingRect = QtCore.QRect()
223                 textWidth = textBoundingRect.width()
224                 textHeight = textBoundingRect.height()
225
226                 return QtCore.QSize(
227                         textWidth + self.ICON_SIZE_DEFAULT,
228                         max(textHeight, self.ICON_SIZE_DEFAULT),
229                 )
230
231         def show(self, palette):
232                 self.palette = palette
233
234                 if (
235                         self._cachedOuterRadius != self._filing.outerRadius() or
236                         self._cachedInnerRadius != self._filing.innerRadius()
237                 ):
238                         self._cachedOuterRadius = self._filing.outerRadius()
239                         self._cachedInnerRadius = self._filing.innerRadius()
240                         self._canvas = self._canvas.scaled(self.pieSize())
241
242                 if self._mask is None:
243                         self._mask = QtGui.QBitmap(self._canvas.size())
244                         self._mask.fill(QtCore.Qt.color0)
245                         self._generate_mask(self._mask)
246                         self._canvas.setMask(self._mask)
247                 return self._mask
248
249         def hide(self):
250                 self.palette = None
251
252         def paint(self, selectionIndex):
253                 painter = QtGui.QPainter(self._canvas)
254                 painter.setRenderHint(QtGui.QPainter.Antialiasing, True)
255
256                 adjustmentRect = self._canvas.rect().adjusted(0, 0, -1, -1)
257
258                 numChildren = len(self._filing)
259                 if numChildren == 0:
260                         if selectionIndex == PieFiling.SELECTION_CENTER and self._filing.center().isEnabled():
261                                 painter.setBrush(self.palette.highlight())
262                         else:
263                                 painter.setBrush(self.palette.window())
264                         painter.setPen(self.palette.mid().color())
265
266                         painter.drawRect(self._canvas.rect())
267                         self._paint_center_foreground(painter, selectionIndex)
268                         return self._canvas
269                 elif numChildren == 1:
270                         if selectionIndex == 0 and self._filing[0].isEnabled():
271                                 painter.setBrush(self.palette.highlight())
272                         else:
273                                 painter.setBrush(self.palette.window())
274
275                         painter.fillRect(self._canvas.rect(), painter.brush())
276                 else:
277                         for i in xrange(len(self._filing)):
278                                 self._paint_slice_background(painter, adjustmentRect, i, selectionIndex)
279
280                 self._paint_center_background(painter, adjustmentRect, selectionIndex)
281                 self._paint_center_foreground(painter, selectionIndex)
282
283                 for i in xrange(len(self._filing)):
284                         self._paint_slice_foreground(painter, i, selectionIndex)
285
286                 return self._canvas
287
288         def _generate_mask(self, mask):
289                 """
290                 Specifies on the mask the shape of the pie menu
291                 """
292                 painter = QtGui.QPainter(mask)
293                 painter.setPen(QtCore.Qt.color1)
294                 painter.setBrush(QtCore.Qt.color1)
295                 if self.DEFAULT_SHAPE == self.SHAPE_SQUARE:
296                         painter.drawRect(mask.rect())
297                 elif self.DEFAULT_SHAPE == self.SHAPE_CIRCLE:
298                         painter.drawEllipse(mask.rect().adjusted(0, 0, -1, -1))
299                 else:
300                         raise NotImplementedError(self.DEFAULT_SHAPE)
301
302         def _paint_slice_background(self, painter, adjustmentRect, i, selectionIndex):
303                 if self.DEFAULT_SHAPE == self.SHAPE_SQUARE:
304                         currentWidth = adjustmentRect.width()
305                         newWidth = math.sqrt(2) * currentWidth
306                         dx = (newWidth - currentWidth) / 2
307                         adjustmentRect = adjustmentRect.adjusted(-dx, -dx, dx, dx)
308                 elif self.DEFAULT_SHAPE == self.SHAPE_CIRCLE:
309                         pass
310                 else:
311                         raise NotImplementedError(self.DEFAULT_SHAPE)
312
313                 if i == selectionIndex and self._filing[i].isEnabled():
314                         painter.setBrush(self.palette.highlight())
315                 else:
316                         painter.setBrush(self.palette.window())
317                 painter.setPen(self.palette.mid().color())
318
319                 a = self._filing._index_to_angle(i, True)
320                 b = self._filing._index_to_angle(i + 1, True)
321                 if b < a:
322                         b += _TWOPI
323                 size = b - a
324                 if size < 0:
325                         size += _TWOPI
326
327                 startAngleInDeg = (a * 360 * 16) / _TWOPI
328                 sizeInDeg = (size * 360 * 16) / _TWOPI
329                 painter.drawPie(adjustmentRect, int(startAngleInDeg), int(sizeInDeg))
330
331         def _paint_slice_foreground(self, painter, i, selectionIndex):
332                 child = self._filing[i]
333
334                 a = self._filing._index_to_angle(i, True)
335                 b = self._filing._index_to_angle(i + 1, True)
336                 if b < a:
337                         b += _TWOPI
338                 middleAngle = (a + b) / 2
339                 averageRadius = (self._cachedInnerRadius + self._cachedOuterRadius) / 2
340
341                 sliceX = averageRadius * math.cos(middleAngle)
342                 sliceY = - averageRadius * math.sin(middleAngle)
343
344                 piePos = self._canvas.rect().center()
345                 pieX = piePos.x()
346                 pieY = piePos.y()
347                 self._paint_label(
348                         painter, child.action(), i == selectionIndex, pieX+sliceX, pieY+sliceY
349                 )
350
351         def _paint_label(self, painter, action, isSelected, x, y):
352                 text = action.text()
353                 fontMetrics = painter.fontMetrics()
354                 if text:
355                         textBoundingRect = fontMetrics.boundingRect(text)
356                 else:
357                         textBoundingRect = QtCore.QRect()
358                 textWidth = textBoundingRect.width()
359                 textHeight = textBoundingRect.height()
360
361                 icon = action.icon().pixmap(
362                         QtCore.QSize(self.ICON_SIZE_DEFAULT, self.ICON_SIZE_DEFAULT),
363                         QtGui.QIcon.Normal,
364                         QtGui.QIcon.On,
365                 )
366                 iconWidth = icon.width()
367                 iconHeight = icon.width()
368                 averageWidth = (iconWidth + textWidth)/2
369                 if not icon.isNull():
370                         iconRect = QtCore.QRect(
371                                 x - averageWidth,
372                                 y - iconHeight/2,
373                                 iconWidth,
374                                 iconHeight,
375                         )
376
377                         painter.drawPixmap(iconRect, icon)
378
379                 if text:
380                         if isSelected:
381                                 if action.isEnabled():
382                                         pen = self.palette.highlightedText()
383                                         brush = self.palette.highlight()
384                                 else:
385                                         pen = self.palette.mid()
386                                         brush = self.palette.window()
387                         else:
388                                 if action.isEnabled():
389                                         pen = self.palette.windowText()
390                                 else:
391                                         pen = self.palette.mid()
392                                 brush = self.palette.window()
393
394                         leftX = x - averageWidth + iconWidth
395                         topY = y + textHeight/2
396                         painter.setPen(pen.color())
397                         painter.setBrush(brush)
398                         painter.drawText(leftX, topY, text)
399
400         def _paint_center_background(self, painter, adjustmentRect, selectionIndex):
401                 dark = self.palette.mid().color()
402                 light = self.palette.light().color()
403                 if selectionIndex == PieFiling.SELECTION_CENTER and self._filing.center().isEnabled():
404                         background = self.palette.highlight().color()
405                 else:
406                         background = self.palette.window().color()
407
408                 innerRadius = self._cachedInnerRadius
409                 adjustmentCenterPos = adjustmentRect.center()
410                 innerRect = QtCore.QRect(
411                         adjustmentCenterPos.x() - innerRadius,
412                         adjustmentCenterPos.y() - innerRadius,
413                         innerRadius * 2 + 1,
414                         innerRadius * 2 + 1,
415                 )
416
417                 painter.setPen(QtCore.Qt.NoPen)
418                 painter.setBrush(background)
419                 painter.drawPie(innerRect, 0, 360 * 16)
420
421                 painter.setPen(QtGui.QPen(dark, 1))
422                 painter.setBrush(QtCore.Qt.NoBrush)
423                 painter.drawEllipse(innerRect)
424
425                 if self.DEFAULT_SHAPE == self.SHAPE_SQUARE:
426                         pass
427                 elif self.DEFAULT_SHAPE == self.SHAPE_CIRCLE:
428                         painter.setPen(QtGui.QPen(dark, 1))
429                         painter.setBrush(QtCore.Qt.NoBrush)
430                         painter.drawEllipse(adjustmentRect)
431                 else:
432                         raise NotImplementedError(self.DEFAULT_SHAPE)
433
434         def _paint_center_foreground(self, painter, selectionIndex):
435                 centerPos = self._canvas.rect().center()
436                 pieX = centerPos.x()
437                 pieY = centerPos.y()
438
439                 x = pieX
440                 y = pieY
441
442                 self._paint_label(
443                         painter,
444                         self._filing.center().action(),
445                         selectionIndex == PieFiling.SELECTION_CENTER,
446                         x, y
447                 )
448
449
450 class QPieDisplay(QtGui.QWidget):
451
452         def __init__(self, filing, parent = None, flags = QtCore.Qt.Window):
453                 QtGui.QWidget.__init__(self, parent, flags)
454                 self._filing = filing
455                 self._artist = PieArtist(self._filing)
456                 self._selectionIndex = PieFiling.SELECTION_NONE
457
458         def popup(self, pos):
459                 self._update_selection(pos)
460                 self.show()
461
462         def sizeHint(self):
463                 return self._artist.pieSize()
464
465         @misc_utils.log_exception(_moduleLogger)
466         def showEvent(self, showEvent):
467                 mask = self._artist.show(self.palette())
468                 self.setMask(mask)
469
470                 QtGui.QWidget.showEvent(self, showEvent)
471
472         @misc_utils.log_exception(_moduleLogger)
473         def hideEvent(self, hideEvent):
474                 self._artist.hide()
475                 self._selectionIndex = PieFiling.SELECTION_NONE
476                 QtGui.QWidget.hideEvent(self, hideEvent)
477
478         @misc_utils.log_exception(_moduleLogger)
479         def paintEvent(self, paintEvent):
480                 canvas = self._artist.paint(self._selectionIndex)
481
482                 screen = QtGui.QPainter(self)
483                 screen.drawPixmap(QtCore.QPoint(0, 0), canvas)
484
485                 QtGui.QWidget.paintEvent(self, paintEvent)
486
487         def selectAt(self, index):
488                 oldIndex = self._selectionIndex
489                 self._selectionIndex = index
490                 if self.isVisible():
491                         self.update()
492
493
494 class QPieButton(QtGui.QWidget):
495
496         activated = QtCore.pyqtSignal(int)
497         highlighted = QtCore.pyqtSignal(int)
498         canceled = QtCore.pyqtSignal()
499         aboutToShow = QtCore.pyqtSignal()
500         aboutToHide = QtCore.pyqtSignal()
501
502         BUTTON_RADIUS = 24
503         DELAY = 250
504
505         def __init__(self, buttonSlice, parent = None):
506                 # @bug Artifacts on Maemo 5 due to window 3D effects, find way to disable them for just these?
507                 # @bug The pie's are being pushed back on screen on Maemo, leading to coordinate issues
508                 QtGui.QWidget.__init__(self, parent)
509                 self._cachedCenterPosition = self.rect().center()
510
511                 self._filing = PieFiling()
512                 self._display = QPieDisplay(self._filing, None, QtCore.Qt.SplashScreen)
513                 self._selectionIndex = PieFiling.SELECTION_NONE
514
515                 self._buttonFiling = PieFiling()
516                 self._buttonFiling.set_center(buttonSlice)
517                 self._buttonFiling.setOuterRadius(self.BUTTON_RADIUS)
518                 self._buttonArtist = PieArtist(self._buttonFiling)
519                 self._poppedUp = False
520
521                 self._delayPopupTimer = QtCore.QTimer()
522                 self._delayPopupTimer.setInterval(self.DELAY)
523                 self._delayPopupTimer.setSingleShot(True)
524                 self._delayPopupTimer.timeout.connect(self._on_delayed_popup)
525                 self._popupLocation = None
526
527                 self._mousePosition = None
528                 self.setFocusPolicy(QtCore.Qt.StrongFocus)
529
530         def insertItem(self, item, index = -1):
531                 self._filing.insertItem(item, index)
532
533         def removeItemAt(self, index):
534                 self._filing.removeItemAt(index)
535
536         def set_center(self, item):
537                 self._filing.set_center(item)
538
539         def set_button(self, item):
540                 self.update()
541
542         def clear(self):
543                 self._filing.clear()
544
545         def itemAt(self, index):
546                 return self._filing.itemAt(index)
547
548         def indexAt(self, point):
549                 return self._filing.indexAt(self._cachedCenterPosition, point)
550
551         def innerRadius(self):
552                 return self._filing.innerRadius()
553
554         def setInnerRadius(self, radius):
555                 self._filing.setInnerRadius(radius)
556
557         def outerRadius(self):
558                 return self._filing.outerRadius()
559
560         def setOuterRadius(self, radius):
561                 self._filing.setOuterRadius(radius)
562
563         def buttonRadius(self):
564                 return self._buttonFiling.outerRadius()
565
566         def setButtonRadius(self, radius):
567                 self._buttonFiling.setOuterRadius(radius)
568                 self._buttonArtist.show(self.palette())
569
570         def minimumSizeHint(self):
571                 return self._buttonArtist.centerSize()
572
573         @misc_utils.log_exception(_moduleLogger)
574         def mousePressEvent(self, mouseEvent):
575                 lastSelection = self._selectionIndex
576
577                 lastMousePos = mouseEvent.pos()
578                 self._mousePosition = lastMousePos
579                 self._update_selection(self._cachedCenterPosition)
580
581                 self.highlighted.emit(self._selectionIndex)
582
583                 self._display.selectAt(self._selectionIndex)
584                 self._popupLocation = mouseEvent.globalPos()
585                 self._delayPopupTimer.start()
586
587         @QtCore.pyqtSlot()
588         @misc_utils.log_exception(_moduleLogger)
589         def _on_delayed_popup(self):
590                 assert self._popupLocation is not None
591                 self._popup_child(self._popupLocation)
592
593         @misc_utils.log_exception(_moduleLogger)
594         def mouseMoveEvent(self, mouseEvent):
595                 lastSelection = self._selectionIndex
596
597                 lastMousePos = mouseEvent.pos()
598                 if self._mousePosition is None:
599                         # Absolute
600                         self._update_selection(lastMousePos)
601                 else:
602                         # Relative
603                         self._update_selection(
604                                 self._cachedCenterPosition + (lastMousePos - self._mousePosition),
605                                 ignoreOuter = True,
606                         )
607
608                 if lastSelection != self._selectionIndex:
609                         self.highlighted.emit(self._selectionIndex)
610                         self._display.selectAt(self._selectionIndex)
611
612                 if self._selectionIndex != PieFiling.SELECTION_CENTER and self._delayPopupTimer.isActive():
613                         self._on_delayed_popup()
614
615         @misc_utils.log_exception(_moduleLogger)
616         def mouseReleaseEvent(self, mouseEvent):
617                 self._delayPopupTimer.stop()
618                 self._popupLocation = None
619
620                 lastSelection = self._selectionIndex
621
622                 lastMousePos = mouseEvent.pos()
623                 if self._mousePosition is None:
624                         # Absolute
625                         self._update_selection(lastMousePos)
626                 else:
627                         # Relative
628                         self._update_selection(
629                                 self._cachedCenterPosition + (lastMousePos - self._mousePosition),
630                                 ignoreOuter = True,
631                         )
632                 self._mousePosition = None
633
634                 self._activate_at(self._selectionIndex)
635                 self._hide_child()
636
637         @misc_utils.log_exception(_moduleLogger)
638         def keyPressEvent(self, keyEvent):
639                 if keyEvent.key() in [QtCore.Qt.Key_Right, QtCore.Qt.Key_Down, QtCore.Qt.Key_Tab]:
640                         self._popup_child(QtGui.QCursor.pos())
641                         if self._selectionIndex != len(self._filing) - 1:
642                                 nextSelection = self._selectionIndex + 1
643                         else:
644                                 nextSelection = 0
645                         self._select_at(nextSelection)
646                         self._display.selectAt(self._selectionIndex)
647                 elif keyEvent.key() in [QtCore.Qt.Key_Left, QtCore.Qt.Key_Up, QtCore.Qt.Key_Backtab]:
648                         self._popup_child(QtGui.QCursor.pos())
649                         if 0 < self._selectionIndex:
650                                 nextSelection = self._selectionIndex - 1
651                         else:
652                                 nextSelection = len(self._filing) - 1
653                         self._select_at(nextSelection)
654                         self._display.selectAt(self._selectionIndex)
655                 elif keyEvent.key() in [QtCore.Qt.Key_Space]:
656                         self._popup_child(QtGui.QCursor.pos())
657                         self._select_at(PieFiling.SELECTION_CENTER)
658                         self._display.selectAt(self._selectionIndex)
659                 elif keyEvent.key() in [QtCore.Qt.Key_Return, QtCore.Qt.Key_Enter, QtCore.Qt.Key_Space]:
660                         self._delayPopupTimer.stop()
661                         self._popupLocation = None
662                         self._activate_at(self._selectionIndex)
663                         self._hide_child()
664                 elif keyEvent.key() in [QtCore.Qt.Key_Escape, QtCore.Qt.Key_Backspace]:
665                         self._delayPopupTimer.stop()
666                         self._popupLocation = None
667                         self._activate_at(PieFiling.SELECTION_NONE)
668                         self._hide_child()
669                 else:
670                         QtGui.QWidget.keyPressEvent(self, keyEvent)
671
672         @misc_utils.log_exception(_moduleLogger)
673         def resizeEvent(self, resizeEvent):
674                 self.setButtonRadius(min(resizeEvent.size().width(), resizeEvent.size().height()) / 2 - 1)
675                 QtGui.QWidget.resizeEvent(self, resizeEvent)
676
677         @misc_utils.log_exception(_moduleLogger)
678         def showEvent(self, showEvent):
679                 self._buttonArtist.show(self.palette())
680                 self._cachedCenterPosition = self.rect().center()
681
682                 QtGui.QWidget.showEvent(self, showEvent)
683
684         @misc_utils.log_exception(_moduleLogger)
685         def hideEvent(self, hideEvent):
686                 self._display.hide()
687                 self._select_at(PieFiling.SELECTION_NONE)
688                 QtGui.QWidget.hideEvent(self, hideEvent)
689
690         @misc_utils.log_exception(_moduleLogger)
691         def paintEvent(self, paintEvent):
692                 self.setButtonRadius(min(self.rect().width(), self.rect().height()) / 2 - 1)
693                 if self._poppedUp:
694                         canvas = self._buttonArtist.paint(PieFiling.SELECTION_CENTER)
695                 else:
696                         canvas = self._buttonArtist.paint(PieFiling.SELECTION_NONE)
697
698                 screen = QtGui.QPainter(self)
699                 screen.drawPixmap(QtCore.QPoint(0, 0), canvas)
700
701                 QtGui.QWidget.paintEvent(self, paintEvent)
702
703         def __iter__(self):
704                 return iter(self._filing)
705
706         def __len__(self):
707                 return len(self._filing)
708
709         def _popup_child(self, position):
710                 self._poppedUp = True
711                 self.aboutToShow.emit()
712
713                 self._delayPopupTimer.stop()
714                 self._popupLocation = None
715
716                 position = position - QtCore.QPoint(self._filing.outerRadius(), self._filing.outerRadius())
717                 self._display.move(position)
718                 self._display.show()
719
720                 self.update()
721
722         def _hide_child(self):
723                 self._poppedUp = False
724                 self.aboutToHide.emit()
725                 self._display.hide()
726                 self.update()
727
728         def _select_at(self, index):
729                 self._selectionIndex = index
730
731         def _update_selection(self, lastMousePos, ignoreOuter = False):
732                 radius = _radius_at(self._cachedCenterPosition, lastMousePos)
733                 if radius < self._filing.innerRadius():
734                         self._select_at(PieFiling.SELECTION_CENTER)
735                 elif radius <= self._filing.outerRadius() or ignoreOuter:
736                         self._select_at(self.indexAt(lastMousePos))
737                 else:
738                         self._select_at(PieFiling.SELECTION_NONE)
739
740         def _activate_at(self, index):
741                 if index == PieFiling.SELECTION_NONE:
742                         self.canceled.emit()
743                         return
744                 elif index == PieFiling.SELECTION_CENTER:
745                         child = self._filing.center()
746                 else:
747                         child = self.itemAt(index)
748
749                 if child.action().isEnabled():
750                         child.action().trigger()
751                         self.activated.emit(index)
752                 else:
753                         self.canceled.emit()
754
755
756 class QPieMenu(QtGui.QWidget):
757
758         activated = QtCore.pyqtSignal(int)
759         highlighted = QtCore.pyqtSignal(int)
760         canceled = QtCore.pyqtSignal()
761         aboutToShow = QtCore.pyqtSignal()
762         aboutToHide = QtCore.pyqtSignal()
763
764         def __init__(self, parent = None):
765                 QtGui.QWidget.__init__(self, parent)
766                 self._cachedCenterPosition = self.rect().center()
767
768                 self._filing = PieFiling()
769                 self._artist = PieArtist(self._filing)
770                 self._selectionIndex = PieFiling.SELECTION_NONE
771
772                 self._mousePosition = ()
773                 self.setFocusPolicy(QtCore.Qt.StrongFocus)
774
775         def popup(self, pos):
776                 self._update_selection(pos)
777                 self.show()
778
779         def insertItem(self, item, index = -1):
780                 self._filing.insertItem(item, index)
781                 self.update()
782
783         def removeItemAt(self, index):
784                 self._filing.removeItemAt(index)
785                 self.update()
786
787         def set_center(self, item):
788                 self._filing.set_center(item)
789                 self.update()
790
791         def clear(self):
792                 self._filing.clear()
793                 self.update()
794
795         def itemAt(self, index):
796                 return self._filing.itemAt(index)
797
798         def indexAt(self, point):
799                 return self._filing.indexAt(self._cachedCenterPosition, point)
800
801         def innerRadius(self):
802                 return self._filing.innerRadius()
803
804         def setInnerRadius(self, radius):
805                 self._filing.setInnerRadius(radius)
806                 self.update()
807
808         def outerRadius(self):
809                 return self._filing.outerRadius()
810
811         def setOuterRadius(self, radius):
812                 self._filing.setOuterRadius(radius)
813                 self.update()
814
815         def sizeHint(self):
816                 return self._artist.pieSize()
817
818         @misc_utils.log_exception(_moduleLogger)
819         def mousePressEvent(self, mouseEvent):
820                 lastSelection = self._selectionIndex
821
822                 lastMousePos = mouseEvent.pos()
823                 self._update_selection(lastMousePos)
824                 self._mousePosition = lastMousePos
825
826                 if lastSelection != self._selectionIndex:
827                         self.highlighted.emit(self._selectionIndex)
828                         self.update()
829
830         @misc_utils.log_exception(_moduleLogger)
831         def mouseMoveEvent(self, mouseEvent):
832                 lastSelection = self._selectionIndex
833
834                 lastMousePos = mouseEvent.pos()
835                 self._update_selection(lastMousePos)
836
837                 if lastSelection != self._selectionIndex:
838                         self.highlighted.emit(self._selectionIndex)
839                         self.update()
840
841         @misc_utils.log_exception(_moduleLogger)
842         def mouseReleaseEvent(self, mouseEvent):
843                 lastSelection = self._selectionIndex
844
845                 lastMousePos = mouseEvent.pos()
846                 self._update_selection(lastMousePos)
847                 self._mousePosition = ()
848
849                 self._activate_at(self._selectionIndex)
850                 self.update()
851
852         @misc_utils.log_exception(_moduleLogger)
853         def keyPressEvent(self, keyEvent):
854                 if keyEvent.key() in [QtCore.Qt.Key_Right, QtCore.Qt.Key_Down, QtCore.Qt.Key_Tab]:
855                         if self._selectionIndex != len(self._filing) - 1:
856                                 nextSelection = self._selectionIndex + 1
857                         else:
858                                 nextSelection = 0
859                         self._select_at(nextSelection)
860                         self.update()
861                 elif keyEvent.key() in [QtCore.Qt.Key_Left, QtCore.Qt.Key_Up, QtCore.Qt.Key_Backtab]:
862                         if 0 < self._selectionIndex:
863                                 nextSelection = self._selectionIndex - 1
864                         else:
865                                 nextSelection = len(self._filing) - 1
866                         self._select_at(nextSelection)
867                         self.update()
868                 elif keyEvent.key() in [QtCore.Qt.Key_Return, QtCore.Qt.Key_Enter, QtCore.Qt.Key_Space]:
869                         self._activate_at(self._selectionIndex)
870                 elif keyEvent.key() in [QtCore.Qt.Key_Escape, QtCore.Qt.Key_Backspace]:
871                         self._activate_at(PieFiling.SELECTION_NONE)
872                 else:
873                         QtGui.QWidget.keyPressEvent(self, keyEvent)
874
875         @misc_utils.log_exception(_moduleLogger)
876         def showEvent(self, showEvent):
877                 self.aboutToShow.emit()
878                 self._cachedCenterPosition = self.rect().center()
879
880                 mask = self._artist.show(self.palette())
881                 self.setMask(mask)
882
883                 lastMousePos = self.mapFromGlobal(QtGui.QCursor.pos())
884                 self._update_selection(lastMousePos)
885
886                 QtGui.QWidget.showEvent(self, showEvent)
887
888         @misc_utils.log_exception(_moduleLogger)
889         def hideEvent(self, hideEvent):
890                 self._artist.hide()
891                 self._selectionIndex = PieFiling.SELECTION_NONE
892                 QtGui.QWidget.hideEvent(self, hideEvent)
893
894         @misc_utils.log_exception(_moduleLogger)
895         def paintEvent(self, paintEvent):
896                 canvas = self._artist.paint(self._selectionIndex)
897
898                 screen = QtGui.QPainter(self)
899                 screen.drawPixmap(QtCore.QPoint(0, 0), canvas)
900
901                 QtGui.QWidget.paintEvent(self, paintEvent)
902
903         def __iter__(self):
904                 return iter(self._filing)
905
906         def __len__(self):
907                 return len(self._filing)
908
909         def _select_at(self, index):
910                 self._selectionIndex = index
911
912         def _update_selection(self, lastMousePos):
913                 radius = _radius_at(self._cachedCenterPosition, lastMousePos)
914                 if radius < self._filing.innerRadius():
915                         self._selectionIndex = PieFiling.SELECTION_CENTER
916                 elif radius <= self._filing.outerRadius():
917                         self._select_at(self.indexAt(lastMousePos))
918                 else:
919                         self._selectionIndex = PieFiling.SELECTION_NONE
920
921         def _activate_at(self, index):
922                 if index == PieFiling.SELECTION_NONE:
923                         self.canceled.emit()
924                         self.aboutToHide.emit()
925                         self.hide()
926                         return
927                 elif index == PieFiling.SELECTION_CENTER:
928                         child = self._filing.center()
929                 else:
930                         child = self.itemAt(index)
931
932                 if child.isEnabled():
933                         child.action().trigger()
934                         self.activated.emit(index)
935                 else:
936                         self.canceled.emit()
937                 self.aboutToHide.emit()
938                 self.hide()
939
940
941 def init_pies():
942         PieFiling.NULL_CENTER.setEnabled(False)
943
944
945 def _print(msg):
946         print msg
947
948
949 def _on_about_to_hide(app):
950         app.exit()
951
952
953 if __name__ == "__main__":
954         app = QtGui.QApplication([])
955         init_pies()
956
957         if False:
958                 pie = QPieMenu()
959                 pie.show()
960
961         if False:
962                 singleAction = QtGui.QAction(None)
963                 singleAction.setText("Boo")
964                 singleItem = QActionPieItem(singleAction)
965                 spie = QPieMenu()
966                 spie.insertItem(singleItem)
967                 spie.show()
968
969         if False:
970                 oneAction = QtGui.QAction(None)
971                 oneAction.setText("Chew")
972                 oneItem = QActionPieItem(oneAction)
973                 twoAction = QtGui.QAction(None)
974                 twoAction.setText("Foo")
975                 twoItem = QActionPieItem(twoAction)
976                 iconTextAction = QtGui.QAction(None)
977                 iconTextAction.setText("Icon")
978                 iconTextAction.setIcon(QtGui.QIcon.fromTheme("gtk-close"))
979                 iconTextItem = QActionPieItem(iconTextAction)
980                 mpie = QPieMenu()
981                 mpie.insertItem(oneItem)
982                 mpie.insertItem(twoItem)
983                 mpie.insertItem(oneItem)
984                 mpie.insertItem(iconTextItem)
985                 mpie.show()
986
987         if True:
988                 oneAction = QtGui.QAction(None)
989                 oneAction.setText("Chew")
990                 oneAction.triggered.connect(lambda: _print("Chew"))
991                 oneItem = QActionPieItem(oneAction)
992                 twoAction = QtGui.QAction(None)
993                 twoAction.setText("Foo")
994                 twoAction.triggered.connect(lambda: _print("Foo"))
995                 twoItem = QActionPieItem(twoAction)
996                 iconAction = QtGui.QAction(None)
997                 iconAction.setIcon(QtGui.QIcon.fromTheme("gtk-open"))
998                 iconAction.triggered.connect(lambda: _print("Icon"))
999                 iconItem = QActionPieItem(iconAction)
1000                 iconTextAction = QtGui.QAction(None)
1001                 iconTextAction.setText("Icon")
1002                 iconTextAction.setIcon(QtGui.QIcon.fromTheme("gtk-close"))
1003                 iconTextAction.triggered.connect(lambda: _print("Icon and text"))
1004                 iconTextItem = QActionPieItem(iconTextAction)
1005                 mpie = QPieMenu()
1006                 mpie.set_center(iconItem)
1007                 mpie.insertItem(oneItem)
1008                 mpie.insertItem(twoItem)
1009                 mpie.insertItem(oneItem)
1010                 mpie.insertItem(iconTextItem)
1011                 mpie.show()
1012                 mpie.aboutToHide.connect(lambda: _on_about_to_hide(app))
1013                 mpie.canceled.connect(lambda: _print("Canceled"))
1014
1015         if False:
1016                 oneAction = QtGui.QAction(None)
1017                 oneAction.setText("Chew")
1018                 oneAction.triggered.connect(lambda: _print("Chew"))
1019                 oneItem = QActionPieItem(oneAction)
1020                 twoAction = QtGui.QAction(None)
1021                 twoAction.setText("Foo")
1022                 twoAction.triggered.connect(lambda: _print("Foo"))
1023                 twoItem = QActionPieItem(twoAction)
1024                 iconAction = QtGui.QAction(None)
1025                 iconAction.setIcon(QtGui.QIcon.fromTheme("gtk-open"))
1026                 iconAction.triggered.connect(lambda: _print("Icon"))
1027                 iconItem = QActionPieItem(iconAction)
1028                 iconTextAction = QtGui.QAction(None)
1029                 iconTextAction.setText("Icon")
1030                 iconTextAction.setIcon(QtGui.QIcon.fromTheme("gtk-close"))
1031                 iconTextAction.triggered.connect(lambda: _print("Icon and text"))
1032                 iconTextItem = QActionPieItem(iconTextAction)
1033                 pieFiling = PieFiling()
1034                 pieFiling.set_center(iconItem)
1035                 pieFiling.insertItem(oneItem)
1036                 pieFiling.insertItem(twoItem)
1037                 pieFiling.insertItem(oneItem)
1038                 pieFiling.insertItem(iconTextItem)
1039                 mpie = QPieDisplay(pieFiling)
1040                 mpie.show()
1041
1042         if False:
1043                 oneAction = QtGui.QAction(None)
1044                 oneAction.setText("Chew")
1045                 oneAction.triggered.connect(lambda: _print("Chew"))
1046                 oneItem = QActionPieItem(oneAction)
1047                 twoAction = QtGui.QAction(None)
1048                 twoAction.setText("Foo")
1049                 twoAction.triggered.connect(lambda: _print("Foo"))
1050                 twoItem = QActionPieItem(twoAction)
1051                 iconAction = QtGui.QAction(None)
1052                 iconAction.setIcon(QtGui.QIcon.fromTheme("gtk-open"))
1053                 iconAction.triggered.connect(lambda: _print("Icon"))
1054                 iconItem = QActionPieItem(iconAction)
1055                 iconTextAction = QtGui.QAction(None)
1056                 iconTextAction.setText("Icon")
1057                 iconTextAction.setIcon(QtGui.QIcon.fromTheme("gtk-close"))
1058                 iconTextAction.triggered.connect(lambda: _print("Icon and text"))
1059                 iconTextItem = QActionPieItem(iconTextAction)
1060                 mpie = QPieButton(iconItem)
1061                 mpie.set_center(iconItem)
1062                 mpie.insertItem(oneItem)
1063                 mpie.insertItem(twoItem)
1064                 mpie.insertItem(oneItem)
1065                 mpie.insertItem(iconTextItem)
1066                 mpie.show()
1067                 mpie.aboutToHide.connect(lambda: _on_about_to_hide(app))
1068                 mpie.canceled.connect(lambda: _print("Canceled"))
1069
1070         app.exec_()