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

Last change on this file since 81 was 15, checked in by Bayard Gildas, 8 years ago

sources reformatted with flair-format-dir script

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