Autotools: Build plugins with Libtool on MinGW too
[geany-mirror.git] / src / plugindata.h
blob32a5c2adea7aea84b487a54489524913ab1da4eb
1 /*
2 * plugindata.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.
22 /**
23 * @file plugindata.h
24 * This file defines the plugin API, the interface between Geany and its plugins.
25 * For detailed documentation of the plugin system please read the plugin
26 * API documentation.
27 **/
28 /* Note: Remember to increment GEANY_API_VERSION (and GEANY_ABI_VERSION if necessary)
29 * when making changes (see 'Keeping the plugin ABI stable' in the HACKING file). */
32 #ifndef GEANY_PLUGIN_DATA_H
33 #define GEANY_PLUGIN_DATA_H 1
35 #include "build.h" /* GeanyBuildGroup, GeanyBuildSource, GeanyBuildCmdEntries enums */
36 #include "document.h" /* GeanyDocument */
37 #include "editor.h" /* GeanyEditor, GeanyIndentType */
38 #include "filetypes.h" /* GeanyFiletype */
40 #include "gtkcompat.h"
42 G_BEGIN_DECLS
44 /* Compatibility for sharing macros between API and core.
45 * First include geany.h, then plugindata.h, then other API headers. */
46 #undef GEANY
47 #define GEANY(symbol_name) geany->symbol_name
50 /** The Application Programming Interface (API) version, incremented
51 * whenever any plugin data types are modified or appended to.
53 * You can protect code that needs a higher API than e.g. 200 with:
54 * @code #if GEANY_API_VERSION >= 200
55 * some_newer_function();
56 * #endif @endcode
58 * @warning You should not test for values below 200 as previously
59 * @c GEANY_API_VERSION was defined as an enum value, not a macro.
61 #define GEANY_API_VERSION 221
63 /* hack to have a different ABI when built with GTK3 because loading GTK2-linked plugins
64 * with GTK3-linked Geany leads to crash */
65 #if GTK_CHECK_VERSION(3, 0, 0)
66 # define GEANY_ABI_SHIFT 8
67 #else
68 # define GEANY_ABI_SHIFT 0
69 #endif
70 /** The Application Binary Interface (ABI) version, incremented whenever
71 * existing fields in the plugin data types have to be changed or reordered.
72 * Changing this forces all plugins to be recompiled before Geany can load them. */
73 /* This should usually stay the same if fields are only appended, assuming only pointers to
74 * structs and not structs themselves are declared by plugins. */
75 #define GEANY_ABI_VERSION (70 << GEANY_ABI_SHIFT)
78 /** Defines a function to check the plugin is safe to load.
79 * This performs runtime checks that try to ensure:
80 * - Geany ABI data types are compatible with this plugin.
81 * - Geany sources provide the required API for this plugin.
82 * @param api_required The minimum API number your plugin requires.
83 * Look at the source for the value of @c GEANY_API_VERSION to use if you
84 * want your plugin to require the current Geany version on your machine.
85 * You should update this value when using any new API features. */
86 #define PLUGIN_VERSION_CHECK(api_required) \
87 gint plugin_version_check(gint abi_ver) \
88 { \
89 if (abi_ver != GEANY_ABI_VERSION) \
90 return -1; \
91 return (api_required); \
95 /** Basic information about a plugin available to Geany without loading the plugin.
96 * The fields are set in plugin_set_info(), usually with the PLUGIN_SET_INFO() macro. */
97 typedef struct PluginInfo
99 /** The name of the plugin. */
100 const gchar *name;
101 /** The description of the plugin. */
102 const gchar *description;
103 /** The version of the plugin. */
104 const gchar *version;
105 /** The author of the plugin. */
106 const gchar *author;
108 PluginInfo;
111 /** Basic information for the plugin and identification.
112 * @see geany_plugin. */
113 typedef struct GeanyPlugin
115 PluginInfo *info; /**< Fields set in plugin_set_info(). */
117 struct GeanyPluginPrivate *priv; /* private */
119 GeanyPlugin;
122 /** Sets the plugin name and some other basic information about a plugin.
124 * @note If you want some of the arguments to be translated, see @ref PLUGIN_SET_TRANSLATABLE_INFO()
126 * Example:
127 * @code PLUGIN_SET_INFO("Cool Feature", "Adds cool feature support.", "0.1", "Joe Author") @endcode */
128 /* plugin_set_info() could be written manually for plugins if we want to add any
129 * extra PluginInfo features (such as an icon), so we don't need to break API
130 * compatibility. Alternatively just add a new macro, PLUGIN_SET_INFO_FULL(). -ntrel */
131 #define PLUGIN_SET_INFO(p_name, p_description, p_version, p_author) \
132 void plugin_set_info(PluginInfo *info) \
134 info->name = (p_name); \
135 info->description = (p_description); \
136 info->version = (p_version); \
137 info->author = (p_author); \
140 /** Sets the plugin name and some other basic information about a plugin.
141 * This macro is like @ref PLUGIN_SET_INFO() but allows the passed information to be translated
142 * by setting up the translation mechanism with @ref main_locale_init().
143 * You therefore don't need to call it manually in plugin_init().
145 * Example:
146 * @code PLUGIN_SET_TRANSLATABLE_INFO(LOCALEDIR, GETTEXT_PACKAGE, _("Cool Feature"), _("Adds a cool feature."), "0.1", "John Doe") @endcode
148 * @since 0.19 */
149 #define PLUGIN_SET_TRANSLATABLE_INFO(localedir, package, p_name, p_description, p_version, p_author) \
150 void plugin_set_info(PluginInfo *info) \
152 main_locale_init((localedir), (package)); \
153 info->name = (p_name); \
154 info->description = (p_description); \
155 info->version = (p_version); \
156 info->author = (p_author); \
160 /** @deprecated - use plugin_set_key_group() instead.
161 * @see PLUGIN_KEY_GROUP() macro. */
162 typedef struct GeanyKeyGroupInfo
164 const gchar *name; /**< Group name used in the configuration file, such as @c "html_chars" */
165 gsize count; /**< The number of keybindings the group will hold */
167 GeanyKeyGroupInfo;
169 /** @deprecated - use plugin_set_key_group() instead.
170 * Declare and initialise a keybinding group.
171 * @code GeanyKeyGroup *plugin_key_group; @endcode
172 * You must then set the @c plugin_key_group::keys[] entries for the group in plugin_init(),
173 * normally using keybindings_set_item().
174 * The @c plugin_key_group::label field is set by Geany after @c plugin_init()
175 * is called, to the name of the plugin.
176 * @param group_name A unique group name (without quotes) to be used in the
177 * configuration file, such as @c html_chars.
178 * @param key_count The number of keybindings the group will hold. */
179 #define PLUGIN_KEY_GROUP(group_name, key_count) \
180 /* We have to declare this as a single element array.
181 * Declaring as a pointer to a struct doesn't work with g_module_symbol(). */ \
182 GeanyKeyGroupInfo plugin_key_group_info[1] = \
184 {G_STRINGIFY(group_name), key_count} \
186 GeanyKeyGroup *plugin_key_group = NULL;
189 /** Callback array entry type used with the @ref plugin_callbacks symbol. */
190 typedef struct PluginCallback
192 /** The name of signal, must be an existing signal. For a list of available signals,
193 * please see the @link pluginsignals.c Signal documentation @endlink. */
194 const gchar *signal_name;
195 /** A callback function which is called when the signal is emitted. */
196 GCallback callback;
197 /** Set to TRUE to connect your handler with g_signal_connect_after(). */
198 gboolean after;
199 /** The user data passed to the signal handler. */
200 gpointer user_data;
202 PluginCallback;
205 /** @deprecated Use @ref ui_add_document_sensitive() instead.
206 * Flags to be set by plugins in PluginFields struct. */
207 typedef enum
209 /** Whether a plugin's menu item should be disabled when there are no open documents */
210 PLUGIN_IS_DOCUMENT_SENSITIVE = 1 << 0
212 PluginFlags;
214 /** @deprecated Use @ref ui_add_document_sensitive() instead.
215 * Fields set and owned by the plugin. */
216 typedef struct PluginFields
218 /** Bitmask of @c PluginFlags. */
219 PluginFlags flags;
220 /** Pointer to a plugin's menu item which will be automatically enabled/disabled when there
221 * are no open documents and @c PLUGIN_IS_DOCUMENT_SENSITIVE is set.
222 * This is required if using @c PLUGIN_IS_DOCUMENT_SENSITIVE, ignored otherwise */
223 GtkWidget *menu_item;
225 PluginFields;
228 /** This contains pointers to global variables owned by Geany for plugins to use.
229 * Core variable pointers can be appended when needed by plugin authors, if appropriate. */
230 typedef struct GeanyData
232 struct GeanyApp *app; /**< Geany application data fields */
233 struct GeanyMainWidgets *main_widgets; /**< Important widgets in the main window */
234 GPtrArray *documents_array; /**< See document.h#documents_array. */
235 GPtrArray *filetypes_array; /**< Dynamic array of GeanyFiletype pointers */
236 struct GeanyPrefs *prefs; /**< General settings */
237 struct GeanyInterfacePrefs *interface_prefs; /**< Interface settings */
238 struct GeanyToolbarPrefs *toolbar_prefs; /**< Toolbar settings */
239 struct GeanyEditorPrefs *editor_prefs; /**< Editor settings */
240 struct GeanyFilePrefs *file_prefs; /**< File-related settings */
241 struct GeanySearchPrefs *search_prefs; /**< Search-related settings */
242 struct GeanyToolPrefs *tool_prefs; /**< Tool settings */
243 struct GeanyTemplatePrefs *template_prefs; /**< Template settings */
244 struct GeanyBuildInfo *build_info; /**< Current build information */
245 GSList *filetypes_by_title; /**< See filetypes.h#filetypes_by_title. */
247 GeanyData;
249 #define geany geany_data /**< Simple macro for @c geany_data that reduces typing. */
252 #ifndef GEANY_PRIVATE
254 /* Prototypes for building plugins with -Wmissing-prototypes
255 * Also allows the compiler to check if the signature of the plugin's
256 * symbol properly matches what we expect. */
257 gint plugin_version_check(gint abi_ver);
258 void plugin_set_info(PluginInfo *info);
260 void plugin_init(GeanyData *data);
261 GtkWidget *plugin_configure(GtkDialog *dialog);
262 void plugin_configure_single(GtkWidget *parent);
263 void plugin_help(void);
264 void plugin_cleanup(void);
266 #endif
269 /** This contains pointers to functions owned by Geany for plugins to use.
270 * Functions from the core can be appended when needed by plugin authors, but may
271 * require some changes. */
272 typedef struct GeanyFunctions
274 struct DocumentFuncs *p_document; /**< See document.h */
275 struct SciFuncs *p_sci; /**< See sciwrappers.h */
276 struct TemplateFuncs *p_templates; /**< See templates.h */
277 struct UtilsFuncs *p_utils; /**< See utils.h */
278 struct UIUtilsFuncs *p_ui; /**< See ui_utils.h */
279 /** @deprecated Use ui_lookup_widget() instead. */
280 struct SupportFuncs *p_support;
281 struct DialogFuncs *p_dialogs; /**< See dialogs.h */
282 /** @deprecated Use @ref GeanyFunctions::p_msgwin instead. */
283 struct MsgWinFuncs *p_msgwindow;
284 struct EncodingFuncs *p_encodings; /**< See encodings.h */
285 struct KeybindingFuncs *p_keybindings; /**< See keybindings.h */
286 struct TagManagerFuncs *p_tm; /**< See tagmanager/src */
287 struct SearchFuncs *p_search; /**< See search.h */
288 struct HighlightingFuncs *p_highlighting; /**< See highlighting.h */
289 struct FiletypeFuncs *p_filetypes; /**< See filetypes.h */
290 struct NavQueueFuncs *p_navqueue; /**< See navqueue.h */
291 struct EditorFuncs *p_editor; /**< See editor.h */
292 struct MainFuncs *p_main; /**< See main.h */
293 struct PluginFuncs *p_plugin; /**< See pluginutils.c */
294 struct ScintillaFuncs *p_scintilla; /**< See ScintillaFuncs */
295 struct MsgWinFuncs *p_msgwin; /**< See msgwindow.h */
296 struct StashFuncs *p_stash; /**< See stash.h */
297 struct SymbolsFuncs *p_symbols; /**< See symbols.h */
298 struct BuildFuncs *p_build; /**< See build.h */
300 GeanyFunctions;
303 /* For more information about these functions, see the main source code.
304 * E.g. for p_document->new_file(), see document_new_file() in document.c. */
306 /* See document.h */
307 typedef struct DocumentFuncs
309 struct GeanyDocument* (*document_new_file) (const gchar *utf8_filename, struct GeanyFiletype *ft,
310 const gchar *text);
311 struct GeanyDocument* (*document_get_current) (void);
312 struct GeanyDocument* (*document_get_from_page) (guint page_num);
313 struct GeanyDocument* (*document_find_by_filename) (const gchar *utf8_filename);
314 struct GeanyDocument* (*document_find_by_real_path) (const gchar *realname);
315 gboolean (*document_save_file) (struct GeanyDocument *doc, gboolean force);
316 struct GeanyDocument* (*document_open_file) (const gchar *locale_filename, gboolean readonly,
317 struct GeanyFiletype *ft, const gchar *forced_enc);
318 void (*document_open_files) (const GSList *filenames, gboolean readonly,
319 struct GeanyFiletype *ft, const gchar *forced_enc);
320 gboolean (*document_remove_page) (guint page_num);
321 gboolean (*document_reload_force) (struct GeanyDocument *doc, const gchar *forced_enc);
322 void (*document_set_encoding) (struct GeanyDocument *doc, const gchar *new_encoding);
323 void (*document_set_text_changed) (struct GeanyDocument *doc, gboolean changed);
324 void (*document_set_filetype) (struct GeanyDocument *doc, struct GeanyFiletype *type);
325 gboolean (*document_close) (struct GeanyDocument *doc);
326 struct GeanyDocument* (*document_index)(gint idx);
327 gboolean (*document_save_file_as) (struct GeanyDocument *doc, const gchar *utf8_fname);
328 void (*document_rename_file) (struct GeanyDocument *doc, const gchar *new_filename);
329 const GdkColor* (*document_get_status_color) (struct GeanyDocument *doc);
330 gchar* (*document_get_basename_for_display) (struct GeanyDocument *doc, gint length);
331 gint (*document_get_notebook_page) (struct GeanyDocument *doc);
332 gint (*document_compare_by_display_name) (gconstpointer a, gconstpointer b);
333 gint (*document_compare_by_tab_order) (gconstpointer a, gconstpointer b);
334 gint (*document_compare_by_tab_order_reverse) (gconstpointer a, gconstpointer b);
335 GeanyDocument* (*document_find_by_id)(guint id);
337 DocumentFuncs;
340 struct _ScintillaObject;
342 /** See http://scintilla.org for the full documentation. */
343 typedef struct ScintillaFuncs
345 /** Send Scintilla a message. */
346 long int (*scintilla_send_message) (struct _ScintillaObject *sci, unsigned int iMessage,
347 long unsigned int wParam, long int lParam);
348 /** Create a new ScintillaObject widget. */
349 GtkWidget* (*scintilla_new)(void);
351 ScintillaFuncs;
354 /** Wrapper functions for Scintilla messages.
355 * See sciwrappers.h for the list of functions. */
356 typedef struct SciFuncs
358 /** @deprecated Use @c scintilla_send_message() instead. */
359 long int (*sci_send_message) (struct _ScintillaObject *sci, unsigned int iMessage,
360 long unsigned int wParam, long int lParam);
361 void (*sci_send_command) (struct _ScintillaObject *sci, gint cmd);
363 void (*sci_start_undo_action) (struct _ScintillaObject *sci);
364 void (*sci_end_undo_action) (struct _ScintillaObject *sci);
365 void (*sci_set_text) (struct _ScintillaObject *sci, const gchar *text);
366 void (*sci_insert_text) (struct _ScintillaObject *sci, gint pos, const gchar *text);
367 void (*sci_get_text) (struct _ScintillaObject *sci, gint len, gchar *text);
368 gint (*sci_get_length) (struct _ScintillaObject *sci);
369 gint (*sci_get_current_position) (struct _ScintillaObject *sci);
370 void (*sci_set_current_position) (struct _ScintillaObject *sci, gint position,
371 gboolean scroll_to_caret);
372 gint (*sci_get_col_from_position) (struct _ScintillaObject *sci, gint position);
373 gint (*sci_get_line_from_position) (struct _ScintillaObject *sci, gint position);
374 gint (*sci_get_position_from_line) (struct _ScintillaObject *sci, gint line);
375 void (*sci_replace_sel) (struct _ScintillaObject *sci, const gchar *text);
376 void (*sci_get_selected_text) (struct _ScintillaObject *sci, gchar *text);
377 gint (*sci_get_selected_text_length) (struct _ScintillaObject *sci);
378 gint (*sci_get_selection_start) (struct _ScintillaObject *sci);
379 gint (*sci_get_selection_end) (struct _ScintillaObject *sci);
380 gint (*sci_get_selection_mode) (struct _ScintillaObject *sci);
381 void (*sci_set_selection_mode) (struct _ScintillaObject *sci, gint mode);
382 void (*sci_set_selection_start) (struct _ScintillaObject *sci, gint position);
383 void (*sci_set_selection_end) (struct _ScintillaObject *sci, gint position);
384 void (*sci_get_text_range) (struct _ScintillaObject *sci, gint start, gint end, gchar *text);
385 gchar* (*sci_get_line) (struct _ScintillaObject *sci, gint line_num);
386 gint (*sci_get_line_length) (struct _ScintillaObject *sci, gint line);
387 gint (*sci_get_line_count) (struct _ScintillaObject *sci);
388 gboolean (*sci_get_line_is_visible) (struct _ScintillaObject *sci, gint line);
389 void (*sci_ensure_line_is_visible) (struct _ScintillaObject *sci, gint line);
390 void (*sci_scroll_caret) (struct _ScintillaObject *sci);
391 gint (*sci_find_matching_brace) (struct _ScintillaObject *sci, gint pos);
392 gint (*sci_get_style_at) (struct _ScintillaObject *sci, gint position);
393 gchar (*sci_get_char_at) (struct _ScintillaObject *sci, gint pos);
394 gint (*sci_get_current_line) (struct _ScintillaObject *sci);
395 gboolean (*sci_has_selection) (struct _ScintillaObject *sci);
396 gint (*sci_get_tab_width) (struct _ScintillaObject *sci);
397 void (*sci_indicator_clear) (struct _ScintillaObject *sci, gint start, gint end);
398 void (*sci_indicator_set) (struct _ScintillaObject *sci, gint indic);
399 gchar* (*sci_get_contents) (struct _ScintillaObject *sci, gint len);
400 gchar* (*sci_get_contents_range) (struct _ScintillaObject *sci, gint start, gint end);
401 gchar* (*sci_get_selection_contents) (struct _ScintillaObject *sci);
402 void (*sci_set_font) (struct _ScintillaObject *sci, gint style, const gchar *font, gint size);
403 gint (*sci_get_line_end_position) (struct _ScintillaObject *sci, gint line);
404 void (*sci_set_target_start) (struct _ScintillaObject *sci, gint start);
405 void (*sci_set_target_end) (struct _ScintillaObject *sci, gint end);
406 gint (*sci_replace_target) (struct _ScintillaObject *sci, const gchar *text, gboolean regex);
407 void (*sci_set_marker_at_line) (struct _ScintillaObject *sci, gint line_number, gint marker);
408 void (*sci_delete_marker_at_line) (struct _ScintillaObject *sci, gint line_number, gint marker);
409 gboolean (*sci_is_marker_set_at_line) (struct _ScintillaObject *sci, gint line, gint marker);
410 void (*sci_goto_line) (struct _ScintillaObject *sci, gint line, gboolean unfold);
411 gint (*sci_find_text) (struct _ScintillaObject *sci, gint flags, struct Sci_TextToFind *ttf);
412 void (*sci_set_line_indentation) (struct _ScintillaObject *sci, gint line, gint indent);
413 gint (*sci_get_line_indentation) (struct _ScintillaObject *sci, gint line);
414 gint (*sci_get_lexer) (struct _ScintillaObject *sci);
416 SciFuncs;
419 /* See templates.h */
420 typedef struct TemplateFuncs
422 gchar* (*templates_get_template_fileheader) (gint filetype_idx, const gchar *fname);
424 TemplateFuncs;
427 /* See utils.h */
428 typedef struct UtilsFuncs
430 gboolean (*utils_str_equal) (const gchar *a, const gchar *b);
431 guint (*utils_string_replace_all) (GString *haystack, const gchar *needle,
432 const gchar *replacement);
433 GSList* (*utils_get_file_list) (const gchar *path, guint *length, GError **error);
434 gint (*utils_write_file) (const gchar *filename, const gchar *text);
435 gchar* (*utils_get_locale_from_utf8) (const gchar *utf8_text);
436 gchar* (*utils_get_utf8_from_locale) (const gchar *locale_text);
437 gchar* (*utils_remove_ext_from_filename) (const gchar *filename);
438 gint (*utils_mkdir) (const gchar *path, gboolean create_parent_dirs);
439 gboolean (*utils_get_setting_boolean) (GKeyFile *config, const gchar *section, const gchar *key,
440 const gboolean default_value);
441 gint (*utils_get_setting_integer) (GKeyFile *config, const gchar *section, const gchar *key,
442 const gint default_value);
443 gchar* (*utils_get_setting_string) (GKeyFile *config, const gchar *section, const gchar *key,
444 const gchar *default_value);
445 gboolean (*utils_spawn_sync) (const gchar *dir, gchar **argv, gchar **env, GSpawnFlags flags,
446 GSpawnChildSetupFunc child_setup, gpointer user_data, gchar **std_out,
447 gchar **std_err, gint *exit_status, GError **error);
448 gboolean (*utils_spawn_async) (const gchar *dir, gchar **argv, gchar **env, GSpawnFlags flags,
449 GSpawnChildSetupFunc child_setup, gpointer user_data, GPid *child_pid,
450 GError **error);
451 gint (*utils_str_casecmp) (const gchar *s1, const gchar *s2);
452 gchar* (*utils_get_date_time) (const gchar *format, time_t *time_to_use);
453 void (*utils_open_browser) (const gchar *uri);
454 guint (*utils_string_replace_first) (GString *haystack, const gchar *needle,
455 const gchar *replace);
456 gchar* (*utils_str_middle_truncate) (const gchar *string, guint truncate_length);
457 gchar* (*utils_str_remove_chars) (gchar *string, const gchar *chars);
458 GSList* (*utils_get_file_list_full)(const gchar *path, gboolean full_path, gboolean sort,
459 GError **error);
460 gchar** (*utils_copy_environment)(const gchar **exclude_vars, const gchar *first_varname, ...);
461 gchar* (*utils_find_open_xml_tag) (const gchar sel[], gint size);
462 const gchar* (*utils_find_open_xml_tag_pos) (const gchar sel[], gint size);
464 UtilsFuncs;
467 /* See main.h */
468 typedef struct MainFuncs
470 void (*main_reload_configuration) (void);
471 void (*main_locale_init) (const gchar *locale_dir, const gchar *package);
472 gboolean (*main_is_realized) (void);
474 MainFuncs;
477 /* See ui_utils.h */
478 typedef struct UIUtilsFuncs
480 GtkWidget* (*ui_dialog_vbox_new) (GtkDialog *dialog);
481 GtkWidget* (*ui_frame_new_with_alignment) (const gchar *label_text, GtkWidget **alignment);
482 void (*ui_set_statusbar) (gboolean log, const gchar *format, ...) G_GNUC_PRINTF (2, 3);
483 void (*ui_table_add_row) (GtkTable *table, gint row, ...) G_GNUC_NULL_TERMINATED;
484 GtkWidget* (*ui_path_box_new) (const gchar *title, GtkFileChooserAction action, GtkEntry *entry);
485 GtkWidget* (*ui_button_new_with_image) (const gchar *stock_id, const gchar *text);
486 void (*ui_add_document_sensitive) (GtkWidget *widget);
487 void (*ui_widget_set_tooltip_text) (GtkWidget *widget, const gchar *text);
488 GtkWidget* (*ui_image_menu_item_new) (const gchar *stock_id, const gchar *label);
489 GtkWidget* (*ui_lookup_widget) (GtkWidget *widget, const gchar *widget_name);
490 void (*ui_progress_bar_start) (const gchar *text);
491 void (*ui_progress_bar_stop) (void);
492 void (*ui_entry_add_clear_icon) (GtkEntry *entry);
493 void (*ui_menu_add_document_items) (GtkMenu *menu, struct GeanyDocument *active,
494 GCallback callback);
495 void (*ui_widget_modify_font_from_string) (GtkWidget *widget, const gchar *str);
496 gboolean (*ui_is_keyval_enter_or_return) (guint keyval);
497 gint (*ui_get_gtk_settings_integer) (const gchar *property_name, gint default_value);
498 void (*ui_combo_box_add_to_history) (GtkComboBoxText *combo_entry,
499 const gchar *text, gint history_len);
500 void (*ui_menu_add_document_items_sorted) (GtkMenu *menu, struct GeanyDocument *active,
501 GCallback callback, GCompareFunc compare_func);
502 const gchar* (*ui_lookup_stock_label)(const gchar *stock_id);
504 UIUtilsFuncs;
507 /* See dialogs.h */
508 typedef struct DialogFuncs
510 gboolean (*dialogs_show_question) (const gchar *text, ...) G_GNUC_PRINTF (1, 2);
511 void (*dialogs_show_msgbox) (GtkMessageType type, const gchar *text, ...) G_GNUC_PRINTF (2, 3);
512 gboolean (*dialogs_show_save_as) (void);
513 gboolean (*dialogs_show_input_numeric) (const gchar *title, const gchar *label_text,
514 gdouble *value, gdouble min, gdouble max, gdouble step);
515 gchar* (*dialogs_show_input)(const gchar *title, GtkWindow *parent, const gchar *label_text,
516 const gchar *default_text);
518 DialogFuncs;
521 /* @deprecated Use ui_lookup_widget() instead. */
522 typedef struct SupportFuncs
524 GtkWidget* (*support_lookup_widget) (GtkWidget *widget, const gchar *widget_name);
526 SupportFuncs;
529 /* See msgwindow.h */
530 typedef struct MsgWinFuncs
532 /* status_add() does not set the status bar - use ui->set_statusbar() instead. */
533 void (*msgwin_status_add) (const gchar *format, ...) G_GNUC_PRINTF (1, 2);
534 void (*msgwin_compiler_add) (gint msg_color, const gchar *format, ...) G_GNUC_PRINTF (2, 3);
535 void (*msgwin_msg_add) (gint msg_color, gint line, struct GeanyDocument *doc,
536 const gchar *format, ...) G_GNUC_PRINTF (4, 5);
537 void (*msgwin_clear_tab) (gint tabnum);
538 void (*msgwin_switch_tab) (gint tabnum, gboolean show);
539 void (*msgwin_set_messages_dir) (const gchar *messages_dir);
541 MsgWinFuncs;
544 /* See encodings.h */
545 typedef struct EncodingFuncs
547 gchar* (*encodings_convert_to_utf8) (const gchar *buffer, gssize size, gchar **used_encoding);
548 gchar* (*encodings_convert_to_utf8_from_charset) (const gchar *buffer, gssize size,
549 const gchar *charset, gboolean fast);
550 const gchar* (*encodings_get_charset_from_index) (gint idx);
552 EncodingFuncs;
555 struct GeanyKeyGroup;
556 /* avoid including keybindings.h */
557 typedef void (*_GeanyKeyCallback) (guint key_id);
559 /* See keybindings.h */
560 typedef struct KeybindingFuncs
562 void (*keybindings_send_command) (guint group_id, guint key_id);
563 struct GeanyKeyBinding* (*keybindings_set_item) (struct GeanyKeyGroup *group, gsize key_id,
564 _GeanyKeyCallback callback, guint key, GdkModifierType mod,
565 const gchar *name, const gchar *label, GtkWidget *menu_item);
566 struct GeanyKeyBinding* (*keybindings_get_item)(struct GeanyKeyGroup *group, gsize key_id);
569 KeybindingFuncs;
572 /* See highlighting.h */
573 typedef struct HighlightingFuncs
575 const struct GeanyLexerStyle* (*highlighting_get_style) (gint ft_id, gint style_id);
576 void (*highlighting_set_styles) (struct _ScintillaObject *sci, struct GeanyFiletype *ft);
577 gboolean (*highlighting_is_string_style) (gint lexer, gint style);
578 gboolean (*highlighting_is_comment_style) (gint lexer, gint style);
579 gboolean (*highlighting_is_code_style) (gint lexer, gint style);
581 HighlightingFuncs;
584 /* See filetypes.h */
585 typedef struct FiletypeFuncs
587 GeanyFiletype* (*filetypes_detect_from_file) (const gchar *utf8_filename);
588 GeanyFiletype* (*filetypes_lookup_by_name) (const gchar *name);
589 GeanyFiletype* (*filetypes_index)(gint idx);
590 const gchar* (*filetypes_get_display_name)(GeanyFiletype *ft);
591 const GSList* (*filetypes_get_sorted_by_name)(void);
592 /* Remember to convert any filetype_id arguments to GeanyFiletype pointers in any
593 * appended functions */
595 FiletypeFuncs;
598 /* See search.h */
599 typedef struct SearchFuncs
601 void (*search_show_find_in_files_dialog) (const gchar *dir);
603 SearchFuncs;
606 /* See tagmanager/include */
607 typedef struct TagManagerFuncs
609 gchar* (*tm_get_real_path) (const gchar *file_name);
610 TMSourceFile* (*tm_source_file_new) (const char *file_name, const char *name);
611 void (*tm_source_file_free) (TMSourceFile *source_file);
612 void (*tm_workspace_add_source_file) (TMSourceFile *source_file);
613 void (*tm_workspace_remove_source_file) (TMSourceFile *source_file);
614 void (*tm_workspace_add_source_files) (GPtrArray *source_files);
615 void (*tm_workspace_remove_source_files) (GPtrArray *source_files);
617 TagManagerFuncs;
620 /* See navqueue.h */
621 typedef struct NavQueueFuncs
623 gboolean (*navqueue_goto_line) (struct GeanyDocument *old_doc, struct GeanyDocument *new_doc,
624 gint line);
626 NavQueueFuncs;
629 struct GeanyEditor;
631 /* See editor.h */
632 typedef struct EditorFuncs
634 const struct GeanyIndentPrefs* (*editor_get_indent_prefs)(struct GeanyEditor *editor);
635 struct _ScintillaObject* (*editor_create_widget)(struct GeanyEditor *editor);
637 void (*editor_indicator_set_on_range) (struct GeanyEditor *editor, gint indic, gint start, gint end);
638 void (*editor_indicator_set_on_line) (struct GeanyEditor *editor, gint indic, gint line);
639 void (*editor_indicator_clear) (struct GeanyEditor *editor, gint indic);
641 void (*editor_set_indent_type)(struct GeanyEditor *editor, GeanyIndentType type);
642 gchar* (*editor_get_word_at_pos) (struct GeanyEditor *editor, gint pos, const gchar *wordchars);
644 const gchar* (*editor_get_eol_char_name) (struct GeanyEditor *editor);
645 gint (*editor_get_eol_char_len) (struct GeanyEditor *editor);
646 const gchar* (*editor_get_eol_char) (struct GeanyEditor *editor);
648 void (*editor_insert_text_block) (struct GeanyEditor *editor, const gchar *text,
649 gint insert_pos, gint cursor_index, gint newline_indent_size,
650 gboolean replace_newlines);
652 gint (*editor_get_eol_char_mode) (struct GeanyEditor *editor);
653 gboolean (*editor_goto_pos) (struct GeanyEditor *editor, gint pos, gboolean mark);
655 const gchar* (*editor_find_snippet) (struct GeanyEditor *editor, const gchar *snippet_name);
656 void (*editor_insert_snippet) (struct GeanyEditor *editor, gint pos, const gchar *snippet);
658 EditorFuncs;
661 /* avoid including keybindings.h */
662 typedef gboolean (*_GeanyKeyGroupCallback) (guint key_id);
664 /* See pluginutils.c */
665 typedef struct PluginFuncs
667 void (*plugin_add_toolbar_item)(GeanyPlugin *plugin, GtkToolItem *item);
668 void (*plugin_module_make_resident) (GeanyPlugin *plugin);
669 void (*plugin_signal_connect) (GeanyPlugin *plugin,
670 GObject *object, const gchar *signal_name, gboolean after,
671 GCallback callback, gpointer user_data);
672 struct GeanyKeyGroup* (*plugin_set_key_group)(GeanyPlugin *plugin,
673 const gchar *section_name, gsize count, _GeanyKeyGroupCallback callback);
674 void (*plugin_show_configure)(GeanyPlugin *plugin);
675 guint (*plugin_timeout_add) (GeanyPlugin *plugin, guint interval, GSourceFunc function,
676 gpointer data);
677 guint (*plugin_timeout_add_seconds) (GeanyPlugin *plugin, guint interval,
678 GSourceFunc function, gpointer data);
679 guint (*plugin_idle_add) (GeanyPlugin *plugin, GSourceFunc function, gpointer data);
680 void (*plugin_builder_connect_signals) (GeanyPlugin *plugin, GtkBuilder *builder, gpointer user_data);
682 PluginFuncs;
685 struct StashGroup;
687 /* See stash.h */
688 typedef struct StashFuncs
690 struct StashGroup *(*stash_group_new)(const gchar *name);
691 void (*stash_group_add_boolean)(struct StashGroup *group, gboolean *setting,
692 const gchar *key_name, gboolean default_value);
693 void (*stash_group_add_integer)(struct StashGroup *group, gint *setting,
694 const gchar *key_name, gint default_value);
695 void (*stash_group_add_string)(struct StashGroup *group, gchar **setting,
696 const gchar *key_name, const gchar *default_value);
697 void (*stash_group_add_string_vector)(struct StashGroup *group, gchar ***setting,
698 const gchar *key_name, const gchar **default_value);
699 void (*stash_group_load_from_key_file)(struct StashGroup *group, GKeyFile *keyfile);
700 void (*stash_group_save_to_key_file)(struct StashGroup *group, GKeyFile *keyfile);
701 void (*stash_group_free)(struct StashGroup *group);
702 gboolean (*stash_group_load_from_file)(struct StashGroup *group, const gchar *filename);
703 gint (*stash_group_save_to_file)(struct StashGroup *group, const gchar *filename,
704 GKeyFileFlags flags);
705 void (*stash_group_add_toggle_button)(struct StashGroup *group, gboolean *setting,
706 const gchar *key_name, gboolean default_value, gconstpointer widget_id);
707 void (*stash_group_add_radio_buttons)(struct StashGroup *group, gint *setting,
708 const gchar *key_name, gint default_value,
709 gconstpointer widget_id, gint enum_id, ...) G_GNUC_NULL_TERMINATED;
710 void (*stash_group_add_spin_button_integer)(struct StashGroup *group, gint *setting,
711 const gchar *key_name, gint default_value, gconstpointer widget_id);
712 void (*stash_group_add_combo_box)(struct StashGroup *group, gint *setting,
713 const gchar *key_name, gint default_value, gconstpointer widget_id);
714 void (*stash_group_add_combo_box_entry)(struct StashGroup *group, gchar **setting,
715 const gchar *key_name, const gchar *default_value, gconstpointer widget_id);
716 void (*stash_group_add_entry)(struct StashGroup *group, gchar **setting,
717 const gchar *key_name, const gchar *default_value, gconstpointer widget_id);
718 void (*stash_group_add_widget_property)(struct StashGroup *group, gpointer setting,
719 const gchar *key_name, gpointer default_value, gconstpointer widget_id,
720 const gchar *property_name, GType type);
721 void (*stash_group_display)(struct StashGroup *group, GtkWidget *owner);
722 void (*stash_group_update)(struct StashGroup *group, GtkWidget *owner);
723 void (*stash_group_free_settings)(struct StashGroup *group);
725 StashFuncs;
728 /* See symbols.h */
729 typedef struct SymbolsFuncs
731 const gchar* (*symbols_get_context_separator)(gint ft_id);
733 SymbolsFuncs;
735 /* See build.h */
736 typedef struct BuildFuncs
738 void (*build_activate_menu_item)(const GeanyBuildGroup grp, const guint cmd);
739 const gchar *(*build_get_current_menu_item)(const GeanyBuildGroup grp, const guint cmd,
740 const GeanyBuildCmdEntries field);
741 void (*build_remove_menu_item)(const GeanyBuildSource src, const GeanyBuildGroup grp,
742 const gint cmd);
743 void (*build_set_menu_item)(const GeanyBuildSource src, const GeanyBuildGroup grp,
744 const guint cmd, const GeanyBuildCmdEntries field, const gchar *value);
745 guint (*build_get_group_count)(const GeanyBuildGroup grp);
747 BuildFuncs;
749 /* Deprecated aliases */
750 #ifndef GEANY_DISABLE_DEPRECATED
752 #define document_reload_file document_reload_force
754 /** @deprecated - copy into your plugin code if needed.
755 * @c NULL-safe way to get the index of @a doc_ptr in the documents array. */
756 #define DOC_IDX(doc_ptr) \
757 (doc_ptr ? doc_ptr->index : -1)
758 #define DOC_IDX_VALID(doc_idx) \
759 ((doc_idx) >= 0 && (guint)(doc_idx) < documents_array->len && documents[doc_idx]->is_valid)
761 #define GEANY_WINDOW_MINIMAL_WIDTH 550
762 #define GEANY_WINDOW_MINIMAL_HEIGHT GEANY_DEFAULT_DIALOG_HEIGHT
764 #endif /* GEANY_DISABLE_DEPRECATED */
766 G_END_DECLS
768 #endif /* GEANY_PLUGIN_DATA_H */