Added IHostApplicationWindow.GetCurrentEditor() function

This commit is contained in:
Michael Becker 2014-06-30 22:30:48 -04:00
parent 5c9cd4b80f
commit 414dd79f69
2 changed files with 7 additions and 0 deletions

View File

@ -15,6 +15,11 @@ namespace UniversalEditor.Engines.GTK
InitializeMenuBar();
}
public IEditorImplementation GetCurrentEditor()
{
return null;
}
protected override bool OnFocused (DirectionType direction)
{
Engine.CurrentEngine.LastWindow = this;

View File

@ -29,6 +29,8 @@ namespace UniversalEditor.UserInterface
void CloseFile();
void CloseWindow();
IEditorImplementation GetCurrentEditor();
bool FullScreen { get; set; }