Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00032
00033 #pragma once
00034
00035 #include "../api_gui.h"
00036 #include "../gui_component.h"
00037
00038 class CL_PopupMenu;
00039 class CL_MenuBar_Impl;
00040
00044 class CL_API_GUI CL_MenuBar : public CL_GUIComponent
00045 {
00048
00049 public:
00050
00054 CL_MenuBar(CL_GUIComponent *parent);
00055
00056 virtual ~CL_MenuBar();
00057
00061
00062 public:
00063 using CL_GUIComponent::get_named_item;
00064
00068 static CL_MenuBar *get_named_item(CL_GUIComponent *reference_component, const CL_StringRef &id);
00069
00073 virtual CL_Size get_preferred_size() const;
00074
00080 CL_PopupMenu get_menu(int index) const;
00081
00082
00086
00087 public:
00088
00090 void clear();
00091
00098 int add_menu(const CL_StringRef &name, CL_PopupMenu popup_menu);
00099
00103 void remove_menu(int index);
00104
00108
00109 private:
00110 CL_SharedPtr<CL_MenuBar_Impl> impl;
00111
00112 friend class CL_MenuModalLoop;
00114 };
00115