From def5c50960eea4c112647f88361a3ae7155901a8 Mon Sep 17 00:00:00 2001 From: egor-tensin Date: Tue, 4 Jul 2023 00:48:00 +0000 Subject: =?UTF-8?q?Deploying=20to=20gh-pages=20from=20@=20egor-tensin/wina?= =?UTF-8?q?pi-common@0c196cbe8b4927c78c02b2c7312fc69a507db845=20?= =?UTF-8?q?=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- window__style_8hpp_source.html | 105 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 105 insertions(+) create mode 100644 window__style_8hpp_source.html (limited to 'window__style_8hpp_source.html') diff --git a/window__style_8hpp_source.html b/window__style_8hpp_source.html new file mode 100644 index 0000000..348ef88 --- /dev/null +++ b/window__style_8hpp_source.html @@ -0,0 +1,105 @@ + + + + + + + +winapi_common: include/winapi/window_style.hpp Source File + + + + + + + + + +
+
+ + + + + + +
+
winapi_common +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
window_style.hpp
+
+
+
1 // Copyright (c) 2020 Egor Tensin <Egor.Tensin@gmail.com>
+
2 // This file is part of the "winapi-common" project.
+
3 // For details, see https://github.com/egor-tensin/winapi-common.
+
4 // Distributed under the MIT License.
+
5 
+
6 #pragma once
+
7 
+
8 namespace winapi {
+
9 
+
10 enum class WindowStyle {
+
11  // https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-showwindow
+
12  ForceMinimize = 11,
+
13  Hide = 0,
+
14  Maximize = 3,
+
15  Minimize = 6,
+
16  Restore = 9,
+
17  Show = 5,
+
18  ShowDefault = 10,
+
19  ShowMaximized = 3,
+
20  ShowMinimized = 2,
+
21  ShowMinNoActive = 7,
+
22  ShowNA = 8,
+
23  ShowNoActivate = 4,
+
24  ShowNormal = 1,
+
25 };
+
26 
+
27 } // namespace winapi
+
+ + + + -- cgit v1.2.3