Support minimize and maximize state.

Fixes #6893.  Minimize is mostly useful for tooling, and maximize is a
more user-friendly way of specifying a fullscreen shortcut.
This commit is contained in:
Unknown W. Brackets 2015-12-25 19:18:32 -08:00
parent d5219ebafc
commit 6e48f907dd
3 changed files with 15 additions and 0 deletions

View file

@ -360,6 +360,10 @@ namespace MainWindow
}
}
void Minimize() {
ShowWindow(hwndMain, SW_MINIMIZE);
}
RECT DetermineWindowRectangle() {
RECT rc;