/* * editor.h - this file is part of Geany, a fast and lightweight IDE * * Copyright 2005-2007 Enrico Tröger * Copyright 2006-2007 Nick Treleaven * * 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, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * * $Id$ */ #ifndef GEANY_SCI_CB_H #define GEANY_SCI_CB_H 1 #include "Scintilla.h" #include "ScintillaWidget.h" // Note: Avoid using SSM in files not related to scintilla, use sciwrappers.h instead. #define SSM(s, m, w, l) scintilla_send_message(s, m, w, l) typedef enum { INDENT_NONE = 0, INDENT_BASIC, INDENT_ADVANCED } IndentMode; /* These are the default prefs when creating a new editor window. * Some of these can be overridden per document. * Remember to increment abi_version in plugindata.h when changing items. */ typedef struct EditorPrefs { // display gboolean show_white_space; gboolean show_indent_guide; gboolean show_line_endings; gint long_line_type; gint long_line_column; gchar *long_line_color; gboolean show_markers_margin; // view menu gboolean show_linenumber_margin; // view menu gboolean show_scrollbars; // hidden pref // behaviour gboolean line_wrapping; gboolean use_indicators; gboolean folding; gboolean unfold_all_children; gint tab_width; gboolean use_tabs; gboolean use_tab_to_indent; // hidden pref IndentMode indent_mode; gboolean disable_dnd; gboolean smart_home_key; gboolean auto_complete_symbols; gboolean auto_close_xml_tags; gboolean auto_complete_constructs; gint autocompletion_max_height; GHashTable *auto_completions; gboolean brace_match_ltgt; // whether to highlight < and > chars (hidden pref) } EditorPrefs; extern EditorPrefs editor_prefs; typedef struct { gchar *current_word; // holds word under the mouse or keyboard cursor gint click_pos; // text position where the mouse was clicked } EditorInfo; extern EditorInfo editor_info; gboolean on_editor_button_press_event(GtkWidget *widget, GdkEventButton *event, gpointer user_data); void on_editor_notification(GtkWidget* editor, gint scn, gpointer lscn, gpointer user_data); gboolean editor_start_auto_complete(gint idx, gint pos, gboolean force); void editor_close_block(gint idx, gint pos); gboolean editor_auto_complete(gint idx, gint pos); void editor_auto_latex(gint idx, gint pos); void editor_show_macro_list(ScintillaObject *sci); void editor_find_current_word(ScintillaObject *sci, gint pos, gchar *word, size_t wordlen, const gchar *wc); gboolean editor_show_calltip(gint idx, gint pos); void editor_do_comment_toggle(gint idx); void editor_do_comment(gint idx, gint line, gboolean allow_empty_lines, gboolean toggle); gint editor_do_uncomment(gint idx, gint line, gboolean toggle); void editor_highlight_braces(ScintillaObject *sci, gint cur_pos); void editor_auto_table(ScintillaObject *sci, gint pos); gboolean editor_lexer_is_c_like(gint lexer); gint editor_lexer_get_type_keyword_idx(gint lexer); void editor_insert_multiline_comment(gint idx); void editor_select_word(ScintillaObject *sci); void editor_select_lines(ScintillaObject *sci); void editor_select_paragraph(ScintillaObject *sci); void editor_insert_alternative_whitespace(ScintillaObject *sci); void editor_auto_line_indentation(gint idx, gint pos); void editor_indentation_by_one_space(gint idx, gint pos, gboolean decrease); void editor_scroll_to_line(ScintillaObject *sci, gint line, gfloat percent_of_view); void editor_finalize(); #endif