Last change
on this file since 7 was 2, checked in by Sanahuja Guillaume, 9 years ago |
flaircore
|
File size:
767 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 | // created: 2011/10/07
|
---|
6 | // filename: Tab.cpp
|
---|
7 | //
|
---|
8 | // author: Guillaume Sanahuja
|
---|
9 | // Copyright Heudiasyc UMR UTC/CNRS 7253
|
---|
10 | //
|
---|
11 | // version: $Id: $
|
---|
12 | //
|
---|
13 | // purpose: Class displaying a QTab on the ground station
|
---|
14 | //
|
---|
15 | //
|
---|
16 | /*********************************************************************/
|
---|
17 | #include "Tab.h"
|
---|
18 | #include "TabWidget.h"
|
---|
19 |
|
---|
20 | using std::string;
|
---|
21 |
|
---|
22 | namespace flair
|
---|
23 | {
|
---|
24 | namespace gui
|
---|
25 | {
|
---|
26 |
|
---|
27 | Tab::Tab(const TabWidget* parent,string name,int position): Layout(parent,name,"Tab")
|
---|
28 | {
|
---|
29 | SetVolatileXmlProp("position",position);
|
---|
30 | SendXml();
|
---|
31 | }
|
---|
32 |
|
---|
33 | Tab::~Tab()
|
---|
34 | {
|
---|
35 |
|
---|
36 | }
|
---|
37 |
|
---|
38 | } // end namespace gui
|
---|
39 | } // end namespace flair
|
---|
Note:
See
TracBrowser
for help on using the repository browser.