aboutsummaryrefslogtreecommitdiff
path: root/src/idoactionhelper.c
Commit message (Collapse)AuthorAgeFilesLines
* idoactionhelper: remove potentially stray idle source when finalizingLars Uebernickel2013-11-271-1/+6
|
* Library functions taking GVariant params need to ref_sink() and unref() ↵Ted Gould2013-08-131-0/+4
| | | | always. (reason #24 to not like GVariant)
* Add IdoSourceMenuItemLars Uebernickel2013-08-131-0/+20
| | | | | A menu item showing messaging menu sources.
* Add ido_action_helper_change_stateLars Uebernickel2013-05-311-0/+25
|
* IdoActionHelper: document signals and propertiesLars Uebernickel2013-05-271-0/+39
|
* Add IdoActionHelperLars Uebernickel2013-05-221-0/+364
This class contains some functionality that all menu items that are bound to an action need. It listens for action additions and removals, changes in enabled state, and state changes. It is _not_ intended to be used by specific menu items, but rather as the glue in IdoMenuItemFactory, to bind a widget to an action. An alternative way to reach the same goal is to have an IdoMenuItem base class which contains the common functionality. This would have required touching all existing menu items (slider, user menu item, media player items) and would have added more complexity to them. It is similar in spirit to GtkActionHelper (a private class in gtk), but very different in API and implementation.