lyx_mirror/src/frontends/qt4/QPrefs.C
Abdelrazak Younes 29564e5f54 Changelog:
* QDialogView.h: interface methods and slots are now public instead of protected. This allow to avoid making friend classes.
* QPrefs.[Ch]: removed everything GUI related. The controller does not know anything about what the Dialog is doing, it is here only to transfer request one way or the other.
* QPrefsDialogs.[Ch]: transfered everything GUI related here. Things are gathered per module in contructor, apply() and update() methods so that it will be easy to transfer code to separate class afterward
  - QPrefsDialogs::apply(LyXRC & rc): fill in rc parameters from GUI.
  - QPrefsDialogs::update(LyXRC const & rc): update GUI from rc parameters.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13453 a592a061-630c-0410-9148-cb99ea01b6c8
2006-03-22 18:59:17 +00:00

79 lines
1.3 KiB
C

/**
* \file QPrefs.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author John Levon
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "QPrefs.h"
#include "QPrefsDialog.h"
#include "lcolorcache.h"
#include "Qt2BC.h"
#include "qt_helpers.h"
#include "debug.h"
#include "lastfiles.h"
#include "LColor.h"
#include "lyxfont.h"
#include "support/lstrings.h"
#include "support/os.h"
#include "controllers/ControlPrefs.h"
#include "controllers/frnt_lang.h"
#include "controllers/helper_funcs.h"
#include "frontends/lyx_gui.h"
using namespace Ui;
namespace lyx {
namespace frontend {
typedef QController<ControlPrefs, QView<QPrefsDialog> > base_class;
QPrefs::QPrefs(Dialog & parent)
: base_class(parent, _("Preferences"))
{
}
Converters & QPrefs::converters()
{
return controller().converters();
}
Formats & QPrefs::formats()
{
return controller().formats();
}
Movers & QPrefs::movers()
{
return controller().movers();
}
void QPrefs::build_dialog()
{
dialog_.reset(new QPrefsDialog(this));
}
void QPrefs::apply()
{
dialog_->apply(controller().rc());
}
void QPrefs::update_contents()
{
dialog_->update(controller().rc());
}
} // namespace frontend
} // namespace lyx