This repository has been archived on 2020-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
gnoemoe/gnoemoe/mcp/gm-mcp-mud-moo-simpleedit.h

59 lines
1.8 KiB
C

#ifndef __GM_MCP_MUD_MOO_SIMPLEEDIT_H__
#define __GM_MCP_MUD_MOO_SIMPLEEDIT_H__
#include <glib-object.h>
#include <gtk/gtk.h>
#include "gm-mcp-package.h"
G_BEGIN_DECLS
/*
* Type checking and casting macros
*/
#define GM_TYPE_MCP_MUD_MOO_SIMPLEEDIT (gm_mcp_mud_moo_simpleedit_get_type())
#define GM_MCP_MUD_MOO_SIMPLEEDIT(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), \
GM_TYPE_MCP_MUD_MOO_SIMPLEEDIT, GmMcpMudMooSimpleedit))
#define GM_MCP_MUD_MOO_SIMPLEEDIT_CONST(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),\
GM_TYPE_MCP_MUD_MOO_SIMPLEEDIT, GmMcpMudMooSimpleedit const))
#define GM_MCP_MUD_MOO_SIMPLEEDIT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), \
GM_TYPE_MCP_MUD_MOO_SIMPLEEDIT, GmMcpMudMooSimpleeditClass))
#define GM_IS_MCP_MUD_MOO_SIMPLEEDIT(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), \
GM_TYPE_MCP_MUD_MOO_SIMPLEEDIT))
#define GM_IS_MCP_MUD_MOO_SIMPLEEDIT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), \
GM_TYPE_MCP_MUD_MOO_SIMPLEEDIT))
#define GM_MCP_MUD_MOO_SIMPLEEDIT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), \
GM_TYPE_MCP_MUD_MOO_SIMPLEEDIT, GmMcpMudMooSimpleeditClass))
/* Private structure type */
typedef struct _GmMcpMudMooSimpleeditPrivate GmMcpMudMooSimpleeditPrivate;
/*
* Main object structure
*/
typedef struct _GmMcpMudMooSimpleedit GmMcpMudMooSimpleedit;
struct _GmMcpMudMooSimpleedit {
GmMcpPackage parent;
/*< private > */
GmMcpMudMooSimpleeditPrivate *priv;
};
/*
* Class definition
*/
typedef struct _GmMcpMudMooSimpleeditClass GmMcpMudMooSimpleeditClass;
struct _GmMcpMudMooSimpleeditClass {
GmMcpPackageClass parent_class;
/* Signals
void (* proto) (GmMcpMudMooSimpleedit *obj); */
};
GType gm_mcp_mud_moo_simpleedit_get_type(void) G_GNUC_CONST;
GmMcpMudMooSimpleedit *gm_mcp_mud_moo_simpleedit_new(void);
G_END_DECLS
#endif /* __GM_MCP_MUD_MOO_SIMPLEEDIT_H__ */