LeviLamina
Loading...
Searching...
No Matches
TouchTextButtonBinding.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> pointBindingName;
14 ::ll::TypedStorage<4, 4, uint> areaBindingName;
15 ::ll::TypedStorage<4, 4, uint> conditionBindingName;
16 ::ll::TypedStorage<4, 4, uint> opacityBindingName;
17 ::ll::TypedStorage<4, 4, uint> labelBindingName;
18 ::ll::TypedStorage<4, 32, ::ButtonColors> buttonColors;
19 ::ll::TypedStorage<4, 4, int> imageU;
20 ::ll::TypedStorage<4, 4, int> imageV;
21 ::ll::TypedStorage<4, 4, int> uvWidth;
22 ::ll::TypedStorage<4, 4, int> uvHeight;
23 ::ll::TypedStorage<1, 1, bool> passThrough;
24 ::ll::TypedStorage<4, 4, int> touchStateRequirement;
25 ::ll::TypedStorage<1, 1, bool> extendButtonPressOutsideUntilReleased;
26 ::ll::TypedStorage<8, 32, ::std::string> iconPath;
27 ::ll::TypedStorage<8, 32, ::std::string> pressedIconPath;
28 // NOLINTEND
29
30public:
31 // prevent constructor by default
32 TouchTextButtonBinding();
33
34public:
35 // member functions
36 // NOLINTBEGIN
37 MCAPI TouchTextButtonBinding(::TouchTextButtonBinding const&);
38
39 MCAPI TouchTextButtonBinding(
40 ::std::string const& aButtonName,
41 uint aPositionBindingName,
42 uint aAreaBindingName,
43 uint aConditionBindingName,
44 uint aOpacityBindingName,
45 uint aLabelBindingName,
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 bool aExtendButtonPressOutsideUntilReleased
54 );
55
56 MCAPI ::TouchTextButtonBinding& operator=(::TouchTextButtonBinding const&);
57
58 MCAPI ~TouchTextButtonBinding();
59 // NOLINTEND
60
61public:
62 // constructor thunks
63 // NOLINTBEGIN
64 MCAPI void* $ctor(::TouchTextButtonBinding const&);
65
66 MCAPI void* $ctor(
67 ::std::string const& aButtonName,
68 uint aPositionBindingName,
69 uint aAreaBindingName,
70 uint aConditionBindingName,
71 uint aOpacityBindingName,
72 uint aLabelBindingName,
73 ::std::string const& aIconPath,
74 ::std::string const& aPressedIconPath,
75 ::ButtonColors const& aButtonColors,
76 int aUvWidth,
77 int aUvHeight,
78 bool aPassThrough,
79 int aTouchStateRequirement,
80 bool aExtendButtonPressOutsideUntilReleased
81 );
82 // NOLINTEND
83
84public:
85 // destructor thunk
86 // NOLINTBEGIN
87 MCAPI void $dtor();
88 // NOLINTEND
89};
Definition TouchTextButtonBinding.h:5