mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 17:22:01 +08:00
27 lines
723 B
Go
27 lines
723 B
Go
//go:build linux
|
|
// +build linux
|
|
|
|
package linux
|
|
|
|
import "github.com/wailsapp/wails/v2/internal/frontend"
|
|
|
|
func (f *Frontend) OpenFileDialog(dialogOptions frontend.OpenDialogOptions) (string, error) {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (f *Frontend) OpenMultipleFilesDialog(dialogOptions frontend.OpenDialogOptions) ([]string, error) {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (f *Frontend) OpenDirectoryDialog(dialogOptions frontend.OpenDialogOptions) (string, error) {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (f *Frontend) SaveFileDialog(dialogOptions frontend.SaveDialogOptions) (string, error) {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (f *Frontend) MessageDialog(dialogOptions frontend.MessageDialogOptions) (string, error) {
|
|
panic("implement me")
|
|
}
|