source:
flair-src/trunk/tools/FlairGCS/src/Tab.h@
10
Last change on this file since 10 was 10, checked in by , 9 years ago | |
---|---|
File size: 413 bytes |
Line | |
---|---|
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} |
5 | #ifndef TAB_H |
6 | #define TAB_H |
7 | |
8 | #include "Layout.h" |
9 | |
10 | class TabWidget; |
11 | |
12 | class Tab: public Layout |
13 | { |
14 | |
15 | public: |
16 | Tab(TabWidget* parent,QString name,int position); |
17 | ~Tab(); |
18 | |
19 | private: |
20 | TabWidget *parent_tab; |
21 | QWidget* onglet; |
22 | |
23 | }; |
24 | |
25 | #endif // TAB_H |
Note:
See TracBrowser
for help on using the repository browser.