Home
last modified time | relevance | path

Searched refs:ImGuiStyle (Results 1 - 12 of 12) sorted by relevance

/third_party/mesa3d/src/imgui/
H A Dimgui.h17 // ImGuiStyle
50 #define IMGUI_CHECKVERSION() ImGui::DebugCheckVersionAndDataLayout(IMGUI_VERSION, sizeof(ImGuiIO), sizeof(ImGuiStyle), sizeof(ImVec2), sizeof(ImVec4), sizeof(ImDrawVert))
113 struct ImGuiStyle; // Runtime data for styling/colors
209 IMGUI_API ImGuiStyle& GetStyle(); // access the Style structure (colors, sizes). Always use PushStyleCol(), PushStyleVar() to modify style mid-frame.
219 IMGUI_API void ShowStyleEditor(ImGuiStyle* ref = NULL); // add style editor block (not a window). you can pass in a reference ImGuiStyle structure to compare to, revert to and save to (else it uses the default style)
226 IMGUI_API void StyleColorsDark(ImGuiStyle* dst = NULL); // new, recommended style (default)
227 IMGUI_API void StyleColorsClassic(ImGuiStyle* dst = NULL); // classic imgui style
228 IMGUI_API void StyleColorsLight(ImGuiStyle* dst = NULL); // best used with borders and a custom, thicker font
307 IMGUI_API const ImVec4& GetStyleColorVec4(ImGuiCol idx); // retrieve style color as stored in ImGuiStyle structur
1234 struct ImGuiStyle global() struct
[all...]
H A Dimgui.cpp60 // [SECTION] MAIN USER FACING STRUCTURES (ImGuiStyle, ImGuiIO)
427 - 2017/11/18 (1.53) - Style, Begin: removed ImGuiWindowFlags_ShowBorders window flag. Borders are now fully set up in the ImGuiStyle structure (see e.g. style.FrameBorderSize, style.WindowBorderSize). Use ImGui::ShowStyleEditor() to look them up.
1076 // [SECTION] MAIN USER FACING STRUCTURES (ImGuiStyle, ImGuiIO)
1079 ImGuiStyle::ImGuiStyle() in ImGuiStyle() function in ImGuiStyle
1119 // Important: This operation is lossy because we round all sizes to integer. If you need to change your scale multiples, call this over a freshly initialized ImGuiStyle structure rather than scaling multiple times.
1120 void ImGuiStyle::ScaleAllSizes(float scale_factor) in ScaleAllSizes()
1829 ImGuiStyle& style = GImGui->Style; in GetColorU32()
1837 ImGuiStyle& style = GImGui->Style; in GetColorU32()
1845 ImGuiStyle in GetStyleColorVec4()
[all...]
H A Dimgui_widgets.cpp317 const ImGuiStyle& style = g.Style; in LabelTextV()
351 const ImGuiStyle& style = g.Style; in BulletTextV()
551 const ImGuiStyle& style = g.Style; in ButtonEx()
731 const ImGuiStyle& style = g.Style; in Scrollbar()
877 const ImGuiStyle& style = g.Style; in ImageButton()
913 const ImGuiStyle& style = g.Style; in Checkbox()
972 const ImGuiStyle& style = g.Style; in RadioButton()
1032 const ImGuiStyle& style = g.Style; in ProgressBar()
1067 const ImGuiStyle& style = g.Style; in Bullet()
1293 const ImGuiStyle in BeginCombo()
[all...]
H A Dimgui_memory_editor.h169 ImGuiStyle& style = ImGui::GetStyle(); in CalcSizes()
219 ImGuiStyle& style = ImGui::GetStyle(); in DrawContents()
H A Dimgui_draw.cpp174 void ImGui::StyleColorsDark(ImGuiStyle* dst) in StyleColorsDark()
176 ImGuiStyle* style = dst ? dst : &ImGui::GetStyle(); in StyleColorsDark()
229 void ImGui::StyleColorsClassic(ImGuiStyle* dst) in StyleColorsClassic()
231 ImGuiStyle* style = dst ? dst : &ImGui::GetStyle(); in StyleColorsClassic()
285 void ImGui::StyleColorsLight(ImGuiStyle* dst) in StyleColorsLight()
287 ImGuiStyle* style = dst ? dst : &ImGui::GetStyle(); in StyleColorsLight()
H A Dimgui_internal.h766 ImGuiStyle Style;
/third_party/skia/third_party/externals/imgui/
H A Dimgui.cpp60 // [SECTION] USER FACING STRUCTURES (ImGuiStyle, ImGuiIO)
556 - 2017/11/18 (1.53) - Style, Begin: removed ImGuiWindowFlags_ShowBorders window flag. Borders are now fully set up in the ImGuiStyle structure (see e.g. style.FrameBorderSize, style.WindowBorderSize). Use ImGui::ShowStyleEditor() to look them up.
992 // [SECTION] USER FACING STRUCTURES (ImGuiStyle, ImGuiIO)
995 ImGuiStyle::ImGuiStyle() in ImGuiStyle() function in ImGuiStyle
1043 // Important: This operation is lossy because we round all sizes to integer. If you need to change your scale multiples, call this over a freshly initialized ImGuiStyle structure rather than scaling multiple times.
1044 void ImGuiStyle::ScaleAllSizes(float scale_factor) in ScaleAllSizes()
2463 ImGuiStyle& ImGui::GetStyle() in GetStyle()
2471 ImGuiStyle& style = GImGui->Style; in GetColorU32()
2479 ImGuiStyle in GetColorU32()
[all...]
H A Dimgui.h31 // [SECTION] ImGuiStyle
68 #define IMGUI_CHECKVERSION() ImGui::DebugCheckVersionAndDataLayout(IMGUI_VERSION, sizeof(ImGuiIO), sizeof(ImGuiStyle), sizeof(ImVec2), sizeof(ImVec4), sizeof(ImDrawVert), sizeof(ImDrawIdx))
159 struct ImGuiStyle; // Runtime data for styling/colors
301 IMGUI_API ImGuiStyle& GetStyle(); // access the Style structure (colors, sizes). Always use PushStyleCol(), PushStyleVar() to modify style mid-frame!
312 IMGUI_API void ShowStyleEditor(ImGuiStyle* ref = NULL); // add style editor block (not a window). you can pass in a reference ImGuiStyle structure to compare to, revert to and save to (else it uses the default style)
319 IMGUI_API void StyleColorsDark(ImGuiStyle* dst = NULL); // new, recommended style (default)
320 IMGUI_API void StyleColorsLight(ImGuiStyle* dst = NULL); // best used with borders and a custom, thicker font
321 IMGUI_API void StyleColorsClassic(ImGuiStyle* dst = NULL); // classic imgui style
431 IMGUI_API const ImVec4& GetStyleColorVec4(ImGuiCol idx); // retrieve style color as stored in ImGuiStyle structur
1765 struct ImGuiStyle global() struct
[all...]
H A Dimgui_widgets.cpp357 const ImGuiStyle& style = g.Style; in LabelTextV()
394 const ImGuiStyle& style = g.Style; in BulletTextV()
677 const ImGuiStyle& style = g.Style; in ButtonEx()
927 const ImGuiStyle& style = g.Style; in ScrollbarEx()
1077 const ImGuiStyle& style = g.Style; in Checkbox()
1183 const ImGuiStyle& style = g.Style; in RadioButton()
1246 const ImGuiStyle& style = g.Style; in ProgressBar()
1282 const ImGuiStyle& style = g.Style; in Bullet()
1570 const ImGuiStyle& style = g.Style; in BeginCombo()
2386 const ImGuiStyle in DragScalar()
[all...]
H A Dimgui_draw.cpp190 void ImGui::StyleColorsDark(ImGuiStyle* dst) in StyleColorsDark()
192 ImGuiStyle* style = dst ? dst : &ImGui::GetStyle(); in StyleColorsDark()
250 void ImGui::StyleColorsClassic(ImGuiStyle* dst) in StyleColorsClassic()
252 ImGuiStyle* style = dst ? dst : &ImGui::GetStyle(); in StyleColorsClassic()
311 void ImGui::StyleColorsLight(ImGuiStyle* dst) in StyleColorsLight()
313 ImGuiStyle* style = dst ? dst : &ImGui::GetStyle(); in StyleColorsLight()
H A Dimgui_demo.cpp889 ImGui::SameLine(); HelpMarker("The TextDisabled color is stored in ImGuiStyle."); in ShowDemoWindowWidgets()
2618 ImGuiStyle& style = ImGui::GetStyle(); in ShowDemoWindowLayout()
2827 ImGuiStyle& style = ImGui::GetStyle(); in ShowDemoWindowLayout()
3498 ImGuiStyle& style = ImGui::GetStyle(); in PushStyleCompact()
3614 // There are however a few settings that a shared and part of the ImGuiStyle structure:
5683 ImGuiStyle& style = ImGui::GetStyle();
5858 void ImGui::ShowStyleEditor(ImGuiStyle* ref)
5860 // You can pass in a reference ImGuiStyle structure to compare to, revert to and save to
5862 ImGuiStyle& style = ImGui::GetStyle();
5863 static ImGuiStyle ref_saved_styl
[all...]
H A Dimgui_internal.h1462 ImGuiStyle Style;

Completed in 75 milliseconds