Implement screen_set_keep_on for macOS

This commit is contained in:
bruvzg
2022-08-04 10:38:26 +03:00
parent cf46ef42a9
commit 2f9be29c73
2 changed files with 26 additions and 0 deletions

View File

@ -50,6 +50,7 @@
#import <ApplicationServices/ApplicationServices.h>
#import <CoreVideo/CoreVideo.h>
#import <Foundation/Foundation.h>
#import <IOKit/pwr_mgt/IOPMLib.h>
#undef BitMap
#undef CursorShape
@ -171,6 +172,8 @@ private:
HashMap<WindowID, WindowData> windows;
IOPMAssertionID screen_keep_on_assertion = kIOPMNullAssertionID;
const NSMenu *_get_menu_root(const String &p_menu_root) const;
NSMenu *_get_menu_root(const String &p_menu_root);
@ -299,6 +302,7 @@ public:
virtual float screen_get_max_scale() const override;
virtual Rect2i screen_get_usable_rect(int p_screen = SCREEN_OF_MAIN_WINDOW) const override;
virtual float screen_get_refresh_rate(int p_screen = SCREEN_OF_MAIN_WINDOW) const override;
virtual void screen_set_keep_on(bool p_enable) override;
virtual Vector<int> get_window_list() const override;