Last change
on this file since 34 was 13, checked in by Bayard Gildas, 9 years ago |
formatting script + include reformatted
|
File size:
1.1 KB
|
Rev | Line | |
---|
[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 GroupBox.h
|
---|
| 7 | * \brief Class displaying a QGroupBox 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 GROUPBOX_H
|
---|
| 14 | #define GROUPBOX_H
|
---|
| 15 |
|
---|
| 16 | #include <Layout.h>
|
---|
| 17 |
|
---|
[13] | 18 | namespace flair {
|
---|
| 19 | namespace gui {
|
---|
| 20 | class LayoutPosition;
|
---|
[2] | 21 |
|
---|
[13] | 22 | /*! \class GroupBox
|
---|
| 23 | *
|
---|
| 24 | * \brief Class displaying a QGroupBox on the ground station
|
---|
| 25 | *
|
---|
| 26 | */
|
---|
| 27 | class GroupBox : public Layout {
|
---|
| 28 | public:
|
---|
| 29 | /*!
|
---|
| 30 | * \brief Constructor
|
---|
| 31 | *
|
---|
| 32 | * Construct a QGroupBox at given position. \n
|
---|
| 33 | * The GroupBox will automatically be child of position->getLayout() Layout.
|
---|
| 34 | *After calling this constructor,
|
---|
| 35 | * position will be deleted as it is no longer usefull.
|
---|
| 36 | *
|
---|
| 37 | * \param position position
|
---|
| 38 | * \param name name
|
---|
| 39 | */
|
---|
| 40 | GroupBox(const LayoutPosition *position, std::string name);
|
---|
[2] | 41 |
|
---|
[13] | 42 | /*!
|
---|
| 43 | * \brief Destructor
|
---|
| 44 | *
|
---|
| 45 | */
|
---|
| 46 | ~GroupBox();
|
---|
[2] | 47 |
|
---|
[13] | 48 | private:
|
---|
| 49 | };
|
---|
[2] | 50 |
|
---|
| 51 | } // end namespace gui
|
---|
| 52 | } // end namespace flair
|
---|
| 53 |
|
---|
| 54 | #endif // GROUPBOX_H
|
---|
Note:
See
TracBrowser
for help on using the repository browser.