LeviLamina
Loading...
Searching...
No Matches
WindowStatePlatform.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // virtual functions
8 // NOLINTBEGIN
9 // vIndex: 0
10 virtual ~WindowStatePlatform() = default;
11
12 // vIndex: 1
13 virtual bool getWindowRect(::HWND__*, ::tagRECT&) const = 0;
14
15 // vIndex: 2
16 virtual bool getClientRect(::HWND__*, ::tagRECT&) const = 0;
17
18 // vIndex: 3
19 virtual bool getWindowShowCommand(::HWND__*, int&) const = 0;
20
21 // vIndex: 4
22 virtual bool getClosestMonitorRect(::tagRECT const&, ::tagRECT&) const = 0;
23
24 // vIndex: 5
25 virtual bool getAdjustedWindowRect(::tagRECT const&, ::tagRECT&) const = 0;
26 // NOLINTEND
27
28public:
29 // virtual function thunks
30 // NOLINTBEGIN
31
32 // NOLINTEND
33};
Definition WindowStatePlatform.h:5