Geany dev
Deprecated List
Global GEANY_KEYS_EDITOR_MACROLIST
1.25, it doesn't do anything anymore
Global NZV (ptr)
2013/08 - use !EMPTY() instead.
Global plugin_fields
Use ui_add_document_sensitive() instead.
Global plugin_info
Use GeanyPlugin::info instead.
File pluginsymbols.c
This is the legacy way of making plugins for Geany. Refer to Plugin HowTo for the reworked process and Porting guide from legacy entry points to the current ones to learn how to port your plugin to that new world. Meanwhile Geany will still load plugins programmed against this interface (even the items that are marked deprecated individually such as plugin_fields).
Global sci_get_selected_text (ScintillaObject *sci, gchar *text)
sci_get_selected_text is deprecated and should not be used in newly-written code. Use sci_get_selection_contents() instead.
Global sci_get_selected_text_length (ScintillaObject *sci)
sci_get_selected_text_length is deprecated and should not be used in newly-written code. Use sci_get_selected_text_length2() instead.
Global sci_get_text (ScintillaObject *sci, gint len, gchar *text)
sci_get_text is deprecated and should not be used in newly-written code. Use sci_get_contents() instead.
Global sci_get_text_range (ScintillaObject *sci, gint start, gint end, gchar *text)
sci_get_text_range is deprecated and should not be used in newly-written code. Use sci_get_contents_range() instead.
Global setptr (ptr, result)
2011/11/15 - use SETPTR() instead.
Global tm_get_real_path (const gchar *file_name) G_DEPRECATED_FOR(utils_get_real_path)
since 1.32 (ABI 235)
Global ui_frame_new_with_alignment (const gchar *label_text, GtkWidget **alignment)
1.29: Use GTK API directly
Global ui_widget_set_tooltip_text (GtkWidget *widget, const gchar *text)
0.21 use gtk_widget_set_tooltip_text() instead