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_Image;
00039 class CL_StatusBar_Impl;
00040
00044 class CL_API_GUI CL_StatusBar : public CL_GUIComponent
00045 {
00048
00049 public:
00050
00054 CL_StatusBar(CL_GUIComponent *parent);
00055
00056 virtual ~CL_StatusBar();
00057
00061
00062 public:
00063
00064 using CL_GUIComponent::get_named_item;
00065
00069 static CL_StatusBar *get_named_item(CL_GUIComponent *reference_component, const CL_StringRef &id);
00070
00074 CL_Size get_preferred_size() const;
00075
00081 CL_Callback_v0 &func_part_double_clicked(int id);
00082
00086
00087 public:
00088
00092 void set_status_text(const CL_StringRef &text);
00093
00098 void set_part_text(int id, const CL_StringRef &text);
00099
00105 void set_part_text(int id, const CL_Image &icon, const CL_StringRef &text);
00106
00112 void add_part(int id, int width, CL_GUIComponent *component = 0);
00113
00118 void show_part(int id, bool show = true);
00119
00123 void remove_part(int id);
00124
00128 void show_size_grip(bool show = true);
00129
00133
00134 private:
00135 CL_SharedPtr<CL_StatusBar_Impl> impl;
00137 };
00138