1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-08-17 00:31:42 +02:00
Files
.github
.idea
bld
lib
TweetLib.Api
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

14 lines
386 B
C#

using System;
using TweetLib.Browser.CEF.Data;
namespace TweetLib.Browser.CEF.Interfaces {
public interface IBrowserWrapper<TFrame, TRequest> where TFrame : IDisposable {
string Url { get; }
TFrame MainFrame { get; }
void AddWordToDictionary(string word);
TRequest CreateGetRequest();
void RequestDownload(TFrame frame, TRequest request, DownloadCallbacks callbacks);
}
}