medit/moo/mooapp/mooapp.h

127 lines
4.2 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-2005 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_APP_H__
#define __MOO_APP_H__
2005-06-22 11:20:32 -07:00
#include <mooterm/mootermwindow.h>
#include <mooedit/mooeditor.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_WINDOW_POLICY (moo_app_window_policy_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;
typedef enum _MooAppWindowPolicy
{
MOO_APP_QUIT_ON_CLOSE_ALL_EDITORS = 1 << 0,
MOO_APP_QUIT_ON_CLOSE_ALL_TERMINALS = 1 << 1,
MOO_APP_QUIT_ON_CLOSE_ALL_WINDOWS = 1 << 2
2005-06-22 11:20:32 -07:00
} MooAppWindowPolicy;
struct _MooAppInfo
{
char *short_name;
char *full_name;
char *description;
char *version;
char *website;
char *website_label;
char *app_dir;
char *rc_file;
};
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);
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;
GType moo_app_window_policy_get_type (void) G_GNUC_CONST;
MooApp *moo_app_get_instance (void);
void moo_app_init (MooApp *app);
int moo_app_run (MooApp *app);
gboolean moo_app_quit (MooApp *app);
int moo_app_get_exit_code (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
const char *moo_app_get_application_dir (MooApp *app);
MooEditor *moo_app_get_editor (MooApp *app);
2005-07-25 11:51:11 -07:00
MooTermWindow *moo_app_get_terminal (MooApp *app);
void moo_app_set_terminal_type (MooApp *app,
GType type);
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);
void _moo_app_exec_cmd (MooApp *app,
char cmd,
const char *data,
guint len);
2005-06-22 11:20:32 -07:00
G_END_DECLS
#endif /* __MOO_APP_H__ */