source: flair-src/trunk/tools/FlairGCS/src/TabWidget.h@ 9

Last change on this file since 9 was 9, checked in by Sanahuja Guillaume, 8 years ago

gcs

File size: 430 bytes
Line 
1#ifndef TABWIDGET_H
2#define TABWIDGET_H
3
4#include "XmlWidget.h"
5#include <QTabWidget>
6
7class Layout;
8
9class TabWidget: public XmlWidget
10{
11 friend class Tab;
12
13 public:
14 TabWidget(Layout* parent,int row,int col,QString name,QTabWidget::TabPosition position);
15 ~TabWidget();
16 bool IsUptodate(void);
17
18 private:
19 QTabWidget* tab;
20 void XmlEvent(QDomElement dom);
21
22
23};
24
25#endif // TABWIDGET_H
Note: See TracBrowser for help on using the repository browser.