Rev | Line | |
---|
[10] | 1 | // %flair:license{
|
---|
| 2 | // This file is part of the Flair framework distributed under the
|
---|
| 3 | // CECILL-C License, Version 1.0.
|
---|
| 4 | // %flair:license}
|
---|
[9] | 5 | #ifndef TABWIDGET_H
|
---|
| 6 | #define TABWIDGET_H
|
---|
| 7 |
|
---|
| 8 | #include "XmlWidget.h"
|
---|
| 9 | #include <QTabWidget>
|
---|
| 10 |
|
---|
| 11 | class Layout;
|
---|
| 12 |
|
---|
| 13 | class TabWidget: public XmlWidget
|
---|
| 14 | {
|
---|
| 15 | friend class Tab;
|
---|
| 16 |
|
---|
| 17 | public:
|
---|
| 18 | TabWidget(Layout* parent,int row,int col,QString name,QTabWidget::TabPosition position);
|
---|
| 19 | ~TabWidget();
|
---|
| 20 | bool IsUptodate(void);
|
---|
| 21 |
|
---|
| 22 | private:
|
---|
| 23 | QTabWidget* tab;
|
---|
| 24 | void XmlEvent(QDomElement dom);
|
---|
| 25 |
|
---|
| 26 |
|
---|
| 27 | };
|
---|
| 28 |
|
---|
| 29 | #endif // TABWIDGET_H
|
---|
Note:
See
TracBrowser
for help on using the repository browser.