mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 23:39:21 +08:00
26 lines
385 B
Objective-C
26 lines
385 B
Objective-C
//
|
|
// WindowDelegate.h
|
|
// test
|
|
//
|
|
// Created by Lea Anthony on 10/10/21.
|
|
//
|
|
|
|
#ifndef WindowDelegate_h
|
|
#define WindowDelegate_h
|
|
|
|
#import "WailsContext.h"
|
|
|
|
@interface WindowDelegate : NSObject <NSWindowDelegate>
|
|
|
|
@property bool hideOnClose;
|
|
|
|
@property (assign) WailsContext* ctx;
|
|
|
|
- (void)windowDidExitFullScreen:(NSNotification *)notification;
|
|
|
|
|
|
@end
|
|
|
|
|
|
#endif /* WindowDelegate_h */
|