Last change
on this file since 19 was 15, checked in by Bayard Gildas, 9 years ago |
sources reformatted with flair-format-dir script
|
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 | namespace gui {
|
---|
24 |
|
---|
25 | Tab::Tab(const TabWidget *parent, string name, int position)
|
---|
26 | : Layout(parent, name, "Tab") {
|
---|
27 | SetVolatileXmlProp("position", position);
|
---|
28 | SendXml();
|
---|
29 | }
|
---|
30 |
|
---|
31 | Tab::~Tab() {}
|
---|
32 |
|
---|
33 | } // end namespace gui
|
---|
34 | } // end namespace flair
|
---|
Note:
See
TracBrowser
for help on using the repository browser.