medit/moo/mooapp/mooapp.h

121 lines
4.0 KiB
C
Raw Normal View History

2005-06-22 11:20:32 -07:00
/*
* mooapp.h
2005-06-22 11:20:32 -07:00
*
* Copyright (C) 2004-2006 by Yevgen Muntyan <muntyan@math.tamu.edu>
2005-06-22 11:20:32 -07:00
*
* 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_APP_H__
#define __MOO_APP_H__
2005-06-22 11:20:32 -07:00
#include <mooedit/mooeditor.h>
#include <mooutils/moocommand.h>
2005-06-22 11:20:32 -07:00
G_BEGIN_DECLS
#define MOO_TYPE_APP_INFO (moo_app_info_get_type ())
#define MOO_TYPE_APP (moo_app_get_type ())
2005-06-22 11:20:32 -07:00
#define MOO_APP(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), MOO_TYPE_APP, MooApp))
#define MOO_APP_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), MOO_TYPE_APP, MooAppClass))
#define MOO_IS_APP(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), MOO_TYPE_APP))
#define MOO_IS_APP_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), MOO_TYPE_APP))
#define MOO_APP_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MOO_TYPE_APP, MooAppClass))
typedef struct _MooApp MooApp;
typedef struct _MooAppInfo MooAppInfo;
typedef struct _MooAppPrivate MooAppPrivate;
typedef struct _MooAppClass MooAppClass;
struct _MooAppInfo
{
char *short_name;
char *full_name;
char *description;
char *version;
char *website;
char *website_label;
char *rc_file;
2006-04-28 14:08:45 -07:00
char *logo;
2005-06-22 11:20:32 -07:00
};
struct _MooApp
{
GObject parent;
MooAppPrivate *priv;
};
struct _MooAppClass
{
GObjectClass parent_class;
gboolean (*init) (MooApp *app);
int (*run) (MooApp *app);
void (*quit) (MooApp *app);
gboolean (*try_quit) (MooApp *app);
2005-06-22 11:20:32 -07:00
GtkWidget* (*prefs_dialog) (MooApp *app);
2005-06-22 11:20:32 -07:00
void (*exec_cmd) (MooApp *app,
char cmd,
const char *data,
guint len);
void (*cmd_setup) (MooApp *app,
MooCommand *cmd,
GtkWindow *window);
2005-06-22 11:20:32 -07:00
};
GType moo_app_get_type (void) G_GNUC_CONST;
GType moo_app_info_get_type (void) G_GNUC_CONST;
MooApp *moo_app_get_instance (void);
gboolean moo_app_init (MooApp *app);
2005-06-22 11:20:32 -07:00
int moo_app_run (MooApp *app);
gboolean moo_app_quit (MooApp *app);
void moo_app_set_exit_code (MooApp *app,
int code);
const MooAppInfo*moo_app_get_info (MooApp *app);
const char *moo_app_get_rc_file_name (MooApp *app);
const char *moo_app_get_input_pipe_name (MooApp *app);
const char *moo_app_get_output_pipe_name (MooApp *app);
2005-06-22 11:20:32 -07:00
MooEditor *moo_app_get_editor (MooApp *app);
2005-06-22 11:20:32 -07:00
void moo_app_prefs_dialog (GtkWidget *parent);
void moo_app_about_dialog (GtkWidget *parent);
MooUIXML *moo_app_get_ui_xml (MooApp *app);
void moo_app_set_ui_xml (MooApp *app,
MooUIXML *xml);
2005-11-01 18:32:07 -08:00
char *moo_app_tempnam (MooApp *app);
gboolean moo_app_send_msg (MooApp *app,
const char *data,
int len);
void _moo_app_exec_cmd (MooApp *app,
char cmd,
const char *data,
guint len);
2006-04-13 03:06:48 -07:00
GtkWidget *_moo_app_create_prefs_dialog (MooApp *app);
2005-06-22 11:20:32 -07:00
G_END_DECLS
#endif /* __MOO_APP_H__ */