mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 20:21:01 +08:00
14 lines
338 B
Objective-C
14 lines
338 B
Objective-C
//go:build darwin
|
|
|
|
#ifndef _DIALOGS_DELEGATE_H_
|
|
#define _DIALOGS_DELEGATE_H_
|
|
|
|
#import <UniformTypeIdentifiers/UTType.h>
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
// create an NSOpenPanel delegate to handle the callback
|
|
@interface OpenPanelDelegate : NSObject <NSOpenSavePanelDelegate>
|
|
@property (nonatomic, strong) NSArray *allowedExtensions;
|
|
@end
|
|
|
|
#endif |