kpilot/kpilot
dbSelectionDialog.h00001 #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 #include <kdialogbase.h>
00034
00035 class KPilotDBSelectionWidget;
00036
00037 class KPilotDBSelectionDialog : public KDialogBase
00038 {
00039 Q_OBJECT
00040 public:
00041 KPilotDBSelectionDialog(TQStringList &selectedDBs, TQStringList &deviceDBs,
00042 TQStringList &addedDBs, TQWidget *, const char *);
00043 virtual ~KPilotDBSelectionDialog();
00044
00045 TQStringList getSelectedDBs();
00046 TQStringList getAddedDBs() const {return fAddedDBs; };
00047 private:
00048 TQStringList fSelectedDBs;
00049 TQStringList fAddedDBs;
00050 TQStringList fDeviceDBs;
00051 protected slots:
00052 void addDB();
00053 void removeDB();
00054 void slotTextChanged( const TQString& dbname);
00055
00056 private:
00057 KPilotDBSelectionWidget *fSelectionWidget;
00058 } ;
00059
00060 #endif
|