1 /***************************************************************************
2 * Copyright (C) 2004 by Enrico Ros <eros.kde@email.it> *
4 * This program is free software; you can redistribute it and/or modify *
5 * it under the terms of the GNU General Public License as published by *
6 * the Free Software Foundation; either version 2 of the License, or *
7 * (at your option) any later version. *
8 ***************************************************************************/
10 #ifndef _PREFERENCESDIALOG_H
11 #define _PREFERENCESDIALOG_H
13 #include <kconfigdialog.h>
17 class KConfigSkeleton
;
21 class DlgAccessibility
;
22 class DlgPresentation
;
26 class PreferencesDialog
: public KConfigDialog
30 PreferencesDialog( QWidget
* parent
, KConfigSkeleton
* config
);
33 // void updateSettings(); // Called when OK/Apply is pressed.
34 // void updateWidgets(); // Called upon construction or when Reset is pressed
35 // void updateWidgetsDefault(); // Called when Defaults button is pressed
36 // bool hasChanged(); // In order to correctly disable/enable Apply button
37 // bool isDefault(); // In order to correctly disable/enable Defaults button
40 DlgGeneral
* m_general
;
41 DlgPerformance
* m_performance
;
42 DlgAccessibility
* m_accessibility
;
43 DlgPresentation
* m_presentation
;
44 DlgIdentity
* m_identity
;