diff options
Diffstat (limited to 'platform/macos/godot_button_view.h')
-rw-r--r-- | platform/macos/godot_button_view.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/platform/macos/godot_button_view.h b/platform/macos/godot_button_view.h index e41910878d..ef1d5fe412 100644 --- a/platform/macos/godot_button_view.h +++ b/platform/macos/godot_button_view.h @@ -41,10 +41,16 @@ NSPoint offset; CGFloat spacing; bool mouse_in_group; + bool rtl; + NSButton *close_button; + NSButton *miniaturize_button; + NSButton *zoom_button; } -- (void)initButtons:(CGFloat)button_spacing offset:(NSPoint)button_offset; +- (void)initButtons:(CGFloat)button_spacing offset:(NSPoint)button_offset rtl:(bool)is_rtl; - (void)displayButtons; +- (void)setOffset:(NSPoint)button_offset; +- (NSPoint)getOffset; @end |