Raise and restore window when loaded file in single-instance.

Added select-single-line command.
This commit is contained in:
Martín Lucas Golini
2024-09-29 12:19:49 -03:00
parent 12e393b96a
commit cf3ca0d82c
7 changed files with 41 additions and 1 deletions

View File

@@ -327,6 +327,8 @@ class EE_API TextDocument {
void selectLine();
void selectSingleLine();
void selectToNextWord();
void selectToPreviousLine();

View File

@@ -193,12 +193,18 @@ class EE_API Window {
/** @return true if the window is maximized */
virtual bool isMaximized();
/** @return true if the window is minimized */
virtual bool isMinimized();
/** This will attempt to hide the window */
virtual void hide();
/** This will attempt to raise the window */
virtual void raise();
/** This will attempt to restore the window */
virtual void restore();
/** Request a window to demand attention from the user. */
virtual void flash( WindowFlashOperation op );