2005-06-22 18:20:32 +00:00
|
|
|
/*
|
2005-10-13 14:08:18 +00:00
|
|
|
* moomenuaction.h
|
2005-06-22 18:20:32 +00:00
|
|
|
*
|
2010-12-21 20:15:45 -08:00
|
|
|
* Copyright (C) 2004-2010 by Yevgen Muntyan <emuntyan@users.sourceforge.net>
|
2005-06-22 18:20:32 +00:00
|
|
|
*
|
2008-09-05 17:20:50 -05:00
|
|
|
* This file is part of medit. medit is free software; you can
|
|
|
|
* redistribute it and/or modify it under the terms of the
|
|
|
|
* GNU Lesser General Public License as published by the
|
|
|
|
* Free Software Foundation; either version 2.1 of the License,
|
|
|
|
* or (at your option) any later version.
|
2005-06-22 18:20:32 +00:00
|
|
|
*
|
2008-09-05 17:20:50 -05:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with medit. If not, see <http://www.gnu.org/licenses/>.
|
2005-06-22 18:20:32 +00:00
|
|
|
*/
|
|
|
|
|
2007-04-12 10:31:28 -05:00
|
|
|
#ifndef MOO_MENU_ACTION_H
|
|
|
|
#define MOO_MENU_ACTION_H
|
2005-06-22 18:20:32 +00:00
|
|
|
|
2005-10-13 14:08:18 +00:00
|
|
|
#include <mooutils/mooaction.h>
|
|
|
|
#include <mooutils/moomenumgr.h>
|
2005-06-22 18:20:32 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
|
|
|
|
#define MOO_TYPE_MENU_ACTION (moo_menu_action_get_type ())
|
|
|
|
#define MOO_MENU_ACTION(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), MOO_TYPE_MENU_ACTION, MooMenuAction))
|
|
|
|
#define MOO_MENU_ACTION_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), MOO_TYPE_MENU_ACTION, MooMenuActionClass))
|
|
|
|
#define MOO_IS_MENU_ACTION(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), MOO_TYPE_MENU_ACTION))
|
|
|
|
#define MOO_IS_MENU_ACTION_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), MOO_TYPE_MENU_ACTION))
|
|
|
|
#define MOO_MENU_ACTION_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MOO_TYPE_MENU_ACTION, MooMenuActionClass))
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct _MooMenuAction MooMenuAction;
|
|
|
|
typedef struct _MooMenuActionClass MooMenuActionClass;
|
|
|
|
|
2007-04-07 01:58:23 -05:00
|
|
|
typedef GtkWidget *(*MooMenuFunc) (GtkAction *action);
|
|
|
|
|
2005-06-22 18:20:32 +00:00
|
|
|
struct _MooMenuAction
|
|
|
|
{
|
2007-04-07 01:58:23 -05:00
|
|
|
MooAction base;
|
|
|
|
MooMenuFunc func;
|
|
|
|
MooMenuMgr *mgr;
|
|
|
|
gpointer data;
|
|
|
|
guint is_object : 1;
|
2005-06-22 18:20:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _MooMenuActionClass
|
|
|
|
{
|
2006-08-15 02:12:41 -05:00
|
|
|
MooActionClass base_class;
|
2005-06-22 18:20:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2005-10-13 14:08:18 +00:00
|
|
|
GType moo_menu_action_get_type (void) G_GNUC_CONST;
|
2005-06-22 18:20:32 +00:00
|
|
|
|
2006-05-08 23:57:16 -05:00
|
|
|
GtkAction *moo_menu_action_new (const char *id,
|
|
|
|
const char *label);
|
2005-06-22 18:20:32 +00:00
|
|
|
|
2005-10-13 14:08:18 +00:00
|
|
|
MooMenuMgr *moo_menu_action_get_mgr (MooMenuAction *action);
|
|
|
|
void moo_menu_action_set_mgr (MooMenuAction *action,
|
|
|
|
MooMenuMgr *mgr);
|
2007-04-07 01:58:23 -05:00
|
|
|
void moo_menu_action_set_func (MooMenuAction *action,
|
|
|
|
MooMenuFunc func);
|
2005-06-22 18:20:32 +00:00
|
|
|
|
2005-10-13 14:08:18 +00:00
|
|
|
void moo_menu_action_set_menu_data (MooMenuAction *action,
|
|
|
|
gpointer data,
|
|
|
|
gboolean is_object);
|
2005-06-22 18:20:32 +00:00
|
|
|
|
|
|
|
|
2005-10-13 14:08:18 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
2007-04-12 10:31:28 -05:00
|
|
|
#endif /* MOO_MENU_ACTION_H */
|