source: flair-src/trunk/lib/FlairCore/src/GridLayout.h@ 214

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

sources reformatted with flair-format-dir script

File size: 1.1 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 GridLayout.h
7 * \brief Class displaying a QGridLayout 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 GRIDLAYOUT_H
14#define GRIDLAYOUT_H
15
16#include <Layout.h>
17
18namespace flair {
19namespace gui {
20class LayoutPosition;
21
22/*! \class GridLayout
23*
24* \brief Class displaying a QGridLayout on the ground station
25*
26*/
27class GridLayout : public Layout {
28public:
29 /*!
30 * \brief Constructor
31 *
32 * Construct a QCheckBox at given position. \n
33 * The GridLayout 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 parent parent
38 * \param name name
39
40 */
41 GridLayout(const LayoutPosition *position, std::string name);
42
43 /*!
44 * \brief Destructor
45 *
46 */
47 ~GridLayout();
48
49private:
50};
51
52} // end namespace gui
53} // end namespace flair
54
55#endif // GRIDLAYOUT_H
Note: See TracBrowser for help on using the repository browser.