34 lines
1.3 KiB
C#
34 lines
1.3 KiB
C#
namespace Cef3
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Runtime.InteropServices;
|
|
using Cef3.Interop;
|
|
|
|
/// <summary>
|
|
/// Callback interface for CefBrowserHost::RunFileDialog. The methods of this
|
|
/// class will be called on the browser process UI thread.
|
|
/// </summary>
|
|
public abstract unsafe partial class CefRunFileDialogCallback
|
|
{
|
|
private void on_file_dialog_dismissed(cef_run_file_dialog_callback_t* self, int selected_accept_filter, cef_string_list* file_paths)
|
|
{
|
|
CheckSelf(self);
|
|
|
|
var mFilePaths = cef_string_list.ToArray(file_paths);
|
|
|
|
OnFileDialogDismissed(selected_accept_filter, mFilePaths);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Called asynchronously after the file dialog is dismissed.
|
|
/// |selected_accept_filter| is the 0-based index of the value selected from
|
|
/// the accept filters array passed to CefBrowserHost::RunFileDialog.
|
|
/// |file_paths| will be a single value or a list of values depending on the
|
|
/// dialog mode. If the selection was cancelled |file_paths| will be empty.
|
|
/// </summary>
|
|
protected abstract void OnFileDialogDismissed(int selectedAcceptFilter, string[] filePaths);
|
|
}
|
|
}
|