LeviLamina
Loading...
Searching...
No Matches
WindowState.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
9// clang-format on
10
11class WindowState {
12public:
13 // member variables
14 // NOLINTBEGIN
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 WindowState& operator=(WindowState const&);
24 WindowState(WindowState const&);
25 WindowState();
26
27public:
28 // member functions
29 // NOLINTBEGIN
30#ifdef LL_PLAT_C
31 MCNAPI WindowState(
32 ::tagRECT const& defaultRect,
33 ::std::unique_ptr<::WindowStateStorage> storage,
34 ::std::unique_ptr<::WindowStatePlatform> platform
35 );
36
37 MCNAPI bool _fitToScreen();
38
39 MCNAPI ::tagRECT const& getRect() const;
40
41 MCNAPI int getShowCommand() const;
42
43 MCNAPI bool readFromWindow(::HWND__* window);
44
45 MCNAPI ~WindowState();
46#endif
47 // NOLINTEND
48
49public:
50 // constructor thunks
51 // NOLINTBEGIN
52#ifdef LL_PLAT_C
53 MCNAPI void* $ctor(
54 ::tagRECT const& defaultRect,
55 ::std::unique_ptr<::WindowStateStorage> storage,
56 ::std::unique_ptr<::WindowStatePlatform> platform
57 );
58#endif
59 // NOLINTEND
60
61public:
62 // destructor thunk
63 // NOLINTBEGIN
64#ifdef LL_PLAT_C
65 MCNAPI void $dtor();
66#endif
67 // NOLINTEND
68};
Definition WindowStatePlatform.h:5
Definition WindowStateStorage.h:5
Definition Alias.h:14
Definition window.h:5