fw4spl
LineLayoutManager.hpp
1 /* ***** BEGIN LICENSE BLOCK *****
2  * FW4SPL - Copyright (C) IRCAD, 2009-2017.
3  * Distributed under the terms of the GNU Lesser General Public License (LGPL) as
4  * published by the Free Software Foundation.
5  * ****** END LICENSE BLOCK ****** */
6 
7 #ifndef __FWGUIQT_LAYOUTMANAGER_LINELAYOUTMANAGER_HPP__
8 #define __FWGUIQT_LAYOUTMANAGER_LINELAYOUTMANAGER_HPP__
9 
10 #include "fwGuiQt/config.hpp"
11 #include "fwGuiQt/container/QtContainer.hpp"
12 
13 #include <fwCore/base.hpp>
14 
15 #include <fwGui/layoutManager/LineLayoutManagerBase.hpp>
16 
17 namespace fwGui
18 {
19 
24 {
25 
26 public:
27 
29  (()),
30  ::fwGui::factory::New< LineLayoutManager > );
31 
33 
34  FWGUIQT_API virtual ~LineLayoutManager();
35 
41  FWGUIQT_API virtual void createLayout( ::fwGui::container::fwContainer::sptr parent ) override;
42 
47  FWGUIQT_API virtual void destroyLayout() override;
48 
49 private:
50  ::fwGuiQt::container::QtContainer::sptr m_parentContainer;
51 };
52 
53 } // namespace fwGui
54 
55 #endif /*__FWGUIQT_LAYOUTMANAGER_LINELAYOUTMANAGER_HPP__*/
56 
Defines the base for line layout manager.
The namespace fwGui contains the base interface for IHM services.
Definition: SJobBar.hpp:23
Key class used to restrict access to Object construction. See http://www.drdobbs.com/184402053.
Defines the line layout manager.
#define fwCoreClassDefinitionsWithFactoryMacro(_classinfo_, _parameters_, _factory_)
Generate common construction methods for classes with one factory.