2 * geanyobject.h - this file is part of Geany, a fast and lightweight IDE
4 * Copyright 2007-2012 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
5 * Copyright 2007-2012 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 #ifndef GEANY_OBJECT_H
24 #define GEANY_OBJECT_H 1
28 #include "filetypes.h"
30 #include "Scintilla.h"
32 #include "gtkcompat.h"
42 GCB_DOCUMENT_BEFORE_SAVE
,
44 GCB_DOCUMENT_FILETYPE_SET
,
45 GCB_DOCUMENT_ACTIVATE
,
50 GCB_PROJECT_DIALOG_OPEN
,
51 GCB_PROJECT_DIALOG_CONFIRMED
,
52 GCB_PROJECT_DIALOG_CLOSE
,
53 GCB_UPDATE_EDITOR_MENU
,
55 GCB_GEANY_STARTUP_COMPLETE
,
64 #define GEANY_OBJECT_TYPE (geany_object_get_type())
65 #define GEANY_OBJECT(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),\
66 GEANY_OBJECT_TYPE, GeanyObject))
67 #define GEANY_OBJECT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),\
68 GEANY_OBJECT_TYPE, GeanyObjectClass))
69 #define IS_GEANY_OBJECT(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),\
71 #define IS_GEANY_OBJECT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),\
74 typedef struct _GeanyObject GeanyObject
;
75 typedef struct _GeanyObjectClass GeanyObjectClass
;
80 /* add your public declarations here */
83 extern GObject
*geany_object
;
85 struct _GeanyObjectClass
87 GObjectClass parent_class
;
89 void (*document_new
)(GeanyDocument
*doc
);
90 void (*document_open
)(GeanyDocument
*doc
);
91 void (*document_reload
)(GeanyDocument
*doc
);
92 void (*document_before_save
)(GeanyDocument
*doc
);
93 void (*document_save
)(GeanyDocument
*doc
);
94 void (*document_filetype_set
)(GeanyDocument
*doc
, GeanyFiletype
*filetype_old
);
95 void (*document_activate
)(GeanyDocument
*doc
);
96 void (*document_close
)(GeanyDocument
*doc
);
97 void (*project_open
)(GKeyFile
*keyfile
);
98 void (*project_save
)(GKeyFile
*keyfile
);
99 void (*project_close
)(void);
100 void (*project_dialog_open
)(GtkWidget
*notebook
);
101 void (*project_dialog_confirmed
)(GtkWidget
*notebook
);
102 void (*project_dialog_close
)(GtkWidget
*notebook
);
103 void (*update_editor_menu
)(const gchar
*word
, gint click_pos
, GeanyDocument
*doc
);
104 gboolean (*editor_notify
)(GeanyEditor
*editor
, gpointer scnt
);
105 void (*geany_startup_complete
)(void);
106 void (*build_start
)(void);
107 void (*save_settings
)(GKeyFile
*keyfile
);
108 void (*load_settings
)(GKeyFile
*keyfile
);
111 GType
geany_object_get_type (void);
112 GObject
* geany_object_new (void);
116 #endif /* GEANY_OBJECT_H */