fw4spl
IMenuBarBuilder.cpp
Go to the documentation of this file.
1 /* ***** BEGIN LICENSE BLOCK *****
2  * FW4SPL - Copyright (C) IRCAD, 2009-2015.
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 
15 #include "fwGui/builder/IMenuBarBuilder.hpp"
16 
17 namespace fwGui
18 {
19 namespace builder
20 {
21 
22 const IMenuBarBuilder::RegistryKeyType IMenuBarBuilder::REGISTRY_KEY = "::fwGui::MenuBarBuilder";
23 
24 //-----------------------------------------------------------------------------
25 
27 {
28 }
29 
30 //-----------------------------------------------------------------------------
31 
33 {
34 }
35 
36 //-----------------------------------------------------------------------------
37 
38 void IMenuBarBuilder::initialize( ::fwRuntime::ConfigurationElement::sptr configuration)
39 {
40 
41 }
42 
43 //-----------------------------------------------------------------------------
44 
45 ::fwGui::container::fwMenuBar::sptr IMenuBarBuilder::getMenuBar()
46 {
47  return this->m_menuBar;
48 }
49 
50 //-----------------------------------------------------------------------------
51 
52 } // namespace builder
53 } // namespace fwGui
54 
55 
56 
The namespace fwGui contains the base interface for IHM services.
Definition: SJobBar.hpp:23
virtual FWGUI_API void initialize(::fwRuntime::ConfigurationElement::sptr configuration)
Configure the layout before creation.
virtual FWGUI_API::fwGui::container::fwMenuBar::sptr getMenuBar()
Returns the builded menu bar.
FWGUI_API IMenuBarBuilder()
Constructor. Do nothing.
::fwGui::container::fwMenuBar::sptr m_menuBar
MenuBar.
virtual FWGUI_API ~IMenuBarBuilder()
Destructor. Do nothing.