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
00031
00032 #pragma once
00033
00034 #include "../api_gui.h"
00035 #include "../../Display/2D/sprite.h"
00036 #include "listview_icon.h"
00037
00038 class CL_ListViewIconList_Impl;
00039 class CL_ListViewIcon_Impl;
00040
00044 class CL_API_GUI CL_ListViewIconList
00045 {
00048
00049 public:
00050 CL_ListViewIconList();
00051 ~CL_ListViewIconList();
00052
00056
00057 public:
00058
00064 CL_ListViewIcon get_icon(int index);
00065
00069 CL_Colorf get_color();
00070
00074 CL_Colorf get_selected_color();
00075
00079 CL_Colorf get_color_overlay();
00080
00084 CL_Colorf get_selected_color_overlay();
00085
00089
00090 public:
00092 void clear();
00093
00095 void erase(int index);
00096
00098 void set_icon(int index, const CL_ListViewIcon &icon);
00099
00103 void set_color(const CL_Colorf &color);
00104
00108 void set_selected_color(const CL_Colorf &color);
00109
00113 void set_color_overlay(const CL_Colorf &color);
00114
00118 void set_selected_color_overlay(const CL_Colorf &color);
00119
00123
00124 private:
00125 CL_SharedPtr<CL_ListViewIconList_Impl> impl;
00127 };
00128