mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-05-30 18:16:31 +03:00
Raise and restore window when loaded file in single-instance.
Added select-single-line command.
This commit is contained in:
@@ -327,6 +327,8 @@ class EE_API TextDocument {
|
||||
|
||||
void selectLine();
|
||||
|
||||
void selectSingleLine();
|
||||
|
||||
void selectToNextWord();
|
||||
|
||||
void selectToPreviousLine();
|
||||
|
||||
@@ -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 );
|
||||
|
||||
|
||||
Reference in New Issue
Block a user