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_GUIManager;
00039 class CL_ToolTip_Impl;
00040
00044 class CL_API_GUI CL_ToolTip : public CL_GUIComponent
00045 {
00048 public:
00049
00053 CL_ToolTip(CL_GUIManager gui_manager);
00054
00055 virtual ~CL_ToolTip();
00056
00060 public:
00061
00062 using CL_GUIComponent::get_named_item;
00063
00067 static CL_ToolTip *get_named_item(CL_GUIComponent *reference_component, const CL_StringRef &id);
00068
00072 CL_StringRef get_text() const;
00073
00077 public:
00078
00082 void set_text(const CL_StringRef &text);
00083
00087 void show(const CL_Point &position);
00088
00093 void show_delayed(const CL_Point &position, int delay_time = 750);
00094
00096 void hide();
00097
00101 private:
00102 CL_SharedPtr<CL_ToolTip_Impl> impl;
00104 };
00105