MeshLib
 
Loading...
Searching...
No Matches
MRUIStyle.h
Go to the documentation of this file.
1#pragma once
2#include "MRMesh/MRFinally.h"
3#include "MRPch/MRFmt.h"
4#include "MRViewer/MRUnits.h"
6#include "exports.h"
7#include "imgui.h"
8#include <span>
9#include <string>
10#include <optional>
11
12namespace MR
13{
14
15class ImGuiImage;
16
17namespace UI
18{
19
20// enumeration texture types
21enum class TextureType
22{
23 Mono,
28 Count
29};
30
31// get texture by type
32MRVIEWER_API std::unique_ptr<ImGuiImage>& getTexture( TextureType type );
33
35MRVIEWER_API void init();
36
39{
46
48 bool forceImguiTextColor = false;
50 bool border = false;
51
54
56 bool enableTestEngine = true;
57};
58
60{
61 ImGuiButtonFlags flags = ImGuiButtonFlags_None;
62 // flag for buttonEx, which can be disabled
63 bool active = true;
64 // button without a gradient, always ative, configurable by an external style
65 bool flatBackgroundColor = false;
66 // if false - text is to the right
67 bool textUnderImage = true;
68};
69
71{
72 // the point from which the axes will be drawn
74
75 // size plot by axis
76 float size;
77 // optimal length between dashes
78 float optimalLenth = 10.0f;
79 // the minimum value of the axis
80 float minValue = 0.0f;
81 // the maximal value of the axis
82 float maxValue = 1.0f;
83 // sign every nth dash
85
86 // length dash without text
87 float lenDash = 8.0f;
88 // length dash with text
89 float lenDashWithText = 12.0f;
90 // text offset from dash
91 float textPadding = 3.0f;
92 // the format of the text for labels
94};
95
97MRVIEWER_API bool buttonEx( const char* label, bool active, const Vector2f& size = Vector2f( 0, 0 ),
98 ImGuiButtonFlags flags = ImGuiButtonFlags_None, const ButtonCustomizationParams& custmParams = {} );
101MRVIEWER_API bool button( const char* label, bool active, const Vector2f& size = Vector2f( 0, 0 ), ImGuiKey key = ImGuiKey_None );
104inline bool button( const char* label, const Vector2f& size = Vector2f( 0, 0 ), ImGuiKey key = ImGuiKey_None )
105{
106 return button( label, true, size, key );
107}
110MRVIEWER_API bool buttonCommonSize( const char* label, const Vector2f& size = Vector2f( 0, 0 ), ImGuiKey key = ImGuiKey_None );
112MRVIEWER_API bool buttonUnique( const char* label, int* value, int ownValue, const Vector2f& size = Vector2f( 0, 0 ), ImGuiKey key = ImGuiKey_None );
113
114// draw dash with text along the horizontal axis
115MRVIEWER_API void drawPoltHorizontalAxis( float menuScaling, const PlotAxis& plotAxis );
116// draw dash with text along the vertical axis
117MRVIEWER_API void drawPoltVerticalAxis( float menuScaling, const PlotAxis& plotAxis );
118
119// draw a button with an icon and text under it
120MRVIEWER_API bool buttonIconEx(
121 const std::string& name,
122 const Vector2f& iconSize,
123 const std::string& text,
124 const ImVec2& buttonSize,
125 const ButtonIconCustomizationParams& params = {} );
126// button with a gradient and the ability to make it inactive
127inline bool buttonIcon( const std::string& name, const Vector2f& iconSize, const std::string& text, bool active, const ImVec2& buttonSize )
128{
130 params.active = active;
131 params.flatBackgroundColor = true;
132 return buttonIconEx(name, iconSize, text, buttonSize, params );
133}
134// button with a gradient, always ative
135inline bool buttonIcon( const std::string& name, const Vector2f& iconSize, const std::string& text, const ImVec2& buttonSize )
136{
137 return buttonIconEx( name, iconSize, text, buttonSize );
138}
139// button without a gradient, always ative, configurable by an external style
140inline bool buttonIconFlatBG( const std::string& name, const Vector2f& iconSize, const std::string& text, const ImVec2& buttonSize )
141{
143 params.flatBackgroundColor = true;
144 params.forceImguiTextColor = true;
145 return buttonIconEx( name, iconSize, text, buttonSize, params );
146}
147
149MRVIEWER_API bool checkbox( const char* label, bool* value );
151MRVIEWER_API bool checkboxOrFixedValue( const char* label, bool* value, std::optional<bool> valueOverride );
153MRVIEWER_API bool checkboxValid( const char* label, bool* value, bool valid );
155MRVIEWER_API bool checkboxMixed( const char* label, bool* value, bool mixed );
157template <typename Getter, typename Setter>
158bool checkbox( const char* label, Getter get, Setter set )
159{
160 bool value = get();
161 bool ret = checkbox( label, &value );
162 set( value );
163 return ret;
164}
165
167template <typename T>
168bool checkboxFlags( const char* label, T& target, T flags )
169{
170 bool value = bool( target & flags );
171 bool mixed = value && ( target & flags ) != flags;
172 if ( checkboxMixed( label, &value, mixed ) )
173 {
174 if ( value )
175 target |= flags;
176 else
177 target &= ~flags;
178 return true;
179 }
180 return false;
181}
182
184{
185 // The persistent value of this setting, as set by the user by clicking the checkbox.
186 bool baseValue = false;
187 // Whether the setting is currently inverted because the modifier is held.
188 bool modifierHeld = false;
189
190 // You usually want to read this instead of the variables above.
191 // Returns `baseValue`, but inverted if `modifierHeld` is set.
192 [[nodiscard]] explicit operator bool() const { return baseValue != modifierHeld; }
193};
194
204MRVIEWER_API bool checkboxOrModifier( const char* label, CheckboxOrModifierState& value, int modifiers, int respectedModifiers = -1, std::optional<bool> valueOverride = {} );
205
206
208MRVIEWER_API bool radioButton( const char* label, int* value, int valButton );
210MRVIEWER_API bool radioButtonOrFixedValue( const char* label, int* value, int valButton, std::optional<int> valueOverride );
211
213{
214 // The permanent value of this setting, as set by the user by clicking the radio button.
215 int value{};
216 // The value that is displayed, and to be used - can differ from `value` if modifiers are pressed.
218
219 // The effective value, affected by modifiers.
220 [[nodiscard]] explicit operator int() const
221 {
222 return effectiveValue;
223 }
224};
225
232MRVIEWER_API bool radioButtonOrModifier( const char* label, RadioButtonOrModifierState& value, int valButton, int modifiers, int respectedModifiers = -1, std::optional<int> valueOverride = {} );
233
235MRVIEWER_API bool colorEdit4( const char* label, Vector4f& color, ImGuiColorEditFlags flags = ImGuiColorEditFlags_None );
236MRVIEWER_API bool colorEdit4( const char* label, Color& color, ImGuiColorEditFlags flags = ImGuiColorEditFlags_None );
237
239MRVIEWER_API bool combo( const char* label, int* v, const std::vector<std::string>& options,
240 bool showPreview = true, const std::vector<std::string>& tooltips = {}, const std::string& defaultText = "Not selected" );
241
243MRVIEWER_API bool beginCombo( const char* label, const std::string& text = "Not selected", bool showPreview = true );
244MRVIEWER_API void endCombo( bool showPreview = true );
245
247MRVIEWER_API bool inputText( const char* label, std::string& str, ImGuiInputTextFlags flags = 0, ImGuiInputTextCallback callback = nullptr, void* user_data = nullptr );
249MRVIEWER_API bool inputTextIntoArray( const char* label, char* array, std::size_t size, ImGuiInputTextFlags flags = 0, ImGuiInputTextCallback callback = nullptr, void* user_data = nullptr );
250
252MRVIEWER_API bool inputTextMultiline( const char* label, std::string& str, const ImVec2& size = ImVec2(), ImGuiInputTextFlags flags = 0, ImGuiInputTextCallback callback = nullptr, void* user_data = nullptr );
254MRVIEWER_API bool inputTextIntoArrayMultiline( const char* label, char* buf, size_t buf_size, const ImVec2& size = ImVec2(), ImGuiInputTextFlags flags = 0, ImGuiInputTextCallback callback = nullptr, void* user_data = nullptr );
255
257{
258 std::optional<ImVec2> cachedSize; // Reset this when manually modifying the text.
259};
261MRVIEWER_API bool inputTextMultilineFullyScrollable( CachedTextSize& cache, const char* label, std::string& str, const ImVec2& size = ImVec2(), ImGuiInputTextFlags flags = 0, ImGuiInputTextCallback callback = nullptr, void* user_data = nullptr );
262MRVIEWER_API bool inputTextIntoArrayMultilineFullyScrollable( CachedTextSize& cache, const char* label, char* buf, size_t buf_size, const ImVec2& size = ImVec2(), ImGuiInputTextFlags flags = 0, ImGuiInputTextCallback callback = nullptr, void* user_data = nullptr );
263
265MRVIEWER_API bool inputTextCentered( const char* label, std::string& str, float width = 0.0f, ImGuiInputTextFlags flags = 0, ImGuiInputTextCallback callback = nullptr, void* user_data = nullptr );
266
268MRVIEWER_API void inputTextCenteredReadOnly( const char* label, const std::string& str, float width = 0.0f, const std::optional<ImVec4>& textColor = {}, const std::optional<ImVec4>& labelColor = {} );
269
270
271namespace detail
272{
273 // A type-erased slider.
274 MRVIEWER_API bool genericSlider( const char* label, ImGuiDataType data_type, void* p_data, const void* p_min, const void* p_max, const char* format, ImGuiSliderFlags flags );
275
276 // Whether `T` is a scalar type that we can use with our widgets.
277 template <typename T>
278 concept Scalar = std::is_arithmetic_v<T> && !std::is_same_v<T, bool>;
279
280 // Whether `T` is a scalar or vector that we can use with our widgets.
281 template <typename T>
283
284 // Whether `Bound` is a valid min/max bound for `Target`.
285 // That is, either the same type, or if `Target` is a vector, `Bound` can also be a scalar of the same type.
286 template <typename Bound, typename Target>
288 std::same_as<Bound, Target> ||
289 ( VectorTraits<Bound>::size == 1 && std::same_as<typename VectorTraits<Bound>::BaseType, typename VectorTraits<Target>::BaseType> );
290
291 // Whether `Speed` is a valid drag speed type for `Target`.
292 // That is, either a single/vector of `float` or the same type as target (or its element if it's a vector).
293 template <typename Speed, typename Target>
295 std::same_as<Speed, typename VectorTraits<Target>::BaseType> || std::same_as<Speed, float> ||
296 std::same_as<Speed, Target> || std::same_as<Speed, typename VectorTraits<Target>::template ChangeBase<float>>;
297
298 // A common code for sliders and other widgets dealing with measurement units.
299 // `E` must be explicitly set to a measurement unit enum. The other template parameters are deduced.
300 // `label` is the widget label, `v` is the target value.
301 // `func` draws the widget for an individual scalar. We call it more than once for vectors.
302 // `func` is `( const char* label, auto& elem, int i ) -> bool`.
303 // It receives `elem` already converted to the display units (so you must convert min/max bounds manually). `i` is the element index for vectors.
304 // When `v` is integral, `func` will be instantiated for both integral and floating-point element type. The latter is required if we're doing conversions.
305 // NOTE: For integral `v`, in `func` you must look at the type of `elem` and convert your min/max bounds (etc) to the same type.
306 // Notice `unitParams` being accepted by an lvalue reference. For convenience, we reset the `sourceUnit` in it before calling the user callback,
307 // since at that point no further conversions are necessary.
308 template <UnitEnum E, VectorOrScalar T, typename F>
309 [[nodiscard]] bool unitWidget( const char* label, T& v, UnitToStringParams<E>& unitParams, F&& func );
310
311 // Some default slider parameters. For now they are hardcoded here, but we can move them elsewhere later.
312
313 // Default drag speed for `UI::drag()`.
314 template <UnitEnum E, VectorOrScalar T>
315 requires ( VectorTraits<T>::size == 1 )
316 [[nodiscard]] float getDefaultDragSpeed();
317
318 // Default step speed for `UI::input()`.
319 template <UnitEnum E, VectorOrScalar T, VectorOrScalar TargetType>
320 [[nodiscard]] T getDefaultStep( bool fast );
321}
322
323// Default flags for `slider()` and `drag()` below.
324inline constexpr int defaultSliderFlags = ImGuiSliderFlags_AlwaysClamp;
325
326// Draw a slider.
327// `E` must be specified explicitly, to one of: `NoUnit` `LengthUnit`, `AngleUnit`, ...
328// By default, for angles `v` will be converted to degrees for display (but `vMin`, `vMax` are still in radians, same as `v`),
329// while length and unit-less values will be left as is. This can be customized in `unitParams` or globally (see `MRUnits.h`).
330template <UnitEnum E, detail::VectorOrScalar T, detail::ValidBoundForTargetType<T> U = typename VectorTraits<T>::BaseType>
331bool slider( const char* label, T& v, const U& vMin, const U& vMax, UnitToStringParams<E> unitParams = {}, ImGuiSliderFlags flags = defaultSliderFlags );
332
333// Draw a dragging widget. Also includes [+] and [-] buttons (for integers only by default_, like `ImGui::Input`).
334// `E` must be specified explicitly, to one of: `NoUnit` `LengthUnit`, `AngleUnit`, ...
335// By default, for angles `v` will be converted to degrees for display (but `vSpeed` is still in radians, same as `v`),
336// while length and unit-less values will be left as is. This can be customized in `unitParams` or globally (see `MRUnits.h`).
337// If only the min limit is specified, then the max limit is assumed to be the largest number.
338template <UnitEnum E, detail::VectorOrScalar T, detail::ValidDragSpeedForTargetType<T> SpeedType = float, detail::ValidBoundForTargetType<T> U = typename VectorTraits<T>::BaseType>
339bool drag( const char* label, T& v, SpeedType vSpeed = detail::getDefaultDragSpeed<E, SpeedType>(), const U& vMin = std::numeric_limits<U>::lowest(), const U& vMax = std::numeric_limits<U>::max(), UnitToStringParams<E> unitParams = {}, ImGuiSliderFlags flags = defaultSliderFlags, const U& step = detail::getDefaultStep<E, U, T>( false ), const U& stepFast = detail::getDefaultStep<E, U, T>( true ) );
340
341// Draw a read-only copyable value.
342// `E` must be specified explicitly, to one of: `NoUnit` `LengthUnit`, `AngleUnit`, ...
343// By default, for angles `v` will be converted to degrees for display, while length and unit-less values will be left as is.
344// This can be customized in `unitParams` or globally (see `MRUnits.h`).
345template <UnitEnum E, detail::VectorOrScalar T>
346void readOnlyValue( const char* label, const T& v, std::optional<ImVec4> textColor = {}, UnitToStringParams<E> unitParams = {}, std::optional<ImVec4> labelColor = {} );
347
348
350MRVIEWER_API void transparentText( const char* fmt, ... );
352MRVIEWER_API void transparentTextWrapped( const char* fmt, ... );
353
355MRVIEWER_API void setTooltipIfHovered( const std::string& text, float scaling );
356
361MRVIEWER_API void separator( float scaling, const std::string& text = "", int issueCount = -1 );
362MRVIEWER_API void separator(
363 float scaling,
364 const std::string& text,
365 const ImVec4& color,
366 const std::string& issueCount );
367// separator line with icon and text
368// iconSize icon size without scaling
369MRVIEWER_API void separator( float scaling, const ImGuiImage& icon, const std::string& text, const Vector2f& iconSize = { 24.f, 24.f } );
370MRVIEWER_API void separator( float scaling, const std::string& iconName, const std::string& text, const Vector2f& iconSize = { 24.f, 24.f } );
371
376MRVIEWER_API void progressBar( float scaling, float fraction, const Vector2f& size = Vector2f( -1, 0 ) );
377
378// create and append items into a TabBar: see corresponding ImGui:: functions
379MRVIEWER_API bool beginTabBar( const char* str_id, ImGuiTabBarFlags flags = 0 );
380MRVIEWER_API void endTabBar();
381MRVIEWER_API bool beginTabItem( const char* label, bool* p_open = NULL, ImGuiTabItemFlags flags = 0 );
382MRVIEWER_API void endTabItem();
383
393MRVIEWER_API void alignTextToFramePadding( float padding );
397MRVIEWER_API void alignTextToControl( float controlHeight );
399MRVIEWER_API void alignTextToRadioButton( float scaling );
401MRVIEWER_API void alignTextToCheckBox( float scaling );
403MRVIEWER_API void alignTextToButton( float scaling );
404
408MRVIEWER_API void highlightWindowArea( float scaling, const ImVec2& min = {-1.0f, -1.0f}, const ImVec2& max = { -1.0f, -1.0f } );
409
410} // namespace UI
411
412}
413
414#include "MRUIStyle.ipp"
Definition MRImGuiImage.h:14
Definition MRUIStyle.h:278
Definition MRUIStyle.h:287
Definition MRUIStyle.h:282
auto width(const Box< V > &box)
returns size along x axis
Definition MRMesh/MRBox.h:247
T getDefaultStep(bool fast)
float getDefaultDragSpeed()
MRVIEWER_API bool genericSlider(const char *label, ImGuiDataType data_type, void *p_data, const void *p_min, const void *p_max, const char *format, ImGuiSliderFlags flags)
bool unitWidget(const char *label, T &v, UnitToStringParams< E > &unitParams, F &&func)
MRVIEWER_API bool buttonEx(const char *label, bool active, const Vector2f &size=Vector2f(0, 0), ImGuiButtonFlags flags=ImGuiButtonFlags_None, const ButtonCustomizationParams &custmParams={})
draw gradient button, which can be disabled (active = false)
TextureType
Definition MRUIStyle.h:22
MRVIEWER_API bool checkboxOrModifier(const char *label, CheckboxOrModifierState &value, int modifiers, int respectedModifiers=-1, std::optional< bool > valueOverride={})
MRVIEWER_API std::unique_ptr< ImGuiImage > & getTexture(TextureType type)
MRVIEWER_API void alignTextToRadioButton(float scaling)
Specialization of alignTextToFramePadding for UI::radioButton.
MRVIEWER_API void highlightWindowArea(float scaling, const ImVec2 &min={-1.0f, -1.0f}, const ImVec2 &max={ -1.0f, -1.0f })
MRVIEWER_API bool inputTextMultilineFullyScrollable(CachedTextSize &cache, const char *label, std::string &str, const ImVec2 &size=ImVec2(), ImGuiInputTextFlags flags=0, ImGuiInputTextCallback callback=nullptr, void *user_data=nullptr)
This version adds a horizontal scrollbar. Also it never draws the label, and uses full window width b...
MRVIEWER_API bool radioButtonOrModifier(const char *label, RadioButtonOrModifierState &value, int valButton, int modifiers, int respectedModifiers=-1, std::optional< int > valueOverride={})
bool drag(const char *label, T &v, SpeedType vSpeed=detail::getDefaultDragSpeed< E, SpeedType >(), const U &vMin=std::numeric_limits< U >::lowest(), const U &vMax=std::numeric_limits< U >::max(), UnitToStringParams< E > unitParams={}, ImGuiSliderFlags flags=defaultSliderFlags, const U &step=detail::getDefaultStep< E, U, T >(false), const U &stepFast=detail::getDefaultStep< E, U, T >(true))
MRVIEWER_API void separator(float scaling, const std::string &text="", int issueCount=-1)
bool buttonIconFlatBG(const std::string &name, const Vector2f &iconSize, const std::string &text, const ImVec2 &buttonSize)
Definition MRUIStyle.h:140
MRVIEWER_API void endTabBar()
MRVIEWER_API void transparentTextWrapped(const char *fmt,...)
similar to ImGui::TextWrapped but use current text color with alpha channel = 0.5
MRVIEWER_API bool inputTextIntoArrayMultiline(const char *label, char *buf, size_t buf_size, const ImVec2 &size=ImVec2(), ImGuiInputTextFlags flags=0, ImGuiInputTextCallback callback=nullptr, void *user_data=nullptr)
This overload is for arrays, as opposed to std::strings.
MRVIEWER_API void endTabItem()
MRVIEWER_API bool checkbox(const char *label, bool *value)
draw gradient checkbox
MRVIEWER_API void inputTextCenteredReadOnly(const char *label, const std::string &str, float width=0.0f, const std::optional< ImVec4 > &textColor={}, const std::optional< ImVec4 > &labelColor={})
draw read-only text box with text aligned by center
MRVIEWER_API bool inputTextIntoArrayMultilineFullyScrollable(CachedTextSize &cache, const char *label, char *buf, size_t buf_size, const ImVec2 &size=ImVec2(), ImGuiInputTextFlags flags=0, ImGuiInputTextCallback callback=nullptr, void *user_data=nullptr)
MRVIEWER_API void alignTextToButton(float scaling)
Specialization of alignTextToFramePadding for UI::button with default height.
MRVIEWER_API void alignTextToCheckBox(float scaling)
Specialization of alignTextToFramePadding for UI::checkbox.
MRVIEWER_API void alignTextToControl(float controlHeight)
MRVIEWER_API void drawPoltHorizontalAxis(float menuScaling, const PlotAxis &plotAxis)
MRVIEWER_API void drawPoltVerticalAxis(float menuScaling, const PlotAxis &plotAxis)
MRVIEWER_API bool beginCombo(const char *label, const std::string &text="Not selected", bool showPreview=true)
draw custom content combo box
bool buttonIcon(const std::string &name, const Vector2f &iconSize, const std::string &text, bool active, const ImVec2 &buttonSize)
Definition MRUIStyle.h:127
constexpr int defaultSliderFlags
Definition MRUIStyle.h:324
bool slider(const char *label, T &v, const U &vMin, const U &vMax, UnitToStringParams< E > unitParams={}, ImGuiSliderFlags flags=defaultSliderFlags)
MRVIEWER_API bool combo(const char *label, int *v, const std::vector< std::string > &options, bool showPreview=true, const std::vector< std::string > &tooltips={}, const std::string &defaultText="Not selected")
draw combo box
MRVIEWER_API bool radioButton(const char *label, int *value, int valButton)
draw gradient radio button
MRVIEWER_API void setTooltipIfHovered(const std::string &text, float scaling)
draw tooltip only if current item is hovered
MRVIEWER_API bool checkboxValid(const char *label, bool *value, bool valid)
If valid is false checkbox is disabled. Same as checkboxOrFixedValue( ..., valid ?...
MRVIEWER_API void endCombo(bool showPreview=true)
MRVIEWER_API bool inputTextIntoArray(const char *label, char *array, std::size_t size, ImGuiInputTextFlags flags=0, ImGuiInputTextCallback callback=nullptr, void *user_data=nullptr)
This overload is for arrays, as opposed to std::strings.
MRVIEWER_API void transparentText(const char *fmt,...)
similar to ImGui::Text but use current text color with alpha channel = 0.5
MRVIEWER_API void init()
init internal parameters
MRVIEWER_API bool checkboxOrFixedValue(const char *label, bool *value, std::optional< bool > valueOverride)
If valueOverride is specified, then the checkbox is disabled and that value is displayed instead of v...
void readOnlyValue(const char *label, const T &v, std::optional< ImVec4 > textColor={}, UnitToStringParams< E > unitParams={}, std::optional< ImVec4 > labelColor={})
MRVIEWER_API void progressBar(float scaling, float fraction, const Vector2f &size=Vector2f(-1, 0))
MRVIEWER_API bool colorEdit4(const char *label, Vector4f &color, ImGuiColorEditFlags flags=ImGuiColorEditFlags_None)
draw gradient color edit 4
MRVIEWER_API bool inputTextMultiline(const char *label, std::string &str, const ImVec2 &size=ImVec2(), ImGuiInputTextFlags flags=0, ImGuiInputTextCallback callback=nullptr, void *user_data=nullptr)
Draws multiline text input, should be used instead of ImGui::InputTextMultiline().
MRVIEWER_API bool checkboxMixed(const char *label, bool *value, bool mixed)
draw gradient checkbox with mixed state
MRVIEWER_API bool buttonIconEx(const std::string &name, const Vector2f &iconSize, const std::string &text, const ImVec2 &buttonSize, const ButtonIconCustomizationParams &params={})
MRVIEWER_API bool beginTabBar(const char *str_id, ImGuiTabBarFlags flags=0)
bool checkboxFlags(const char *label, T &target, T flags)
Draw a checkbox toggling one or more bits in the mask.
Definition MRUIStyle.h:168
MRVIEWER_API bool buttonUnique(const char *label, int *value, int ownValue, const Vector2f &size=Vector2f(0, 0), ImGuiKey key=ImGuiKey_None)
draw button with same logic as radioButton
MRVIEWER_API bool button(const char *label, bool active, const Vector2f &size=Vector2f(0, 0), ImGuiKey key=ImGuiKey_None)
MRVIEWER_API bool radioButtonOrFixedValue(const char *label, int *value, int valButton, std::optional< int > valueOverride)
If valueOverride is specified, then the radio button is disabled and that value is displayed instead ...
MRVIEWER_API bool inputText(const char *label, std::string &str, ImGuiInputTextFlags flags=0, ImGuiInputTextCallback callback=nullptr, void *user_data=nullptr)
Draws text input, should be used instead of ImGui::InputText().
MRVIEWER_API void alignTextToFramePadding(float padding)
MRVIEWER_API bool beginTabItem(const char *label, bool *p_open=NULL, ImGuiTabItemFlags flags=0)
MRVIEWER_API bool inputTextCentered(const char *label, std::string &str, float width=0.0f, ImGuiInputTextFlags flags=0, ImGuiInputTextCallback callback=nullptr, void *user_data=nullptr)
draw input text box with text aligned by center
MRVIEWER_API bool buttonCommonSize(const char *label, const Vector2f &size=Vector2f(0, 0), ImGuiKey key=ImGuiKey_None)
Definition MRCameraOrientationPlugin.h:8
ImVec2 size(const ViewportRectangle &rect)
Definition MRViewport.h:32
constexpr const T & get(const Vector2< T > &v) noexcept
Definition MRTupleBindings.h:83
std::variant< > VarUnitToStringParams
Definition MRUnits.h:310
Definition MRColor.h:9
parameters to customize buttonEx
Definition MRUIStyle.h:39
bool forceImguiTextColor
force use if ImGuiCol_Text for text
Definition MRUIStyle.h:48
ImGuiImage * customTexture
Definition MRUIStyle.h:43
bool border
show border or not
Definition MRUIStyle.h:50
bool underlineFirstLetter
draw line under first letter of label
Definition MRUIStyle.h:53
bool forceImGuiBackground
force use imgui background if !customTexture
Definition MRUIStyle.h:45
bool enableTestEngine
Allow interacting with this button from UI::TestEngine.
Definition MRUIStyle.h:56
Definition MRUIStyle.h:60
bool flatBackgroundColor
Definition MRUIStyle.h:65
bool active
Definition MRUIStyle.h:63
bool textUnderImage
Definition MRUIStyle.h:67
ImGuiButtonFlags flags
Definition MRUIStyle.h:61
Definition MRUIStyle.h:257
std::optional< ImVec2 > cachedSize
Definition MRUIStyle.h:258
Definition MRUIStyle.h:184
bool modifierHeld
Definition MRUIStyle.h:188
bool baseValue
Definition MRUIStyle.h:186
Definition MRUIStyle.h:71
float size
Definition MRUIStyle.h:76
VarUnitToStringParams labelFormatParams
Definition MRUIStyle.h:93
float lenDash
Definition MRUIStyle.h:87
size_t textDashIndicesStep
Definition MRUIStyle.h:84
float minValue
Definition MRUIStyle.h:80
float lenDashWithText
Definition MRUIStyle.h:89
ImVec2 startAxisPoint
Definition MRUIStyle.h:73
float optimalLenth
Definition MRUIStyle.h:78
float maxValue
Definition MRUIStyle.h:82
float textPadding
Definition MRUIStyle.h:91
Definition MRUIStyle.h:213
int value
Definition MRUIStyle.h:215
int effectiveValue
Definition MRUIStyle.h:217
Definition MRUnits.h:258
Definition MRMesh/MRVectorTraits.h:14
static constexpr int size
Definition MRMesh/MRVectorTraits.h:18
T BaseType
Definition MRMesh/MRVectorTraits.h:17