00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef HK_KDEOBJECTHANDLERBASE_H
00014 #define HK_KDEOBJECTHANDLERBASE_H
00015
00016 #include <qvariant.h>
00017 #include <qdialog.h>
00018
00019 class QVBoxLayout;
00020 class QHBoxLayout;
00021 class QGridLayout;
00022 class QSpacerItem;
00023 class QPushButton;
00024 class QLabel;
00025 class hk_kdedblistview;
00026 class QListViewItem;
00027
00028 class hk_kdeobjecthandlerbase : public QDialog
00029 {
00030 Q_OBJECT
00031
00032 public:
00033 hk_kdeobjecthandlerbase( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
00034 ~hk_kdeobjecthandlerbase();
00035
00036 QPushButton* uploadbutton;
00037 QPushButton* downloadbutton;
00038 QPushButton* exitbutton;
00039 hk_kdedblistview* locallistview;
00040 hk_kdedblistview* centrallistview;
00041
00042 public slots:
00043 virtual void download_clicked();
00044 virtual void upload_clicked();
00045 virtual void slot_selection_changed();
00046
00047 protected:
00048 QGridLayout* hk_kdeobjecthandlerbaseLayout;
00049 QVBoxLayout* layout1;
00050 QSpacerItem* spacer1;
00051 QSpacerItem* spacer2;
00052 QHBoxLayout* layout2;
00053 QSpacerItem* spacer3;
00054 QVBoxLayout* layout3;
00055 QVBoxLayout* layout4;
00056
00057 protected slots:
00058 virtual void languageChange();
00059
00060 };
00061
00062 #endif // HK_KDEOBJECTHANDLERBASE_H