mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
29 lines
927 B
C#
29 lines
927 B
C#
using System;
|
|
using Robust.Client.Graphics;
|
|
using Robust.Client.UserInterface;
|
|
|
|
namespace Robust.Client.WebView
|
|
{
|
|
/// <summary>
|
|
/// Internal swappable implementation of <see cref="WebViewControl"/>.
|
|
/// </summary>
|
|
internal interface IWebViewControlImpl : IWebViewControl
|
|
{
|
|
public bool IsOpen { get; }
|
|
|
|
void StartBrowser();
|
|
void CloseBrowser();
|
|
void MouseMove(GUIMouseMoveEventArgs args);
|
|
void MouseExited();
|
|
void MouseWheel(GUIMouseWheelEventArgs args);
|
|
bool RawKeyEvent(in GuiRawKeyEvent guiRawEvent);
|
|
void TextEntered(GUITextEnteredEventArgs args);
|
|
void Resized();
|
|
void Draw(DrawingHandleScreen handle);
|
|
void AddBeforeBrowseHandler(Action<IBeforeBrowseContext> handler);
|
|
void RemoveBeforeBrowseHandler(Action<IBeforeBrowseContext> handler);
|
|
void FocusEntered();
|
|
void FocusExited();
|
|
}
|
|
}
|