Fixes not reloading loaded document from an file system modified event after the first reload (SpartanJ/ecode#196).

Improved project search UI.
This commit is contained in:
Martín Lucas Golini
2024-03-14 22:57:44 -03:00
parent b3d0eea6fc
commit ff29ed3c71
11 changed files with 168 additions and 79 deletions

View File

@@ -50,6 +50,7 @@ class EE_API Event {
OnDocumentLoaded,
OnDocumentChanged,
OnDocumentClosed,
OnDocumentReloaded,
OnDocumentSyntaxDefinitionChange,
OnDocumentDirtyOnFileSysten,
OnFontStyleChanged,

View File

@@ -251,6 +251,14 @@ class EE_API UIWidget : public UINode {
void setTabStop();
void unsetTabStop();
bool isTabFocusable() const;
void setTabFocusable();
void unsetTabFocusable();
UIWidget* getPrevTabWidget() const;
UIWidget* getNextTabWidget() const;