54 lines
1.9 KiB
C
54 lines
1.9 KiB
C
/*
|
|
* moomenutoolbutton.h
|
|
*
|
|
* Copyright (C) 2004-2006 by Yevgen Muntyan <muntyan@math.tamu.edu>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* See COPYING file that comes with this distribution.
|
|
*/
|
|
|
|
#ifndef __MOO_MENU_TOOL_BUTTON_H__
|
|
#define __MOO_MENU_TOOL_BUTTON_H__
|
|
|
|
#include <gtk/gtktoggletoolbutton.h>
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define MOO_TYPE_MENU_TOOL_BUTTON (moo_menu_tool_button_get_type ())
|
|
#define MOO_MENU_TOOL_BUTTON(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), MOO_TYPE_MENU_TOOL_BUTTON, MooMenuToolButton))
|
|
#define MOO_MENU_TOOL_BUTTON_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), MOO_TYPE_MENU_TOOL_BUTTON, MooMenuToolButtonClass))
|
|
#define MOO_IS_MENU_TOOL_BUTTON(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MOO_TYPE_MENU_TOOL_BUTTON))
|
|
#define MOO_IS_MENU_TOOL_BUTTON_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), MOO_TYPE_MENU_TOOL_BUTTON))
|
|
#define MOO_MENU_TOOL_BUTTON_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MOO_TYPE_MENU_TOOL_BUTTON, MooMenuToolButtonClass))
|
|
|
|
typedef struct _MooMenuToolButton MooMenuToolButton;
|
|
typedef struct _MooMenuToolButtonClass MooMenuToolButtonClass;
|
|
|
|
struct _MooMenuToolButton {
|
|
GtkToggleToolButton parent;
|
|
GtkWidget *menu;
|
|
};
|
|
|
|
struct _MooMenuToolButtonClass {
|
|
GtkToggleToolButtonClass parent_class;
|
|
};
|
|
|
|
|
|
GType moo_menu_tool_button_get_type (void) G_GNUC_CONST;
|
|
GtkWidget *moo_menu_tool_button_new (void);
|
|
|
|
void moo_menu_tool_button_set_menu (MooMenuToolButton *button,
|
|
GtkWidget *menu);
|
|
GtkWidget *moo_menu_tool_button_get_menu (MooMenuToolButton *button);
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
#endif /* __MOO_MENU_TOOL_BUTTON_H__ */
|