mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-21 23:09:40 +00:00
When applying the preference we need to save the full session information, because when this information is not yet saved, we will lose it forever. We can enter the preferences without a saved state when we start LyX with a modified default.ui. see also: r37075 and r37076. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@37077 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
46d7462ea7
commit
02fb4a784e
@ -631,6 +631,19 @@ void GuiView::saveLayout() const
|
||||
}
|
||||
|
||||
|
||||
void GuiView::saveUISettings() const
|
||||
{
|
||||
// Save the toolbar private states
|
||||
ToolbarMap::iterator end = d.toolbars_.end();
|
||||
for (ToolbarMap::iterator it = d.toolbars_.begin(); it != end; ++it)
|
||||
it->second->saveSession();
|
||||
// Now take care of all other dialogs
|
||||
map<string, DialogPtr>::const_iterator it = d.dialogs_.begin();
|
||||
for (; it!= d.dialogs_.end(); ++it)
|
||||
it->second->saveSession();
|
||||
}
|
||||
|
||||
|
||||
bool GuiView::restoreLayout()
|
||||
{
|
||||
QSettings settings;
|
||||
@ -862,16 +875,8 @@ void GuiView::closeEvent(QCloseEvent * close_event)
|
||||
// Saving fullscreen requires additional tweaks in the toolbar code.
|
||||
// It wouldn't also work under linux natively.
|
||||
if (lyxrc.allow_geometry_session) {
|
||||
// Save this window geometry and layout.
|
||||
saveLayout();
|
||||
// Then the toolbar private states.
|
||||
ToolbarMap::iterator end = d.toolbars_.end();
|
||||
for (ToolbarMap::iterator it = d.toolbars_.begin(); it != end; ++it)
|
||||
it->second->saveSession();
|
||||
// Now take care of all other dialogs:
|
||||
map<string, DialogPtr>::const_iterator it = d.dialogs_.begin();
|
||||
for (; it!= d.dialogs_.end(); ++it)
|
||||
it->second->saveSession();
|
||||
saveUISettings();
|
||||
}
|
||||
|
||||
close_event->accept();
|
||||
@ -3726,6 +3731,7 @@ void GuiView::resetDialogs()
|
||||
// Make sure that no LFUN uses any GuiView.
|
||||
guiApp->setCurrentView(0);
|
||||
saveLayout();
|
||||
saveUISettings();
|
||||
menuBar()->clear();
|
||||
constructToolbars();
|
||||
guiApp->menus().fillMenuBar(menuBar(), this, false);
|
||||
|
@ -336,8 +336,10 @@ public:
|
||||
void disconnectDialog(std::string const & name);
|
||||
|
||||
private:
|
||||
///
|
||||
/// Saves the layout and geometry of the window
|
||||
void saveLayout() const;
|
||||
/// Saves the settings of toolbars and all dialogs
|
||||
void saveUISettings() const;
|
||||
///
|
||||
bool restoreLayout();
|
||||
///
|
||||
|
Loading…
x
Reference in New Issue
Block a user