dbSelectionDialog.h
00001 #ifndef _KPILOT_DBSELECTIONDIALOG_H
00002 #define _KPILOT_DBSELECTIONDIALOG_H
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034 #include <kdialogbase.h>
00035
00036 class KPilotDBSelectionWidget;
00037
00038 class KPilotDBSelectionDialog : public KDialogBase
00039 {
00040 Q_OBJECT
00041 public:
00042 KPilotDBSelectionDialog(QStringList &selectedDBs, QStringList &deviceDBs,
00043 QStringList &addedDBs, QWidget *, const char *);
00044 virtual ~KPilotDBSelectionDialog();
00045
00046 QStringList getSelectedDBs();
00047 QStringList getAddedDBs() const {return fAddedDBs; };
00048 private:
00049 QStringList fSelectedDBs;
00050 QStringList fAddedDBs;
00051 QStringList fDeviceDBs;
00052 protected slots:
00053 void addDB();
00054 void removeDB();
00055 void slotTextChanged( const QString& dbname);
00056
00057 private:
00058 KPilotDBSelectionWidget *fSelectionWidget;
00059 } ;
00060
00061 #endif
This file is part of the documentation for kpilot Library Version 3.2.2.