source: flair-dev/trunk/include/FlairCore/GridLayout.h@ 6

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

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