mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-08-18 13:31:41 +02:00
.github
.idea
bld
lib
TweetLib.Browser
TweetLib.Browser.CEF
Component
Data
Dialogs
Interfaces
IBrowserWrapper.cs
ICefAdapter.cs
IDragDataAdapter.cs
IErrorCodeAdapter.cs
IFileDialogCallbackAdapter.cs
IFileDialogOpener.cs
IFrameAdapter.cs
IJsDialogCallbackAdapter.cs
IJsDialogOpener.cs
IMenuModelAdapter.cs
IPopupHandler.cs
IRequestAdapter.cs
IResourceHandlerFactory.cs
IResponseAdapter.cs
Logic
Utils
Lib.cs
TweetLib.Browser.CEF.csproj
TweetLib.Communication
TweetLib.Core
TweetLib.Utils
TweetTest.Browser.CEF
TweetTest.Core
TweetTest.Utils
linux
resources
windows
.gitattributes
.gitignore
LICENSE.md
README.md
TweetDuck.sln
TweetDuck.sln.DotSettings
Version.cs
global.json
11 lines
420 B
C#
11 lines
420 B
C#
using System;
|
|
using TweetLib.Browser.CEF.Dialogs;
|
|
|
|
namespace TweetLib.Browser.CEF.Interfaces {
|
|
public interface IJsDialogOpener {
|
|
void Alert(MessageDialogType type, string title, string message, Action<bool> callback);
|
|
void Confirm(MessageDialogType type, string title, string message, Action<bool> callback);
|
|
void Prompt(MessageDialogType type, string title, string message, Action<bool, string> callback);
|
|
}
|
|
}
|