kabconfigwidget.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #ifndef KABCONFIGWIDGET_H
00025 #define KABCONFIGWIDGET_H
00026
00027 #include <qwidget.h>
00028
00029 class QCheckBox;
00030 class QLineEdit;
00031 class QListViewItem;
00032 class QPushButton;
00033
00034 class KListView;
00035
00036 class AddresseeWidget;
00037
00038 class KABConfigWidget : public QWidget
00039 {
00040 Q_OBJECT
00041
00042 public:
00043 KABConfigWidget( QWidget *parent, const char *name = 0 );
00044
00045 void restoreSettings();
00046 void saveSettings();
00047 void defaults();
00048
00049 signals:
00050 void changed( bool );
00051
00052 public slots:
00053 void modified();
00054
00055 private slots:
00056 void configureExtension();
00057 void selectionChanged( QListViewItem* );
00058 void itemClicked( QListViewItem* );
00059 void configureExtension(QListViewItem *);
00060 private:
00061 void restoreExtensionSettings();
00062 void saveExtensionSettings();
00063
00064 KListView *mExtensionView;
00065
00066 QCheckBox *mNameParsing;
00067 QCheckBox *mViewsSingleClickBox;
00068 QPushButton *mConfigureButton;
00069 QLineEdit *mPhoneHook;
00070 QLineEdit *mFaxHook;
00071
00072 AddresseeWidget *mAddresseeWidget;
00073 };
00074
00075 #endif
This file is part of the documentation for kaddressbook Library Version 3.2.2.