Last change
on this file since 433 was 368, checked in by Sanahuja Guillaume, 4 years ago |
ajout d'ascenseurs dans la gcs
|
File size:
404 bytes
|
Rev | Line | |
---|
[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 TAB_H
|
---|
| 6 | #define TAB_H
|
---|
| 7 |
|
---|
| 8 | #include "Layout.h"
|
---|
| 9 |
|
---|
| 10 | class TabWidget;
|
---|
[368] | 11 | class QScrollArea;
|
---|
[9] | 12 |
|
---|
[15] | 13 | class Tab : public Layout {
|
---|
[9] | 14 |
|
---|
[15] | 15 | public:
|
---|
| 16 | Tab(TabWidget *parent, QString name, int position);
|
---|
| 17 | ~Tab();
|
---|
[9] | 18 |
|
---|
[15] | 19 | private:
|
---|
| 20 | TabWidget *parent_tab;
|
---|
[368] | 21 | QScrollArea *scroll;
|
---|
[9] | 22 | };
|
---|
| 23 |
|
---|
| 24 | #endif // TAB_H
|
---|
Note:
See
TracBrowser
for help on using the repository browser.