151 lines
5.7 KiB
C++
151 lines
5.7 KiB
C++
/***************************************************************************
|
|
* Copyright (c) 2002 Jürgen Riegel <juergen.riegel@web.de> *
|
|
* *
|
|
* This file is part of the FreeCAD CAx development system. *
|
|
* *
|
|
* This library is free software; you can redistribute it and/or *
|
|
* modify it under the terms of the GNU Library General Public *
|
|
* License as published by the Free Software Foundation; either *
|
|
* version 2 of the License, or (at your option) any later version. *
|
|
* *
|
|
* This library 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 Library General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU Library General Public *
|
|
* License along with this library; see the file COPYING.LIB. If not, *
|
|
* write to the Free Software Foundation, Inc., 59 Temple Place, *
|
|
* Suite 330, Boston, MA 02111-1307, USA *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
|
|
#ifndef GUI_DIALOG_DLGPREFERENCESIMP_H
|
|
#define GUI_DIALOG_DLGPREFERENCESIMP_H
|
|
|
|
#include <QDialog>
|
|
|
|
class QAbstractButton;
|
|
class QListWidgetItem;
|
|
|
|
namespace Gui {
|
|
namespace Dialog {
|
|
class PreferencePage;
|
|
class Ui_DlgPreferences;
|
|
|
|
/**
|
|
* This class implements a dialog containing several preference pages.
|
|
*
|
|
* To append your own page you just have to take note of these points:
|
|
*
|
|
* \li Each preference page can be created by the Qt Designer selecting the "Widget" item
|
|
* in the project dialog.
|
|
*
|
|
* \li To save or load the widgets' settings automatically (e.g. combo boxes, line edits,
|
|
* check boxes, ...) you can make use of the classes inherited from @ref PrefWidget such as:
|
|
* PrefSpinBox, PrefLineEdit, PrefComboBox, PrefListBox, PrefCheckBox, PrefRadioButton and
|
|
* PrefSlider. If you have compiled and installed the library under src/Tools/plugins/widgets
|
|
* to QTDIR/plugins/designer you should see the new category "Preferences".
|
|
* Moreover you have to make sure to have specified the "prefEntry" and "prefPath" properties for each
|
|
* preference widget you have used inside your form in Qt Designer.
|
|
*
|
|
* \li For each widget inside your page - you want to save or load - you have to call
|
|
* \<objectname\>->onSave() or \<objectname\>->onRestore(). The best way to this is either to
|
|
* define the protected slots saveSettings() and loadSettings() in your form and overwrite
|
|
* them in a subclass or define these slots in this subclass diretly.
|
|
*
|
|
* See the example below for more details:
|
|
*
|
|
* \code
|
|
* // This class was created by Qt's uic tool
|
|
* class MyPrefPage : public QWidget
|
|
* {
|
|
* public:
|
|
* MyPrefPage( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 )
|
|
* {
|
|
* myLineEdit->setProperty( "prefEntry", "lineedit" );
|
|
* myLineEdit->setProperty( "prefPath", "GroupName" );
|
|
* myCheckBox->setProperty( "prefEntry", "checkbox" );
|
|
* myCheckBox->setProperty( "prefPath", "GroupName" );
|
|
* ...
|
|
* }
|
|
*
|
|
* PrefLineEdit* myLineEdit;
|
|
* PrefCheckBox* myCheckBox;
|
|
* };
|
|
* \endcode
|
|
* In the derived class you just have to implement the methods saveSettings() and loadSettings()
|
|
* in the following way:.
|
|
* \code
|
|
* class MyPrefPageImp : public MyPrefPage
|
|
* {
|
|
* public:
|
|
* MyPrefPageImp( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 )
|
|
* {
|
|
* }
|
|
* protected Q_SLOTS:
|
|
* void saveSettings()
|
|
* {
|
|
* myLineEdit->onSave();
|
|
* myCheckBox->onSave();
|
|
* }
|
|
* void loadSettings();
|
|
* {
|
|
* myLineEdit->onRestore();
|
|
* myCheckBox->onRestore();
|
|
* }
|
|
* };
|
|
* \endcode
|
|
*
|
|
* \li Now you have to make the widget factory to know your class by adding the line
|
|
* new PrefPageProducer<MyPrefPageImp> (QT_TR_NOOP("My category"));
|
|
*
|
|
* \see PrefWidget
|
|
* \author Werner Mayer, Jürgen Riegel
|
|
*/
|
|
class GuiExport DlgPreferencesImp : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
static void addPage(const std::string& className, const std::string& group);
|
|
static void removePage(const std::string& className, const std::string& group);
|
|
|
|
DlgPreferencesImp(QWidget* parent = 0, Qt::WindowFlags fl = 0);
|
|
~DlgPreferencesImp();
|
|
|
|
void accept();
|
|
void activateGroupPage(const QString& group, int id);
|
|
|
|
protected:
|
|
void changeEvent(QEvent *e);
|
|
void showEvent(QShowEvent*);
|
|
void resizeEvent(QResizeEvent*);
|
|
|
|
protected Q_SLOTS:
|
|
void changeGroup(QListWidgetItem *current, QListWidgetItem *previous);
|
|
void on_buttonBox_clicked(QAbstractButton*);
|
|
void resizeWindow(int w, int h);
|
|
|
|
private:
|
|
/** @name for internal use only */
|
|
//@{
|
|
void setupPages();
|
|
void applyChanges();
|
|
void restoreDefaults();
|
|
//@}
|
|
|
|
private:
|
|
typedef std::pair<std::string, std::list<std::string> > TGroupPages;
|
|
static std::list<TGroupPages> _pages; /**< Name of all registered preference pages */
|
|
Ui_DlgPreferences* ui;
|
|
bool invalidParameter;
|
|
bool canEmbedScrollArea;
|
|
};
|
|
|
|
} // namespace Dialog
|
|
} // namespace Gui
|
|
|
|
#endif // GUI_DIALOG_DLGPREFERENCESIMP_H
|