5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-02 20:21:01 +08:00
wails/v3/pkg/application/dialogs_delegate.h
2023-01-18 21:42:49 +11:00

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