From 8b1bba629a99cb8d4afd4d114db66f637acf222c Mon Sep 17 00:00:00 2001 From: Lars Uebernickel Date: Tue, 13 Aug 2013 16:05:52 +0200 Subject: Add IdoApplicationMenuItem A menu item representing an application. It can show whether the application is running or not (based on action state). --- src/idomenuitemfactory.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/idomenuitemfactory.c') diff --git a/src/idomenuitemfactory.c b/src/idomenuitemfactory.c index 0b38941..8802a7d 100644 --- a/src/idomenuitemfactory.c +++ b/src/idomenuitemfactory.c @@ -29,6 +29,7 @@ #include "idousermenuitem.h" #include "idomediaplayermenuitem.h" #include "idoplaybackmenuitem.h" +#include "idoapplicationmenuitem.h" #define IDO_TYPE_MENU_ITEM_FACTORY (ido_menu_item_factory_get_type ()) #define IDO_MENU_ITEM_FACTORY(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), IDO_TYPE_MENU_ITEM_FACTORY, IdoMenuItemFactory)) @@ -83,6 +84,9 @@ ido_menu_item_factory_create_menu_item (UbuntuMenuItemFactory *factory, else if (g_str_equal (type, "com.canonical.unity.playback-item")) item = ido_playback_menu_item_new_from_model (menuitem, actions); + else if (g_str_equal (type, "com.canonical.application")) + item = ido_application_menu_item_new_from_model (menuitem, actions); + return item; } -- cgit v1.2.3