LeviLamina
Loading...
Searching...
No Matches
TouchGlyphButtonBinding.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/input/ButtonColors.h"
7
9public:
10 // member variables
11 // NOLINTBEGIN
12 ::ll::TypedStorage<8, 32, ::std::string> buttonName;
13 ::ll::TypedStorage<4, 4, uint> areaBindingName;
14 ::ll::TypedStorage<4, 4, uint> conditionBindingName;
15 ::ll::TypedStorage<4, 4, uint> opacityBindingName;
16 ::ll::TypedStorage<4, 32, ::ButtonColors> buttonColors;
17 ::ll::TypedStorage<4, 4, int> imageU;
18 ::ll::TypedStorage<4, 4, int> imageV;
19 ::ll::TypedStorage<4, 4, int> uvWidth;
20 ::ll::TypedStorage<4, 4, int> uvHeight;
21 ::ll::TypedStorage<4, 4, float> innerPaddingX;
22 ::ll::TypedStorage<4, 4, float> innerPaddingY;
23 ::ll::TypedStorage<1, 1, bool> passThrough;
24 ::ll::TypedStorage<4, 4, int> touchStateRequirement;
25 ::ll::TypedStorage<4, 4, float> glyphScale;
26 ::ll::TypedStorage<1, 1, bool> promiscuous;
27 ::ll::TypedStorage<1, 1, bool> extendButtonPressOutsideUntilReleased;
28 ::ll::TypedStorage<8, 32, ::std::string> iconPath;
29 ::ll::TypedStorage<8, 32, ::std::string> pressedIconPath;
30 // NOLINTEND
31
32public:
33 // prevent constructor by default
34 TouchGlyphButtonBinding();
35
36public:
37 // member functions
38 // NOLINTBEGIN
39 MCAPI TouchGlyphButtonBinding(::TouchGlyphButtonBinding const&);
40
41 MCAPI TouchGlyphButtonBinding(
42 ::std::string const& aButtonName,
43 uint aAreaBindingName,
44 uint aConditionBindingName,
45 uint aOpacityBindingName,
46 ::std::string const& aIconPath,
47 ::std::string const& aPressedIconPath,
48 ::ButtonColors const& aButtonColors,
49 int aUvWidth,
50 int aUvHeight,
51 bool aPassThrough,
52 int aTouchStateRequirement,
53 float glyphScale,
54 bool aPromiscuous,
55 bool aExtendButtonPressOutsideUntilReleased,
56 float innerPaddingX,
57 float innerPaddingY
58 );
59
60 MCAPI ::TouchGlyphButtonBinding& operator=(::TouchGlyphButtonBinding const&);
61
62 MCAPI ~TouchGlyphButtonBinding();
63 // NOLINTEND
64
65public:
66 // constructor thunks
67 // NOLINTBEGIN
68 MCAPI void* $ctor(::TouchGlyphButtonBinding const&);
69
70 MCAPI void* $ctor(
71 ::std::string const& aButtonName,
72 uint aAreaBindingName,
73 uint aConditionBindingName,
74 uint aOpacityBindingName,
75 ::std::string const& aIconPath,
76 ::std::string const& aPressedIconPath,
77 ::ButtonColors const& aButtonColors,
78 int aUvWidth,
79 int aUvHeight,
80 bool aPassThrough,
81 int aTouchStateRequirement,
82 float glyphScale,
83 bool aPromiscuous,
84 bool aExtendButtonPressOutsideUntilReleased,
85 float innerPaddingX,
86 float innerPaddingY
87 );
88 // NOLINTEND
89
90public:
91 // destructor thunk
92 // NOLINTBEGIN
93 MCAPI void $dtor();
94 // NOLINTEND
95};
Definition TouchGlyphButtonBinding.h:5