medit/moo/mooedit/mooeditaction.h

64 lines
2.0 KiB
C
Raw Normal View History

2006-04-20 01:57:05 -07:00
/*
* mooeditaction.h
2006-04-20 01:57:05 -07:00
*
2010-11-07 01:20:45 -08:00
* Copyright (C) 2004-2010 by Yevgen Muntyan <emuntyan@sourceforge.net>
2006-04-20 01:57:05 -07: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.
2006-04-20 01:57:05 -07: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/>.
2006-04-20 01:57:05 -07:00
*/
#ifndef MOO_EDIT_ACTION_H
#define MOO_EDIT_ACTION_H
2006-04-20 01:57:05 -07:00
#include <mooutils/mooaction.h>
2006-04-20 01:57:05 -07:00
#include <mooedit/mooedit.h>
G_BEGIN_DECLS
#define MOO_TYPE_EDIT_ACTION (moo_edit_action_get_type ())
#define MOO_EDIT_ACTION(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), MOO_TYPE_EDIT_ACTION, MooEditAction))
#define MOO_EDIT_ACTION_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), MOO_TYPE_EDIT_ACTION, MooEditActionClass))
#define MOO_IS_EDIT_ACTION(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), MOO_TYPE_EDIT_ACTION))
#define MOO_IS_EDIT_ACTION_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), MOO_TYPE_EDIT_ACTION))
#define MOO_EDIT_ACTION_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MOO_TYPE_EDIT_ACTION, MooEditActionClass))
2010-12-12 02:29:20 -08:00
typedef struct MooEditAction MooEditAction;
typedef struct MooEditActionPrivate MooEditActionPrivate;
typedef struct MooEditActionClass MooEditActionClass;
2006-04-20 01:57:05 -07:00
2010-12-12 02:29:20 -08:00
struct MooEditAction
2006-04-20 01:57:05 -07:00
{
MooAction parent;
MooEditActionPrivate *priv;
2006-04-20 01:57:05 -07:00
};
2010-12-12 02:29:20 -08:00
struct MooEditActionClass
2006-04-20 01:57:05 -07:00
{
MooActionClass parent_class;
2006-04-29 02:39:25 -07:00
2010-12-10 03:10:22 -08:00
/**vtable:MooEditAction**/
void (*check_state) (MooEditAction *action);
2010-12-10 03:10:22 -08:00
/**vtable:MooEditAction**/
gboolean (*check_visible) (MooEditAction *action);
2010-12-10 03:10:22 -08:00
/**vtable:MooEditAction**/
gboolean (*check_sensitive) (MooEditAction *action);
2006-04-20 01:57:05 -07:00
};
GType moo_edit_action_get_type (void) G_GNUC_CONST;
MooEdit *moo_edit_action_get_doc (MooEditAction *action);
2006-04-20 01:57:05 -07:00
G_END_DECLS
#endif /* MOO_EDIT_ACTION_H */