summaryrefslogtreecommitdiffabout
path: root/kaddressbook/viewconfigurewidget.h
Unidiff
Diffstat (limited to 'kaddressbook/viewconfigurewidget.h') (more/less context) (ignore whitespace changes)
-rw-r--r--kaddressbook/viewconfigurewidget.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/kaddressbook/viewconfigurewidget.h b/kaddressbook/viewconfigurewidget.h
index 0c2b77c..e3b9b12 100644
--- a/kaddressbook/viewconfigurewidget.h
+++ b/kaddressbook/viewconfigurewidget.h
@@ -19,25 +19,25 @@
19 As a special exception, permission is given to link this program 19 As a special exception, permission is given to link this program
20 with any edition of Qt, and distribute the resulting executable, 20 with any edition of Qt, and distribute the resulting executable,
21 without including the source code for Qt in the source distribution. 21 without including the source code for Qt in the source distribution.
22*/ 22*/
23 23
24#ifndef VIEWCONFIGUREWIDGET_H 24#ifndef VIEWCONFIGUREWIDGET_H
25#define VIEWCONFIGUREWIDGET_H 25#define VIEWCONFIGUREWIDGET_H
26 26
27 27
28 28
29#include "configurewidget.h" 29#include "configurewidget.h"
30 30
31class QVBox; 31class Q3VBox;
32 32
33#include <kdialogbase.h> 33#include <kdialogbase.h>
34#include <qpixmap.h> 34#include <qpixmap.h>
35 35
36class KJanusWidget; 36class KJanusWidget;
37class QString; 37class QString;
38class ViewConfigureFieldsPage; 38class ViewConfigureFieldsPage;
39class ViewConfigureFilterPage; 39class ViewConfigureFilterPage;
40class ViewConfigureDialog; 40class ViewConfigureDialog;
41/** 41/**
42 This widget is the base class for all view configuration widgets. The 42 This widget is the base class for all view configuration widgets. The
43 author of a view may wish to inherit from this widget and add config pages 43 author of a view may wish to inherit from this widget and add config pages
@@ -65,25 +65,25 @@ class ViewConfigureWidget : public ConfigureWidget
65 /** 65 /**
66 Writes the configuration from the GUI to the config object. If this 66 Writes the configuration from the GUI to the config object. If this
67 method is overloaded, be sure to call the base class's method. 67 method is overloaded, be sure to call the base class's method.
68 68
69 Do not change the group of the config object in this method. 69 Do not change the group of the config object in this method.
70 */ 70 */
71 virtual void saveSettings( KConfig *config ); 71 virtual void saveSettings( KConfig *config );
72 72
73 73
74 /** 74 /**
75 Use this method to add new pages to the widget. 75 Use this method to add new pages to the widget.
76 */ 76 */
77 QVBox *addPage( const QString &item, const QString &header = QString::null, 77 Q3VBox *addPage( const QString &item, const QString &header = QString::null,
78 const QPixmap &pixmap = QPixmap() ); 78 const QPixmap &pixmap = QPixmap() );
79 79
80 private: 80 private:
81 KJanusWidget *mMainWidget; 81 KJanusWidget *mMainWidget;
82 82
83 ViewConfigureFieldsPage *mFieldsPage; 83 ViewConfigureFieldsPage *mFieldsPage;
84 ViewConfigureFilterPage *mFilterPage; 84 ViewConfigureFilterPage *mFilterPage;
85}; 85};
86 86
87class ViewConfigureDialog : public KDialogBase 87class ViewConfigureDialog : public KDialogBase
88{ 88{
89 Q_OBJECT 89 Q_OBJECT