view libgui/src/gui-preferences-ed.cc @ 33592:8a833798c741 bytecode-interpreter tip

maint: Merge default to bytecode-interpreter
author Arun Giridhar <arungiridhar@gmail.com>
date Fri, 17 May 2024 09:32:40 -0400
parents a583e8d66a19
children
line wrap: on
line source

////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2017-2024 The Octave Project Developers
//
// See the file COPYRIGHT.md in the top-level directory of this
// distribution or <https://octave.org/copyright/>.
//
// This file is part of Octave.
//
// Octave 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 3 of the License, or
// (at your option) any later version.
//
// Octave 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 Octave; see the file COPYING.  If not, see
// <https://www.gnu.org/licenses/>.
//
////////////////////////////////////////////////////////////////////////

#if defined (HAVE_CONFIG_H)
#  include "config.h"
#endif

#if defined (HAVE_QSCINTILLA)
#include <Qsci/qsciscintilla.h>
#endif

#include "gui-preferences-ed.h"
#include "gui-settings.h"
#include "localcharset-wrapper.h"

// Editor preferences

// Lexer

gui_pref
ed_color_mode ("editor/color_mode", QVariant (0));

// Code completion

gui_pref
ed_code_completion_octave_builtins ("editor/codeCompletion_octave_builtins",
                                    QVariant (true));

gui_pref
ed_code_completion_octave_functions ("editor/codeCompletion_octave_functions",
                                     QVariant (true));

gui_pref
ed_code_completion_keywords ("editor/codeCompletion_keywords", QVariant (true));

gui_pref
ed_code_completion_document ("editor/codeCompletion_document", QVariant (true));

gui_pref
ed_code_completion_replace ("editor/codeCompletion_replace", QVariant (false));

gui_pref
ed_code_completion_case ("editor/codeCompletion_case", QVariant (true));

gui_pref
ed_code_completion ("editor/codeCompletion", QVariant (true));

gui_pref
ed_code_completion_threshold ("editor/codeCompletion_threshold", QVariant (3));

// Code formatting

gui_pref
ed_code_folding ("editor/code_folding", QVariant (true));

gui_pref
ed_auto_indent ("editor/auto_indent", QVariant (true));

gui_pref
ed_tab_indents_line ("editor/tab_indents_line", QVariant (false));

gui_pref
ed_backspace_unindents_line ("editor/backspace_unindents_line",
                             QVariant (false));

gui_pref
ed_show_indent_guides ("editor/show_indent_guides", QVariant (false));

gui_pref
ed_indent_uses_tabs ("editor/indent_uses_tabs", QVariant (false));

gui_pref
ed_indent_width ("editor/indent_width", QVariant (2));

gui_pref
ed_tab_width ("editor/tab_width", QVariant (2));

gui_pref
ed_auto_endif ("editor/auto_endif", QVariant (1));

// Long line handling

gui_pref
ed_long_line_column ("editor/long_line_column", QVariant (80));

gui_pref
ed_long_line_marker ("editor/long_line_marker", QVariant (true));

gui_pref
ed_long_line_marker_line ("editor/long_line_marker_line", QVariant (true));

gui_pref
ed_long_line_marker_background ("editor/long_line_marker_background",
                                QVariant (false));

gui_pref
ed_wrap_lines ("editor/wrap_lines", QVariant (false));

gui_pref
ed_break_lines ("editor/break_lines", QVariant (false));

gui_pref
ed_break_lines_comments ("editor/break_lines_comments", QVariant (false));

// Other

gui_pref
ed_highlight_all_occurrences ("editor/highlight_all_occurrences",
                              QVariant (true));

gui_pref
ed_show_Line_numbers ("editor/showLineNumbers", QVariant (true));

gui_pref
ed_line_numbers_size ("editor/line_numbers_size", QVariant ( 0));

gui_pref
ed_show_edit_status_bar ("editor/show_edit_status_bar", QVariant (true));

gui_pref
ed_highlight_current_line ("editor/highlightCurrentLine", QVariant (true));

gui_pref
ed_highlight_current_line_color ("editor/highlightCurrentLineColor",
                                 QVariant (settings_color_no_change));

gui_pref
ed_show_white_space ("editor/show_white_space", QVariant (false));

gui_pref
ed_show_white_space_indent ("editor/show_white_space_indent", QVariant (false));

gui_pref
ed_show_line_numbers ("editor/showLineNumbers", QVariant (true));

gui_pref
ed_show_eol_chars ("editor/show_eol_chars", QVariant (false));

gui_pref
ed_show_toolbar ("editor/show_toolbar", QVariant (true));

gui_pref
ed_show_hscroll_bar ("editor/show_hscroll_bar", QVariant (true));

// Octave comment strings

gui_pref
ed_comment_str_old ("editor/octave_comment_string", QVariant (0));

gui_pref
ed_comment_str ("editor/oct_comment_str", QVariant (0));

gui_pref
ed_uncomment_str ("editor/oct_uncomment_str", QVariant (1 + 2 + 4 + 8));

// Session data

gui_pref
ed_restore_session ("editor/restoreSession", QVariant (true));

gui_pref
ed_session_names ("editor/savedSessionTabs", QVariant (QStringList ()));

gui_pref
ed_session_enc ("editor/saved_session_encodings", QVariant (QStringList ()));

gui_pref
ed_session_ind ("editor/saved_session_tab_index", QVariant (QStringList ()));

gui_pref
ed_session_lines ("editor/saved_session_lines", QVariant (QStringList ()));

gui_pref
ed_session_bookmarks ("editor/saved_session_bookmarks", QVariant (QStringList ()));

// Tabs

gui_pref
ed_tab_position ("editor/tab_position", QVariant (QTabWidget::North));

gui_pref
ed_tabs_rotated ("editor/tabs_rotated", QVariant (false));

gui_pref
ed_tabs_max_width ("editor/tabs_max_width", QVariant (0));

// File handling

gui_pref
ed_force_newline ("editor/force_newline", QVariant (true));

gui_pref
ed_rm_trailing_spaces ("editor/rm_trailing_spaces", QVariant (true));

gui_pref
ed_default_eol_mode ("editor/default_eol_mode", QVariant (os_eol_mode));

gui_pref
ed_show_dbg_file ("editor/show_dbg_file", QVariant (true));

gui_pref
ed_default_enc ("editor/default_encoding", QVariant ("UTF-8"));

gui_pref
ed_create_new_file ("editor/create_new_file", QVariant (false));

gui_pref
ed_hiding_closes_files ("editor/hiding_closes_files", QVariant (false));

gui_pref
ed_always_reload_changed_files ("editor/always_reload_changed_files",
                                QVariant (false));

gui_pref
ed_run_selection_tmp_file ("editor/run_selection_tmp_file", QVariant (QString ()));

gui_pref
ed_mru_file_list ("editor/mru_file_list", QVariant ());

gui_pref
ed_mru_file_encodings ("editor/mru_file_encodings", QVariant ());

// The find dialog

// Dialog position, the default will be calculated from the editor's geometry
gui_pref
ed_fdlg_pos ("editor/fdgl_pos", QVariant (QPoint (0, 0)));

gui_pref
ed_fdlg_opts ("editor/fdgl_opts", QVariant (FIND_DLG_WRAP));

gui_pref
ed_fdlg_search ("editor/fdgl_search", QVariant ());

gui_pref
ed_fdlg_replace ("editor/fdgl_replace", QVariant ());