show_window.hpp 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. // show_window.hpp --------------------------------------------------------------//
  2. // Copyright 2016 Klemens D. Morgenstern
  3. // Distributed under the Boost Software License, Version 1.0.
  4. // See http://www.boost.org/LICENSE_1_0.txt
  5. #ifndef BOOST_DETAIL_WINAPI_SHOW_WINDOW_HPP_
  6. #define BOOST_DETAIL_WINAPI_SHOW_WINDOW_HPP_
  7. #include <boost/detail/winapi/basic_types.hpp>
  8. #include <boost/predef/platform.h>
  9. #ifdef BOOST_HAS_PRAGMA_ONCE
  10. #pragma once
  11. #endif
  12. #if BOOST_PLAT_WINDOWS_DESKTOP
  13. #if !defined( BOOST_USE_WINDOWS_H )
  14. extern "C" {
  15. BOOST_DETAIL_WINAPI_DECLARE_HANDLE(HWND);
  16. BOOST_SYMBOL_IMPORT boost::detail::winapi::BOOL_ WINAPI ShowWindow(
  17. HWND hWnd,
  18. int nCmdShow);
  19. BOOST_SYMBOL_IMPORT boost::detail::winapi::BOOL_ WINAPI ShowWindowAsync(
  20. HWND hWnd,
  21. int nCmdShow);
  22. }
  23. #endif // BOOST_USE_WINDOWS_H
  24. namespace boost {
  25. namespace detail {
  26. namespace winapi {
  27. typedef ::HWND HWND_;
  28. using ::ShowWindow;
  29. using ::ShowWindowAsync;
  30. #if defined( BOOST_USE_WINDOWS_H ) && !defined( NOSHOWWINDOW )
  31. const DWORD_ SW_HIDE_ = SW_HIDE;
  32. const DWORD_ SW_SHOWNORMAL_ = SW_SHOWNORMAL;
  33. const DWORD_ SW_NORMAL_ = SW_NORMAL;
  34. const DWORD_ SW_SHOWMINIMIZED_ = SW_SHOWMINIMIZED;
  35. const DWORD_ SW_SHOWMAXIMIZED_ = SW_SHOWMAXIMIZED;
  36. const DWORD_ SW_MAXIMIZE_ = SW_MAXIMIZE;
  37. const DWORD_ SW_SHOWNOACTIVATE_ = SW_SHOWNOACTIVATE;
  38. const DWORD_ SW_SHOW_ = SW_SHOW;
  39. const DWORD_ SW_MINIMIZE_ = SW_MINIMIZE;
  40. const DWORD_ SW_SHOWMINNOACTIVE_ = SW_SHOWMINNOACTIVE;
  41. const DWORD_ SW_SHOWNA_ = SW_SHOWNA;
  42. const DWORD_ SW_RESTORE_ = SW_RESTORE;
  43. const DWORD_ SW_SHOWDEFAULT_ = SW_SHOWDEFAULT;
  44. const DWORD_ SW_FORCEMINIMIZE_ = SW_FORCEMINIMIZE;
  45. const DWORD_ SW_MAX_ = SW_MAX;
  46. const DWORD_ HIDE_WINDOW_ = HIDE_WINDOW;
  47. const DWORD_ SHOW_OPENWINDOW_ = SHOW_OPENWINDOW;
  48. const DWORD_ SHOW_ICONWINDOW_ = SHOW_ICONWINDOW;
  49. const DWORD_ SHOW_FULLSCREEN_ = SHOW_FULLSCREEN;
  50. const DWORD_ SHOW_OPENNOACTIVATE_ = SHOW_OPENNOACTIVATE;
  51. const DWORD_ SW_PARENTCLOSING_ = SW_PARENTCLOSING;
  52. const DWORD_ SW_OTHERZOOM_ = SW_OTHERZOOM;
  53. const DWORD_ SW_PARENTOPENING_ = SW_PARENTOPENING;
  54. const DWORD_ SW_OTHERUNZOOM_ = SW_OTHERUNZOOM;
  55. #else
  56. const DWORD_ SW_HIDE_ = 0;
  57. const DWORD_ SW_SHOWNORMAL_ = 1;
  58. const DWORD_ SW_NORMAL_ = 1;
  59. const DWORD_ SW_SHOWMINIMIZED_ = 2;
  60. const DWORD_ SW_SHOWMAXIMIZED_ = 3;
  61. const DWORD_ SW_MAXIMIZE_ = 3;
  62. const DWORD_ SW_SHOWNOACTIVATE_ = 4;
  63. const DWORD_ SW_SHOW_ = 5;
  64. const DWORD_ SW_MINIMIZE_ = 6;
  65. const DWORD_ SW_SHOWMINNOACTIVE_ = 7;
  66. const DWORD_ SW_SHOWNA_ = 8;
  67. const DWORD_ SW_RESTORE_ = 9;
  68. const DWORD_ SW_SHOWDEFAULT_ = 10;
  69. const DWORD_ SW_FORCEMINIMIZE_ = 11;
  70. const DWORD_ SW_MAX_ = 11;
  71. const DWORD_ HIDE_WINDOW_ = 0;
  72. const DWORD_ SHOW_OPENWINDOW_ = 1;
  73. const DWORD_ SHOW_ICONWINDOW_ = 2;
  74. const DWORD_ SHOW_FULLSCREEN_ = 3;
  75. const DWORD_ SHOW_OPENNOACTIVATE_ = 4;
  76. const DWORD_ SW_PARENTCLOSING_ = 1;
  77. const DWORD_ SW_OTHERZOOM_ = 2;
  78. const DWORD_ SW_PARENTOPENING_ = 3;
  79. const DWORD_ SW_OTHERUNZOOM_ = 4;
  80. #endif
  81. }
  82. }
  83. }
  84. #endif // BOOST_PLAT_WINDOWS_DESKTOP
  85. #endif // BOOST_DETAIL_WINAPI_SHOW_WINDOW_HPP_