class WebView::OpenFileDialog

Overview

OpenFileDialog is used to select a file in file system. When it's done, it returns the path of selected file.

Included Modules

Defined in:

components/web_view/open_file_dialog.cr

Constructors

Instance methods inherited from module WebView::Dialog

add_file_filter(name : String, pattern : String)
add_file_filter(filter : DialogFileFilter)
add_file_filter
, show show

Constructor Detail

def self.new(title : String = "Open File", webview : WebView? = nil, open_button_title : String = "Open", cancel_button_title : String = "Cancel") #

Initializes a new OpenFileDialog, if webview is not nil, the dialog will block webview until it's done.


[View source]