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 bool readFromWindow(::HWND__* window);
40#endif
41 // NOLINTEND
42
43public:
44 // constructor thunks
45 // NOLINTBEGIN
46#ifdef LL_PLAT_C
47 MCNAPI void* $ctor(
48 ::tagRECT const& defaultRect,
49 ::std::unique_ptr<::WindowStateStorage> storage,
50 ::std::unique_ptr<::WindowStatePlatform> platform
51 );
52#endif
53 // NOLINTEND
54};
Definition WindowStatePlatform.h:5
Definition WindowStateStorage.h:5
Definition Alias.h:14
Definition window.h:5