source: flair-dev/trunk/include/FlairCore/Tab.h@ 66

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

formatting script + include reformatted

File size: 963 bytes
RevLine 
[2]1// %flair:license{
[13]2// This file is part of the Flair framework distributed under the
3// CECILL-C License, Version 1.0.
[2]4// %flair:license}
5/*!
6 * \file Tab.h
7 * \brief Class displaying a QTab on the ground station
8 * \author Guillaume Sanahuja, Copyright Heudiasyc UMR UTC/CNRS 7253
9 * \date 2011/10/07
10 * \version 4.0
11 */
12
13#ifndef TAB_H
14#define TAB_H
15
16#include <Layout.h>
17
[13]18namespace flair {
19namespace gui {
[2]20
[13]21class TabWidget;
[2]22
[13]23/*! \class Tab
24*
25* \brief Class displaying a QTab on the ground station
26*
27* Tabs are displayed in a TabWidget.
28*/
29class Tab : public Layout {
30public:
31 /*!
32 * \brief Constructor
33 *
34 * Construct a Tab in the TabWidget.
35 *
36 * \param parent parent
37 * \param name name
38 * \param position tab position, -1 to put at the last position
39 */
40 Tab(const TabWidget *parent, std::string name, int position = -1);
[2]41
[13]42 /*!
43 * \brief Destructor
44 *
45 */
46 ~Tab();
[2]47
[13]48private:
49};
[2]50
51} // end namespace gui
52} // end namespace flair
53
54#endif // TAB_H
Note: See TracBrowser for help on using the repository browser.