mirror of https://github.com/bsnes-emu/bsnes.git
66 lines
1.8 KiB
C++
66 lines
1.8 KiB
C++
#if defined(Hiro_Window)
|
|
|
|
@interface CocoaWindow : NSWindow <NSWindowDelegate> {
|
|
@public
|
|
hiro::mWindow* window;
|
|
NSMenu* menuBar;
|
|
NSMenu* rootMenu;
|
|
NSMenuItem* disableGatekeeperAutoRearm;
|
|
NSTextField* statusBar;
|
|
}
|
|
-(id) initWith:(hiro::mWindow&)window;
|
|
-(BOOL) canBecomeKeyWindow;
|
|
-(BOOL) canBecomeMainWindow;
|
|
-(void) windowDidBecomeMain:(NSNotification*)notification;
|
|
-(void) windowDidMove:(NSNotification*)notification;
|
|
-(void) windowDidResize:(NSNotification*)notification;
|
|
-(BOOL) windowShouldClose:(id)sender;
|
|
-(NSDragOperation) draggingEntered:(id<NSDraggingInfo>)sender;
|
|
-(BOOL) performDragOperation:(id<NSDraggingInfo>)sender;
|
|
-(NSMenu*) menuBar;
|
|
-(void) menuAbout;
|
|
-(void) menuPreferences;
|
|
-(void) menuDisableGatekeeperAutoRearm;
|
|
-(void) menuQuit;
|
|
-(NSTextField*) statusBar;
|
|
@end
|
|
|
|
namespace hiro {
|
|
|
|
struct pWindow : pObject {
|
|
Declare(Window, Object)
|
|
|
|
auto append(sLayout layout) -> void;
|
|
auto append(sMenuBar menuBar) -> void;
|
|
auto append(sStatusBar statusBar) -> void;
|
|
auto focused() const -> bool override;
|
|
auto frameMargin() const -> Geometry;
|
|
auto remove(sLayout layout) -> void;
|
|
auto remove(sMenuBar menuBar) -> void;
|
|
auto remove(sStatusBar statusBar) -> void;
|
|
auto setBackgroundColor(Color color) -> void;
|
|
auto setDroppable(bool droppable) -> void;
|
|
auto setFocused() -> void override;
|
|
auto setFullScreen(bool fullScreen) -> void;
|
|
auto setGeometry(Geometry geometry) -> void;
|
|
auto setModal(bool modal) -> void;
|
|
auto setResizable(bool resizable) -> void;
|
|
auto setTitle(const string& text) -> void;
|
|
auto setVisible(bool visible) -> void;
|
|
|
|
auto moveEvent() -> void;
|
|
auto sizeEvent() -> void;
|
|
auto statusBarHeight() -> uint;
|
|
auto statusBarReposition() -> void;
|
|
|
|
auto _append(mWidget& widget) -> void;
|
|
auto _geometry() -> Geometry;
|
|
|
|
CocoaWindow* cocoaWindow = nullptr;
|
|
Geometry windowedGeometry;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|