summaryrefslogtreecommitdiffstats
path: root/gedit/gedit-app.h
diff options
context:
space:
mode:
Diffstat (limited to 'gedit/gedit-app.h')
-rw-r--r--gedit/gedit-app.h82
1 files changed, 82 insertions, 0 deletions
diff --git a/gedit/gedit-app.h b/gedit/gedit-app.h
new file mode 100644
index 0000000..b652dbd
--- /dev/null
+++ b/gedit/gedit-app.h
@@ -0,0 +1,82 @@
+/*
+ * gedit-app.h
+ * This file is part of gedit
+ *
+ * Copyright (C) 2005 - Paolo Maggi
+ *
+ * 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.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef GEDIT_APP_H
+#define GEDIT_APP_H
+
+#include <gtk/gtk.h>
+#include <gedit/gedit-window.h>
+
+G_BEGIN_DECLS
+
+#define GEDIT_TYPE_APP (gedit_app_get_type())
+
+G_DECLARE_DERIVABLE_TYPE (GeditApp, gedit_app, GEDIT, APP, GtkApplication)
+
+struct _GeditAppClass
+{
+ GtkApplicationClass parent_class;
+
+ gboolean (*show_help) (GeditApp *app,
+ GtkWindow *parent_window,
+ const gchar *name_of_user_manual,
+ const gchar *link_id_within_user_manual);
+
+ gchar *(*get_help_uri) (GeditApp *app,
+ const gchar *name_of_user_manual,
+ const gchar *link_id_within_user_manual);
+
+ void (*set_window_title) (GeditApp *app,
+ GeditWindow *window,
+ const gchar *title);
+
+ GeditWindow *(*create_window) (GeditApp *app);
+
+ gboolean (*process_window_event) (GeditApp *app,
+ GeditWindow *window,
+ GdkEvent *event);
+};
+
+GeditWindow *gedit_app_create_window (GeditApp *app,
+ GdkScreen *screen);
+
+GList *gedit_app_get_main_windows (GeditApp *app);
+
+GList *gedit_app_get_documents (GeditApp *app);
+
+GList *gedit_app_get_views (GeditApp *app);
+
+gboolean gedit_app_show_help (GeditApp *app,
+ GtkWindow *parent_window,
+ const gchar *name_of_user_manual,
+ const gchar *link_id_within_user_manual);
+
+void gedit_app_set_window_title (GeditApp *app,
+ GeditWindow *window,
+ const gchar *title);
+gboolean gedit_app_process_window_event (GeditApp *app,
+ GeditWindow *window,
+ GdkEvent *event);
+
+G_END_DECLS
+
+#endif /* GEDIT_APP_H */
+
+/* ex:set ts=8 noet: */