aboutsummaryrefslogtreecommitdiff
path: root/src/idoswitchmenuitem.h
diff options
context:
space:
mode:
authorCharles Kerr <charles.kerr@canonical.com>2012-08-21 12:22:51 -0500
committerCharles Kerr <charles.kerr@canonical.com>2012-08-21 12:22:51 -0500
commit992e74684a09cf608442caf7503e0adf8eb2831d (patch)
tree4da989e2a1d65a62f72f104034cd6b9c66cbfd5a /src/idoswitchmenuitem.h
parent2a3f56b5168e9745547d2289c0710ae606920cde (diff)
downloadayatana-ido-992e74684a09cf608442caf7503e0adf8eb2831d.tar.gz
ayatana-ido-992e74684a09cf608442caf7503e0adf8eb2831d.tar.bz2
ayatana-ido-992e74684a09cf608442caf7503e0adf8eb2831d.zip
add IdoSwitchMenuItem
Diffstat (limited to 'src/idoswitchmenuitem.h')
-rw-r--r--src/idoswitchmenuitem.h55
1 files changed, 55 insertions, 0 deletions
diff --git a/src/idoswitchmenuitem.h b/src/idoswitchmenuitem.h
new file mode 100644
index 0000000..a63ec72
--- /dev/null
+++ b/src/idoswitchmenuitem.h
@@ -0,0 +1,55 @@
+/*
+ * Copyright © 2012 Canonical Ltd.
+ *
+ * This program is free software: you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 3, as
+ * published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranties of
+ * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
+ * PURPOSE. See the GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * Author: Charles Kerr <charles.kerr@canonical.com>
+ */
+
+#ifndef __IDO_SWITCH_MENU_ITEM_H__
+#define __IDO_SWITCH_MENU_ITEM_H__
+
+#include <gtk/gtk.h>
+
+G_BEGIN_DECLS
+
+#define IDO_TYPE_SWITCH_MENU_ITEM (ido_switch_menu_item_get_type ())
+#define IDO_SWITCH_MENU_ITEM(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), IDO_TYPE_SWITCH_MENU_ITEM, IdoSwitchMenuItem))
+#define IDO_SWITCH_MENU_ITEM_CLASS(c) (G_TYPE_CHECK_CLASS_CAST ((c), IDO_TYPE_SWITCH_MENU_ITEM, IdoSwitchMenuItemClass))
+#define IDO_IS_SWITCH_MENU_ITEM(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), IDO_TYPE_SWITCH_MENU_ITEM))
+#define IDO_IS_SWITCH_MENU_ITEM_CLASS(c) (G_TYPE_CHECK_CLASS_TYPE ((c), IDO_TYPE_SWITCH_MENU_ITEM))
+#define IDO_SWITCH_MENU_ITEM_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), IDO_TYPE_SWITCH_MENU_ITEM, IdoSwitchMenuItemClass))
+
+typedef struct _IdoSwitchMenuItem IdoSwitchMenuItem;
+typedef struct _IdoSwitchMenuItemClass IdoSwitchMenuItemClass;
+typedef struct _IdoSwitchMenuItemPrivate IdoSwitchMenuItemPrivate;
+
+struct _IdoSwitchMenuItem
+{
+ GtkCheckMenuItem parent_instance;
+
+ IdoSwitchMenuItemPrivate *priv;
+};
+
+struct _IdoSwitchMenuItemClass
+{
+ GtkCheckMenuItemClass parent_class;
+};
+
+GType ido_switch_menu_item_get_type (void) G_GNUC_CONST;
+GtkWidget *ido_switch_menu_item_new (void);
+GtkContainer *ido_switch_menu_item_get_content_area (IdoSwitchMenuItem * item);
+
+G_END_DECLS
+
+#endif /* __IDO_SWITCH_MENU_ITEM_H__ */