Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/sugar/graphics
Commit message (Collapse)AuthorAgeFilesLines
* Set property types as object so strings are not copiedTomeu Vizoso2009-01-041-3/+3
|
* Fix palette highlighting on tray icons. Patch by benzea, style tweaks by me.Marco Pesenti Gritti2008-12-181-6/+8
|
* Merge branch 'master' of git://git.sugarlabs.org/sugar-toolkit/mainlineMarco Pesenti Gritti2008-12-181-1/+1
|\
| * Use g_timeout_add_seconds() for power efficiencyDaniel Drake2008-12-181-1/+1
| | | | | | | | | | | | | | | | | | This attempts to align second-granularity wakeups across the system, reducing CPU wakeups a little. I considered all timeouts of duration 1 second or greater, and moved the non-timing-critical ones to g_timeout_add_seconds(). (Actually, I didn't find any that I felt were timing-critical)
* | Rework palette state logic. Fix #42Marco Pesenti Gritti2008-12-181-9/+7
|/
* Dont pop down the palette when a submenu opensTomeu Vizoso2008-12-071-2/+7
|
* Add colors to icons in menu itemsTomeu Vizoso2008-12-051-1/+4
|
* Add accelerator support to menu itemsTomeu Vizoso2008-12-052-7/+56
|
* Mark modules as STABLE/UNSTABLE/DEPRECATED.Marco Pesenti Gritti2008-10-2821-11/+86
|
* Fix up/down arrows in VTrays (#8617)Eben Eliason2008-10-181-8/+6
|
* Add drag-active property to tray control (#8604)Eben Eliason2008-10-181-6/+73
| | | | | | | | | | | The drag-active property can be set to provide a highlight when the tray control is accepting target of an ongoing drag. We can't use the drag_highlight method because we desire to adjust the background of the widget, rather than drawing on top of it. Overriding these methods would work in most cases, but in cases where GTK+ calls drag_unhighlight itself things could break, so we use a property instead.
* Make sure the mouse motion is stopped before starting it.Marco Pesenti Gritti2008-10-181-2/+2
|
* Fix up scaling calculations, had some regressions in the previous commits.Marco Pesenti Gritti2008-10-031-8/+3
|
* Respect SUGAR_SCALINGMarco Pesenti Gritti2008-10-031-8/+6
|
* Line too long fixes.Marco Pesenti Gritti2008-09-221-17/+22
|
* API docstrings from pydocwebDavid Farning2008-09-212-3/+255
|
* API docstrings from pydocwebDavid Farning2008-09-213-3/+140
|
* API docstrings from pydocwebDavid Farning2008-09-203-0/+185
|
* API docstring update from pydocwebDavid Farning2008-09-201-0/+10
|
* Trac #8563: sugar palette doesn't handle 'table menus'.C. Scott Ananian2008-09-191-0/+7
| | | | | | | | | | | | | | | | | The gtk Menu class supports 'table menus', where the menu entries can be laid out in a grid. This is useful for horizontal menus, and for dense menus of icons, and for wrapping the menu when it gets too long, etc. The Menu.attach() method is used to add entries to a menu by row and column: http://www.pygtk.org/docs/pygtk/class-gtkmenu.html#method-gtkmenu--attach However, the callback in _Menu, defined in palette.py, only triggers on do_insert(), and so the signal emission (and subsequent palette._update_separators() call, which places the line underneath the menu title text at top) never occurs when you add entries using attach(). _Menu now overrides attach() and emits the proper signal.
* #8485 Detach from palette when a widget is destroyedTomeu Vizoso2008-09-184-0/+24
|
* add parameters to docsDavid Farning2008-09-161-9/+60
|
* Break the reference cycle between menu and palette. #8469Marco Pesenti Gritti2008-09-131-0/+4
|
* #8394 Destroy the palette when the invoker is dettachedTomeu Vizoso2008-09-101-1/+4
|
* Remove "dynamic" font height computation #8392 (marco)Simon Schampijer2008-09-101-11/+2
|
* More cleanups to make pylint happy.Marco Pesenti Gritti2008-09-071-10/+21
|
* Get rid of the custom _hide/_show and just use the widgetMarco Pesenti Gritti2008-09-071-57/+26
| | | | methods. Related cleanups.
* Remove the set_size_request for the alert messageSimon Schampijer2008-08-251-3/+0
| | | | This gave problems on the xo - part of #7841
* Revert "#8000 Only repaint the area needed (rlucchese)"Tomeu Vizoso2008-08-221-23/+6
| | | | | | The bounds calculation won't be always correct. This reverts commit 3bb9f47461f903f515cc279a126f61c4b5e45ab5.
* #8000 Only repaint the area needed (rlucchese)Tomeu Vizoso2008-08-221-6/+23
|
*