Represents the main window. More...
#include "main-window.h"
Public Types | |
typedef std::pair< int, int > | int_pair |
typedef std::pair< std::string, std::string > | name_pair |
Public Slots | |
void | accept_directory_line_edit (void) |
void | browse_for_directory (void) |
void | change_directory_up (void) |
void | connect_visibility_changed (void) |
void | copyClipboard (void) |
void | debug_continue (void) |
void | debug_quit (void) |
void | debug_step_into (void) |
void | debug_step_out (void) |
void | debug_step_over (void) |
void | display_community_news (const QString &news) |
void | display_release_notes (void) |
void | do_reset_windows (bool show_it=true) |
void | edit_mfile (const QString &, int) |
void | editor_tabs_changed (bool) |
void | execute_command_in_terminal (const QString &dir) |
void | file_remove_proxy (const QString &o, const QString &n) |
void | focus_changed (QWidget *w_old, QWidget *w_new) |
void | focus_console_after_command (void) |
void | focus_window (const QString &win_name) |
QList< octave_dock_widget * > | get_dock_widget_list (void) |
Returns a list of dock widgets. More... | |
void | go_to_previous_widget (void) |
void | handle_clear_command_window_request (void) |
void | handle_clear_history_request (void) |
void | handle_clear_workspace_request (void) |
void | handle_delete_debugger_pointer_request (const QString &file, int line) |
void | handle_edit_mfile_request (const QString &name, const QString &file, const QString &curr_dir, int line) |
void | handle_enter_debugger (void) |
void | handle_exit_debugger (void) |
void | handle_insert_debugger_pointer_request (const QString &file, int line) |
void | handle_load_workspace_request (const QString &file=QString()) |
void | handle_new_figure_request (void) |
void | handle_octave_ready () |
void | handle_open_any_request (const QString &file=QString()) |
void | handle_register_doc (const QString &file) |
void | handle_rename_variable_request (const QString &old_name, const QString &new_name) |
void | handle_save_workspace_request (void) |
void | handle_set_path_dialog_request (void) |
void | handle_show_doc (const QString &file) |
void | handle_undo_request (void) |
void | handle_unregister_doc (const QString &file) |
void | handle_update_breakpoint_marker_request (bool insert, const QString &file, int line, const QString &cond) |
void | init_terminal_size (void) |
void | load_and_display_community_news (int serial=-1) |
void | modify_path (const octave_value_list &dir_list, bool rm, bool subdirs) |
void | new_file (const QString &commands=QString()) |
void | notice_settings (const gui_settings *settings, bool update_by_worker=false) |
void | open_bug_tracker_page (void) |
void | open_contribute_page (void) |
void | open_donate_page (void) |
void | open_file (const QString &file_name=QString(), int line=-1) |
void | open_octave_packages_page (void) |
void | open_online_documentation_page (void) |
void | pasteClipboard (void) |
void | prepare_to_exit (void) |
void | process_settings_dialog_request (const QString &desired_tab=QString()) |
void | read_settings (void) |
void | report_status_message (const QString &statusMessage) |
void | request_new_function (bool triggered=true) |
void | request_new_script (const QString &commands=QString()) |
void | request_open_file (void) |
void | request_reload_settings (void) |
void | reset_windows (void) |
void | run_file_in_terminal (const QFileInfo &info) |
void | selectAll (void) |
void | set_current_working_directory (const QString &dir) |
void | set_global_shortcuts (bool enable) |
Setting global shortcuts. More... | |
void | set_screen_size (int ht, int wd) |
void | set_window_layout (gui_settings *settings) |
void | show_about_octave (void) |
void | update_octave_directory (const QString &dir) |
void | write_settings (void) |
void | find_files (const QString &startdir=QDir::currentPath()) |
Find files dialog. More... | |
void | find_files_finished (int) |
Find files dialog. More... | |
void | clipboard_has_changed (void) |
Handling the clipboard. More... | |
void | clear_clipboard () |
Handling the clipboard. More... | |
Public Member Functions | |
main_window (base_qobject &oct_qobj) | |
~main_window (void) | |
bool | command_window_has_focus (void) const |
bool | confirm_shutdown (void) |
void | focus_command_window (void) |
Protected Member Functions | |
void | closeEvent (QCloseEvent *closeEvent) |
Private Slots | |
void | disable_menu_shortcuts (bool disable) |
void | edit_variable (const QString &name, const octave_value &) |
Opens the variable editor for name . More... | |
void | handle_variable_editor_update (void) |
void | refresh_variable_editor (void) |
void | request_open_files (const QStringList &open_file_names) |
void | restore_create_file_setting (void) |
void | set_file_encoding (const QString &new_encoding) |
void | warning_function_not_found (const QString &message) |
Private Member Functions | |
QAction * | add_action (QMenu *menu, const QIcon &icon, const QString &text, const char *member, const QWidget *receiver=nullptr) |
void | configure_shortcuts (void) |
void | construct (void) |
void | construct_central_widget (void) |
void | construct_debug_menu (QMenuBar *p) |
QAction * | construct_debug_menu_item (const char *icon, const QString &item, const char *member) |
void | construct_documentation_menu (QMenu *p) |
void | construct_edit_menu (QMenuBar *p) |
void | construct_file_menu (QMenuBar *p) |
void | construct_help_menu (QMenuBar *p) |
void | construct_menu_bar (void) |
void | construct_new_menu (QMenu *p) |
void | construct_news_menu (QMenuBar *p) |
void | construct_octave_qt_link (void) |
void | construct_tool_bar (void) |
void | construct_window_menu (QMenuBar *p) |
QAction * | construct_window_menu_item (QMenu *p, const QString &item, bool checkable, QWidget *) |
QList< octave_dock_widget * > | dock_widget_list (void) |
void | get_screen_geometry (int *width, int *height) |
QMenu * | m_add_menu (QMenuBar *p, QString text) |
void | resize_dock (QDockWidget *dw, int width, int height) |
void | set_default_geometry (void) |
void | update_default_encoding (const QString &default_encoding) |
Represents the main window.
Definition at line 75 of file main-window.h.
typedef std::pair<int, int> octave::main_window::int_pair |
Definition at line 82 of file main-window.h.
typedef std::pair<std::string, std::string> octave::main_window::name_pair |
Definition at line 81 of file main-window.h.
octave::main_window::main_window | ( | base_qobject & | oct_qobj | ) |
Definition at line 110 of file main-window.cc.
References octave::base_qobject::config_translators(), connect_visibility_changed(), construct(), construct_central_widget(), construct_octave_qt_link(), octave::create_default_editor(), ed_default_enc(), focus_command_window(), octave::base_qobject::get_resource_manager(), octave::resource_manager::get_settings(), octave::base_qobject::get_shortcut_manager(), octave::shortcut_manager::init_data(), init_terminal_size(), octave::resource_manager::is_first_run(), load_and_display_community_news(), m_active_dock, m_active_editor, m_command_window, m_default_encoding, m_default_style, m_doc_browser_window, m_editor_window, m_external_editor, m_file_browser_window, m_history_window, m_octave_qobj, m_previous_dock, m_status_bar, m_variable_editor_window, m_workspace_model, m_workspace_window, nr_allow_connection(), nr_last_news(), nr_last_time(), octave::sys::env::putenv(), octave::base_qobject::qapplication(), read_settings(), octave::resource_manager::reload_settings(), and octave::resource_manager::update_network_settings().
octave::main_window::~main_window | ( | void | ) |
Definition at line 241 of file main-window.cc.
References m_command_window, m_community_news_window, m_doc_browser_window, m_editor_window, m_external_editor, m_file_browser_window, m_find_files_dlg, m_history_window, m_release_notes_window, m_status_bar, m_variable_editor_window, m_workspace_model, and m_workspace_window.
|
slot |
Definition at line 1024 of file main-window.cc.
References m_current_directory_combo_box, and set_current_working_directory().
Referenced by construct_tool_bar().
|
signal |
Referenced by focus_changed(), and notice_settings().
|
private |
Definition at line 2192 of file main-window.cc.
Referenced by construct_debug_menu_item(), construct_documentation_menu(), construct_help_menu(), construct_news_menu(), and construct_window_menu().
|
signal |
|
slot |
Definition at line 974 of file main-window.cc.
References focus_command_window(), octave::base_qobject::get_resource_manager(), octave::resource_manager::get_settings(), global_use_native_dialogs(), m_octave_qobj, and set_current_working_directory().
Referenced by construct_tool_bar().
|
slot |
Definition at line 1015 of file main-window.cc.
References set_current_working_directory().
Referenced by construct_tool_bar().
|
slot |
Handling the clipboard.
Definition at line 1826 of file main-window.cc.
References m_clipboard.
Referenced by construct_edit_menu().
|
slot |
Handling the clipboard.
Definition at line 1812 of file main-window.cc.
References m_clear_clipboard_action, m_clipboard, and m_paste_action.
Referenced by construct_edit_menu().
|
protected |
Definition at line 1903 of file main-window.cc.
References confirm_shutdown(), interpreter_event(), and octave::interpreter::quit().
bool octave::main_window::command_window_has_focus | ( | void | ) | const |
Definition at line 262 of file main-window.cc.
References octave::terminal_dock_widget::has_focus(), and m_command_window.
Referenced by handle_delete_debugger_pointer_request(), handle_insert_debugger_pointer_request(), handle_undo_request(), and handle_update_breakpoint_marker_request().
|
private |
Definition at line 2688 of file main-window.cc.
References octave::base_qobject::get_shortcut_manager(), m_about_octave_action, m_clear_clipboard_action, m_clear_command_history_action, m_clear_command_window_action, m_clear_workspace_action, m_command_window_action, m_contribute_action, m_copy_action, m_current_news_action, m_debug_continue, m_debug_quit, m_debug_step_into, m_debug_step_out, m_debug_step_over, m_developer_action, m_documentation_action, m_editor_action, m_exit_action, m_file_browser_action, m_find_files_action, m_history_action, m_load_workspace_action, m_new_figure_action, m_new_function_action, m_new_script_action, m_octave_packages_action, m_octave_qobj, m_ondisk_doc_action, m_online_doc_action, m_open_action, m_paste_action, m_preferences_action, m_previous_dock_action, m_release_notes_action, m_report_bug_action, m_reset_windows_action, m_save_workspace_action, m_select_all_action, m_set_path_action, m_show_command_window_action, m_show_documentation_action, m_show_editor_action, m_show_file_browser_action, m_show_history_action, m_show_variable_editor_action, m_show_workspace_action, m_undo_action, m_variable_editor_action, m_workspace_action, sc_main_debug_continue(), sc_main_debug_quit(), sc_main_debug_step_into(), sc_main_debug_step_out(), sc_main_debug_step_over(), sc_main_edit_clear_clipboard(), sc_main_edit_clear_command_window(), sc_main_edit_clear_history(), sc_main_edit_clear_workspace(), sc_main_edit_copy(), sc_main_edit_find_in_files(), sc_main_edit_paste(), sc_main_edit_preferences(), sc_main_edit_select_all(), sc_main_edit_set_path(), sc_main_edit_undo(), sc_main_file_exit(), sc_main_file_load_workspace(), sc_main_file_new_figure(), sc_main_file_new_file(), sc_main_file_new_function(), sc_main_file_open_file(), sc_main_file_save_workspace(), sc_main_help_about(), sc_main_help_contribute(), sc_main_help_developer(), sc_main_help_ondisk_doc(), sc_main_help_online_doc(), sc_main_help_packages(), sc_main_help_report_bug(), sc_main_news_community_news(), sc_main_news_release_notes(), sc_main_window_command(), sc_main_window_doc(), sc_main_window_editor(), sc_main_window_file_browser(), sc_main_window_history(), sc_main_window_previous_dock(), sc_main_window_reset(), sc_main_window_show_command(), sc_main_window_show_doc(), sc_main_window_show_editor(), sc_main_window_show_file_browser(), sc_main_window_show_history(), sc_main_window_show_variable_editor(), sc_main_window_show_workspace(), sc_main_window_variable_editor(), sc_main_window_workspace(), and octave::shortcut_manager::set_shortcut().
Referenced by construct(), notice_settings(), and set_global_shortcuts().
bool octave::main_window::confirm_shutdown | ( | void | ) |
Definition at line 284 of file main-window.cc.
References octave::file_editor_interface::check_closing(), gui_pref::def, octave::base_qobject::get_resource_manager(), octave::resource_manager::get_settings(), global_prompt_to_exit(), gui_pref::key, m_editor_window, and m_octave_qobj.
Referenced by closeEvent(), and octave::gui_qobject::confirm_shutdown().
|
slot |
Definition at line 1554 of file main-window.cc.
References dock_widget_list(), octave::file_editor_interface::enable_menu_shortcuts(), and m_editor_window.
Referenced by main_window().
|
private |
Definition at line 1944 of file main-window.cc.
References configure_shortcuts(), construct_menu_bar(), construct_tool_bar(), delete_debugger_pointer_signal(), disable_menu_shortcuts(), edit_variable(), editor_focus_changed(), editor_tabs_changed(), file_remove_proxy(), find_files(), focus_changed(), handle_delete_debugger_pointer_request(), handle_insert_debugger_pointer_request(), handle_load_workspace_request(), handle_open_any_request(), handle_rename_variable_request(), handle_update_breakpoint_marker_request(), handle_variable_editor_update(), insert_debugger_pointer_signal(), interpreter_event(), octave::base_qobject::interpreter_qobj(), m_command_window, m_doc_browser_window, m_editor_window, m_external_editor, m_file_browser_window, m_history_window, m_octave_qobj, m_status_bar, m_variable_editor_window, m_workspace_model, m_workspace_window, notice_settings(), prepare_to_exit(), process_settings_dialog_request(), octave::interpreter_qobject::qt_link(), refresh_variable_editor(), octave::workspace_view::setModel(), settings_changed(), step_into_file_signal(), update_breakpoint_marker_signal(), warning_function_not_found(), and warning_function_not_found_signal().
Referenced by main_window().
|
private |
Definition at line 1928 of file main-window.cc.
Referenced by main_window().
|
private |
Definition at line 2443 of file main-window.cc.
References construct_debug_menu_item(), debug_continue(), octave::file_editor_interface::debug_menu(), debug_quit(), debug_step_into(), debug_step_out(), debug_step_over(), m_add_menu(), m_debug_continue, m_debug_menu, m_debug_quit, m_debug_step_into, m_debug_step_out, m_debug_step_over, and m_editor_window.
Referenced by construct_menu_bar().
|
private |
Definition at line 2425 of file main-window.cc.
References add_action(), octave::file_editor_interface::debug_menu(), octave::base_qobject::get_resource_manager(), octave::resource_manager::icon(), m_debug_menu, m_editor_window, m_octave_qobj, and octave::file_editor_interface::toolbar().
Referenced by construct_debug_menu().
|
private |
Definition at line 2601 of file main-window.cc.
References add_action(), m_doc_browser_window, m_ondisk_doc_action, m_online_doc_action, and open_online_documentation_page().
Referenced by construct_help_menu().
|
private |
Definition at line 2338 of file main-window.cc.
References clear_clipboard(), clipboard_has_changed(), copyClipboard(), find_files(), octave::base_qobject::get_resource_manager(), handle_clear_command_window_request(), handle_clear_history_request(), handle_clear_workspace_request(), handle_set_path_dialog_request(), octave::resource_manager::icon(), m_add_menu(), m_clear_clipboard_action, m_clear_command_history_action, m_clear_command_window_action, m_clear_workspace_action, m_clipboard, m_copy_action, m_find_files_action, m_octave_qobj, m_paste_action, m_preferences_action, m_select_all_action, m_set_path_action, m_undo_action, pasteClipboard(), process_settings_dialog_request(), and selectAll().
Referenced by construct_menu_bar().
|
private |
Definition at line 2258 of file main-window.cc.
References construct_new_menu(), octave::file_editor_interface::get_mru_menu(), octave::base_qobject::get_resource_manager(), handle_load_workspace_request(), handle_save_workspace_request(), octave::resource_manager::icon(), m_add_menu(), m_editor_window, m_exit_action, m_load_workspace_action, m_octave_qobj, m_open_action, m_save_workspace_action, and request_open_file().
Referenced by construct_menu_bar().
|
private |
Definition at line 2575 of file main-window.cc.
References add_action(), construct_documentation_menu(), m_about_octave_action, m_add_menu(), m_contribute_action, m_developer_action, m_octave_packages_action, m_report_bug_action, open_bug_tracker_page(), open_contribute_page(), open_donate_page(), open_octave_packages_page(), and show_about_octave().
Referenced by construct_menu_bar().
|
private |
Definition at line 2226 of file main-window.cc.
References construct_debug_menu(), construct_edit_menu(), construct_file_menu(), construct_help_menu(), construct_news_menu(), construct_window_menu(), octave::file_editor_interface::insert_global_actions(), m_copy_action, m_editor_window, m_find_files_action, m_new_function_action, m_new_script_action, m_open_action, m_paste_action, m_select_all_action, and m_undo_action.
Referenced by construct().
|
private |
Definition at line 2301 of file main-window.cc.
References octave::base_qobject::get_resource_manager(), handle_new_figure_request(), octave::resource_manager::icon(), m_active_editor, m_new_figure_action, m_new_function_action, m_new_script_action, m_octave_qobj, new_file_signal(), open_file_signal(), request_new_function(), request_new_script(), and request_open_file().
Referenced by construct_file_menu().
|
private |
Definition at line 2612 of file main-window.cc.
References add_action(), display_release_notes(), load_and_display_community_news(), m_add_menu(), m_current_news_action, and m_release_notes_action.
Referenced by construct_menu_bar().
|
private |
Definition at line 2100 of file main-window.cc.
References delete_debugger_pointer_signal(), execute_command_in_terminal(), handle_delete_debugger_pointer_request(), handle_enter_debugger(), handle_exit_debugger(), handle_insert_debugger_pointer_request(), handle_register_doc(), handle_show_doc(), handle_unregister_doc(), handle_update_breakpoint_marker_request(), insert_debugger_pointer_signal(), octave::base_qobject::interpreter_qobj(), m_active_editor, m_editor_window, m_file_browser_window, m_history_window, m_octave_qobj, m_workspace_model, notice_settings(), process_settings_dialog_request(), octave::interpreter_qobject::qt_link(), register_doc_signal(), request_reload_settings(), settings_changed(), show_doc_signal(), unregister_doc_signal(), update_breakpoint_marker_signal(), and update_octave_directory().
Referenced by main_window().
|
private |
Definition at line 2623 of file main-window.cc.
References accept_directory_line_edit(), browse_for_directory(), change_directory_up(), current_directory_max_count, current_directory_max_visible, octave::base_qobject::get_resource_manager(), global_toolbar_style(), handle_undo_request(), octave::resource_manager::icon(), m_copy_action, m_current_directory_combo_box, m_main_tool_bar, m_new_script_action, m_octave_qobj, m_open_action, m_paste_action, m_undo_action, and set_current_working_directory().
Referenced by construct().
|
private |
Definition at line 2516 of file main-window.cc.
References add_action(), construct_window_menu_item(), go_to_previous_widget(), m_add_menu(), m_command_window, m_command_window_action, m_doc_browser_window, m_documentation_action, m_editor_action, m_editor_window, m_file_browser_action, m_file_browser_window, m_history_action, m_history_window, m_previous_dock_action, m_reset_windows_action, m_show_command_window_action, m_show_documentation_action, m_show_editor_action, m_show_file_browser_action, m_show_history_action, m_show_variable_editor_action, m_show_workspace_action, m_variable_editor_action, m_variable_editor_window, m_workspace_action, m_workspace_window, and reset_windows().
Referenced by construct_menu_bar().
|
private |
Definition at line 2480 of file main-window.cc.
Referenced by construct_window_menu().
|
slot |
Definition at line 1564 of file main-window.cc.
References copyClipboard_signal(), and m_current_directory_combo_box.
Referenced by construct_edit_menu().
|
signal |
Referenced by copyClipboard().
|
slot |
Definition at line 1143 of file main-window.cc.
References F__db_next_breakpoint_quiet__(), Fdbcont(), interpreter_event(), octave::command_editor::interrupt(), m_suppress_dbg_location, and ovl().
Referenced by construct_debug_menu().
|
slot |
Definition at line 1210 of file main-window.cc.
References Fdbquit(), interpreter_event(), and octave::command_editor::interrupt().
Referenced by construct_debug_menu().
|
slot |
Definition at line 1157 of file main-window.cc.
References F__db_next_breakpoint_quiet__(), Fdbstep(), interpreter_event(), octave::command_editor::interrupt(), m_suppress_dbg_location, and ovl().
Referenced by construct_debug_menu().
|
slot |
Definition at line 1196 of file main-window.cc.
References F__db_next_breakpoint_quiet__(), Fdbstep(), interpreter_event(), octave::command_editor::interrupt(), m_suppress_dbg_location, and ovl().
Referenced by construct_debug_menu().
|
slot |
Definition at line 1171 of file main-window.cc.
References F__db_next_breakpoint_quiet__(), Fdbstep(), interpreter_event(), octave::command_editor::interrupt(), m_debug_quit, m_suppress_dbg_location, ovl(), and step_into_file_signal().
Referenced by construct_debug_menu().
|
signal |
Referenced by construct(), construct_octave_qt_link(), and handle_delete_debugger_pointer_request().
|
privateslot |
Definition at line 1831 of file main-window.cc.
References m_hash_menu_text.
Referenced by construct(), and notice_settings().
|
slot |
Definition at line 726 of file main-window.cc.
References get_screen_geometry(), m_community_news_window, and m_release_notes_icon.
Referenced by load_and_display_community_news().
|
slot |
Definition at line 629 of file main-window.cc.
References QtHandles::Utils::fromStdString(), get_screen_geometry(), m_release_notes_icon, m_release_notes_window, and octave::config::oct_etc_dir().
Referenced by construct_news_menu().
|
slot |
Definition at line 2839 of file main-window.cc.
References dock_widget_list(), focus_command_window(), octave::base_qobject::get_resource_manager(), octave::resource_manager::get_settings(), gui_pref::key, m_command_window, m_doc_browser_window, m_editor_window, m_file_browser_window, m_history_window, m_octave_qobj, m_variable_editor_window, m_workspace_window, mw_geometry(), mw_state(), resize_dock(), and set_default_geometry().
Referenced by reset_windows(), and set_window_layout().
|
private |
Definition at line 2753 of file main-window.cc.
References m_command_window, m_doc_browser_window, m_editor_window, m_file_browser_window, m_history_window, m_variable_editor_window, and m_workspace_window.
Referenced by connect_visibility_changed(), do_reset_windows(), focus_changed(), get_dock_widget_list(), notice_settings(), and set_window_layout().
|
slot |
Definition at line 596 of file main-window.cc.
References handle_edit_mfile_request(), and name.
|
privateslot |
Opens the variable editor for name
.
Definition at line 1866 of file main-window.cc.
References octave::variable_editor::edit_variable(), and m_variable_editor_window.
Referenced by construct().
|
signal |
Referenced by construct(), and focus_changed().
|
slot |
Definition at line 2473 of file main-window.cc.
References m_debug_step_over, and m_editor_has_tabs.
Referenced by construct().
|
slot |
Definition at line 1038 of file main-window.cc.
References octave::command_editor::accept_line(), focus_console_after_command(), octave::command_editor::get_current_line(), interpreter_event(), octave::command_editor::interrupt_event_loop(), octave::command_editor::redisplay(), octave::command_editor::replace_line(), and octave::command_editor::set_initial_input().
Referenced by construct_octave_qt_link(), and request_new_function().
|
slot |
Definition at line 601 of file main-window.cc.
References octave::file_editor_interface::handle_file_remove(), octave::base_qobject::interpreter_qobj(), octave::qt_interpreter_events::lock(), m_editor_window, m_octave_qobj, n, octave::interpreter_qobject::qt_link(), octave::qt_interpreter_events::unlock(), and octave::qt_interpreter_events::wake_all().
Referenced by construct().
|
slot |
Find files dialog.
Definition at line 1715 of file main-window.cc.
References find_files_finished(), m_file_browser_window, m_find_files_dlg, m_octave_qobj, open_file(), and octave::find_files_dialog::set_search_dir().
Referenced by construct(), and construct_edit_menu().
|
inlineslot |
Definition at line 313 of file main-window.cc.
References active_dock_changed(), dock_widget_list(), editor_focus_changed(), m_active_dock, m_editor_window, m_main_tool_bar, m_previous_dock, octave::octave_dock_widget::set_predecessor_widget(), and Faddeeva::w().
Referenced by construct().
void octave::main_window::focus_command_window | ( | void | ) |
Definition at line 267 of file main-window.cc.
References octave::octave_dock_widget::activate(), and m_command_window.
Referenced by main_window(), browse_for_directory(), do_reset_windows(), focus_console_after_command(), handle_delete_debugger_pointer_request(), handle_insert_debugger_pointer_request(), handle_octave_ready(), and handle_update_breakpoint_marker_request().
|
slot |
Definition at line 2680 of file main-window.cc.
References cs_focus_cmd(), focus_command_window(), octave::base_qobject::get_resource_manager(), octave::resource_manager::get_settings(), and m_octave_qobj.
Referenced by execute_command_in_terminal(), and run_file_in_terminal().
|
slot |
Definition at line 272 of file main-window.cc.
References octave::octave_dock_widget::activate(), m_command_window, m_file_browser_window, m_history_window, and m_workspace_window.
|
inlineslot |
Returns a list of dock widgets.
Definition at line 238 of file main-window.h.
References dock_widget_list().
|
private |
Definition at line 2785 of file main-window.cc.
Referenced by display_community_news(), display_release_notes(), and set_default_geometry().
|
slot |
Definition at line 954 of file main-window.cc.
References octave::octave_dock_widget::activate(), and m_previous_dock.
Referenced by construct_window_menu().
|
slot |
Definition at line 485 of file main-window.cc.
References octave::command_editor::clear_screen(), interpreter_event(), and octave::command_editor::kill_full_line().
Referenced by construct_edit_menu().
|
slot |
Definition at line 497 of file main-window.cc.
References octave::history_system::do_history(), octave::interpreter::get_history_system(), interpreter_event(), and ovl().
Referenced by construct_edit_menu().
|
slot |
Definition at line 474 of file main-window.cc.
References Fclear(), and interpreter_event().
Referenced by construct_edit_menu().
|
slot |
Definition at line 1415 of file main-window.cc.
References command_window_has_focus(), delete_debugger_pointer_signal(), and focus_command_window().
Referenced by construct(), and construct_octave_qt_link().
|
slot |
Definition at line 1304 of file main-window.cc.
References Fexist(), Ffile_in_loadpath(), QtHandles::Utils::fromStdString(), interpreter_event(), octave_value_list::length(), m_current_directory_combo_box, message(), open_file_signal(), ovl(), and warning_function_not_found_signal().
Referenced by edit_mfile().
|
slot |
Definition at line 1113 of file main-window.cc.
References octave::file_editor_interface::handle_enter_debug_mode(), m_debug_continue, m_debug_quit, m_debug_step_into, m_debug_step_out, m_debug_step_over, and m_editor_window.
Referenced by construct_octave_qt_link().
|
slot |
Definition at line 1128 of file main-window.cc.
References octave::file_editor_interface::handle_exit_debug_mode(), m_debug_continue, m_debug_quit, m_debug_step_into, m_debug_step_out, m_debug_step_over, m_editor_has_tabs, and m_editor_window.
Referenced by construct_octave_qt_link().
|
slot |
Definition at line 1404 of file main-window.cc.
References command_window_has_focus(), focus_command_window(), and insert_debugger_pointer_signal().
Referenced by construct(), and construct_octave_qt_link().
|
slot |
Definition at line 417 of file main-window.cc.
References Fload(), octave::interpreter::get_evaluator(), octave::interpreter::get_event_manager(), octave::base_qobject::get_resource_manager(), octave::resource_manager::get_settings(), octave::tree_evaluator::get_symbol_info(), global_use_native_dialogs(), interpreter_event(), m_octave_qobj, ovl(), and octave::event_manager::set_workspace().
Referenced by construct(), and construct_file_menu().
|
slot |
Definition at line 1101 of file main-window.cc.
References Fbuiltin(), Fdrawnow(), interpreter_event(), and ovl().
Referenced by construct_new_menu().
|
slot |
Definition at line 1625 of file main-window.cc.
References gui_pref::def, ed_default_enc(), octave::file_editor_interface::empty_script(), focus_command_window(), octave::base_qobject::get_resource_manager(), octave::resource_manager::get_settings(), global_ov_startup_dir(), global_restore_ov_dir(), gui_pref::key, m_editor_window, m_octave_qobj, mw_dir_list(), octave::file_editor_interface::restore_session(), set_current_working_directory(), and update_default_encoding().
|
slot |
Definition at line 450 of file main-window.cc.
References octave::interpreter::feval(), octave::interpreter::get_evaluator(), octave::interpreter::get_event_manager(), octave::tree_evaluator::get_symbol_info(), interpreter_event(), ovl(), and octave::event_manager::set_workspace().
Referenced by construct().
|
slot |
Definition at line 1615 of file main-window.cc.
References register_doc_signal().
Referenced by construct_octave_qt_link().
|
slot |
Definition at line 527 of file main-window.cc.
References octave::interpreter::get_current_scope(), octave::interpreter::get_evaluator(), octave::interpreter::get_event_manager(), octave::tree_evaluator::get_symbol_info(), interpreter_event(), octave::symbol_scope::rename(), and octave::event_manager::set_workspace().
Referenced by construct().
|
slot |
Definition at line 392 of file main-window.cc.
References Fsave(), octave::base_qobject::get_resource_manager(), octave::resource_manager::get_settings(), global_use_native_dialogs(), interpreter_event(), m_octave_qobj, and ovl().
Referenced by construct_file_menu().
|
slot |
Definition at line 1678 of file main-window.cc.
References interpreter_event(), octave::base_qobject::interpreter_qobj(), m_octave_qobj, m_set_path_dlg, modify_path(), and octave::interpreter_qobject::qt_link().
Referenced by construct_edit_menu().
|
slot |
Definition at line 1609 of file main-window.cc.
References m_doc_browser_window, and show_doc_signal().
Referenced by construct_octave_qt_link().
|
slot |
Definition at line 510 of file main-window.cc.
References command_window_has_focus(), interpreter_event(), octave::command_editor::redisplay(), octave::command_editor::undo(), and undo_signal().
Referenced by construct_tool_bar().
|
slot |
Definition at line 1620 of file main-window.cc.
References unregister_doc_signal().
Referenced by construct_octave_qt_link().
|
slot |
Definition at line 1426 of file main-window.cc.
References command_window_has_focus(), focus_command_window(), and update_breakpoint_marker_signal().
Referenced by construct(), and construct_octave_qt_link().
|
privateslot |
Definition at line 1883 of file main-window.cc.
References octave::interpreter::get_evaluator(), octave::interpreter::get_event_manager(), octave::tree_evaluator::get_symbol_info(), interpreter_event(), and octave::event_manager::set_workspace().
Referenced by construct().
|
slot |
Definition at line 1461 of file main-window.cc.
References init_terminal_size_signal().
Referenced by main_window().
|
signal |
Referenced by init_terminal_size().
|
signal |
Referenced by construct(), construct_octave_qt_link(), and handle_insert_debugger_pointer_request().
|
signal |
Referenced by closeEvent(), construct(), debug_continue(), debug_quit(), debug_step_into(), debug_step_out(), debug_step_over(), execute_command_in_terminal(), handle_clear_command_window_request(), handle_clear_history_request(), handle_clear_workspace_request(), handle_edit_mfile_request(), handle_load_workspace_request(), handle_new_figure_request(), handle_open_any_request(), handle_rename_variable_request(), handle_save_workspace_request(), handle_set_path_dialog_request(), handle_undo_request(), handle_variable_editor_update(), modify_path(), run_file_in_terminal(), set_current_working_directory(), set_screen_size(), and update_default_encoding().
|
signal |
|
slot |
Definition at line 690 of file main-window.cc.
References display_community_news(), octave::base_qobject::get_resource_manager(), octave::resource_manager::get_settings(), m_octave_qobj, and nr_allow_connection().
Referenced by main_window(), and construct_news_menu().
Definition at line 2208 of file main-window.cc.
References m_hash_menu_text, and name.
Referenced by construct_debug_menu(), construct_edit_menu(), construct_file_menu(), construct_help_menu(), construct_news_menu(), and construct_window_menu().
|
slot |
Definition at line 557 of file main-window.cc.
References octave_value_list::append(), Faddpath(), Fgenpath(), Frmpath(), interpreter_event(), octave_value_list::length(), and ovl().
Referenced by handle_set_path_dialog_request().
|
slot |
Definition at line 583 of file main-window.cc.
References new_file_signal().
|
signal |
Referenced by construct_new_menu(), new_file(), and request_new_script().
|
slot |
Definition at line 827 of file main-window.cc.
References active_dock_changed(), configure_shortcuts(), cs_cursor_blinking(), cs_dbg_location(), gui_pref::def, disable_menu_shortcuts(), dock_widget_list(), dw_icon_set(), dw_icon_set_names, ed_default_enc(), octave::base_qobject::get_resource_manager(), global_cursor_blinking(), global_icon_size(), global_icon_sizes, global_status_bar(), global_style(), gui_pref::key, m_active_dock, m_command_window, m_default_encoding, m_default_style, m_editor_window, m_main_tool_bar, m_octave_qobj, m_prevent_readline_conflicts, m_release_notes_icon, m_status_bar, m_suppress_dbg_location, name, octave::base_qobject::qapplication(), sc_prevent_rl_conflicts(), set_global_shortcuts(), update_default_encoding(), and octave::resource_manager::update_network_settings().
Referenced by construct(), and construct_octave_qt_link().
|
slot |
Definition at line 778 of file main-window.cc.
Referenced by construct_help_menu().
|
slot |
Definition at line 788 of file main-window.cc.
Referenced by construct_help_menu().
|
slot |
Definition at line 793 of file main-window.cc.
Referenced by construct_help_menu().
|
slot |
Definition at line 588 of file main-window.cc.
References open_file_signal().
Referenced by find_files().
|
signal |
Referenced by construct_new_menu(), handle_edit_mfile_request(), open_file(), and request_open_files().
|
signal |
|
slot |
Definition at line 783 of file main-window.cc.
Referenced by construct_help_menu().
|
slot |
Definition at line 623 of file main-window.cc.
Referenced by construct_documentation_menu().
|
slot |
Definition at line 1579 of file main-window.cc.
References m_current_directory_combo_box, and pasteClipboard_signal().
Referenced by construct_edit_menu().
|
signal |
Referenced by pasteClipboard().
|
slot |
Definition at line 940 of file main-window.cc.
References m_find_files_dlg, m_set_path_dlg, octave::find_files_dialog::save_settings(), and write_settings().
Referenced by construct().
|
slot |
Definition at line 798 of file main-window.cc.
References m_octave_qobj, m_settings_dlg, and request_reload_settings().
Referenced by construct(), construct_edit_menu(), and construct_octave_qt_link().
|
slot |
Definition at line 1439 of file main-window.cc.
References octave::base_qobject::get_resource_manager(), octave::resource_manager::get_settings(), m_current_directory_combo_box, m_octave_qobj, mw_dir_list(), set_window_layout(), and settings_changed().
Referenced by main_window().
|
privateslot |
Definition at line 1878 of file main-window.cc.
References m_variable_editor_window, and octave::variable_editor::refresh().
Referenced by construct().
|
signal |
Referenced by construct_octave_qt_link(), and handle_register_doc().
|
slot |
Definition at line 387 of file main-window.cc.
References m_status_bar.
|
slot |
Definition at line 1271 of file main-window.cc.
References gui_pref::def, ed_create_new_file(), execute_command_in_terminal(), octave::base_qobject::get_resource_manager(), octave::resource_manager::get_settings(), global_use_custom_editor(), gui_pref::key, m_editor_window, m_octave_qobj, and restore_create_file_setting().
Referenced by construct_new_menu().
|
slot |
Definition at line 1265 of file main-window.cc.
References new_file_signal().
Referenced by construct_new_menu().
|
slot |
Definition at line 1229 of file main-window.cc.
References gui_pref::def, octave::base_qobject::get_resource_manager(), octave::resource_manager::get_settings(), global_use_custom_editor(), global_use_native_dialogs(), gui_pref::key, m_current_directory_combo_box, m_editor_window, m_octave_qobj, and request_open_files().
Referenced by construct_file_menu(), and construct_new_menu().
|
privateslot |
Definition at line 1860 of file main-window.cc.
References m_file_encoding, and open_file_signal().
Referenced by request_open_file().
|
slot |
Definition at line 378 of file main-window.cc.
References octave::base_qobject::get_resource_manager(), octave::resource_manager::get_settings(), m_octave_qobj, and settings_changed().
Referenced by construct_octave_qt_link(), and process_settings_dialog_request().
|
slot |
Definition at line 2825 of file main-window.cc.
References do_reset_windows().
Referenced by construct_window_menu().
|
private |
Definition at line 2794 of file main-window.cc.
Referenced by do_reset_windows().
|
privateslot |
Definition at line 1842 of file main-window.cc.
References ed_create_new_file(), octave::base_qobject::get_resource_manager(), octave::resource_manager::get_settings(), gui_pref::key, m_editor_window, and m_octave_qobj.
Referenced by request_new_function().
|
slot |
Definition at line 1057 of file main-window.cc.
References octave::command_editor::accept_line(), focus_console_after_command(), octave::command_editor::get_current_line(), interpreter_event(), octave::command_editor::interrupt_event_loop(), octave::command_editor::redisplay(), octave::command_editor::set_initial_input(), and octave::valid_identifier().
|
slot |
Definition at line 1595 of file main-window.cc.
References m_current_directory_combo_box, and selectAll_signal().
Referenced by construct_edit_menu().
|
signal |
Referenced by selectAll().
|
slot |
Definition at line 995 of file main-window.cc.
References octave::interpreter::chdir(), and interpreter_event().
Referenced by accept_directory_line_edit(), browse_for_directory(), change_directory_up(), construct_tool_bar(), and handle_octave_ready().
|
private |
Definition at line 2816 of file main-window.cc.
References get_screen_geometry().
Referenced by do_reset_windows().
|
privateslot |
Definition at line 1852 of file main-window.cc.
References m_file_encoding.
|
slot |
Setting global shortcuts.
Definition at line 1746 of file main-window.cc.
References configure_shortcuts(), m_about_octave_action, m_clear_clipboard_action, m_clear_command_history_action, m_clear_command_window_action, m_clear_workspace_action, m_contribute_action, m_current_news_action, m_developer_action, m_exit_action, m_find_files_action, m_load_workspace_action, m_new_figure_action, m_new_function_action, m_new_script_action, m_octave_packages_action, m_ondisk_doc_action, m_online_doc_action, m_open_action, m_preferences_action, m_prevent_readline_conflicts, m_release_notes_action, m_report_bug_action, m_reset_windows_action, m_save_workspace_action, m_select_all_action, and m_set_path_action.
Referenced by notice_settings().
|
slot |
Definition at line 1801 of file main-window.cc.
References interpreter_event(), and octave::command_editor::set_screen_size().
|
slot |
Definition at line 1466 of file main-window.cc.
References gui_pref::def, do_reset_windows(), dock_widget_list(), dw_is_floating(), dw_is_minimized(), dw_is_visible(), gui_pref::key, mw_geometry(), mw_state(), and name.
Referenced by read_settings().
|
signal |
Referenced by construct(), construct_octave_qt_link(), read_settings(), and request_reload_settings().
|
slot |
Definition at line 818 of file main-window.cc.
References QtHandles::Utils::fromStdString(), message(), and octave_name_version_copyright_copying_warranty_and_bugs().
Referenced by construct_help_menu().
|
signal |
Referenced by construct_octave_qt_link(), and handle_show_doc().
|
signal |
Referenced by construct(), and debug_step_over().
|
signal |
Referenced by handle_undo_request().
|
signal |
Referenced by construct_octave_qt_link(), and handle_unregister_doc().
|
signal |
Referenced by construct(), construct_octave_qt_link(), and handle_update_breakpoint_marker_request().
|
private |
Definition at line 2768 of file main-window.cc.
References interpreter_event(), m_default_encoding, and ovl().
Referenced by handle_octave_ready(), and notice_settings().
|
slot |
Definition at line 959 of file main-window.cc.
References m_current_directory_combo_box.
Referenced by construct_octave_qt_link().
|
privateslot |
|
signal |
Referenced by construct(), and handle_edit_mfile_request().
|
slot |
Definition at line 1530 of file main-window.cc.
References octave::base_qobject::get_resource_manager(), octave::resource_manager::get_settings(), gui_pref::key, m_current_directory_combo_box, m_octave_qobj, mw_dir_list(), mw_geometry(), and mw_state().
Referenced by prepare_to_exit().
|
staticprivate |
|
staticprivate |
|
private |
Definition at line 390 of file main-window.h.
Referenced by configure_shortcuts(), construct_help_menu(), and set_global_shortcuts().
|
private |
Definition at line 333 of file main-window.h.
Referenced by main_window(), focus_changed(), and notice_settings().
|
private |
Definition at line 330 of file main-window.h.
Referenced by main_window(), construct_new_menu(), and construct_octave_qt_link().
|
private |
Definition at line 359 of file main-window.h.
Referenced by clipboard_has_changed(), configure_shortcuts(), construct_edit_menu(), and set_global_shortcuts().
|
private |
Definition at line 362 of file main-window.h.
Referenced by configure_shortcuts(), construct_edit_menu(), and set_global_shortcuts().
|
private |
Definition at line 361 of file main-window.h.
Referenced by configure_shortcuts(), construct_edit_menu(), and set_global_shortcuts().
|
private |
Definition at line 363 of file main-window.h.
Referenced by configure_shortcuts(), construct_edit_menu(), and set_global_shortcuts().
|
private |
Definition at line 420 of file main-window.h.
Referenced by clear_clipboard(), clipboard_has_changed(), and construct_edit_menu().
|
private |
Flag for closing the whole application.
Definition at line 430 of file main-window.h.
|
private |
Dock widgets.
Definition at line 320 of file main-window.h.
Referenced by main_window(), ~main_window(), command_window_has_focus(), construct(), construct_window_menu(), do_reset_windows(), dock_widget_list(), focus_command_window(), focus_window(), and notice_settings().
|
private |
Definition at line 374 of file main-window.h.
Referenced by configure_shortcuts(), and construct_window_menu().
|
private |
Definition at line 418 of file main-window.h.
Referenced by ~main_window(), and display_community_news().
|
private |
Definition at line 388 of file main-window.h.
Referenced by configure_shortcuts(), construct_help_menu(), and set_global_shortcuts().
|
private |
Definition at line 357 of file main-window.h.
Referenced by configure_shortcuts(), construct_edit_menu(), construct_menu_bar(), and construct_tool_bar().
|
private |
For Toolbars.
Definition at line 397 of file main-window.h.
Referenced by accept_directory_line_edit(), construct_tool_bar(), copyClipboard(), handle_edit_mfile_request(), pasteClipboard(), read_settings(), request_open_file(), selectAll(), update_octave_directory(), and write_settings().
|
private |
For Toolbars.
Definition at line 400 of file main-window.h.
|
private |
Definition at line 393 of file main-window.h.
Referenced by configure_shortcuts(), construct_news_menu(), and set_global_shortcuts().
|
private |
Definition at line 341 of file main-window.h.
Referenced by configure_shortcuts(), construct_debug_menu(), handle_enter_debugger(), and handle_exit_debugger().
|
private |
Definition at line 339 of file main-window.h.
Referenced by construct_debug_menu(), and construct_debug_menu_item().
|
private |
Definition at line 345 of file main-window.h.
Referenced by configure_shortcuts(), construct_debug_menu(), debug_step_over(), handle_enter_debugger(), and handle_exit_debugger().
|
private |
Definition at line 342 of file main-window.h.
Referenced by configure_shortcuts(), construct_debug_menu(), handle_enter_debugger(), and handle_exit_debugger().
|
private |
Definition at line 344 of file main-window.h.
Referenced by configure_shortcuts(), construct_debug_menu(), handle_enter_debugger(), and handle_exit_debugger().
|
private |
Definition at line 343 of file main-window.h.
Referenced by configure_shortcuts(), construct_debug_menu(), editor_tabs_changed(), handle_enter_debugger(), and handle_exit_debugger().
|
private |
Definition at line 310 of file main-window.h.
Referenced by main_window(), notice_settings(), and update_default_encoding().
|
private |
Definition at line 312 of file main-window.h.
Referenced by main_window(), and notice_settings().
|
private |
Definition at line 389 of file main-window.h.
Referenced by configure_shortcuts(), construct_help_menu(), and set_global_shortcuts().
|
private |
Dock widgets.
Definition at line 323 of file main-window.h.
Referenced by main_window(), ~main_window(), construct(), construct_documentation_menu(), construct_window_menu(), do_reset_windows(), dock_widget_list(), and handle_show_doc().
|
private |
Definition at line 379 of file main-window.h.
Referenced by configure_shortcuts(), and construct_window_menu().
|
private |
Definition at line 378 of file main-window.h.
Referenced by configure_shortcuts(), and construct_window_menu().
|
private |
Some class global flags.
Definition at line 426 of file main-window.h.
Referenced by editor_tabs_changed(), and handle_exit_debugger().
|
private |
Dock widgets.
Definition at line 324 of file main-window.h.
Referenced by main_window(), ~main_window(), confirm_shutdown(), connect_visibility_changed(), construct(), construct_debug_menu(), construct_debug_menu_item(), construct_file_menu(), construct_menu_bar(), construct_octave_qt_link(), construct_window_menu(), do_reset_windows(), dock_widget_list(), file_remove_proxy(), focus_changed(), handle_enter_debugger(), handle_exit_debugger(), handle_octave_ready(), notice_settings(), request_new_function(), request_open_file(), and restore_create_file_setting().
|
private |
Definition at line 355 of file main-window.h.
Referenced by configure_shortcuts(), construct_file_menu(), and set_global_shortcuts().
|
private |
Definition at line 329 of file main-window.h.
Referenced by main_window(), ~main_window(), and construct().
|
private |
Definition at line 377 of file main-window.h.
Referenced by configure_shortcuts(), and construct_window_menu().
|
private |
Dock widgets.
Definition at line 322 of file main-window.h.
Referenced by main_window(), ~main_window(), construct(), construct_octave_qt_link(), construct_window_menu(), do_reset_windows(), dock_widget_list(), find_files(), and focus_window().
|
private |
Definition at line 433 of file main-window.h.
Referenced by request_open_files(), and set_file_encoding().
|
private |
Definition at line 364 of file main-window.h.
Referenced by configure_shortcuts(), construct_edit_menu(), construct_menu_bar(), and set_global_shortcuts().
|
private |
Find files dialog.
Definition at line 409 of file main-window.h.
Referenced by ~main_window(), find_files(), and prepare_to_exit().
|
private |
Definition at line 308 of file main-window.h.
Referenced by disable_menu_shortcuts(), and m_add_menu().
|
private |
Definition at line 375 of file main-window.h.
Referenced by configure_shortcuts(), and construct_window_menu().
|
private |
Dock widgets.
Definition at line 321 of file main-window.h.
Referenced by main_window(), ~main_window(), construct(), construct_octave_qt_link(), construct_window_menu(), do_reset_windows(), dock_widget_list(), and focus_window().
|
private |
Definition at line 351 of file main-window.h.
Referenced by configure_shortcuts(), construct_file_menu(), and set_global_shortcuts().
|
private |
Definition at line 337 of file main-window.h.
Referenced by construct_tool_bar(), focus_changed(), and notice_settings().
|
private |
Definition at line 350 of file main-window.h.
Referenced by configure_shortcuts(), construct_new_menu(), and set_global_shortcuts().
|
private |
Definition at line 348 of file main-window.h.
Referenced by configure_shortcuts(), construct_menu_bar(), construct_new_menu(), and set_global_shortcuts().
|
private |
Definition at line 347 of file main-window.h.
Referenced by configure_shortcuts(), construct_menu_bar(), construct_new_menu(), construct_tool_bar(), and set_global_shortcuts().
|
private |
Definition at line 387 of file main-window.h.
Referenced by configure_shortcuts(), construct_help_menu(), and set_global_shortcuts().
|
private |
Definition at line 304 of file main-window.h.
Referenced by main_window(), browse_for_directory(), configure_shortcuts(), confirm_shutdown(), construct(), construct_debug_menu_item(), construct_edit_menu(), construct_file_menu(), construct_new_menu(), construct_octave_qt_link(), construct_tool_bar(), do_reset_windows(), file_remove_proxy(), find_files(), focus_console_after_command(), handle_load_workspace_request(), handle_octave_ready(), handle_save_workspace_request(), handle_set_path_dialog_request(), load_and_display_community_news(), notice_settings(), process_settings_dialog_request(), read_settings(), request_new_function(), request_open_file(), request_reload_settings(), restore_create_file_setting(), and write_settings().
|
private |
Definition at line 384 of file main-window.h.
Referenced by configure_shortcuts(), construct_documentation_menu(), and set_global_shortcuts().
|
private |
Definition at line 385 of file main-window.h.
Referenced by configure_shortcuts(), construct_documentation_menu(), and set_global_shortcuts().
|
private |
Definition at line 349 of file main-window.h.
Referenced by configure_shortcuts(), construct_file_menu(), construct_menu_bar(), construct_tool_bar(), and set_global_shortcuts().
|
private |
Definition at line 358 of file main-window.h.
Referenced by clipboard_has_changed(), configure_shortcuts(), construct_edit_menu(), construct_menu_bar(), and construct_tool_bar().
|
private |
Definition at line 354 of file main-window.h.
Referenced by configure_shortcuts(), construct_edit_menu(), and set_global_shortcuts().
|
private |
Some class global flags.
Definition at line 424 of file main-window.h.
Referenced by notice_settings(), and set_global_shortcuts().
|
private |
Definition at line 332 of file main-window.h.
Referenced by main_window(), focus_changed(), and go_to_previous_widget().
|
private |
Definition at line 381 of file main-window.h.
Referenced by configure_shortcuts(), and construct_window_menu().
|
private |
Definition at line 392 of file main-window.h.
Referenced by configure_shortcuts(), construct_news_menu(), and set_global_shortcuts().
|
private |
Definition at line 335 of file main-window.h.
Referenced by display_community_news(), display_release_notes(), and notice_settings().
|
private |
Release notes window.
Definition at line 416 of file main-window.h.
Referenced by ~main_window(), and display_release_notes().
|
private |
Definition at line 386 of file main-window.h.
Referenced by configure_shortcuts(), construct_help_menu(), and set_global_shortcuts().
|
private |
Definition at line 382 of file main-window.h.
Referenced by configure_shortcuts(), construct_window_menu(), and set_global_shortcuts().
|
private |
Definition at line 352 of file main-window.h.
Referenced by configure_shortcuts(), construct_file_menu(), and set_global_shortcuts().
|
private |
Definition at line 365 of file main-window.h.
Referenced by configure_shortcuts(), construct_edit_menu(), construct_menu_bar(), and set_global_shortcuts().
|
private |
Definition at line 353 of file main-window.h.
Referenced by configure_shortcuts(), construct_edit_menu(), and set_global_shortcuts().
|
private |
Set path dialog.
Definition at line 412 of file main-window.h.
Referenced by handle_set_path_dialog_request(), and prepare_to_exit().
|
private |
Settings dialog as guarded pointer (set to 0 when deleted).
Definition at line 405 of file main-window.h.
Referenced by process_settings_dialog_request().
|
private |
Definition at line 367 of file main-window.h.
Referenced by configure_shortcuts(), and construct_window_menu().
|
private |
Definition at line 372 of file main-window.h.
Referenced by configure_shortcuts(), and construct_window_menu().
|
private |
Definition at line 371 of file main-window.h.
Referenced by configure_shortcuts(), and construct_window_menu().
|
private |
Definition at line 370 of file main-window.h.
Referenced by configure_shortcuts(), and construct_window_menu().
|
private |
Definition at line 368 of file main-window.h.
Referenced by configure_shortcuts(), and construct_window_menu().
|
private |
Definition at line 373 of file main-window.h.
Referenced by configure_shortcuts(), and construct_window_menu().
|
private |
Definition at line 369 of file main-window.h.
Referenced by configure_shortcuts(), and construct_window_menu().
|
private |
Toolbar.
Definition at line 316 of file main-window.h.
Referenced by main_window(), ~main_window(), construct(), notice_settings(), and report_status_message().
|
private |
Some class global flags.
Definition at line 425 of file main-window.h.
Referenced by debug_continue(), debug_step_into(), debug_step_out(), debug_step_over(), and notice_settings().
|
private |
Definition at line 360 of file main-window.h.
Referenced by configure_shortcuts(), construct_edit_menu(), construct_menu_bar(), and construct_tool_bar().
|
private |
Definition at line 380 of file main-window.h.
Referenced by configure_shortcuts(), and construct_window_menu().
|
private |
Dock widgets.
Definition at line 326 of file main-window.h.
Referenced by main_window(), ~main_window(), construct(), construct_window_menu(), do_reset_windows(), dock_widget_list(), edit_variable(), and refresh_variable_editor().
|
private |
Definition at line 376 of file main-window.h.
Referenced by configure_shortcuts(), and construct_window_menu().
|
private |
Definition at line 306 of file main-window.h.
Referenced by main_window(), ~main_window(), construct(), and construct_octave_qt_link().
|
private |
Dock widgets.
Definition at line 325 of file main-window.h.
Referenced by main_window(), ~main_window(), construct(), construct_window_menu(), do_reset_windows(), dock_widget_list(), and focus_window().