mirror of
https://github.com/Drezil/dear-imgui.hs.git
synced 2025-07-07 21:39:55 +02:00
Wrap ImGui::SameLine()
This commit is contained in:
@ -48,6 +48,9 @@ module DearImGui
|
||||
, begin
|
||||
, end
|
||||
|
||||
-- * Cursor/Layout
|
||||
, sameLine
|
||||
|
||||
-- * Widgets
|
||||
-- ** Text
|
||||
, text
|
||||
@ -308,6 +311,14 @@ end = liftIO do
|
||||
[C.exp| void { ImGui::End(); } |]
|
||||
|
||||
|
||||
-- | Call between widgets or groups to layout them horizontally.
|
||||
--
|
||||
-- Wraps @ImGui::SameLine@.
|
||||
sameLine :: MonadIO m => m ()
|
||||
sameLine = liftIO do
|
||||
[C.exp| void { SameLine(); } |]
|
||||
|
||||
|
||||
-- | Formatted text.
|
||||
--
|
||||
-- Wraps @ImGui::Text()@.
|
||||
|
Reference in New Issue
Block a user