kpilot/kpilot
dbSelection_base.h00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef DBSELECTIONWIDGETFORM_H
00010 #define DBSELECTIONWIDGETFORM_H
00011
00012 #include <qvariant.h>
00013 #include <qwidget.h>
00014
00015 class QVBoxLayout;
00016 class QHBoxLayout;
00017 class QGridLayout;
00018 class QSpacerItem;
00019 class KListView;
00020 class QListViewItem;
00021 class KPushButton;
00022 class KLineEdit;
00023
00024 class KPilotDBSelectionWidget : public QWidget
00025 {
00026 Q_OBJECT
00027
00028 public:
00029 KPilotDBSelectionWidget( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
00030 ~KPilotDBSelectionWidget();
00031
00032 KListView* fDatabaseList;
00033 KPushButton* fRemoveButton;
00034 KLineEdit* fNameEdit;
00035 KPushButton* fAddButton;
00036
00037 protected:
00038 QGridLayout* DBSelectionWidgetFormLayout;
00039
00040 protected slots:
00041 virtual void languageChange();
00042
00043 };
00044
00045 #endif // DBSELECTIONWIDGETFORM_H
|