00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef TABMANAGERBASE_H
00010 #define TABMANAGERBASE_H
00011
00012 #include <qvariant.h>
00013 #include <qwidget.h>
00014 #include "tablistview.h"
00015 class QVBoxLayout;
00016 class QHBoxLayout;
00017 class QGridLayout;
00018 class QListView;
00019 class QListViewItem;
00020
00021 class TabManagerBase : public QWidget
00022 {
00023 Q_OBJECT
00024
00025 public:
00026 TabManagerBase( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
00027 ~TabManagerBase();
00028
00029 TabListView* tabList;
00030
00031 protected:
00032 QVBoxLayout* TabManagerBaseLayout;
00033 };
00034
00035 #endif // TABMANAGERBASE_H