Fixing the text color on dark backgrounds, updating the background to a non-obsolete...
[ejpi] / src / libraries / 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 = 32
75         OUTER_RADIUS_DEFAULT = 128
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 = 32
196
197         def __init__(self, filing):
198                 # @bug The wrong text is being using on unselected pie menus
199                 # @bug Plus it would be a good idea to fill in the icon body's
200                 # @bug Maybe even make the icons glow?
201                 self._filing = filing
202
203                 self._cachedOuterRadius = self._filing.outerRadius()
204                 self._cachedInnerRadius = self._filing.innerRadius()
205                 canvasSize = self._cachedOuterRadius * 2 + 1
206                 self._canvas = QtGui.QPixmap(canvasSize, canvasSize)
207                 self._mask = None
208                 self.palette = None
209
210         def pieSize(self):
211                 diameter = self._filing.outerRadius() * 2 + 1
212                 return QtCore.QSize(diameter, diameter)
213
214         def centerSize(self):
215                 painter = QtGui.QPainter(self._canvas)
216                 text = self._filing.center().action().text()
217                 fontMetrics = painter.fontMetrics()
218                 if text:
219                         textBoundingRect = fontMetrics.boundingRect(text)
220                 else:
221                         textBoundingRect = QtCore.QRect()
222                 textWidth = textBoundingRect.width()
223                 textHeight = textBoundingRect.height()
224
225                 return QtCore.QSize(
226                         textWidth + self.ICON_SIZE_DEFAULT,
227                         max(textHeight, self.ICON_SIZE_DEFAULT),
228                 )
229
230         def show(self, palette):
231                 self.palette = palette
232
233                 if (
234                         self._cachedOuterRadius != self._filing.outerRadius() or
235                         self._cachedInnerRadius != self._filing.innerRadius()
236                 ):
237                         self._cachedOuterRadius = self._filing.outerRadius()
238                         self._cachedInnerRadius = self._filing.innerRadius()
239                         self._canvas = self._canvas.scaled(self.pieSize())
240
241                 if self._mask is None:
242                         self._mask = QtGui.QBitmap(self._canvas.size())
243                         self._mask.fill(QtCore.Qt.color0)
244                         self._generate_mask(self._mask)
245                         self._canvas.setMask(self._mask)
246                 return self._mask
247
248         def hide(self):
249                 self.palette = None
250
251         def paint(self, selectionIndex):
252                 painter = QtGui.QPainter(self._canvas)
253                 painter.setRenderHint(QtGui.QPainter.Antialiasing, True)
254
255                 adjustmentRect = self._canvas.rect().adjusted(0, 0, -1, -1)
256
257                 numChildren = len(self._filing)
258                 if numChildren == 0:
259                         if selectionIndex == PieFiling.SELECTION_CENTER and self._filing.center().isEnabled():
260                                 painter.setBrush(self.palette.highlight())
261                         else:
262                                 painter.setBrush(self.palette.window())
263                         painter.setPen(self.palette.mid().color())
264
265                         painter.drawRect(self._canvas.rect())
266                         self._paint_center_foreground(painter, selectionIndex)
267                         return self._canvas
268                 elif numChildren == 1:
269                         if selectionIndex == 0 and self._filing[0].isEnabled():
270                                 painter.setBrush(self.palette.highlight())
271                         else:
272                                 painter.setBrush(self.palette.window())
273
274                         painter.fillRect(self._canvas.rect(), painter.brush())
275                 else:
276                         for i in xrange(len(self._filing)):
277                                 self._paint_slice_background(painter, adjustmentRect, i, selectionIndex)
278
279                 self._paint_center_background(painter, adjustmentRect, selectionIndex)
280                 self._paint_center_foreground(painter, selectionIndex)
281
282                 for i in xrange(len(self._filing)):
283                         self._paint_slice_foreground(painter, i, selectionIndex)
284
285                 return self._canvas
286
287         def _generate_mask(self, mask):
288                 """
289                 Specifies on the mask the shape of the pie menu
290                 """
291                 painter = QtGui.QPainter(mask)
292                 painter.setPen(QtCore.Qt.color1)
293                 painter.setBrush(QtCore.Qt.color1)
294                 painter.drawEllipse(mask.rect().adjusted(0, 0, -1, -1))
295
296         def _paint_slice_background(self, painter, adjustmentRect, i, selectionIndex):
297                 if i == selectionIndex and self._filing[i].isEnabled():
298                         painter.setBrush(self.palette.highlight())
299                 else:
300                         painter.setBrush(self.palette.window())
301                 painter.setPen(self.palette.mid().color())
302
303                 a = self._filing._index_to_angle(i, True)
304                 b = self._filing._index_to_angle(i + 1, True)
305                 if b < a:
306                         b += _TWOPI
307                 size = b - a
308                 if size < 0:
309                         size += _TWOPI
310
311                 startAngleInDeg = (a * 360 * 16) / _TWOPI
312                 sizeInDeg = (size * 360 * 16) / _TWOPI
313                 painter.drawPie(adjustmentRect, int(startAngleInDeg), int(sizeInDeg))
314
315         def _paint_slice_foreground(self, painter, i, selectionIndex):
316                 child = self._filing[i]
317
318                 a = self._filing._index_to_angle(i, True)
319                 b = self._filing._index_to_angle(i + 1, True)
320                 if b < a:
321                         b += _TWOPI
322                 middleAngle = (a + b) / 2
323                 averageRadius = (self._cachedInnerRadius + self._cachedOuterRadius) / 2
324
325                 sliceX = averageRadius * math.cos(middleAngle)
326                 sliceY = - averageRadius * math.sin(middleAngle)
327
328                 piePos = self._canvas.rect().center()
329                 pieX = piePos.x()
330                 pieY = piePos.y()
331                 self._paint_label(
332                         painter, child.action(), i == selectionIndex, pieX+sliceX, pieY+sliceY
333                 )
334
335         def _paint_label(self, painter, action, isSelected, x, y):
336                 text = action.text()
337                 fontMetrics = painter.fontMetrics()
338                 if text:
339                         textBoundingRect = fontMetrics.boundingRect(text)
340                 else:
341                         textBoundingRect = QtCore.QRect()
342                 textWidth = textBoundingRect.width()
343                 textHeight = textBoundingRect.height()
344
345                 icon = action.icon().pixmap(
346                         QtCore.QSize(self.ICON_SIZE_DEFAULT, self.ICON_SIZE_DEFAULT),
347                         QtGui.QIcon.Normal,
348                         QtGui.QIcon.On,
349                 )
350                 iconWidth = icon.width()
351                 iconHeight = icon.width()
352                 averageWidth = (iconWidth + textWidth)/2
353                 if not icon.isNull():
354                         iconRect = QtCore.QRect(
355                                 x - averageWidth,
356                                 y - iconHeight/2,
357                                 iconWidth,
358                                 iconHeight,
359                         )
360
361                         painter.drawPixmap(iconRect, icon)
362
363                 if text:
364                         if isSelected:
365                                 if action.isEnabled():
366                                         pen = self.palette.highlightedText()
367                                         brush = self.palette.highlight()
368                                 else:
369                                         pen = self.palette.mid()
370                                         brush = self.palette.window()
371                         else:
372                                 if action.isEnabled():
373                                         pen = self.palette.windowText()
374                                 else:
375                                         pen = self.palette.mid()
376                                 brush = self.palette.window()
377
378                         leftX = x - averageWidth + iconWidth
379                         topY = y + textHeight/2
380                         painter.setPen(pen.color())
381                         painter.setBrush(brush)
382                         painter.drawText(leftX, topY, text)
383
384         def _paint_center_background(self, painter, adjustmentRect, selectionIndex):
385                 dark = self.palette.dark().color()
386                 light = self.palette.light().color()
387                 if selectionIndex == PieFiling.SELECTION_CENTER and self._filing.center().isEnabled():
388                         background = self.palette.highlight().color()
389                 else:
390                         background = self.palette.window().color()
391
392                 innerRadius = self._cachedInnerRadius
393                 adjustmentCenterPos = adjustmentRect.center()
394                 innerRect = QtCore.QRect(
395                         adjustmentCenterPos.x() - innerRadius,
396                         adjustmentCenterPos.y() - innerRadius,
397                         innerRadius * 2 + 1,
398                         innerRadius * 2 + 1,
399                 )
400
401                 painter.setPen(QtCore.Qt.NoPen)
402                 painter.setBrush(background)
403                 painter.drawPie(innerRect, 0, 360 * 16)
404
405                 painter.setPen(QtGui.QPen(dark, 1))
406                 painter.setBrush(QtCore.Qt.NoBrush)
407                 painter.drawEllipse(innerRect)
408
409                 painter.setPen(QtGui.QPen(dark, 1))
410                 painter.setBrush(QtCore.Qt.NoBrush)
411                 painter.drawEllipse(adjustmentRect)
412
413                 r = QtCore.QRect(innerRect)
414                 innerCenter = r.center()
415                 innerRect.setLeft(innerCenter.x() + ((r.left() - innerCenter.x()) / 3) * 1)
416                 innerRect.setRight(innerCenter.x() + ((r.right() - innerCenter.x()) / 3) * 1)
417                 innerRect.setTop(innerCenter.y() + ((r.top() - innerCenter.y()) / 3) * 1)
418                 innerRect.setBottom(innerCenter.y() + ((r.bottom() - innerCenter.y()) / 3) * 1)
419
420         def _paint_center_foreground(self, painter, selectionIndex):
421                 centerPos = self._canvas.rect().center()
422                 pieX = centerPos.x()
423                 pieY = centerPos.y()
424
425                 x = pieX
426                 y = pieY
427
428                 self._paint_label(
429                         painter,
430                         self._filing.center().action(),
431                         selectionIndex == PieFiling.SELECTION_CENTER,
432                         x, y
433                 )
434
435
436 class QPieDisplay(QtGui.QWidget):
437
438         def __init__(self, filing, parent = None, flags = QtCore.Qt.Window):
439                 QtGui.QWidget.__init__(self, parent, flags)
440                 self._filing = filing
441                 self._artist = PieArtist(self._filing)
442                 self._selectionIndex = PieFiling.SELECTION_NONE
443
444         def popup(self, pos):
445                 self._update_selection(pos)
446                 self.show()
447
448         def sizeHint(self):
449                 return self._artist.pieSize()
450
451         @misc_utils.log_exception(_moduleLogger)
452         def showEvent(self, showEvent):
453                 mask = self._artist.show(self.palette())
454                 self.setMask(mask)
455
456                 QtGui.QWidget.showEvent(self, showEvent)
457
458         @misc_utils.log_exception(_moduleLogger)
459         def hideEvent(self, hideEvent):
460                 self._artist.hide()
461                 self._selectionIndex = PieFiling.SELECTION_NONE
462                 QtGui.QWidget.hideEvent(self, hideEvent)
463
464         @misc_utils.log_exception(_moduleLogger)
465         def paintEvent(self, paintEvent):
466                 canvas = self._artist.paint(self._selectionIndex)
467
468                 screen = QtGui.QPainter(self)
469                 screen.drawPixmap(QtCore.QPoint(0, 0), canvas)
470
471                 QtGui.QWidget.paintEvent(self, paintEvent)
472
473         def selectAt(self, index):
474                 oldIndex = self._selectionIndex
475                 self._selectionIndex = index
476                 if self.isVisible():
477                         self.update()
478
479
480 class QPieButton(QtGui.QWidget):
481
482         activated = QtCore.pyqtSignal(int)
483         highlighted = QtCore.pyqtSignal(int)
484         canceled = QtCore.pyqtSignal()
485         aboutToShow = QtCore.pyqtSignal()
486         aboutToHide = QtCore.pyqtSignal()
487
488         BUTTON_RADIUS = 24
489         DELAY = 250
490
491         def __init__(self, buttonSlice, parent = None):
492                 # @bug Artifacts on Maemo 5 due to window 3D effects, find way to disable them for just these?
493                 QtGui.QWidget.__init__(self, parent)
494                 self._cachedCenterPosition = self.rect().center()
495
496                 self._filing = PieFiling()
497                 self._display = QPieDisplay(self._filing, None, QtCore.Qt.SplashScreen)
498                 self._selectionIndex = PieFiling.SELECTION_NONE
499
500                 self._buttonFiling = PieFiling()
501                 self._buttonFiling.set_center(buttonSlice)
502                 # @todo Figure out how to make the button auto-fill to content
503                 self._buttonFiling.setOuterRadius(self.BUTTON_RADIUS)
504                 self._buttonArtist = PieArtist(self._buttonFiling)
505                 self._poppedUp = False
506
507                 self._delayPopupTimer = QtCore.QTimer()
508                 self._delayPopupTimer.setInterval(self.DELAY)
509                 self._delayPopupTimer.setSingleShot(True)
510                 self._delayPopupTimer.timeout.connect(self._on_delayed_popup)
511                 self._popupLocation = None
512
513                 self._mousePosition = None
514                 self.setFocusPolicy(QtCore.Qt.StrongFocus)
515
516         def insertItem(self, item, index = -1):
517                 self._filing.insertItem(item, index)
518
519         def removeItemAt(self, index):
520                 self._filing.removeItemAt(index)
521
522         def set_center(self, item):
523                 self._filing.set_center(item)
524
525         def set_button(self, item):
526                 self.update()
527
528         def clear(self):
529                 self._filing.clear()
530
531         def itemAt(self, index):
532                 return self._filing.itemAt(index)
533
534         def indexAt(self, point):
535                 return self._filing.indexAt(self._cachedCenterPosition, point)
536
537         def innerRadius(self):
538                 return self._filing.innerRadius()
539
540         def setInnerRadius(self, radius):
541                 self._filing.setInnerRadius(radius)
542
543         def outerRadius(self):
544                 return self._filing.outerRadius()
545
546         def setOuterRadius(self, radius):
547                 self._filing.setOuterRadius(radius)
548
549         def buttonRadius(self):
550                 return self._buttonFiling.outerRadius()
551
552         def setButtonRadius(self, radius):
553                 self._buttonFiling.setOuterRadius(radius)
554
555         def sizeHint(self):
556                 return self._buttonArtist.pieSize()
557
558         @misc_utils.log_exception(_moduleLogger)
559         def mousePressEvent(self, mouseEvent):
560                 lastSelection = self._selectionIndex
561
562                 lastMousePos = mouseEvent.pos()
563                 self._mousePosition = lastMousePos
564                 self._update_selection(self._cachedCenterPosition)
565
566                 self.highlighted.emit(self._selectionIndex)
567
568                 self._display.selectAt(self._selectionIndex)
569                 self._popupLocation = mouseEvent.globalPos()
570                 self._delayPopupTimer.start()
571
572         @misc_utils.log_exception(_moduleLogger)
573         def _on_delayed_popup(self):
574                 assert self._popupLocation is not None
575                 self._popup_child(self._popupLocation)
576
577         @misc_utils.log_exception(_moduleLogger)
578         def mouseMoveEvent(self, mouseEvent):
579                 lastSelection = self._selectionIndex
580
581                 lastMousePos = mouseEvent.pos()
582                 if self._mousePosition is None:
583                         # Absolute
584                         self._update_selection(lastMousePos)
585                 else:
586                         # Relative
587                         self._update_selection(self._cachedCenterPosition + (lastMousePos - self._mousePosition))
588
589                 if lastSelection != self._selectionIndex:
590                         self.highlighted.emit(self._selectionIndex)
591                         self._display.selectAt(self._selectionIndex)
592
593                 if self._selectionIndex != PieFiling.SELECTION_CENTER and self._delayPopupTimer.isActive():
594                         self._on_delayed_popup()
595
596         @misc_utils.log_exception(_moduleLogger)
597         def mouseReleaseEvent(self, mouseEvent):
598                 self._delayPopupTimer.stop()
599                 self._popupLocation = None
600
601                 lastSelection = self._selectionIndex
602
603                 lastMousePos = mouseEvent.pos()
604                 if self._mousePosition is None:
605                         # Absolute
606                         self._update_selection(lastMousePos)
607                 else:
608                         # Relative
609                         self._update_selection(self._cachedCenterPosition + (lastMousePos - self._mousePosition))
610                 self._mousePosition = None
611
612                 self._activate_at(self._selectionIndex)
613                 self._hide_child()
614
615         @misc_utils.log_exception(_moduleLogger)
616         def keyPressEvent(self, keyEvent):
617                 if keyEvent.key() in [QtCore.Qt.Key_Right, QtCore.Qt.Key_Down, QtCore.Qt.Key_Tab]:
618                         self._popup_child(QtGui.QCursor.pos())
619                         if self._selectionIndex != len(self._filing) - 1:
620                                 nextSelection = self._selectionIndex + 1
621                         else:
622                                 nextSelection = 0
623                         self._select_at(nextSelection)
624                         self._display.selectAt(self._selectionIndex)
625                 elif keyEvent.key() in [QtCore.Qt.Key_Left, QtCore.Qt.Key_Up, QtCore.Qt.Key_Backtab]:
626                         self._popup_child(QtGui.QCursor.pos())
627                         if 0 < self._selectionIndex:
628                                 nextSelection = self._selectionIndex - 1
629                         else:
630                                 nextSelection = len(self._filing) - 1
631                         self._select_at(nextSelection)
632                         self._display.selectAt(self._selectionIndex)
633                 elif keyEvent.key() in [QtCore.Qt.Key_Space]:
634                         self._popup_child(QtGui.QCursor.pos())
635                         self._select_at(PieFiling.SELECTION_CENTER)
636                         self._display.selectAt(self._selectionIndex)
637                 elif keyEvent.key() in [QtCore.Qt.Key_Return, QtCore.Qt.Key_Enter, QtCore.Qt.Key_Space]:
638                         self._delayPopupTimer.stop()
639                         self._popupLocation = None
640                         self._activate_at(self._selectionIndex)
641                         self._hide_child()
642                 elif keyEvent.key() in [QtCore.Qt.Key_Escape, QtCore.Qt.Key_Backspace]:
643                         self._delayPopupTimer.stop()
644                         self._popupLocation = None
645                         self._activate_at(PieFiling.SELECTION_NONE)
646                         self._hide_child()
647                 else:
648                         QtGui.QWidget.keyPressEvent(self, keyEvent)
649
650         @misc_utils.log_exception(_moduleLogger)
651         def showEvent(self, showEvent):
652                 self._buttonArtist.show(self.palette())
653                 self._cachedCenterPosition = self.rect().center()
654
655                 QtGui.QWidget.showEvent(self, showEvent)
656
657         @misc_utils.log_exception(_moduleLogger)
658         def hideEvent(self, hideEvent):
659                 self._display.hide()
660                 self._select_at(PieFiling.SELECTION_NONE)
661                 QtGui.QWidget.hideEvent(self, hideEvent)
662
663         @misc_utils.log_exception(_moduleLogger)
664         def paintEvent(self, paintEvent):
665                 if self._poppedUp:
666                         canvas = self._buttonArtist.paint(PieFiling.SELECTION_CENTER)
667                 else:
668                         canvas = self._buttonArtist.paint(PieFiling.SELECTION_NONE)
669
670                 screen = QtGui.QPainter(self)
671                 screen.drawPixmap(QtCore.QPoint(0, 0), canvas)
672
673                 QtGui.QWidget.paintEvent(self, paintEvent)
674
675         def __iter__(self):
676                 return iter(self._filing)
677
678         def __len__(self):
679                 return len(self._filing)
680
681         def _popup_child(self, position):
682                 self._poppedUp = True
683                 self.aboutToShow.emit()
684
685                 self._delayPopupTimer.stop()
686                 self._popupLocation = None
687
688                 position = position - QtCore.QPoint(self._filing.outerRadius(), self._filing.outerRadius())
689                 self._display.move(position)
690                 self._display.show()
691
692                 self.update()
693
694         def _hide_child(self):
695                 self._poppedUp = False
696                 self.aboutToHide.emit()
697                 self._display.hide()
698                 self.update()
699
700         def _select_at(self, index):
701                 self._selectionIndex = index
702
703         def _update_selection(self, lastMousePos):
704                 radius = _radius_at(self._cachedCenterPosition, lastMousePos)
705                 if radius < self._filing.innerRadius():
706                         self._select_at(PieFiling.SELECTION_CENTER)
707                 elif radius <= self._filing.outerRadius():
708                         self._select_at(self.indexAt(lastMousePos))
709                 else:
710                         self._select_at(PieFiling.SELECTION_NONE)
711
712         def _activate_at(self, index):
713                 if index == PieFiling.SELECTION_NONE:
714                         self.canceled.emit()
715                         return
716                 elif index == PieFiling.SELECTION_CENTER:
717                         child = self._filing.center()
718                 else:
719                         child = self.itemAt(index)
720
721                 if child.action().isEnabled():
722                         child.action().trigger()
723                         self.activated.emit(index)
724                 else:
725                         self.canceled.emit()
726
727
728 class QPieMenu(QtGui.QWidget):
729
730         activated = QtCore.pyqtSignal(int)
731         highlighted = QtCore.pyqtSignal(int)
732         canceled = QtCore.pyqtSignal()
733         aboutToShow = QtCore.pyqtSignal()
734         aboutToHide = QtCore.pyqtSignal()
735
736         def __init__(self, parent = None):
737                 QtGui.QWidget.__init__(self, parent)
738                 self._cachedCenterPosition = self.rect().center()
739
740                 self._filing = PieFiling()
741                 self._artist = PieArtist(self._filing)
742                 self._selectionIndex = PieFiling.SELECTION_NONE
743
744                 self._mousePosition = ()
745                 self.setFocusPolicy(QtCore.Qt.StrongFocus)
746
747         def popup(self, pos):
748                 self._update_selection(pos)
749                 self.show()
750
751         def insertItem(self, item, index = -1):
752                 self._filing.insertItem(item, index)
753                 self.update()
754
755         def removeItemAt(self, index):
756                 self._filing.removeItemAt(index)
757                 self.update()
758
759         def set_center(self, item):
760                 self._filing.set_center(item)
761                 self.update()
762
763         def clear(self):
764                 self._filing.clear()
765                 self.update()
766
767         def itemAt(self, index):
768                 return self._filing.itemAt(index)
769
770         def indexAt(self, point):
771                 return self._filing.indexAt(self._cachedCenterPosition, point)
772
773         def innerRadius(self):
774                 return self._filing.innerRadius()
775
776         def setInnerRadius(self, radius):
777                 self._filing.setInnerRadius(radius)
778                 self.update()
779
780         def outerRadius(self):
781                 return self._filing.outerRadius()
782
783         def setOuterRadius(self, radius):
784                 self._filing.setOuterRadius(radius)
785                 self.update()
786
787         def sizeHint(self):
788                 return self._artist.pieSize()
789
790         @misc_utils.log_exception(_moduleLogger)
791         def mousePressEvent(self, mouseEvent):
792                 lastSelection = self._selectionIndex
793
794                 lastMousePos = mouseEvent.pos()
795                 self._update_selection(lastMousePos)
796                 self._mousePosition = lastMousePos
797
798                 if lastSelection != self._selectionIndex:
799                         self.highlighted.emit(self._selectionIndex)
800                         self.update()
801
802         @misc_utils.log_exception(_moduleLogger)
803         def mouseMoveEvent(self, mouseEvent):
804                 lastSelection = self._selectionIndex
805
806                 lastMousePos = mouseEvent.pos()
807                 self._update_selection(lastMousePos)
808
809                 if lastSelection != self._selectionIndex:
810                         self.highlighted.emit(self._selectionIndex)
811                         self.update()
812
813         @misc_utils.log_exception(_moduleLogger)
814         def mouseReleaseEvent(self, mouseEvent):
815                 lastSelection = self._selectionIndex
816
817                 lastMousePos = mouseEvent.pos()
818                 self._update_selection(lastMousePos)
819                 self._mousePosition = ()
820
821                 self._activate_at(self._selectionIndex)
822                 self.update()
823
824         @misc_utils.log_exception(_moduleLogger)
825         def keyPressEvent(self, keyEvent):
826                 if keyEvent.key() in [QtCore.Qt.Key_Right, QtCore.Qt.Key_Down, QtCore.Qt.Key_Tab]:
827                         if self._selectionIndex != len(self._filing) - 1:
828                                 nextSelection = self._selectionIndex + 1
829                         else:
830                                 nextSelection = 0
831                         self._select_at(nextSelection)
832                         self.update()
833                 elif keyEvent.key() in [QtCore.Qt.Key_Left, QtCore.Qt.Key_Up, QtCore.Qt.Key_Backtab]:
834                         if 0 < self._selectionIndex:
835                                 nextSelection = self._selectionIndex - 1
836                         else:
837                                 nextSelection = len(self._filing) - 1
838                         self._select_at(nextSelection)
839                         self.update()
840                 elif keyEvent.key() in [QtCore.Qt.Key_Return, QtCore.Qt.Key_Enter, QtCore.Qt.Key_Space]:
841                         self._activate_at(self._selectionIndex)
842                 elif keyEvent.key() in [QtCore.Qt.Key_Escape, QtCore.Qt.Key_Backspace]:
843                         self._activate_at(PieFiling.SELECTION_NONE)
844                 else:
845                         QtGui.QWidget.keyPressEvent(self, keyEvent)
846
847         @misc_utils.log_exception(_moduleLogger)
848         def showEvent(self, showEvent):
849                 self.aboutToShow.emit()
850                 self._cachedCenterPosition = self.rect().center()
851
852                 mask = self._artist.show(self.palette())
853                 self.setMask(mask)
854
855                 lastMousePos = self.mapFromGlobal(QtGui.QCursor.pos())
856                 self._update_selection(lastMousePos)
857
858                 QtGui.QWidget.showEvent(self, showEvent)
859
860         @misc_utils.log_exception(_moduleLogger)
861         def hideEvent(self, hideEvent):
862                 self._artist.hide()
863                 self._selectionIndex = PieFiling.SELECTION_NONE
864                 QtGui.QWidget.hideEvent(self, hideEvent)
865
866         @misc_utils.log_exception(_moduleLogger)
867         def paintEvent(self, paintEvent):
868                 canvas = self._artist.paint(self._selectionIndex)
869
870                 screen = QtGui.QPainter(self)
871                 screen.drawPixmap(QtCore.QPoint(0, 0), canvas)
872
873                 QtGui.QWidget.paintEvent(self, paintEvent)
874
875         def __iter__(self):
876                 return iter(self._filing)
877
878         def __len__(self):
879                 return len(self._filing)
880
881         def _select_at(self, index):
882                 self._selectionIndex = index
883
884         def _update_selection(self, lastMousePos):
885                 radius = _radius_at(self._cachedCenterPosition, lastMousePos)
886                 if radius < self._filing.innerRadius():
887                         self._selectionIndex = PieFiling.SELECTION_CENTER
888                 elif radius <= self._filing.outerRadius():
889                         self._select_at(self.indexAt(lastMousePos))
890                 else:
891                         self._selectionIndex = PieFiling.SELECTION_NONE
892
893         def _activate_at(self, index):
894                 if index == PieFiling.SELECTION_NONE:
895                         self.canceled.emit()
896                         self.aboutToHide.emit()
897                         self.hide()
898                         return
899                 elif index == PieFiling.SELECTION_CENTER:
900                         child = self._filing.center()
901                 else:
902                         child = self.itemAt(index)
903
904                 if child.isEnabled():
905                         child.action().trigger()
906                         self.activated.emit(index)
907                 else:
908                         self.canceled.emit()
909                 self.aboutToHide.emit()
910                 self.hide()
911
912
913 def init_pies():
914         PieFiling.NULL_CENTER.setEnabled(False)
915
916
917 def _print(msg):
918         print msg
919
920
921 def _on_about_to_hide(app):
922         app.exit()
923
924
925 if __name__ == "__main__":
926         app = QtGui.QApplication([])
927         init_pies()
928
929         if False:
930                 pie = QPieMenu()
931                 pie.show()
932
933         if False:
934                 singleAction = QtGui.QAction(None)
935                 singleAction.setText("Boo")
936                 singleItem = QActionPieItem(singleAction)
937                 spie = QPieMenu()
938                 spie.insertItem(singleItem)
939                 spie.show()
940
941         if False:
942                 oneAction = QtGui.QAction(None)
943                 oneAction.setText("Chew")
944                 oneItem = QActionPieItem(oneAction)
945                 twoAction = QtGui.QAction(None)
946                 twoAction.setText("Foo")
947                 twoItem = QActionPieItem(twoAction)
948                 iconTextAction = QtGui.QAction(None)
949                 iconTextAction.setText("Icon")
950                 iconTextAction.setIcon(QtGui.QIcon.fromTheme("gtk-close"))
951                 iconTextItem = QActionPieItem(iconTextAction)
952                 mpie = QPieMenu()
953                 mpie.insertItem(oneItem)
954                 mpie.insertItem(twoItem)
955                 mpie.insertItem(oneItem)
956                 mpie.insertItem(iconTextItem)
957                 mpie.show()
958
959         if True:
960                 oneAction = QtGui.QAction(None)
961                 oneAction.setText("Chew")
962                 oneAction.triggered.connect(lambda: _print("Chew"))
963                 oneItem = QActionPieItem(oneAction)
964                 twoAction = QtGui.QAction(None)
965                 twoAction.setText("Foo")
966                 twoAction.triggered.connect(lambda: _print("Foo"))
967                 twoItem = QActionPieItem(twoAction)
968                 iconAction = QtGui.QAction(None)
969                 iconAction.setIcon(QtGui.QIcon.fromTheme("gtk-open"))
970                 iconAction.triggered.connect(lambda: _print("Icon"))
971                 iconItem = QActionPieItem(iconAction)
972                 iconTextAction = QtGui.QAction(None)
973                 iconTextAction.setText("Icon")
974                 iconTextAction.setIcon(QtGui.QIcon.fromTheme("gtk-close"))
975                 iconTextAction.triggered.connect(lambda: _print("Icon and text"))
976                 iconTextItem = QActionPieItem(iconTextAction)
977                 mpie = QPieMenu()
978                 mpie.set_center(iconItem)
979                 mpie.insertItem(oneItem)
980                 mpie.insertItem(twoItem)
981                 mpie.insertItem(oneItem)
982                 mpie.insertItem(iconTextItem)
983                 mpie.show()
984                 mpie.aboutToHide.connect(lambda: _on_about_to_hide(app))
985                 mpie.canceled.connect(lambda: _print("Canceled"))
986
987         if False:
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                 pieFiling = PieFiling()
1006                 pieFiling.set_center(iconItem)
1007                 pieFiling.insertItem(oneItem)
1008                 pieFiling.insertItem(twoItem)
1009                 pieFiling.insertItem(oneItem)
1010                 pieFiling.insertItem(iconTextItem)
1011                 mpie = QPieDisplay(pieFiling)
1012                 mpie.show()
1013
1014         if False:
1015                 oneAction = QtGui.QAction(None)
1016                 oneAction.setText("Chew")
1017                 oneAction.triggered.connect(lambda: _print("Chew"))
1018                 oneItem = QActionPieItem(oneAction)
1019                 twoAction = QtGui.QAction(None)
1020                 twoAction.setText("Foo")
1021                 twoAction.triggered.connect(lambda: _print("Foo"))
1022                 twoItem = QActionPieItem(twoAction)
1023                 iconAction = QtGui.QAction(None)
1024                 iconAction.setIcon(QtGui.QIcon.fromTheme("gtk-open"))
1025                 iconAction.triggered.connect(lambda: _print("Icon"))
1026                 iconItem = QActionPieItem(iconAction)
1027                 iconTextAction = QtGui.QAction(None)
1028                 iconTextAction.setText("Icon")
1029                 iconTextAction.setIcon(QtGui.QIcon.fromTheme("gtk-close"))
1030                 iconTextAction.triggered.connect(lambda: _print("Icon and text"))
1031                 iconTextItem = QActionPieItem(iconTextAction)
1032                 mpie = QPieButton(iconItem)
1033                 mpie.set_center(iconItem)
1034                 mpie.insertItem(oneItem)
1035                 mpie.insertItem(twoItem)
1036                 mpie.insertItem(oneItem)
1037                 mpie.insertItem(iconTextItem)
1038                 mpie.show()
1039                 mpie.aboutToHide.connect(lambda: _on_about_to_hide(app))
1040                 mpie.canceled.connect(lambda: _print("Canceled"))
1041
1042         app.exec_()