All public logs
From GiderosMobile
Combined display of all available logs of GiderosMobile. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)- 01:15, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Style:setDisplaySafeAreaPadding (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui.Style<br/> === Description === Sets the ImGui global style safe area display padding values. <syntaxhighlight lang="lua"> ImGui.Style:setDisplaySafeAreaPadding(paddingx, paddingy) </syntaxhighlight> === Parameters === '''paddingx''': (number) the window safe area display padding x value<br/> '''paddingy''': (number) the window safe area display padding y value<br/> === Example === <syntaxhighlight la...")
- 01:15, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Style:setItemSpacing (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui.Style<br/> === Description === Sets the ImGui global style items spacing values. <syntaxhighlight lang="lua"> ImGui.Style:setItemSpacing(spacingx, spacingy) </syntaxhighlight> === Parameters === '''spacingx''': (number) the window items x spacing value<br/> '''spacingy''': (number) the window items y spacing value<br/> === Example === <syntaxhighlight lang="lua"> local imgui = ImGui.new() stage:addCh...")
- 01:14, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Style:setScrollbarSize (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui.Style<br/> === Description === Sets the ImGui global style scrollbar size value. <syntaxhighlight lang="lua"> ImGui.Style:setScrollbarSize(size) </syntaxhighlight> === Parameters === '''size''': (number) the window scrollbar size value<br/> === Example === <syntaxhighlight lang="lua"> local imgui = ImGui.new() stage:addChild(imgui) local style = imgui:getStyle() style:setScrollbarSize(12) </syntaxhi...")
- 01:14, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Style:setTouchExtraPadding (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui.Style<br/> === Description === Sets the ImGui global style touch extra padding values. <syntaxhighlight lang="lua"> ImGui.Style:setTouchExtraPadding(touchextrapaddingx,touchextrapaddingy) </syntaxhighlight> === Parameters === '''touchextrapaddingx''': (number) the window touch extra padding x value<br/> '''touchextrapaddingy''': (number) the window touch extra padding y value<br/> === Example === <sy...")
- 01:14, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Style:setWindowBorderSize (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui.Style<br/> === Description === Sets the ImGui global style a window border size value. <syntaxhighlight lang="lua"> ImGui.Style:setWindowBorderSize(bordersize) </syntaxhighlight> === Parameters === '''bordersize''': (number) the window border size value<br/> === Example === <syntaxhighlight lang="lua"> local imgui = ImGui.new() stage:addChild(imgui) local style = imgui:getStyle() style:setWindowBord...")
- 01:14, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Style:setWindowMinSize (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui.Style<br/> === Description === Sets the ImGui global style window minimum size values. <syntaxhighlight lang="lua"> ImGui.Style:setWindowMinSize(minwidth, minheight) </syntaxhighlight> === Parameters === '''minwidth''': (number) the window minimum width value<br/> '''minheight''': (number) the window minimum height value<br/> === Example === <syntaxhighlight lang="lua"> local imgui = ImGui.new() stag...")
- 01:14, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Style:setWindowRounding (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui.Style<br/> === Description === Sets the ImGui global style a window rounding value. <syntaxhighlight lang="lua"> ImGui.Style:setWindowRounding(rounding) </syntaxhighlight> === Parameters === '''rounding''': (number) the window rounding value<br/> === Example === <syntaxhighlight lang="lua"> local imgui = ImGui.new() stage:addChild(imgui) local style = imgui:getStyle() style:setWindowRounding(12) </s...")
- 01:14, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Style:setWindowTitleAlign (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui.Style<br/> === Description === Sets the ImGui global style a window title alignment value. <syntaxhighlight lang="lua"> ImGui.Style:setWindowTitleAlign(alignx, aligny) </syntaxhighlight> === Parameters === '''alignx''': (number) the window title align x value, '''usually between 0 and 1'''<br/> '''aligny''': (number) the window title align y value, '''usually between 0 and 1'''<br/> === Example === <...")
- 01:14, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Style:getWindowTitleAlign (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui.Style<br/> === Description === Gets the ImGui global style window title alignment. <syntaxhighlight lang="lua"> (number), (number) = ImGui.Style:getWindowTitleAlign() </syntaxhighlight> === Return values === '''Returns''' (number) the window title align x value<br/> '''Returns''' (number) the window title align y value<br/> === Example === <syntaxhighlight lang="lua"> local imgui = ImGui.new() stage:...")
- 01:13, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Style:getWindowRounding (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui.Style<br/> === Description === Gets the ImGui global style window rounding value. <syntaxhighlight lang="lua"> (number) = ImGui.Style:getWindowRounding() </syntaxhighlight> === Return values === '''Returns''' (number) the window rounding value<br/> === Example === <syntaxhighlight lang="lua"> local imgui = ImGui.new() stage:addChild(imgui) local style = imgui:getStyle() style:setWindowRounding(24) p...")
- 01:13, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Style:getWindowMinSize (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui.Style<br/> === Description === Gets the ImGui global style window minimum size values. <syntaxhighlight lang="lua"> (number), (number) = ImGui.Style:getWindowMinSize() </syntaxhighlight> === Return values === '''Returns''' (number) the window width minimum size value<br/> '''Returns''' (number) the window height minimum size value<br/> === Example === <syntaxhighlight lang="lua"> local imgui = ImGui....")
- 01:13, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Style:getWindowBorderSize (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui.Style<br/> === Description === Gets the ImGui global style window border size value. <syntaxhighlight lang="lua"> (number) = ImGui.Style:getWindowBorderSize() </syntaxhighlight> === Return values === '''Returns''' (number) the window border size value<br/> === Example === <syntaxhighlight lang="lua"> local imgui = ImGui.new() stage:addChild(imgui) local style = imgui:getStyle() style:setWindowBorder...")
- 01:13, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Style:getTouchExtraPadding (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui.Style<br/> === Description === Gets the ImGui global style touch extra padding values. <syntaxhighlight lang="lua"> (number), (number) = ImGui.Style:getTouchExtraPadding() </syntaxhighlight> === Return values === '''Returns''' (number) the window touch extra padding x value<br/> '''Returns''' (number) the window touch extra padding y value<br/> === Example === <syntaxhighlight lang="lua"> local imgui...")
- 01:12, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Style:getScrollbarSize (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui.Style<br/> === Description === Gets the ImGui global style scrollbar size value. <syntaxhighlight lang="lua"> (number) = ImGui.Style:getScrollbarSize() </syntaxhighlight> === Return values === '''Returns''' (number) the window scrollbar size value<br/> === Example === <syntaxhighlight lang="lua"> local imgui = ImGui.new() stage:addChild(imgui) local style = imgui:getStyle() style:setScrollbarSize(12...")
- 01:12, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Style:getScrollbarRounding (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui.Style<br/> === Description === Gets the ImGui global style scrollbar rounding value. <syntaxhighlight lang="lua"> (number) = ImGui.Style:getScrollbarRounding() </syntaxhighlight> === Return values === '''Returns''' (number) the window scrollbar rounding value<br/> === Example === <syntaxhighlight lang="lua"> local imgui = ImGui.new() stage:addChild(imgui) local style = imgui:getStyle() style:setScro...")
- 01:12, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Style:getItemSpacing (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui.Style<br/> === Description === Gets the ImGui global style items spacing values. <syntaxhighlight lang="lua"> (number), (number) = ImGui.Style:getItemSpacing() </syntaxhighlight> === Return values === '''Returns''' (number) the window items x spacing value<br/> '''Returns''' (number) the window items y spacing value<br/> === Example === <syntaxhighlight lang="lua"> local imgui = ImGui.new() stage:add...")
- 01:12, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Style:getDisplaySafeAreaPadding (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui.Style<br/> === Description === Gets the ImGui global style safe area display padding values. <syntaxhighlight lang="lua"> (number), (number) = ImGui.Style:getDisplaySafeAreaPadding() </syntaxhighlight> === Return values === '''Returns''' (number) the window safe area display padding x value<br/> '''Returns''' (number) the window safe area display padding y value<br/> === Example === <syntaxhighlight...")
- 01:11, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Style:getColor (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui.Style<br/> === Description === Gets the color of an ImGui element. <syntaxhighlight lang="lua"> (number), (number) = ImGui.Style:getColor(imguielement) </syntaxhighlight> === Parameters === '''imguielement''': (String) the ImGui element target '''(see ImGui.CONST.Col)'''<br/> === Return values === '''Returns''' (number) color in hex format<br/> '''Returns''' (number) alpha between...")
- 01:10, 11 October 2024 MoKaLux talk contribs deleted page ImGui.Style:getAlpha (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui.Style<br/> === Description === Gets the ImGui global style alpha. <syntaxhighlight lang="lua"> (number) = ImGui.Style:getAlpha() </syntaxhighlight> === Return values === '''Returns''' (number) alpha between 0 and 1<br/> === Example === <syntaxhighlight lang="lua"> </syntaxhighlight> {{ImGui.Style}}")
- 01:18, 9 October 2024 MoKaLux talk contribs created page File:Dear ImGui FileDialog Demo.png
- 01:18, 9 October 2024 MoKaLux talk contribs uploaded File:Dear ImGui FileDialog Demo.png
- 22:24, 8 October 2024 MoKaLux talk contribs deleted page ImGui Examples (content was: "__TOC__ Here you will find various resources to help you create GUI with '''Dear ImGui''' in Gideros Studio. '''note''': you may have to provide your own assets (fonts, gfx, …). === ImGui Custom Font === <syntaxhighlight lang="lua"> require "ImGui" -- imgui self.imgui = ImGui.new() -- imgui font local imguiio = self.imgui:getIO() local fontatlas = imguiio:getFonts() local myfont = fontatlas:addFont("fonts/Cabin-Regular-TTF.ttf", 22) -- your custom font here imguiio:se...")
- 22:24, 8 October 2024 MoKaLux talk contribs created page Dear ImGui Examples (Created page with "__TOC__ '''note''': you may have to provide your own assets (fonts, gfx, …). === ImGui Custom Font === <syntaxhighlight lang="lua"> require "ImGui" -- imgui self.imgui =...")
- 23:16, 6 October 2024 MoKaLux talk contribs created page Sprite.EFFECT MODE TRIGGERED (Created page with "__NOTOC__ '''Available since:''' Gideros 2021.1<br/> '''Value:''' Sprite.EFFECT_MODE_TRIGGERED<br/> '''Class:''' Sprite<br/> === Description === {{Sprite}}")
- 23:14, 6 October 2024 MoKaLux talk contribs created page Sprite.EFFECT MODE CONTINUOUS (Created page with "__NOTOC__ '''Available since:''' Gideros 2021.1<br/> '''Value:''' 0 Sprite.EFFECT_MODE_CONTINUOUS<br/> '''Class:''' Sprite<br/> === Description === {{Sprite}}")
- 23:12, 6 October 2024 MoKaLux talk contribs created page Sprite.EFFECT MODE AUTOMATIC (Created page with "__NOTOC__ '''Available since:''' Gideros 2021.1<br/> '''Value:''' Sprite.EFFECT_MODE_AUTOMATIC<br/> '''Class:''' Sprite<br/> === Description === {{Sprite}}")
- 20:35, 6 October 2024 MoKaLux talk contribs deleted page Template:ImGui (content was: " ---- *Dear ImGui {{Special:PrefixIndex/ImGui.Core}} ---- '''Dear ImGui''' {{GIDEROS IMPORTANT LINKS}} Category:ImGui", and the only contributor was "MoKaLux" (talk))
- 20:32, 6 October 2024 MoKaLux talk contribs deleted page ImGui.CONST.TreeNodeFlags (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Value:''' <br/> '''Defined by:''' ImGui.Core<br/> === Description === '''TreeNode Flags''' ImGui.TreeNodeFlags_Bullet<br/><!--GIDEROSCST:ImGui.TreeNodeFlags_Bullet--> ImGui.TreeNodeFlags_None<br/><!--GIDEROSCST:ImGui.TreeNodeFlags_None--> ImGui.TreeNodeFlags_CollapsingHeader<br/><!--GIDEROSCST:ImGui.TreeNodeFlags_Co...", and the only contributor was "MoKaLux" (talk))
- 20:30, 6 October 2024 MoKaLux talk contribs deleted page ImGui.CONST.WindowFlags (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Value:''' <br/> '''Defined by:''' ImGui.Core<br/> === Description === '''Window Flags''' *'''ImGui.WindowFlags_AlwaysAutoResize''': resize every window to its content every frame<!--GIDEROSCST:ImGui.WindowFlags_AlwaysAutoResize--> *'''ImGui.WindowFlags_AlwaysHorizontalScrollbar''': always show horizontal scrollbar (...", and the only contributor was "MoKaLux" (talk))
- 20:16, 6 October 2024 MoKaLux talk contribs deleted page ImGui.CONST.TE (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Value:''' <br/> '''Defined by:''' ImGui.Core<br/> === Description === '''TE ColorIndex''' ImGui.TE_Default<br/><!--GIDEROSCST:ImGui.TE_Default--> ImGui.TE_Keyword<br/><!--GIDEROSCST:ImGui.TE_Keyword--> ImGui.TE_Number<br/><!--GIDEROSCST:ImGui.TE_Number--> ImGui.TE_String<br/><!--GIDEROSCST:ImGui.TE_String--> ImGui.T...", and the only contributor was "MoKaLux" (talk))
- 20:16, 6 October 2024 MoKaLux talk contribs deleted page ImGui.CONST.TableRowFlags (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Value:''' <br/> '''Defined by:''' ImGui.Core<br/> === Description === '''TableRow Flags''' ImGui.TableRowFlags_None<br/><!--GIDEROSCST:ImGui.TableRowFlags_None--> ImGui.TableRowFlags_Headers<br/><!--GIDEROSCST:ImGui.TableRowFlags_Headers--> ---- '''Dear ImGui'''", and the only contributor was "MoKaLux" (talk))
- 20:16, 6 October 2024 MoKaLux talk contribs deleted page ImGui.CONST.TableColumnFlags (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Value:''' <br/> '''Defined by:''' ImGui.Core<br/> === Description === '''TableColumn Flags''' ImGui.TableColumnFlags_None<br/><!--GIDEROSCST:ImGui.TableColumnFlags_None--> ImGui.TableColumnFlags_DefaultHide<br/><!--GIDEROSCST:ImGui.TableColumnFlags_DefaultHide--> ImGui.TableColumnFlags_DefaultSort<br/><!--GIDEROSCST...", and the only contributor was "MoKaLux" (talk))
- 20:15, 6 October 2024 MoKaLux talk contribs deleted page ImGui.CONST.TableBgTarget (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Value:''' <br/> '''Defined by:''' ImGui.Core<br/> === Description === '''TableBg Target''' ImGui.TableBgTarget_None<br/><!--GIDEROSCST:ImGui.TableBgTarget_None--> ImGui.TableBgTarget_RowBg0<br/><!--GIDEROSCST:ImGui.TableBgTarget_RowBg0--> ImGui.TableBgTarget_RowBg1<br/><!--GIDEROSCST:ImGui.TableBgTarget_RowBg1--> Im...", and the only contributor was "MoKaLux" (talk))
- 20:15, 6 October 2024 MoKaLux talk contribs deleted page ImGui.CONST.TableFlags (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Value:''' <br/> '''Defined by:''' ImGui.Core<br/> === Description === '''Table Flags''' ImGui.TableFlags_None<br/><!--GIDEROSCST:ImGui.TableFlags_None--> ImGui.TableFlags_Resizable<br/><!--GIDEROSCST:ImGui.TableFlags_Resizable--> ImGui.TableFlags_Reorderable<br/><!--GIDEROSCST:ImGui.TableFlags_Reorderable--> ImGui.T...", and the only contributor was "MoKaLux" (talk))
- 20:15, 6 October 2024 MoKaLux talk contribs deleted page ImGui.CONST.TabItemFlags (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Value:''' <br/> '''Defined by:''' ImGui.Core<br/> === Description === '''TabItem Flags''' ImGui.TabItemFlags_SetSelected<br/><!--GIDEROSCST:ImGui.TabItemFlags_SetSelected--> ImGui.TabItemFlags_NoCloseWithMiddleMouseButton<br/><!--GIDEROSCST:ImGui.TabItemFlags_NoCloseWithMiddleMouseButton--> ImGui.TabItemFlags_NoTool...", and the only contributor was "MoKaLux" (talk))
- 20:15, 6 October 2024 MoKaLux talk contribs deleted page ImGui.CONST.TabBarFlags (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Value:''' <br/> '''Defined by:''' ImGui.Core<br/> === Description === '''TabBar Flags''' ImGui.TabBarFlags_AutoSelectNewTabs<br/><!--GIDEROSCST:ImGui.TabBarFlags_AutoSelectNewTabs--> ImGui.TabBarFlags_NoCloseWithMiddleMouseButton<br/><!--GIDEROSCST:ImGui.TabBarFlags_NoCloseWithMiddleMouseButton--> ImGui.TabBarFlags_...", and the only contributor was "MoKaLux" (talk))
- 20:14, 6 October 2024 MoKaLux talk contribs deleted page ImGui.CONST.StyleVar (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Value:''' <br/> '''Defined by:''' ImGui.Core<br/> === Description === '''Style Var''' ImGui.StyleVar_GrabRounding<br/><!--GIDEROSCST:ImGui.StyleVar_GrabRounding--> ImGui.StyleVar_Alpha<br/><!--GIDEROSCST:ImGui.StyleVar_Alpha--> ImGui.StyleVar_WindowMinSize<br/><!--GIDEROSCST:ImGui.StyleVar_WindowMinSize--> ImGui.Sty...", and the only contributor was "MoKaLux" (talk))
- 20:14, 6 October 2024 MoKaLux talk contribs deleted page ImGui.CONST.SortDirection (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Value:''' <br/> '''Defined by:''' ImGui.Core<br/> === Description === '''Sort Direction''' ImGui.SortDirection_None<br/><!--GIDEROSCST:ImGui.SortDirection_None--> ImGui.SortDirection_Ascending<br/><!--GIDEROSCST:ImGui.SortDirection_Ascending--> ImGui.SortDirection_Descending<br/><!--GIDEROSCST:ImGui.SortDirection_De...", and the only contributor was "MoKaLux" (talk))
- 20:14, 6 October 2024 MoKaLux talk contribs deleted page ImGui.CONST.SliderFlags (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Value:''' <br/> '''Defined by:''' ImGui.Core<br/> === Description === '''Slider Flags''' *'''ImGui.SliderFlags_None''': default = 0<!--GIDEROSCST:ImGui.SliderFlags_None--> *'''ImGui.SliderFlags_AlwaysClamp''': clamp value to min/max bounds when input manually with CTRL+Click. By default CTRL+Click allows going out o...", and the only contributor was "MoKaLux" (talk))
- 20:10, 6 October 2024 MoKaLux talk contribs deleted page ImGui.CONST.SelectableFlags (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Value:''' <br/> '''Defined by:''' ImGui.Core<br/> === Description === '''Selectable Flags''' ImGui.SelectableFlags_None<br/><!--GIDEROSCST:ImGui.SelectableFlags_None--> ImGui.SelectableFlags_SpanAllColumns<br/><!--GIDEROSCST:ImGui.SelectableFlags_SpanAllColumns--> ImGui.SelectableFlags_AllowItemOverlap<br/><!--GIDER...", and the only contributor was "MoKaLux" (talk))
- 20:09, 6 October 2024 MoKaLux talk contribs deleted page ImGui.CONST.PopupFlags (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Value:''' <br/> '''Defined by:''' ImGui.Core<br/> === Description === '''Popup Flags''' ImGui.PopupFlags_NoOpenOverExistingPopup<br/><!--GIDEROSCST:ImGui.PopupFlags_NoOpenOverExistingPopup--> ImGui.PopupFlags_MouseButtonLeft<br/><!--GIDEROSCST:ImGui.PopupFlags_MouseButtonLeft--> ImGui.PopupFlags_MouseButtonMask<br/>...", and the only contributor was "MoKaLux" (talk))
- 20:09, 6 October 2024 MoKaLux talk contribs deleted page ImGui.CONST.NavInput (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Value:''' <br/> '''Defined by:''' ImGui.Core<br/> === Description === '''Nav Input''' ImGui.NavInput_FocusNext<br/><!--GIDEROSCST:ImGui.NavInput_FocusNext--> ImGui.NavInput_TweakFast<br/><!--GIDEROSCST:ImGui.NavInput_TweakFast--> ImGui.NavInput_Input<br/><!--GIDEROSCST:ImGui.NavInput_Input--> ImGui.NavInput_DpadRigh...", and the only contributor was "MoKaLux" (talk))
- 20:09, 6 October 2024 MoKaLux talk contribs deleted page ImGui.CONST.MouseCursor (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Value:''' <br/> '''Defined by:''' ImGui.Core<br/> === Description === '''Mouse Cursor''' ImGui.MouseCursor_Hand<br/><!--GIDEROSCST:ImGui.MouseCursor_Hand--> ImGui.MouseCursor_ResizeAll<br/><!--GIDEROSCST:ImGui.MouseCursor_ResizeAll--> ImGui.MouseCursor_ResizeEW<br/><!--GIDEROSCST:ImGui.MouseCursor_ResizeEW--> ImGui....", and the only contributor was "MoKaLux" (talk))
- 20:09, 6 October 2024 MoKaLux talk contribs deleted page ImGui.CONST.MouseButton (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Value:''' <br/> '''Defined by:''' ImGui.Core<br/> === Description === '''Mouse Button''' ImGui.MouseButton_Right<br/><!--GIDEROSCST:ImGui.MouseButton_Right--> ImGui.MouseButton_Middle<br/><!--GIDEROSCST:ImGui.MouseButton_Middle--> ImGui.MouseButton_Left<br/><!--GIDEROSCST:ImGui.MouseButton_Left--> ---- '''Dear I...", and the only contributor was "MoKaLux" (talk))
- 20:09, 6 October 2024 MoKaLux talk contribs deleted page ImGui.CONST.ItemFlags (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Value:''' <br/> '''Defined by:''' ImGui.Core<br/> === Description === '''Item Flags''' ImGui.ItemFlags_Disabled<br/><!--GIDEROSCST:ImGui.ItemFlags_Disabled--> ImGui.ItemFlags_ButtonRepeat<br/><!--GIDEROSCST:ImGui.ItemFlags_ButtonRepeat--> ---- '''Dear ImGui'''", and the only contributor was "MoKaLux" (talk))
- 20:08, 6 October 2024 MoKaLux talk contribs deleted page ImGui.CONST.InputTextFlags (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Value:''' <br/> '''Defined by:''' ImGui.Core<br/> === Description === '''InputText Flags''' ImGui.InputTextFlags_EnterReturnsTrue<br/><!--GIDEROSCST:ImGui.InputTextFlags_EnterReturnsTrue--> ImGui.InputTextFlags_CallbackCompletion<br/><!--GIDEROSCST:ImGui.InputTextFlags_CallbackCompletion--> ImGui.InputTextFlags_None...", and the only contributor was "MoKaLux" (talk))
- 20:08, 6 October 2024 MoKaLux talk contribs deleted page ImGui.CONST.HoveredFlags (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Value:''' <br/> '''Defined by:''' ImGui.Core<br/> === Description === '''Hovered Flags''' ImGui.HoveredFlags_None<br/><!--GIDEROSCST:ImGui.HoveredFlags_None--> ImGui.HoveredFlags_RootAndChildWindows<br/><!--GIDEROSCST:ImGui.HoveredFlags_RootAndChildWindows--> ImGui.HoveredFlags_AllowWhenBlockedByPopup<br/><!--GIDERO...", and the only contributor was "MoKaLux" (talk))
- 20:08, 6 October 2024 MoKaLux talk contribs deleted page ImGui.CONST.GlyphRanges (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Value:''' <br/> '''Defined by:''' ImGui.Core<br/> === Description === '''GlyphRanges''' ImGui.GlyphRanges_Default,<br/><!--GIDEROSCST:ImGui.GlyphRanges_Default,--> ImGui.GlyphRanges_Korean,<br/><!--GIDEROSCST:ImGui.GlyphRanges_Korean,--> ImGui.GlyphRanges_ChineseFull,<br/><!--GIDEROSCST:ImGui.GlyphRanges_ChineseFull...", and the only contributor was "MoKaLux" (talk))
- 20:08, 6 October 2024 MoKaLux talk contribs deleted page ImGui.CONST.FocusedFlags (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Value:''' <br/> '''Defined by:''' ImGui.Core<br/> === Description === '''Focused Flags''' ImGui.FocusedFlags_ChildWindows<br/><!--GIDEROSCST:ImGui.FocusedFlags_ChildWindows--> ImGui.FocusedFlags_AnyWindow<br/><!--GIDEROSCST:ImGui.FocusedFlags_AnyWindow--> ImGui.FocusedFlags_RootWindow<br/><!--GIDEROSCST:ImGui.Focuse...", and the only contributor was "MoKaLux" (talk))
- 20:08, 6 October 2024 MoKaLux talk contribs deleted page ImGui.CONST.DragDropFlags (content was: "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Value:''' <br/> '''Defined by:''' ImGui.Core<br/> === Description === '''DragDrop Flags''' ImGui.DragDropFlags_SourceNoPreviewTooltip<br/><!--GIDEROSCST:ImGui.DragDropFlags_SourceNoPreviewTooltip--> ImGui.DragDropFlags_SourceAllowNullID<br/><!--GIDEROSCST:ImGui.DragDropFlags_SourceAllowNullID--> ImGui.DragDropFlags_...", and the only contributor was "MoKaLux" (talk))