2 * Copyright (c) 2010 Roman Moravcik <roman.moravcik@gmail.com>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 #ifndef MONITOR_STATUS_MENU_ITEM_H
19 #define MONITOR_STATUS_MENU_ITEM_H
21 #include <libhildondesktop/libhildondesktop.h>
25 #define MONITOR_TYPE_STATUS_MENU_ITEM (monitor_status_menu_item_get_type ())
26 #define MONITOR_STATUS_MENU_ITEM(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), MONITOR_TYPE_STATUS_MENU_ITEM, MonitorStatusMenuItem))
27 #define MONITOR_STATUS_MENU_ITEM_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), MONITOR_TYPE_STATUS_MENU_ITEM, MonitorStatusMenuItemClass))
28 #define MONITOR_IS_STATUS_MENU_ITEM(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MONITOR_TYPE_STATUS_MENU_ITEM))
29 #define MONITOR_IS_STATUS_MENU_ITEM_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), MONITOR_TYPE_STATUS_MENU_ITEM))
30 #define MONITOR_STATUS_MENU_ITEM_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MONITOR_TYPE_STATUS_MENU_ITEM, MonitorStatusMenuItemClass))
32 typedef struct _MonitorStatusMenuItem MonitorStatusMenuItem
;
33 typedef struct _MonitorStatusMenuItemClass MonitorStatusMenuItemClass
;
34 typedef struct _MonitorStatusMenuItemPrivate MonitorStatusMenuItemPrivate
;
36 struct _MonitorStatusMenuItem
38 HDStatusMenuItem parent
;
40 MonitorStatusMenuItemPrivate
*priv
;
43 struct _MonitorStatusMenuItemClass
45 HDStatusMenuItemClass parent
;
48 GType
monitor_status_menu_item_get_type (void);