Open Source Tomb Raider Engine
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

imgui.h 55KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846
  1. // ImGui library v1.30 wip
  2. // See .cpp file for commentary.
  3. // See ImGui::ShowTestWindow() for sample code.
  4. // Read 'Programmer guide' in .cpp for notes on how to setup ImGui in your codebase.
  5. // Get latest version at https://github.com/ocornut/imgui
  6. #pragma once
  7. struct ImDrawList;
  8. struct ImFont;
  9. struct ImFontAtlas;
  10. struct ImGuiAabb;
  11. struct ImGuiIO;
  12. struct ImGuiStorage;
  13. struct ImGuiStyle;
  14. struct ImGuiWindow;
  15. #include "imconfig.h"
  16. #include <float.h> // FLT_MAX
  17. #include <stdarg.h> // va_list
  18. #include <stddef.h> // ptrdiff_t
  19. #include <stdlib.h> // NULL, malloc
  20. #include <string.h> // memset, memmove
  21. #ifndef IM_ASSERT
  22. #include <assert.h>
  23. #define IM_ASSERT(_EXPR) assert(_EXPR)
  24. #endif
  25. #ifndef IMGUI_API
  26. #define IMGUI_API
  27. #endif
  28. typedef unsigned int ImU32;
  29. typedef unsigned short ImWchar; // character for display
  30. typedef void* ImTextureID; // user data to refer to a texture (e.g. store your texture handle/id)
  31. typedef ImU32 ImGuiID; // unique ID used by widgets (typically hashed from a stack of string)
  32. typedef int ImGuiCol; // enum ImGuiCol_
  33. typedef int ImGuiStyleVar; // enum ImGuiStyleVar_
  34. typedef int ImGuiKey; // enum ImGuiKey_
  35. typedef int ImGuiColorEditMode; // enum ImGuiColorEditMode_
  36. typedef int ImGuiWindowFlags; // enum ImGuiWindowFlags_
  37. typedef int ImGuiSetCondition; // enum ImGuiSetCondition_
  38. typedef int ImGuiInputTextFlags; // enum ImGuiInputTextFlags_
  39. struct ImGuiTextEditCallbackData; // for advanced uses of InputText()
  40. struct ImVec2
  41. {
  42. float x, y;
  43. ImVec2() {}
  44. ImVec2(float _x, float _y) { x = _x; y = _y; }
  45. #ifdef IM_VEC2_CLASS_EXTRA
  46. IM_VEC2_CLASS_EXTRA
  47. #endif
  48. };
  49. struct ImVec4
  50. {
  51. float x, y, z, w;
  52. ImVec4() {}
  53. ImVec4(float _x, float _y, float _z, float _w) { x = _x; y = _y; z = _z; w = _w; }
  54. #ifdef IM_VEC4_CLASS_EXTRA
  55. IM_VEC4_CLASS_EXTRA
  56. #endif
  57. };
  58. namespace ImGui
  59. {
  60. // Proxy functions to access the MemAllocFn/MemFreeFn/MemReallocFn pointers in ImGui::GetIO(). The only reason they exist here is to allow ImVector<> to compile inline.
  61. IMGUI_API void* MemAlloc(size_t sz);
  62. IMGUI_API void MemFree(void* ptr);
  63. IMGUI_API void* MemRealloc(void* ptr, size_t sz);
  64. }
  65. // std::vector<> like class to avoid dragging dependencies (also: windows implementation of STL with debug enabled is absurdly slow, so let's bypass it so our code runs fast in debug).
  66. // Use '#define ImVector std::vector' if you want to use the STL type or your own type.
  67. // Our implementation does NOT call c++ constructors! because the data types we use don't need them (but that could be added as well). Only provide the minimum functionalities we need.
  68. #ifndef ImVector
  69. template<typename T>
  70. class ImVector
  71. {
  72. protected:
  73. size_t Size;
  74. size_t Capacity;
  75. T* Data;
  76. public:
  77. typedef T value_type;
  78. typedef value_type* iterator;
  79. typedef const value_type* const_iterator;
  80. ImVector() { Size = Capacity = 0; Data = NULL; }
  81. ~ImVector() { if (Data) ImGui::MemFree(Data); }
  82. inline bool empty() const { return Size == 0; }
  83. inline size_t size() const { return Size; }
  84. inline size_t capacity() const { return Capacity; }
  85. inline value_type& at(size_t i) { IM_ASSERT(i < Size); return Data[i]; }
  86. inline const value_type& at(size_t i) const { IM_ASSERT(i < Size); return Data[i]; }
  87. inline value_type& operator[](size_t i) { IM_ASSERT(i < Size); return Data[i]; }
  88. inline const value_type& operator[](size_t i) const { IM_ASSERT(i < Size); return Data[i]; }
  89. inline void clear() { if (Data) { Size = Capacity = 0; ImGui::MemFree(Data); Data = NULL; } }
  90. inline iterator begin() { return Data; }
  91. inline const_iterator begin() const { return Data; }
  92. inline iterator end() { return Data + Size; }
  93. inline const_iterator end() const { return Data + Size; }
  94. inline value_type& front() { IM_ASSERT(Size > 0); return Data[0]; }
  95. inline const value_type& front() const { IM_ASSERT(Size > 0); return Data[0]; }
  96. inline value_type& back() { IM_ASSERT(Size > 0); return Data[Size-1]; }
  97. inline const value_type& back() const { IM_ASSERT(Size > 0); return Data[Size-1]; }
  98. inline void swap(ImVector<T>& rhs) { const size_t rhs_size = rhs.Size; rhs.Size = Size; Size = rhs_size; const size_t rhs_cap = rhs.Capacity; rhs.Capacity = Capacity; Capacity = rhs_cap; value_type* rhs_data = rhs.Data; rhs.Data = Data; Data = rhs_data; }
  99. inline void reserve(size_t new_capacity) { Data = (value_type*)ImGui::MemRealloc(Data, new_capacity * sizeof(value_type)); Capacity = new_capacity; }
  100. inline void resize(size_t new_size) { if (new_size > Capacity) reserve(new_size); Size = new_size; }
  101. inline void push_back(const value_type& v) { if (Size == Capacity) reserve(Capacity ? Capacity * 2 : 4); Data[Size++] = v; }
  102. inline void pop_back() { IM_ASSERT(Size > 0); Size--; }
  103. inline iterator erase(const_iterator it) { IM_ASSERT(it >= begin() && it < end()); const ptrdiff_t off = it - begin(); memmove(Data + off, Data + off + 1, (Size - (size_t)off - 1) * sizeof(value_type)); Size--; return Data + off; }
  104. inline iterator insert(const_iterator it, const value_type& v) { IM_ASSERT(it >= begin() && it <= end()); const ptrdiff_t off = it - begin(); if (Size == Capacity) reserve(Capacity ? Capacity * 2 : 4); if (off < (int)Size) memmove(Data + off + 1, Data + off, (Size - (size_t)off) * sizeof(value_type)); Data[off] = v; Size++; return Data + off; }
  105. };
  106. #endif // #ifndef ImVector
  107. // Helpers at bottom of the file:
  108. // - IMGUI_ONCE_UPON_A_FRAME // Execute a block of code once per frame only (convenient for creating UI within deep-nested code that runs multiple times)
  109. // - struct ImGuiTextFilter // Parse and apply text filters. In format "aaaaa[,bbbb][,ccccc]"
  110. // - struct ImGuiTextBuffer // Text buffer for logging/accumulating text
  111. // - struct ImGuiStorage // Custom key value storage (if you need to alter open/close states manually)
  112. // - struct ImDrawList // Draw command list
  113. // - struct ImFont // TTF font loader, bake glyphs into bitmap
  114. // ImGui End-user API
  115. // In a namespace so that user can add extra functions (e.g. Value() helpers for your vector or common types)
  116. namespace ImGui
  117. {
  118. // Main
  119. IMGUI_API ImGuiIO& GetIO();
  120. IMGUI_API ImGuiStyle& GetStyle();
  121. IMGUI_API void NewFrame();
  122. IMGUI_API void Render();
  123. IMGUI_API void Shutdown();
  124. IMGUI_API void ShowUserGuide();
  125. IMGUI_API void ShowStyleEditor(ImGuiStyle* ref = NULL);
  126. IMGUI_API void ShowTestWindow(bool* open = NULL);
  127. // Window
  128. IMGUI_API bool Begin(const char* name = "Debug", bool* p_opened = NULL, ImVec2 size = ImVec2(0,0), float fill_alpha = -1.0f, ImGuiWindowFlags flags = 0);// return false when window is collapsed, so you can early out in your code. passing 'bool* p_opened' displays a Close button on the upper-right corner of the window, the pointed value will be set to false when the button is pressed.
  129. IMGUI_API void End();
  130. IMGUI_API void BeginChild(const char* str_id, ImVec2 size = ImVec2(0,0), bool border = false, ImGuiWindowFlags extra_flags = 0); // size==0.0f: use remaining window size, size<0.0f: use remaining window size minus abs(size). on each axis.
  131. IMGUI_API void EndChild();
  132. IMGUI_API bool GetWindowIsFocused();
  133. IMGUI_API ImVec2 GetContentRegionMax(); // window or current column boundaries
  134. IMGUI_API ImVec2 GetWindowContentRegionMin(); // window boundaries
  135. IMGUI_API ImVec2 GetWindowContentRegionMax();
  136. IMGUI_API ImDrawList* GetWindowDrawList(); // get rendering command-list if you want to append your own draw primitives.
  137. IMGUI_API ImFont* GetWindowFont();
  138. IMGUI_API float GetWindowFontSize();
  139. IMGUI_API void SetWindowFontScale(float scale); // per-window font scale. Adjust IO.FontGlobalScale if you want to scale all windows.
  140. IMGUI_API ImVec2 GetWindowPos(); // you should rarely need/care about the window position, but it can be useful if you want to do your own drawing.
  141. IMGUI_API ImVec2 GetWindowSize(); // get current window position.
  142. IMGUI_API float GetWindowWidth();
  143. IMGUI_API bool GetWindowCollapsed();
  144. IMGUI_API void SetWindowPos(const ImVec2& pos, ImGuiSetCondition cond = 0); // set current window position - call within Begin()/End().
  145. IMGUI_API void SetWindowSize(const ImVec2& size, ImGuiSetCondition cond = 0); // set current window size. set to ImVec2(0,0) to force an auto-fit
  146. IMGUI_API void SetWindowCollapsed(bool collapsed, ImGuiSetCondition cond = 0); // set current window collapsed state.
  147. IMGUI_API void SetNextWindowPos(const ImVec2& pos, ImGuiSetCondition cond = 0); // set next window position - call before Begin().
  148. IMGUI_API void SetNextWindowSize(const ImVec2& size, ImGuiSetCondition cond = 0); // set next window size. set to ImVec2(0,0) to force an auto-fit
  149. IMGUI_API void SetNextWindowCollapsed(bool collapsed, ImGuiSetCondition cond = 0); // set next window collapsed state.
  150. IMGUI_API void SetScrollPosHere(); // adjust scrolling position to center into the current cursor position.
  151. IMGUI_API void SetKeyboardFocusHere(int offset = 0); // focus keyboard on the next widget. Use positive 'offset' to access sub components of a multiple component widget.
  152. IMGUI_API void SetStateStorage(ImGuiStorage* tree); // replace tree state storage with our own (if you want to manipulate it yourself, typically clear subsection of it).
  153. IMGUI_API ImGuiStorage* GetStateStorage();
  154. // Parameters stacks (shared)
  155. IMGUI_API void PushFont(ImFont* font); // use NULL as a shortcut to push default font
  156. IMGUI_API void PopFont();
  157. IMGUI_API void PushStyleColor(ImGuiCol idx, const ImVec4& col);
  158. IMGUI_API void PopStyleColor(int count = 1);
  159. IMGUI_API void PushStyleVar(ImGuiStyleVar idx, float val);
  160. IMGUI_API void PushStyleVar(ImGuiStyleVar idx, const ImVec2& val);
  161. IMGUI_API void PopStyleVar(int count = 1);
  162. // Parameters stacks (current window)
  163. IMGUI_API void PushItemWidth(float item_width); // width of items for the common item+label case. default to ~2/3 of windows width.
  164. IMGUI_API void PopItemWidth();
  165. IMGUI_API float GetItemWidth();
  166. IMGUI_API void PushAllowKeyboardFocus(bool v); // allow focusing using TAB/Shift-TAB, enabled by default but you can disable it for certain widgets.
  167. IMGUI_API void PopAllowKeyboardFocus();
  168. IMGUI_API void PushTextWrapPos(float wrap_pos_x = 0.0f); // word-wrapping for Text*() commands. < 0.0f: no wrapping; 0.0f: wrap to end of window (or column); > 0.0f: wrap at 'wrap_pos_x' position in window local space.
  169. IMGUI_API void PopTextWrapPos();
  170. // Tooltip
  171. IMGUI_API void SetTooltip(const char* fmt, ...); // set tooltip under mouse-cursor, typically use with ImGui::IsHovered(). last call wins.
  172. IMGUI_API void SetTooltipV(const char* fmt, va_list args);
  173. IMGUI_API void BeginTooltip(); // use to create full-featured tooltip windows that aren't just text.
  174. IMGUI_API void EndTooltip();
  175. // Layout
  176. IMGUI_API void Separator(); // horizontal line
  177. IMGUI_API void SameLine(int column_x = 0, int spacing_w = -1); // call between widgets to layout them horizontally
  178. IMGUI_API void Spacing();
  179. IMGUI_API void Columns(int count = 1, const char* id = NULL, bool border=true); // setup number of columns
  180. IMGUI_API void NextColumn(); // next column
  181. IMGUI_API float GetColumnOffset(int column_index = -1);
  182. IMGUI_API void SetColumnOffset(int column_index, float offset);
  183. IMGUI_API float GetColumnWidth(int column_index = -1);
  184. IMGUI_API ImVec2 GetCursorPos(); // cursor position is relative to window position
  185. IMGUI_API void SetCursorPos(const ImVec2& pos); // "
  186. IMGUI_API void SetCursorPosX(float x); // "
  187. IMGUI_API void SetCursorPosY(float y); // "
  188. IMGUI_API ImVec2 GetCursorScreenPos(); // cursor position in absolute screen coordinates (0..io.DisplaySize)
  189. IMGUI_API void SetCursorScreenPos(const ImVec2& pos); // cursor position in absolute screen coordinates (0..io.DisplaySize)
  190. IMGUI_API void AlignFirstTextHeightToWidgets(); // call once if the first item on the line is a Text() item and you want to vertically lower it to match subsequent (bigger) widgets.
  191. IMGUI_API float GetTextLineSpacing();
  192. IMGUI_API float GetTextLineHeight();
  193. // ID scopes
  194. // If you are creating repeated widgets in a loop you most likely want to push a unique identifier so ImGui can differentiate them.
  195. // You can also use ## within your widget name to distinguish them from each others (see 'Programmer Guide')
  196. IMGUI_API void PushID(const char* str_id); // push identifier into the ID stack. IDs are hash of the *entire* stack!
  197. IMGUI_API void PushID(const void* ptr_id);
  198. IMGUI_API void PushID(const int int_id);
  199. IMGUI_API void PopID();
  200. IMGUI_API ImGuiID GetID(const char* str_id); // calculate unique ID (hash of whole ID stack + given parameter). useful if you want to query into ImGuiStorage yourself. otherwise rarely needed.
  201. IMGUI_API ImGuiID GetID(const void* ptr_id);
  202. // Widgets
  203. IMGUI_API void Text(const char* fmt, ...);
  204. IMGUI_API void TextV(const char* fmt, va_list args);
  205. IMGUI_API void TextColored(const ImVec4& col, const char* fmt, ...); // shortcut for PushStyleColor(ImGuiCol_Text, col); Text(fmt, ...); PopStyleColor();
  206. IMGUI_API void TextColoredV(const ImVec4& col, const char* fmt, va_list args);
  207. IMGUI_API void TextWrapped(const char* fmt, ...); // shortcut for PushTextWrapPos(0.0f); Text(fmt, ...); PopTextWrapPos();
  208. IMGUI_API void TextWrappedV(const char* fmt, va_list args);
  209. IMGUI_API void TextUnformatted(const char* text, const char* text_end = NULL); // doesn't require null terminated string if 'text_end' is specified. no copy done to any bounded stack buffer, recommended for long chunks of text.
  210. IMGUI_API void LabelText(const char* label, const char* fmt, ...); // display text+label aligned the same way as value+label widgets
  211. IMGUI_API void LabelTextV(const char* label, const char* fmt, va_list args);
  212. IMGUI_API void BulletText(const char* fmt, ...);
  213. IMGUI_API void BulletTextV(const char* fmt, va_list args);
  214. IMGUI_API bool Button(const char* label, const ImVec2& size = ImVec2(0,0), bool repeat_when_held = false);
  215. IMGUI_API bool SmallButton(const char* label);
  216. IMGUI_API void Image(ImTextureID user_texture_id, const ImVec2& size, const ImVec2& uv0 = ImVec2(0,0), const ImVec2& uv1 = ImVec2(1,1), ImU32 tint_col = 0xFFFFFFFF, ImU32 border_col = 0x00000000);
  217. IMGUI_API bool CollapsingHeader(const char* label, const char* str_id = NULL, const bool display_frame = true, const bool default_open = false);
  218. IMGUI_API bool SliderFloat(const char* label, float* v, float v_min, float v_max, const char* display_format = "%.3f", float power = 1.0f); // adjust display_format to decorate the value with a prefix or a suffix. Use power!=1.0 for logarithmic sliders.
  219. IMGUI_API bool SliderFloat2(const char* label, float v[2], float v_min, float v_max, const char* display_format = "%.3f", float power = 1.0f);
  220. IMGUI_API bool SliderFloat3(const char* label, float v[3], float v_min, float v_max, const char* display_format = "%.3f", float power = 1.0f);
  221. IMGUI_API bool SliderFloat4(const char* label, float v[4], float v_min, float v_max, const char* display_format = "%.3f", float power = 1.0f);
  222. IMGUI_API bool SliderAngle(const char* label, float* v, float v_degrees_min = -360.0f, float v_degrees_max = +360.0f); // *v in radians
  223. IMGUI_API bool SliderInt(const char* label, int* v, int v_min, int v_max, const char* display_format = "%.0f");
  224. IMGUI_API bool SliderInt2(const char* label, int v[2], int v_min, int v_max, const char* display_format = "%.0f");
  225. IMGUI_API bool SliderInt3(const char* label, int v[3], int v_min, int v_max, const char* display_format = "%.0f");
  226. IMGUI_API bool SliderInt4(const char* label, int v[4], int v_min, int v_max, const char* display_format = "%.0f");
  227. IMGUI_API void PlotLines(const char* label, const float* values, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0,0), size_t stride = sizeof(float));
  228. IMGUI_API void PlotLines(const char* label, float (*values_getter)(void* data, int idx), void* data, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0,0));
  229. IMGUI_API void PlotHistogram(const char* label, const float* values, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0,0), size_t stride = sizeof(float));
  230. IMGUI_API void PlotHistogram(const char* label, float (*values_getter)(void* data, int idx), void* data, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0,0));
  231. IMGUI_API bool Checkbox(const char* label, bool* v);
  232. IMGUI_API bool CheckboxFlags(const char* label, unsigned int* flags, unsigned int flags_value);
  233. IMGUI_API bool RadioButton(const char* label, bool active);
  234. IMGUI_API bool RadioButton(const char* label, int* v, int v_button);
  235. IMGUI_API bool InputText(const char* label, char* buf, size_t buf_size, ImGuiInputTextFlags flags = 0, void (*callback)(ImGuiTextEditCallbackData*) = NULL, void* user_data = NULL);
  236. IMGUI_API bool InputFloat(const char* label, float* v, float step = 0.0f, float step_fast = 0.0f, int decimal_precision = -1, ImGuiInputTextFlags extra_flags = 0);
  237. IMGUI_API bool InputFloat2(const char* label, float v[2], int decimal_precision = -1);
  238. IMGUI_API bool InputFloat3(const char* label, float v[3], int decimal_precision = -1);
  239. IMGUI_API bool InputFloat4(const char* label, float v[4], int decimal_precision = -1);
  240. IMGUI_API bool InputInt(const char* label, int* v, int step = 1, int step_fast = 100, ImGuiInputTextFlags extra_flags = 0);
  241. IMGUI_API bool Combo(const char* label, int* current_item, const char** items, int items_count, int popup_height_items = 7);
  242. IMGUI_API bool Combo(const char* label, int* current_item, const char* items_separated_by_zeros, int popup_height_items = 7); // separate items with \0, end item-list with \0\0
  243. IMGUI_API bool Combo(const char* label, int* current_item, bool (*items_getter)(void* data, int idx, const char** out_text), void* data, int items_count, int popup_height_items = 7);
  244. IMGUI_API bool ColorButton(const ImVec4& col, bool small_height = false, bool outline_border = true);
  245. IMGUI_API bool ColorEdit3(const char* label, float col[3]);
  246. IMGUI_API bool ColorEdit4(const char* label, float col[4], bool show_alpha = true);
  247. IMGUI_API void ColorEditMode(ImGuiColorEditMode mode);
  248. IMGUI_API bool TreeNode(const char* str_label_id); // if returning 'true' the node is open and the user is responsible for calling TreePop
  249. IMGUI_API bool TreeNode(const char* str_id, const char* fmt, ...); // "
  250. IMGUI_API bool TreeNode(const void* ptr_id, const char* fmt, ...); // "
  251. IMGUI_API bool TreeNodeV(const char* str_id, const char* fmt, va_list args); // "
  252. IMGUI_API bool TreeNodeV(const void* ptr_id, const char* fmt, va_list args); // "
  253. IMGUI_API void TreePush(const char* str_id = NULL); // already called by TreeNode(), but you can call Push/Pop yourself for layouting purpose
  254. IMGUI_API void TreePush(const void* ptr_id = NULL); // "
  255. IMGUI_API void TreePop();
  256. IMGUI_API void OpenNextNode(bool open); // force open/close the next TreeNode or CollapsingHeader
  257. // Value() Helpers: output single value in "name: value" format. Tip: freely declare your own within the ImGui namespace!
  258. IMGUI_API void Value(const char* prefix, bool b);
  259. IMGUI_API void Value(const char* prefix, int v);
  260. IMGUI_API void Value(const char* prefix, unsigned int v);
  261. IMGUI_API void Value(const char* prefix, float v, const char* float_format = NULL);
  262. IMGUI_API void Color(const char* prefix, const ImVec4& v);
  263. IMGUI_API void Color(const char* prefix, unsigned int v);
  264. // Logging: All text output from your interface are redirected to tty/file/clipboard. Tree nodes are automatically opened.
  265. IMGUI_API void LogToTTY(int max_depth = -1); // start logging to tty
  266. IMGUI_API void LogToFile(int max_depth = -1, const char* filename = NULL); // start logging to file
  267. IMGUI_API void LogToClipboard(int max_depth = -1); // start logging to OS clipboard
  268. IMGUI_API void LogFinish(); // stop logging (close file, etc.)
  269. IMGUI_API void LogButtons(); // helper to display buttons for logging to tty/file/clipboard
  270. IMGUI_API void LogText(const char* fmt, ...); // pass text data straight to log (without being displayed)
  271. // Utilities
  272. IMGUI_API bool IsItemHovered(); // was the last item active area hovered by mouse?
  273. IMGUI_API bool IsItemFocused(); // was the last item focused for keyboard input?
  274. IMGUI_API ImVec2 GetItemBoxMin(); // get bounding box of last item
  275. IMGUI_API ImVec2 GetItemBoxMax(); // get bounding box of last item
  276. IMGUI_API bool IsClipped(const ImVec2& item_size); // to perform coarse clipping on user's side (as an optimization)
  277. IMGUI_API bool IsKeyPressed(int key_index, bool repeat = true); // key_index into the keys_down[512] array, imgui doesn't know the semantic of each entry
  278. IMGUI_API bool IsMouseClicked(int button, bool repeat = false);
  279. IMGUI_API bool IsMouseDoubleClicked(int button);
  280. IMGUI_API bool IsMouseHoveringWindow(); // is mouse hovering current window ("window" in API names always refer to current window)
  281. IMGUI_API bool IsMouseHoveringAnyWindow(); // is mouse hovering any active imgui window
  282. IMGUI_API bool IsMouseHoveringBox(const ImVec2& box_min, const ImVec2& box_max); // is mouse hovering given bounding box
  283. IMGUI_API bool IsPosHoveringAnyWindow(const ImVec2& pos); // is given position hovering any active imgui window
  284. IMGUI_API ImVec2 GetMousePos(); // shortcut to ImGui::GetIO().MousePos provided by user, to be consistent with other calls
  285. IMGUI_API float GetTime();
  286. IMGUI_API int GetFrameCount();
  287. IMGUI_API const char* GetStyleColName(ImGuiCol idx);
  288. IMGUI_API ImVec2 CalcTextSize(const char* text, const char* text_end = NULL, bool hide_text_after_double_hash = false, float wrap_width = -1.0f);
  289. } // namespace ImGui
  290. // Flags for ImGui::Begin()
  291. enum ImGuiWindowFlags_
  292. {
  293. // Default: 0
  294. ImGuiWindowFlags_ShowBorders = 1 << 0,
  295. ImGuiWindowFlags_NoTitleBar = 1 << 1,
  296. ImGuiWindowFlags_NoResize = 1 << 2,
  297. ImGuiWindowFlags_NoMove = 1 << 3,
  298. ImGuiWindowFlags_NoScrollbar = 1 << 4,
  299. ImGuiWindowFlags_NoScrollWithMouse = 1 << 5,
  300. ImGuiWindowFlags_AlwaysAutoResize = 1 << 6,
  301. ImGuiWindowFlags_NoSavedSettings = 1 << 7, // Never load/save settings in .ini file
  302. ImGuiWindowFlags_ChildWindow = 1 << 8, // For internal use by BeginChild()
  303. ImGuiWindowFlags_ChildWindowAutoFitX = 1 << 9, // For internal use by BeginChild()
  304. ImGuiWindowFlags_ChildWindowAutoFitY = 1 << 10, // For internal use by BeginChild()
  305. ImGuiWindowFlags_ComboBox = 1 << 11, // For internal use by ComboBox()
  306. ImGuiWindowFlags_Tooltip = 1 << 12 // For internal use by Render() when using Tooltip
  307. };
  308. // Flags for ImGui::InputText()
  309. enum ImGuiInputTextFlags_
  310. {
  311. // Default: 0
  312. ImGuiInputTextFlags_CharsDecimal = 1 << 0, // Allow 0123456789.+-*/
  313. ImGuiInputTextFlags_CharsHexadecimal = 1 << 1, // Allow 0123456789ABCDEFabcdef
  314. ImGuiInputTextFlags_AutoSelectAll = 1 << 2, // Select entire text when first taking focus
  315. ImGuiInputTextFlags_EnterReturnsTrue = 1 << 3, // Return 'true' when Enter is pressed (as opposed to when the value was modified)
  316. ImGuiInputTextFlags_CallbackCompletion = 1 << 4, // Call user function on pressing TAB (for completion handling)
  317. ImGuiInputTextFlags_CallbackHistory = 1 << 5, // Call user function on pressing Up/Down arrows (for history handling)
  318. ImGuiInputTextFlags_CallbackAlways = 1 << 6 // Call user function every time
  319. //ImGuiInputTextFlags_AlignCenter = 1 << 6,
  320. };
  321. // User fill ImGuiIO.KeyMap[] array with indices into the ImGuiIO.KeysDown[512] array
  322. enum ImGuiKey_
  323. {
  324. ImGuiKey_Tab,
  325. ImGuiKey_LeftArrow,
  326. ImGuiKey_RightArrow,
  327. ImGuiKey_UpArrow,
  328. ImGuiKey_DownArrow,
  329. ImGuiKey_Home,
  330. ImGuiKey_End,
  331. ImGuiKey_Delete,
  332. ImGuiKey_Backspace,
  333. ImGuiKey_Enter,
  334. ImGuiKey_Escape,
  335. ImGuiKey_A, // for CTRL+A: select all
  336. ImGuiKey_C, // for CTRL+C: copy
  337. ImGuiKey_V, // for CTRL+V: paste
  338. ImGuiKey_X, // for CTRL+X: cut
  339. ImGuiKey_Y, // for CTRL+Y: redo
  340. ImGuiKey_Z, // for CTRL+Z: undo
  341. ImGuiKey_COUNT
  342. };
  343. // Enumeration for PushStyleColor() / PopStyleColor()
  344. enum ImGuiCol_
  345. {
  346. ImGuiCol_Text,
  347. ImGuiCol_WindowBg,
  348. ImGuiCol_Border,
  349. ImGuiCol_BorderShadow,
  350. ImGuiCol_FrameBg, // Background of checkbox, radio button, plot, slider, text input
  351. ImGuiCol_TitleBg,
  352. ImGuiCol_TitleBgCollapsed,
  353. ImGuiCol_ScrollbarBg,
  354. ImGuiCol_ScrollbarGrab,
  355. ImGuiCol_ScrollbarGrabHovered,
  356. ImGuiCol_ScrollbarGrabActive,
  357. ImGuiCol_ComboBg,
  358. ImGuiCol_CheckHovered,
  359. ImGuiCol_CheckActive,
  360. ImGuiCol_CheckMark,
  361. ImGuiCol_SliderGrab,
  362. ImGuiCol_SliderGrabActive,
  363. ImGuiCol_Button,
  364. ImGuiCol_ButtonHovered,
  365. ImGuiCol_ButtonActive,
  366. ImGuiCol_Header,
  367. ImGuiCol_HeaderHovered,
  368. ImGuiCol_HeaderActive,
  369. ImGuiCol_Column,
  370. ImGuiCol_ColumnHovered,
  371. ImGuiCol_ColumnActive,
  372. ImGuiCol_ResizeGrip,
  373. ImGuiCol_ResizeGripHovered,
  374. ImGuiCol_ResizeGripActive,
  375. ImGuiCol_CloseButton,
  376. ImGuiCol_CloseButtonHovered,
  377. ImGuiCol_CloseButtonActive,
  378. ImGuiCol_PlotLines,
  379. ImGuiCol_PlotLinesHovered,
  380. ImGuiCol_PlotHistogram,
  381. ImGuiCol_PlotHistogramHovered,
  382. ImGuiCol_TextSelectedBg,
  383. ImGuiCol_TooltipBg,
  384. ImGuiCol_COUNT
  385. };
  386. // Enumeration for PushStyleVar() / PopStyleVar()
  387. // NB: the enum only refers to fields of ImGuiStyle() which makes sense to be pushed/poped in UI code. Feel free to add others.
  388. enum ImGuiStyleVar_
  389. {
  390. ImGuiStyleVar_Alpha, // float
  391. ImGuiStyleVar_WindowPadding, // ImVec2
  392. ImGuiStyleVar_WindowRounding, // float
  393. ImGuiStyleVar_FramePadding, // ImVec2
  394. ImGuiStyleVar_FrameRounding, // float
  395. ImGuiStyleVar_ItemSpacing, // ImVec2
  396. ImGuiStyleVar_ItemInnerSpacing, // ImVec2
  397. ImGuiStyleVar_TreeNodeSpacing // float
  398. };
  399. // Enumeration for ColorEditMode()
  400. enum ImGuiColorEditMode_
  401. {
  402. ImGuiColorEditMode_UserSelect = -2,
  403. ImGuiColorEditMode_UserSelectShowButton = -1,
  404. ImGuiColorEditMode_RGB = 0,
  405. ImGuiColorEditMode_HSV = 1,
  406. ImGuiColorEditMode_HEX = 2
  407. };
  408. // Condition flags for ImGui::SetWindow***() and SetNextWindow***() functions
  409. // Those functions treat 0 as a shortcut to ImGuiSetCondition_Always
  410. enum ImGuiSetCondition_
  411. {
  412. ImGuiSetCondition_Always = 1 << 0, // Set the variable
  413. ImGuiSetCondition_FirstUseThisSession = 1 << 1, // Only set the variable on the first call for this window (once per session)
  414. ImGuiSetCondition_FirstUseEver = 1 << 2 // Only set the variable if the window doesn't exist in the .ini file
  415. };
  416. struct ImGuiStyle
  417. {
  418. float Alpha; // Global alpha applies to everything in ImGui
  419. ImVec2 WindowPadding; // Padding within a window
  420. ImVec2 WindowMinSize; // Minimum window size
  421. float WindowRounding; // Radius of window corners rounding. Set to 0.0f to have rectangular windows
  422. ImVec2 FramePadding; // Padding within a framed rectangle (used by most widgets)
  423. float FrameRounding; // Radius of frame corners rounding. Set to 0.0f to have rectangular frame (used by most widgets).
  424. ImVec2 ItemSpacing; // Horizontal and vertical spacing between widgets/lines
  425. ImVec2 ItemInnerSpacing; // Horizontal and vertical spacing between within elements of a composed widget (e.g. a slider and its label)
  426. ImVec2 TouchExtraPadding; // Expand bounding box for touch-based system where touch position is not accurate enough (unnecessary for mouse inputs). Unfortunately we don't sort widgets so priority on overlap will always be given to the first widget running. So dont grow this too much!
  427. ImVec2 AutoFitPadding; // Extra space after auto-fit (double-clicking on resize grip)
  428. float WindowFillAlphaDefault; // Default alpha of window background, if not specified in ImGui::Begin()
  429. float TreeNodeSpacing; // Horizontal spacing when entering a tree node
  430. float ColumnsMinSpacing; // Minimum horizontal spacing between two columns
  431. float ScrollBarWidth; // Width of the vertical scroll bar
  432. ImVec4 Colors[ImGuiCol_COUNT];
  433. IMGUI_API ImGuiStyle();
  434. };
  435. // This is where your app communicate with ImGui. Call ImGui::GetIO() to access.
  436. // Read 'Programmer guide' section in .cpp file for general usage.
  437. struct ImGuiIO
  438. {
  439. //------------------------------------------------------------------
  440. // Settings (fill once) // Default value:
  441. //------------------------------------------------------------------
  442. ImVec2 DisplaySize; // <unset> // Display size, in pixels. For clamping windows positions.
  443. float DeltaTime; // = 1.0f/60.0f // Time elapsed since last frame, in seconds.
  444. float IniSavingRate; // = 5.0f // Maximum time between saving .ini file, in seconds.
  445. const char* IniFilename; // = "imgui.ini" // Path to .ini file. NULL to disable .ini saving.
  446. const char* LogFilename; // = "imgui_log.txt" // Path to .log file (default parameter to ImGui::LogToFile when no file is specified).
  447. float MouseDoubleClickTime; // = 0.30f // Time for a double-click, in seconds.
  448. float MouseDoubleClickMaxDist; // = 6.0f // Distance threshold to stay in to validate a double-click, in pixels.
  449. int KeyMap[ImGuiKey_COUNT]; // <unset> // Map of indices into the KeysDown[512] entries array
  450. void* UserData; // = NULL // Store your own data for retrieval by callbacks.
  451. ImFontAtlas* Fonts; // <auto> // Load and assemble one or more fonts into a single tightly packed texture. Output to Fonts array.
  452. float FontGlobalScale; // = 1.0f // Global scale all fonts
  453. bool FontAllowUserScaling; // = false // Allow user scaling text of individual window with CTRL+Wheel.
  454. //------------------------------------------------------------------
  455. // User Functions
  456. //------------------------------------------------------------------
  457. // REQUIRED: rendering function.
  458. // See example code if you are unsure of how to implement this.
  459. void (*RenderDrawListsFn)(ImDrawList** const draw_lists, int count);
  460. // Optional: access OS clipboard (default to use native Win32 clipboard on Windows, otherwise use a ImGui private clipboard)
  461. // Override to access OS clipboard on other architectures.
  462. const char* (*GetClipboardTextFn)();
  463. void (*SetClipboardTextFn)(const char* text);
  464. // Optional: override memory allocations (default to posix malloc/realloc/free)
  465. void* (*MemAllocFn)(size_t sz);
  466. void* (*MemReallocFn)(void* ptr, size_t sz);
  467. void (*MemFreeFn)(void* ptr);
  468. // Optional: notify OS Input Method Editor of the screen position of your cursor for text input position (e.g. when using Japanese/Chinese inputs in Windows)
  469. void (*ImeSetInputScreenPosFn)(int x, int y);
  470. //------------------------------------------------------------------
  471. // Input - Fill before calling NewFrame()
  472. //------------------------------------------------------------------
  473. ImVec2 MousePos; // Mouse position, in pixels (set to -1,-1 if no mouse / on another screen, etc.)
  474. bool MouseDown[5]; // Mouse buttons. ImGui itself only uses button 0 (left button) but you can use others as storage for convenience.
  475. float MouseWheel; // Mouse wheel: 1 unit scrolls about 5 lines text.
  476. bool KeyCtrl; // Keyboard modifier pressed: Control
  477. bool KeyShift; // Keyboard modifier pressed: Shift
  478. bool KeysDown[512]; // Keyboard keys that are pressed (in whatever order user naturally has access to keyboard data)
  479. ImWchar InputCharacters[16+1]; // List of characters input (translated by user from keypress+keyboard state). Fill using AddInputCharacter() helper.
  480. // Function
  481. IMGUI_API void AddInputCharacter(ImWchar c); // Helper to add a new character into InputCharacters[]
  482. //------------------------------------------------------------------
  483. // Output - Retrieve after calling NewFrame(), you can use them to discard inputs or hide them from the rest of your application
  484. //------------------------------------------------------------------
  485. bool WantCaptureMouse; // Mouse is hovering a window or widget is active (= ImGui will use your mouse input)
  486. bool WantCaptureKeyboard; // Widget is active (= ImGui will use your keyboard input)
  487. //------------------------------------------------------------------
  488. // [Internal] ImGui will maintain those fields for you
  489. //------------------------------------------------------------------
  490. ImVec2 MousePosPrev;
  491. ImVec2 MouseDelta;
  492. bool MouseClicked[5];
  493. ImVec2 MouseClickedPos[5];
  494. float MouseClickedTime[5];
  495. bool MouseDoubleClicked[5];
  496. float MouseDownTime[5];
  497. float KeysDownTime[512];
  498. IMGUI_API ImGuiIO();
  499. };
  500. //-----------------------------------------------------------------------------
  501. // Helpers
  502. //-----------------------------------------------------------------------------
  503. // Helper: execute a block of code once a frame only
  504. // Convenient if you want to quickly create an UI within deep-nested code that runs multiple times every frame.
  505. // Usage:
  506. // IMGUI_ONCE_UPON_A_FRAME
  507. // {
  508. // // code block will be executed one per frame
  509. // }
  510. // Attention! the macro expands into 2 statement so make sure you don't use it within e.g. an if() statement without curly braces.
  511. #define IMGUI_ONCE_UPON_A_FRAME static ImGuiOnceUponAFrame imgui_oaf##__LINE__; if (imgui_oaf##__LINE__)
  512. struct ImGuiOnceUponAFrame
  513. {
  514. ImGuiOnceUponAFrame() { RefFrame = -1; }
  515. mutable int RefFrame;
  516. operator bool() const { const int current_frame = ImGui::GetFrameCount(); if (RefFrame == current_frame) return false; RefFrame = current_frame; return true; }
  517. };
  518. // Helper: Parse and apply text filters. In format "aaaaa[,bbbb][,ccccc]"
  519. struct ImGuiTextFilter
  520. {
  521. struct TextRange
  522. {
  523. const char* b;
  524. const char* e;
  525. TextRange() { b = e = NULL; }
  526. TextRange(const char* _b, const char* _e) { b = _b; e = _e; }
  527. const char* begin() const { return b; }
  528. const char* end() const { return e; }
  529. bool empty() const { return b == e; }
  530. char front() const { return *b; }
  531. static bool isblank(char c) { return c == ' ' || c == '\t'; }
  532. void trim_blanks() { while (b < e && isblank(*b)) b++; while (e > b && isblank(*(e-1))) e--; }
  533. IMGUI_API void split(char separator, ImVector<TextRange>& out);
  534. };
  535. char InputBuf[256];
  536. ImVector<TextRange> Filters;
  537. int CountGrep;
  538. ImGuiTextFilter();
  539. void Clear() { InputBuf[0] = 0; Build(); }
  540. void Draw(const char* label = "Filter (inc,-exc)", float width = -1.0f); // Helper calling InputText+Build
  541. bool PassFilter(const char* val) const;
  542. bool IsActive() const { return !Filters.empty(); }
  543. IMGUI_API void Build();
  544. };
  545. // Helper: Text buffer for logging/accumulating text
  546. struct ImGuiTextBuffer
  547. {
  548. ImVector<char> Buf;
  549. ImGuiTextBuffer() { Buf.push_back(0); }
  550. ~ImGuiTextBuffer() { }
  551. const char* begin() const { return &Buf.front(); }
  552. const char* end() const { return &Buf.back(); } // Buf is zero-terminated, so end() will point on the zero-terminator
  553. size_t size() const { return Buf.size()-1; }
  554. bool empty() { return size() >= 1; }
  555. void clear() { Buf.clear(); Buf.push_back(0); }
  556. IMGUI_API void append(const char* fmt, ...);
  557. IMGUI_API void appendv(const char* fmt, va_list args);
  558. };
  559. // Helper: Key->value storage
  560. // - Store collapse state for a tree (Int 0/1)
  561. // - Store color edit options (Int using values in ImGuiColorEditMode enum).
  562. // - Custom user storage for temporary values.
  563. // Typically you don't have to worry about this since a storage is held within each Window.
  564. // Declare your own storage if:
  565. // - You want to manipulate the open/close state of a particular sub-tree in your interface (tree node uses Int 0/1 to store their state).
  566. // - You want to store custom debug data easily without adding or editing structures in your code.
  567. struct ImGuiStorage
  568. {
  569. struct Pair
  570. {
  571. ImGuiID key;
  572. union { int val_i; float val_f; };
  573. Pair(ImGuiID _key, int _val_i) { key = _key; val_i = _val_i; }
  574. Pair(ImGuiID _key, float _val_f) { key = _key; val_f = _val_f; }
  575. };
  576. ImVector<Pair> Data;
  577. // - Get***() functions find pair, never add/allocate. Pairs are sorted so a query is O(log N)
  578. // - Set***() functions find pair, insertion on demand if missing.
  579. // - Get***Ptr() functions find pair, insertion on demand if missing, return pointer. Useful if you intend to do Get+Set.
  580. // A typical use case where this is very convenient:
  581. // float* pvar = ImGui::GetIntPtr(key); ImGui::SliderInt("var", pvar, 0, 100); some_var += *pvar;
  582. // - Sorted insertion is costly but should amortize. A typical frame shouldn't need to insert any new pair.
  583. IMGUI_API void Clear();
  584. IMGUI_API int GetInt(ImGuiID key, int default_val = 0) const;
  585. IMGUI_API void SetInt(ImGuiID key, int val);
  586. IMGUI_API int* GetIntPtr(ImGuiID key, int default_val = 0);
  587. IMGUI_API float GetFloat(ImGuiID key, float default_val = 0.0f) const;
  588. IMGUI_API void SetFloat(ImGuiID key, float val);
  589. IMGUI_API float* GetFloatPtr(ImGuiID key, float default_val = 0);
  590. IMGUI_API void SetAllInt(int val); // Use on your own storage if you know only integer are being stored.
  591. };
  592. // Shared state of InputText(), passed to callback when a ImGuiInputTextFlags_Callback* flag is used.
  593. struct ImGuiTextEditCallbackData
  594. {
  595. ImGuiKey EventKey; // Key pressed (Up/Down/TAB) // Read-only
  596. char* Buf; // Current text // Read-write (pointed data only)
  597. size_t BufSize; // // Read-only
  598. bool BufDirty; // Set if you modify Buf directly // Write
  599. ImGuiInputTextFlags Flags; // What user passed to InputText() // Read-only
  600. int CursorPos; // // Read-write
  601. int SelectionStart; // // Read-write (== to SelectionEnd when no selection)
  602. int SelectionEnd; // // Read-write
  603. void* UserData; // What user passed to InputText()
  604. // NB: calling those function loses selection.
  605. void DeleteChars(int pos, int bytes_count);
  606. void InsertChars(int pos, const char* text, const char* text_end = NULL);
  607. };
  608. //-----------------------------------------------------------------------------
  609. // Draw List
  610. // Hold a series of drawing commands. The user provides a renderer for ImDrawList
  611. //-----------------------------------------------------------------------------
  612. struct ImDrawCmd
  613. {
  614. unsigned int vtx_count;
  615. ImVec4 clip_rect;
  616. ImTextureID texture_id; // Copy of user-provided 'TexID' from ImFont or passed to Image*() functions. Ignore if not using images or multiple fonts.
  617. };
  618. #ifndef IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT
  619. // Default vertex layout
  620. struct ImDrawVert
  621. {
  622. ImVec2 pos;
  623. ImVec2 uv;
  624. ImU32 col;
  625. };
  626. #else
  627. // You can change the vertex format layout by defining IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT in imconfig.h
  628. // The code expect ImVec2 pos (8 bytes), ImVec2 uv (8 bytes), ImU32 col (4 bytes), but you can re-order them or add other fields as needed to simplify integration in your engine.
  629. // The type has to be described by the #define (you can either declare the struct or use a typedef)
  630. IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT;
  631. #endif
  632. // Draw command list
  633. // This is the low-level list of polygon that ImGui:: functions are creating. At the end of the frame, all command lists are passed to your ImGuiIO::RenderDrawListFn function for rendering.
  634. // At the moment, each ImGui window contains its own ImDrawList but they could potentially be merged.
  635. // If you want to add custom rendering within a window, you can use ImGui::GetWindowDrawList() to access the current draw list and add your own primitives.
  636. // You can interleave normal ImGui:: calls and adding primitives to the current draw list.
  637. // Note that this only gives you access to rendering polygons. If your intent is to create custom widgets and the publicly exposed functions/data aren't sufficient, you can add code in imgui_user.inl
  638. struct ImDrawList
  639. {
  640. // This is what you have to render
  641. ImVector<ImDrawCmd> commands; // commands
  642. ImVector<ImDrawVert> vtx_buffer; // each command consume ImDrawCmd::vtx_count of those
  643. // [Internal to ImGui]
  644. ImVector<ImVec4> clip_rect_stack; // [internal]
  645. ImVector<ImTextureID> texture_id_stack; // [internal]
  646. ImDrawVert* vtx_write; // [internal] point within vtx_buffer after each add command (to avoid using the ImVector<> operators too much)
  647. ImDrawList() { Clear(); }
  648. IMGUI_API void Clear();
  649. IMGUI_API void SetClipRect(const ImVec4& clip_rect);
  650. IMGUI_API void PushClipRect(const ImVec4& clip_rect);
  651. IMGUI_API void PopClipRect();
  652. IMGUI_API void SetTextureID(const ImTextureID& texture_id);
  653. IMGUI_API void PushTextureID(const ImTextureID& texture_id);
  654. IMGUI_API void PopTextureID();
  655. IMGUI_API void ReserveVertices(unsigned int vtx_count);
  656. IMGUI_API void AddVtx(const ImVec2& pos, ImU32 col);
  657. IMGUI_API void AddVtxUV(const ImVec2& pos, ImU32 col, const ImVec2& uv);
  658. IMGUI_API void AddVtxLine(const ImVec2& a, const ImVec2& b, ImU32 col);
  659. // Primitives
  660. IMGUI_API void AddLine(const ImVec2& a, const ImVec2& b, ImU32 col);
  661. IMGUI_API void AddRect(const ImVec2& a, const ImVec2& b, ImU32 col, float rounding = 0.0f, int rounding_corners=0x0F);
  662. IMGUI_API void AddRectFilled(const ImVec2& a, const ImVec2& b, ImU32 col, float rounding = 0.0f, int rounding_corners=0x0F);
  663. IMGUI_API void AddTriangleFilled(const ImVec2& a, const ImVec2& b, const ImVec2& c, ImU32 col);
  664. IMGUI_API void AddCircle(const ImVec2& centre, float radius, ImU32 col, int num_segments = 12);
  665. IMGUI_API void AddCircleFilled(const ImVec2& centre, float radius, ImU32 col, int num_segments = 12);
  666. IMGUI_API void AddArc(const ImVec2& center, float rad, ImU32 col, int a_min, int a_max, bool tris = false, const ImVec2& third_point_offset = ImVec2(0,0));
  667. IMGUI_API void AddText(ImFont* font, float font_size, const ImVec2& pos, ImU32 col, const char* text_begin, const char* text_end = NULL, float wrap_width = 0.0f);
  668. IMGUI_API void AddImage(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& uv0, const ImVec2& uv1, ImU32 col);
  669. };
  670. // Load and rasterize multiple TTF fonts into a same texture.
  671. // Sharing a texture for multiple fonts allows us to reduce the number of draw calls during rendering.
  672. // We also add custom graphic data into the texture that serves for ImGui.
  673. // 1. (Optional) Call AddFont*** functions. If you don't call any, the default font will be loaded for you.
  674. // 2. Call GetTexDataAsAlpha8() or GetTexDataAsRGBA32() to build and retrieve pixels data.
  675. // 3. Upload the pixels data into a texture within your graphics system.
  676. // 4. Call SetTexID(my_tex_id); and pass the pointer/identifier to your texture. This value will be passed back to you during rendering to identify the texture.
  677. // 5. Call ClearPixelsData() to free textures memory on the heap.
  678. struct ImFontAtlas
  679. {
  680. IMGUI_API ImFontAtlas();
  681. IMGUI_API ~ImFontAtlas();
  682. IMGUI_API ImFont* AddFontDefault();
  683. IMGUI_API ImFont* AddFontFromFileTTF(const char* filename, float size_pixels, const ImWchar* glyph_ranges = NULL, int font_no = 0);
  684. IMGUI_API ImFont* AddFontFromMemoryTTF(void* in_ttf_data, size_t in_ttf_data_size, float size_pixels, const ImWchar* glyph_ranges = NULL, int font_no = 0); // Pass ownership of 'in_ttf_data' memory.
  685. IMGUI_API void ClearTexData(); // Saves RAM once the texture has been copied to graphics memory.
  686. IMGUI_API void Clear();
  687. // Retrieve texture data
  688. // User is in charge of copying the pixels into graphics memory, then call SetTextureUserID()
  689. // After loading the texture into your graphic system, store your texture handle in 'TexID' (ignore if you aren't using multiple fonts nor images)
  690. // RGBA32 format is provided for convenience and high compatibility, but note that all RGB pixels are white, so 75% of the memory is wasted.
  691. IMGUI_API void GetTexDataAsAlpha8(unsigned char** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel = NULL); // 1 byte per-pixel
  692. IMGUI_API void GetTexDataAsRGBA32(unsigned char** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel = NULL); // 4 bytes-per-pixel
  693. IMGUI_API void SetTexID(void* id) { TexID = id; }
  694. // Helpers to retrieve list of common Unicode ranges (2 value per range, values are inclusive, zero-terminated list)
  695. // (Those functions could be static, aren't so simple use case doesn't have to refer to the ImFontAtlas:: type ever if in their code)
  696. IMGUI_API const ImWchar* GetGlyphRangesDefault(); // Basic Latin, Extended Latin
  697. IMGUI_API const ImWchar* GetGlyphRangesJapanese(); // Default + Hiragana, Katakana, Half-Width, Selection of 1946 Ideographs
  698. IMGUI_API const ImWchar* GetGlyphRangesChinese(); // Japanese + full set of about 21000 CJK Unified Ideographs
  699. // Members
  700. // (Access texture data via GetTexData*() calls which will setup a default font for you.)
  701. void* TexID; // User data to refer to the texture once it has been uploaded to user's graphic systems. It ia passed back to you during rendering.
  702. unsigned char* TexPixelsAlpha8; // 1 component per pixel, each component is unsigned 8-bit. Total size = TexWidth * TexHeight
  703. unsigned int* TexPixelsRGBA32; // 4 component per pixel, each component is unsigned 8-bit. Total size = TexWidth * TexHeight * 4
  704. int TexWidth;
  705. int TexHeight;
  706. ImVec2 TexExtraDataPos; // Position of our rectangle where we draw non-font graphics
  707. ImVec2 TexUvWhitePixel; // Texture coordinates to a white pixel (part of the TexExtraData block)
  708. ImVector<ImFont*> Fonts;
  709. // Private
  710. struct ImFontAtlasData;
  711. ImVector<ImFontAtlasData*> InputData; // Internal data
  712. IMGUI_API bool Build(); // Build pixels data. This is automatically for you by the GetTexData*** functions.
  713. IMGUI_API void ClearInputData(); // Clear the input TTF data.
  714. };
  715. // TTF font loading and rendering
  716. // ImFontAtlas automatically loads a default embedded font for you when you call GetTexDataAsAlpha8() or GetTexDataAsRGBA32().
  717. // Kerning isn't supported. At the moment some ImGui code does per-character CalcTextSize calls, need something more state-ful.
  718. struct ImFont
  719. {
  720. // Members: Settings
  721. float FontSize; // <user set> // Height of characters, set during loading (don't change after loading)
  722. float Scale; // = 1.0f // Base font scale, multiplied by the per-window font scale which you can adjust with SetFontScale()
  723. ImVec2 DisplayOffset; // = (0.0f,0.0f) // Offset font rendering by xx pixels
  724. ImWchar FallbackChar; // = '?' // Replacement glyph if one isn't found.
  725. // Members: Runtime data
  726. struct Glyph
  727. {
  728. ImWchar Codepoint;
  729. signed short XAdvance;
  730. signed short Width, Height;
  731. signed short XOffset, YOffset;
  732. float U0, V0, U1, V1; // Texture coordinates
  733. };
  734. ImFontAtlas* ContainerAtlas; // What we has been loaded into
  735. ImVector<Glyph> Glyphs;
  736. ImVector<int> IndexLookup; // Index glyphs by Unicode code-point
  737. const Glyph* FallbackGlyph; // == FindGlyph(FontFallbackChar)
  738. // Methods
  739. IMGUI_API ImFont();
  740. IMGUI_API ~ImFont() { Clear(); }
  741. IMGUI_API void Clear();
  742. IMGUI_API void BuildLookupTable();
  743. IMGUI_API const Glyph* FindGlyph(unsigned short c) const;
  744. IMGUI_API bool IsLoaded() const { return ContainerAtlas != NULL; }
  745. // 'max_width' stops rendering after a certain width (could be turned into a 2d size). FLT_MAX to disable.
  746. // 'wrap_width' enable automatic word-wrapping across multiple lines to fit into given width. 0.0f to disable.
  747. IMGUI_API ImVec2 CalcTextSizeA(float size, float max_width, float wrap_width, const char* text_begin, const char* text_end = NULL, const char** remaining = NULL) const; // utf8
  748. IMGUI_API ImVec2 CalcTextSizeW(float size, float max_width, const ImWchar* text_begin, const ImWchar* text_end, const ImWchar** remaining = NULL) const; // wchar
  749. IMGUI_API void RenderText(float size, ImVec2 pos, ImU32 col, const ImVec4& clip_rect, const char* text_begin, const char* text_end, ImDrawVert*& out_vertices, float wrap_width = 0.0f) const;
  750. IMGUI_API const char* CalcWordWrapPositionA(float scale, const char* text, const char* text_end, float wrap_width) const;
  751. };
  752. //---- Include imgui_user.h at the end of imgui.h
  753. //---- So you can include code that extends ImGui using any of the types declared above.
  754. //---- (also convenient for user to only explicitly include vanilla imgui.h)
  755. #ifdef IMGUI_INCLUDE_IMGUI_USER_H
  756. #include "imgui_user.h"
  757. #endif