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
00067 CL_Size get_preferred_size() const;
00068
00074 CL_Callback_v0 &func_part_double_clicked(int id);
00075
00079
00080 public:
00081
00085 void set_status_text(const CL_StringRef &text);
00086
00091 void set_part_text(int id, const CL_StringRef &text);
00092
00098 void set_part_text(int id, const CL_Image &icon, const CL_StringRef &text);
00099
00105 void add_part(int id, int width, CL_GUIComponent *component = 0);
00106
00111 void show_part(int id, bool show = true);
00112
00116 void remove_part(int id);
00117
00121 void show_size_grip(bool show = true);
00122
00126
00127 private:
00128 CL_SharedPtr<CL_StatusBar_Impl> impl;
00130 };
00131