certmanager/lib
directoryserviceswidgetbase.h00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef DIRECTORYSERVICESWIDGETBASE_H
00010 #define DIRECTORYSERVICESWIDGETBASE_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 QLabel;
00020 class QListView;
00021 class QListViewItem;
00022 class QToolButton;
00023 class QPushButton;
00024
00025 class DirectoryServicesWidgetBase : public QWidget
00026 {
00027 Q_OBJECT
00028
00029 public:
00030 DirectoryServicesWidgetBase( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
00031 ~DirectoryServicesWidgetBase();
00032
00033 QLabel* x500LA;
00034 QListView* x500LV;
00035 QToolButton* upButton;
00036 QToolButton* downButton;
00037 QPushButton* addServicePB;
00038 QPushButton* removeServicePB;
00039
00040 protected:
00041 QVBoxLayout* DirectoryServicesWidgetBaseLayout;
00042 QSpacerItem* Spacer9;
00043 QHBoxLayout* layout2;
00044 QVBoxLayout* layout1;
00045 QSpacerItem* spacer5;
00046 QHBoxLayout* layout3;
00047 QSpacerItem* Spacer10;
00048 QSpacerItem* Spacer11;
00049 QSpacerItem* Spacer12;
00050
00051 protected slots:
00052 virtual void languageChange();
00053
00054 virtual void slotAddService();
00055 virtual void slotDeleteService();
00056 virtual void slotServiceChanged( QListViewItem* );
00057 virtual void slotServiceSelected( QListViewItem* );
00058 virtual void slotMoveUp();
00059 virtual void slotMoveDown();
00060
00061
00062 };
00063
00064 #endif // DIRECTORYSERVICESWIDGETBASE_H
|