source: flair-src/trunk/lib/FlairCore/src/GroupBox.h@ 10

Last change on this file since 10 was 2, checked in by Sanahuja Guillaume, 8 years ago

flaircore

File size: 1.3 KB
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/*!
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
18namespace flair
19{
20namespace gui
21{
22 class LayoutPosition;
23
24 /*! \class GroupBox
25 *
26 * \brief Class displaying a QGroupBox on the ground station
27 *
28 */
29 class GroupBox: public Layout
30 {
31 public:
32 /*!
33 * \brief Constructor
34 *
35 * Construct a QGroupBox at given position. \n
36 * The GroupBox will automatically be child of position->getLayout() Layout. After calling this constructor,
37 * position will be deleted as it is no longer usefull.
38 *
39 * \param position position
40 * \param name name
41 */
42 GroupBox(const LayoutPosition* position,std::string name);
43
44 /*!
45 * \brief Destructor
46 *
47 */
48 ~GroupBox();
49
50 private:
51 };
52
53} // end namespace gui
54} // end namespace flair
55
56#endif // GROUPBOX_H
Note: See TracBrowser for help on using the repository browser.