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 MCNAPI_C bool _fitToScreen();
31
32 MCNAPI_C bool readFromWindow(::HWND__* window);
33 // NOLINTEND
34
35public:
36 // constructor thunks
37 // NOLINTBEGIN
38 MCNAPI_C void* $ctor(
39 ::tagRECT const& defaultRect,
40 ::std::unique_ptr<::WindowStateStorage> storage,
41 ::std::unique_ptr<::WindowStatePlatform> platform
42 );
43 // NOLINTEND
44};
Definition WindowStatePlatform.h:5
Definition WindowStateStorage.h:5
Definition Alias.h:14
Definition window.h:5