aboutsummaryrefslogtreecommitdiff
path: root/src/idomenuitemfactory.c
Commit message (Collapse)AuthorAgeFilesLines
* Add level menu itemRobert Tari2023-05-051-0/+6
|
* Use consistent Ayatana IDO namesRobert Tari2021-09-201-6/+6
|
* Add a new menu item type: IDO RemovableRobert Tari2020-11-241-0/+4
|
* Remove ayatana-private.hRobert Tari2020-07-231-2/+1
|
* Fork ayatana-ido from Ubuntu's ido shared library.Mike Gabriel2015-11-061-18/+18
|
* Expose IdoBasicMenuItem as com.canonical.indicator.basicLars Uebernickel2014-03-271-0/+3
|
* idobasicmenuitem: put progress menu item into its own fileLars Uebernickel2014-03-261-0/+1
|
* Make IdoSwitchMenuItem accessible from gtk_menu_new_from_modelLars Uebernickel2013-10-221-0/+4
|
* Add IdoSourceMenuItemLars Uebernickel2013-08-131-0/+4
| | | | | A menu item showing messaging menu sources.
* Add IdoApplicationMenuItemLars Uebernickel2013-08-131-0/+4
| | | | | | A menu item representing an application. It can show whether the application is running or not (based on action state).
* add support for com.canonical.indicator.alarm menuitems.Charles Kerr2013-07-251-0/+4
|
* add a menuitem that renders com.canonical.indicator.progress as laid out in ↵Charles Kerr2013-07-241-0/+4
| | | | https://wiki.ubuntu.com/Power#Phone
* add ido_guest_menu_item_new_for_model()Charles Kerr2013-06-231-0/+3
|
* Merge trunkLars Uebernickel2013-06-191-1/+13
|\
| * add calendar, location, and appointment menuitems to the IDO factoryCharles Kerr2013-06-141-1/+13
| |
* | Add IdoPlaybackMenuItemLars Uebernickel2013-06-171-0/+4
| | | | | | | | | | | | | | A menu item that can control playback of a media player. Adapted from transport-widget.c formerly found in lp:indicator-sound.
* | Add IdoMediaPlayerMenuItemLars Uebernickel2013-06-121-0/+4
|/ | | | | | | | A menu item that shows a media player application and metadata about the currently running song. Adapted from metadata-widget.c formerly found in lp:indicator-sound.
* Add support for creating scale menu items from a menu modelLars Uebernickel2013-05-311-0/+4
|
* Move crate_user_menu_item into idousermenuitem.cLars Uebernickel2013-05-271-98/+1
| | | | | | We expect to have quite a few custom widgets. Having them all in idomenuitemfactory.c would clutter that file up too much.
* GtkMenuItemFactory -> UbuntuMenuItemFactoryLars Uebernickel2013-05-241-8/+9
|
* Create IdoUserMenuItems for indicator.user-menu-itemLars Uebernickel2013-05-231-1/+105
| | | | | | Only used by the indicator-session/ng branch right now. Doesn't create guest menu items yet.
* Add IdoMenuItemFactoryLars Uebernickel2013-05-221-0/+60
It's implementing the GtkMenuItemFactory extension point (only available in Ubuntu's version of gtk+). It doesn't create any menu items yet. The extension point must be registered before calling gtk_menu_new_from_model() with a menu model that references any of the custom menu items ido will provide. Registering means the type must exist in the type system. This patch adds an ido_init() which does that. Consumers of libido are required to call this function from now on.