From: John Levon Date: Fri, 21 Jun 2002 11:35:41 +0000 (+0000) Subject: remove show_banner + keyboard_shortcuts as discussed X-Git-Tag: 1.6.10~19035 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=13430adc9a0572cd7944bb49589d1cc45710843b;p=features.git remove show_banner + keyboard_shortcuts as discussed git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4455 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/ChangeLog b/src/ChangeLog index a6da5eb907..c9d10be9f6 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,9 @@ +2002-06-21 John Levon + + * lyxrc.h: + * lyxrc.C: + * lyxfunc.C: remove display_shortcuts, show_banner + 2002-06-21 John Levon * Buffer_pimpl.C: oops, update on resize diff --git a/src/frontends/qt2/ChangeLog b/src/frontends/qt2/ChangeLog index 19fa53aeb0..89582ce810 100644 --- a/src/frontends/qt2/ChangeLog +++ b/src/frontends/qt2/ChangeLog @@ -1,3 +1,7 @@ +2002-06-21 John Levon + + * QWorkArea.C: remove dead splash code + 2002-06-21 John Levon * QContentPane.C: restore calls to workAreaResize() diff --git a/src/frontends/qt2/QWorkArea.C b/src/frontends/qt2/QWorkArea.C index 8cb8dde4dd..028e72fe73 100644 --- a/src/frontends/qt2/QWorkArea.C +++ b/src/frontends/qt2/QWorkArea.C @@ -40,14 +40,6 @@ using std::hex; QWorkArea::QWorkArea(int, int, int, int) : WorkArea(), QWidget(qApp->mainWidget()), painter_(*this) { - // Add a splash screen to the centre of the work area - string const splash_file = (lyxrc.show_banner) ? - LibFileSearch("images", "banner", "xpm") : string(); - - if (!splash_file.empty()) { - // FIXME - } - scrollbar_ = new QScrollBar(QScrollBar::Vertical, this); content_ = new QContentPane(this); diff --git a/src/frontends/screen.C b/src/frontends/screen.C index 044fcc1fb5..05e67252c3 100644 --- a/src/frontends/screen.C +++ b/src/frontends/screen.C @@ -306,8 +306,7 @@ or similar. */ #if 0 // Add a splash screen to the centre of the work area - string const splash_file = (lyxrc.show_banner) ? - LibFileSearch("images", "banner", "xpm") : string(); + string const splash_file = LibFileSearch("images", "banner", "xpm"); #endif } diff --git a/src/frontends/xforms/ChangeLog b/src/frontends/xforms/ChangeLog index 0d810c7f72..ae2e793674 100644 --- a/src/frontends/xforms/ChangeLog +++ b/src/frontends/xforms/ChangeLog @@ -1,3 +1,9 @@ +2002-06-21 John Levon + + * FormPreferences.h: + * FormPreferences.C: + * forms/form_preferences.fd: remove show_banner, display_shortcuts + 2002-06-21 John Levon * XWorkArea.h: diff --git a/src/frontends/xforms/FormPreferences.C b/src/frontends/xforms/FormPreferences.C index 9ebb191480..4acd391e7e 100644 --- a/src/frontends/xforms/FormPreferences.C +++ b/src/frontends/xforms/FormPreferences.C @@ -1825,12 +1825,9 @@ FD_preferences_lnf_misc const * FormPreferences::LnFmisc::dialog() void FormPreferences::LnFmisc::apply() const { - lyxrc.show_banner = fl_get_button(dialog_->check_banner); lyxrc.auto_region_delete = fl_get_button(dialog_->check_auto_region_delete); lyxrc.exit_confirmation = fl_get_button(dialog_->check_exit_confirm); - lyxrc.display_shortcuts = - fl_get_button(dialog_->check_display_shrtcuts); lyxrc.new_ask_filename = fl_get_button(dialog_->check_ask_new_file); lyxrc.cursor_follows_scrollbar = fl_get_button(dialog_->check_cursor_follows_scrollbar); @@ -1869,10 +1866,8 @@ void FormPreferences::LnFmisc::build() fl_set_counter_return(dialog_->counter_wm_jump, FL_RETURN_CHANGED); // set up the feedback mechanism - setPrehandler(dialog_->check_banner); setPrehandler(dialog_->check_auto_region_delete); setPrehandler(dialog_->check_exit_confirm); - setPrehandler(dialog_->check_display_shrtcuts); setPrehandler(dialog_->counter_autosave); setPrehandler(dialog_->check_ask_new_file); setPrehandler(dialog_->check_cursor_follows_scrollbar); @@ -1890,14 +1885,10 @@ FormPreferences::LnFmisc::feedback(FL_OBJECT const * const ob) const { string str; - if (ob == dialog_->check_banner) - str = lyxrc.getDescription(LyXRC::RC_SHOW_BANNER); - else if (ob == dialog_->check_auto_region_delete) + if (ob == dialog_->check_auto_region_delete) str = lyxrc.getDescription(LyXRC::RC_AUTOREGIONDELETE); else if (ob == dialog_->check_exit_confirm) str = lyxrc.getDescription(LyXRC::RC_EXIT_CONFIRMATION); - else if (ob == dialog_->check_display_shrtcuts) - str = lyxrc.getDescription(LyXRC::RC_DISPLAY_SHORTCUTS); else if (ob == dialog_->check_ask_new_file) str = lyxrc.getDescription(LyXRC::RC_NEW_ASK_FILENAME); else if (ob == dialog_->check_cursor_follows_scrollbar) @@ -1920,11 +1911,9 @@ FormPreferences::LnFmisc::feedback(FL_OBJECT const * const ob) const void FormPreferences::LnFmisc::update() { - fl_set_button(dialog_->check_banner, lyxrc.show_banner); fl_set_button(dialog_->check_auto_region_delete, lyxrc.auto_region_delete); fl_set_button(dialog_->check_exit_confirm, lyxrc.exit_confirmation); - fl_set_button(dialog_->check_display_shrtcuts, lyxrc.display_shortcuts); fl_set_button(dialog_->check_ask_new_file, lyxrc.new_ask_filename); fl_set_button(dialog_->check_cursor_follows_scrollbar, lyxrc.cursor_follows_scrollbar); diff --git a/src/frontends/xforms/forms/form_preferences.fd b/src/frontends/xforms/forms/form_preferences.fd index c83481fe5b..e33e4b98a3 100644 --- a/src/frontends/xforms/forms/form_preferences.fd +++ b/src/frontends/xforms/forms/form_preferences.fd @@ -973,7 +973,7 @@ argument: 0 -------------------- class: FL_BEGIN_GROUP type: 0 -box: 0 0 0 0 +box: 0 10 10 0 boxtype: FL_NO_BOX colors: FL_COL1 FL_MCOL alignment: FL_ALIGN_CENTER @@ -1101,7 +1101,7 @@ argument: 0 Name: form_preferences_lnf_misc Width: 450 Height: 350 -Number of Objects: 19 +Number of Objects: 17 -------------------- class: FL_BOX @@ -1142,26 +1142,7 @@ argument: -------------------- class: FL_CHECKBUTTON type: PUSH_BUTTON -box: 15 15 30 30 -boxtype: FL_NO_BOX -colors: FL_COL1 FL_YELLOW -alignment: FL_ALIGN_CENTER -style: FL_NORMAL_STYLE -size: FL_NORMAL_SIZE -lcol: FL_BLACK -label: Show banner|#S -shortcut: -resize: FL_RESIZE_ALL -gravity: FL_NoGravity FL_NoGravity -name: check_banner -callback: C_FormBaseDeprecatedInputCB -argument: 0 - value: 1 - --------------------- -class: FL_CHECKBUTTON -type: PUSH_BUTTON -box: 15 45 30 30 +box: 15 20 30 30 boxtype: FL_NO_BOX colors: FL_COL1 FL_YELLOW alignment: FL_ALIGN_CENTER @@ -1180,7 +1161,7 @@ argument: 0 -------------------- class: FL_CHECKBUTTON type: PUSH_BUTTON -box: 15 75 30 30 +box: 15 50 30 30 boxtype: FL_NO_BOX colors: FL_COL1 FL_YELLOW alignment: FL_ALIGN_CENTER @@ -1199,26 +1180,7 @@ argument: 0 -------------------- class: FL_CHECKBUTTON type: PUSH_BUTTON -box: 15 105 30 30 -boxtype: FL_NO_BOX -colors: FL_COL1 FL_YELLOW -alignment: FL_ALIGN_CENTER -style: FL_NORMAL_STYLE -size: FL_NORMAL_SIZE -lcol: FL_BLACK -label: Display keyboard shortcuts|#k -shortcut: -resize: FL_RESIZE_ALL -gravity: FL_NoGravity FL_NoGravity -name: check_display_shrtcuts -callback: C_FormBaseDeprecatedInputCB -argument: 0 - value: 1 - --------------------- -class: FL_CHECKBUTTON -type: PUSH_BUTTON -box: 15 135 30 30 +box: 15 80 30 30 boxtype: FL_NO_BOX colors: FL_COL1 FL_YELLOW alignment: FL_ALIGN_CENTER @@ -1237,7 +1199,7 @@ argument: 0 -------------------- class: FL_CHECKBUTTON type: PUSH_BUTTON -box: 15 165 30 30 +box: 15 110 30 30 boxtype: FL_NO_BOX colors: FL_COL1 FL_YELLOW alignment: FL_ALIGN_CENTER @@ -1256,7 +1218,7 @@ argument: 0 -------------------- class: FL_CHECKBUTTON type: PUSH_BUTTON -box: 15 195 30 30 +box: 15 140 30 30 boxtype: FL_NO_BOX colors: FL_COL1 FL_YELLOW alignment: FL_ALIGN_CENTER @@ -1319,7 +1281,7 @@ argument: 0 -------------------- class: FL_BEGIN_GROUP type: 0 -box: 0 0 0 0 +box: 0 10 10 0 boxtype: FL_NO_BOX colors: FL_COL1 FL_MCOL alignment: FL_ALIGN_CENTER diff --git a/src/lyxfunc.C b/src/lyxfunc.C index fe5c9056a3..4db472332b 100644 --- a/src/lyxfunc.C +++ b/src/lyxfunc.C @@ -785,42 +785,40 @@ void LyXFunc::verboseDispatch(kb_action action, commandshortcut.erase(); - if (lyxrc.display_shortcuts && show_sc) { - if (action != LFUN_SELFINSERT) { - // Put name of command and list of shortcuts - // for it in minibuffer - string comname = lyxaction.getActionName(action); - - int pseudoaction = action; - bool argsadded = false; - - if (!argument.empty()) { - // the pseudoaction is useful for the bindings - pseudoaction = - lyxaction.searchActionArg(action, - argument); - - if (pseudoaction == LFUN_UNKNOWN_ACTION) { - pseudoaction = action; - } else { - comname += " " + argument; - argsadded = true; - } - } + if (show_sc && action != LFUN_SELFINSERT) { + // Put name of command and list of shortcuts + // for it in minibuffer + string comname = lyxaction.getActionName(action); - string const shortcuts = - toplevel_keymap->findbinding(pseudoaction); + int pseudoaction = action; + bool argsadded = false; - if (!shortcuts.empty()) { - comname += ": " + shortcuts; - } else if (!argsadded && !argument.empty()) { + if (!argument.empty()) { + // the pseudoaction is useful for the bindings + pseudoaction = + lyxaction.searchActionArg(action, + argument); + + if (pseudoaction == LFUN_UNKNOWN_ACTION) { + pseudoaction = action; + } else { comname += " " + argument; + argsadded = true; } + } - if (!comname.empty()) { - comname = strip(comname); - commandshortcut = "(" + comname + ')'; - } + string const shortcuts = + toplevel_keymap->findbinding(pseudoaction); + + if (!shortcuts.empty()) { + comname += ": " + shortcuts; + } else if (!argsadded && !argument.empty()) { + comname += " " + argument; + } + + if (!comname.empty()) { + comname = strip(comname); + commandshortcut = "(" + comname + ')'; } } diff --git a/src/lyxrc.C b/src/lyxrc.C index 5e801533ff..51d6d77775 100644 --- a/src/lyxrc.C +++ b/src/lyxrc.C @@ -66,7 +66,6 @@ keyword_item lyxrcTags[] = { { "\\default_papersize", LyXRC::RC_DEFAULT_PAPERSIZE }, { "\\dialogs_iconify_with_main", LyXRC::RC_DIALOGS_ICONIFY_WITH_MAIN }, { "\\display_graphics", LyXRC::RC_DISPLAY_GRAPHICS }, - { "\\display_shortcuts", LyXRC::RC_DISPLAY_SHORTCUTS }, { "\\document_path", LyXRC::RC_DOCUMENTPATH }, { "\\escape_chars", LyXRC::RC_ESC_CHARS }, { "\\exit_confirmation", LyXRC::RC_EXIT_CONFIRMATION }, @@ -131,7 +130,6 @@ keyword_item lyxrcTags[] = { { "\\screen_zoom", LyXRC::RC_SCREEN_ZOOM }, { "\\serverpipe", LyXRC::RC_SERVERPIPE }, { "\\set_color", LyXRC::RC_SET_COLOR }, - { "\\show_banner", LyXRC::RC_SHOW_BANNER }, { "\\spell_command", LyXRC::RC_SPELL_COMMAND }, { "\\tempdir_path", LyXRC::RC_TEMPDIRPATH }, { "\\template_path", LyXRC::RC_TEMPLATEPATH }, @@ -225,7 +223,6 @@ void LyXRC::setDefaults() { backupdir_path.erase(); exit_confirmation = true; display_graphics = "color"; - display_shortcuts = true; // Spellchecker settings: #ifdef USE_PSPELL use_pspell = true; @@ -253,7 +250,6 @@ void LyXRC::setDefaults() { // date_insert_format = "%A, %e %B %Y"; - show_banner = true; cursor_follows_scrollbar = false; dialogs_iconify_with_main = false; label_init_length = 3; @@ -361,11 +357,6 @@ int LyXRC::read(string const & filename) display_graphics = lexrc.getString(); break; - case RC_DISPLAY_SHORTCUTS: - if (lexrc.next()) - display_shortcuts = lexrc.getBool(); - break; - case RC_KBMAP: if (lexrc.next()) use_kbmap = lexrc.getBool(); @@ -882,10 +873,6 @@ int LyXRC::read(string const & filename) if (lexrc.next()) mark_foreign_language = lexrc.getBool(); break; - case RC_SHOW_BANNER: - if (lexrc.next()) - show_banner = lexrc.getBool(); - break; case RC_NEW_ASK_FILENAME: if (lexrc.next()) @@ -1015,11 +1002,6 @@ void LyXRC::output(ostream & os) const << "# MISC SECTION ######################################\n" << "#\n\n"; - case RC_SHOW_BANNER: - if (show_banner != system_lyxrc.show_banner) { - os << "# Set to false to inhibit the startup banner.\n" - << "\\show_banner " << tostr(show_banner) << "\n"; - } // bind files are not done here. case RC_UIFILE: if (ui_file != system_lyxrc.ui_file) { @@ -1059,13 +1041,6 @@ void LyXRC::output(ostream & os) const << "\n"; } - case RC_DISPLAY_SHORTCUTS: - if (display_shortcuts != system_lyxrc.display_shortcuts) { - os << "# Display name of the last command executed,\n" - << "# with a list of short-cuts in the minibuffer.\n" - << "\\display_shortcuts " << tostr(display_shortcuts) - << "\n"; - } case RC_VIEWDVI_PAPEROPTION: if (view_dvi_paper_option != system_lyxrc.view_dvi_paper_option) { @@ -1919,10 +1894,6 @@ string const LyXRC::getDescription(LyXRCTags tag) str = _("Select how LyX will display any graphics."); break; - case RC_DISPLAY_SHORTCUTS: - str = _("LyX continously displays names of last command executed, along with a list of defined short-cuts for it in the minibuffer. Set to false if LyX seems slow."); - break; - case RC_MAKE_BACKUP: str = _("De-select if you don't want LyX to create backup files."); break; diff --git a/src/lyxrc.h b/src/lyxrc.h index 1a7c1fa042..4cd02e3eef 100644 --- a/src/lyxrc.h +++ b/src/lyxrc.h @@ -97,7 +97,6 @@ enum LyXRCTags { RC_CURSOR_FOLLOWS_SCROLLBAR, RC_DIALOGS_ICONIFY_WITH_MAIN, RC_EXIT_CONFIRMATION, - RC_DISPLAY_SHORTCUTS, RC_MAKE_BACKUP, RC_BACKUPDIR_PATH, RC_RTL_SUPPORT, @@ -302,8 +301,6 @@ enum LyXRCTags { bool use_kbmap; /// Ask for confirmation of exit when there are unsaved documents? bool exit_confirmation; - /// Should we display short-cut information in the minibuffer? - bool display_shortcuts; /// string primary_kbmap; /// @@ -334,8 +331,6 @@ enum LyXRCTags { bool auto_number; /// bool mark_foreign_language; - /// - bool show_banner; /// Do we have to use a GUI? bool use_gui; ///