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_Tab_Impl;
00039 class CL_TabHeader;
00040 class CL_TabPage;
00041 class CL_DomElement;
00042
00046 class CL_API_GUI CL_Tab : public CL_GUIComponent
00047 {
00050
00051 public:
00052
00056 CL_Tab(CL_GUIComponent *parent);
00057
00058 virtual ~CL_Tab();
00059
00063
00064 public:
00065
00071 CL_TabPage *get_page(int index) const;
00072
00078 CL_TabPage *get_page_by_id(int id) const;
00079
00083 int get_current_page_index() const;
00084
00088 int get_current_page_id() const;
00089
00093 CL_Size get_preferred_size() const;
00094
00096 int get_page_count() const;
00097
00101
00102 public:
00104 CL_TabPage *add_page(const CL_StringRef &label, int id=0);
00105
00107 void show_page(int index);
00108
00110 void show_page_by_id(int id);
00111
00113 void remove_page(int index);
00114
00116
00118 void remove_page_by_id(int id);
00119
00121 void set_label(int index, const CL_StringRef &new_label);
00122
00124 void set_label_by_id(int id, const CL_StringRef &new_label);
00125
00129
00130 private:
00131 CL_SharedPtr<CL_Tab_Impl> impl;
00132
00134 };
00135