◆ QPropertyAnimation() [1/2]
◆ QPropertyAnimation() [2/2]
QPropertyAnimation |
( |
long |
h | ) |
|
◆ create() [1/2]
在文件 QPropertyAnimation.x 第 52 行定义.
52 {
53 nativehandle = QtXnl.createQObject(QType.qtPropertyAnimation,
this, 0);
54 if (nativehandle == 0){
55 return false;
56 }
57 return true;
58 }
◆ create() [2/2]
bool create |
( |
@NotNilptr QWidget |
parent | ) |
|
在文件 QPropertyAnimation.x 第 60 行定义.
60 {
61 nativehandle = QtXnl.createQObject(QType.qtPropertyAnimation,
this, parent.nativehandle);
62 if (nativehandle == 0){
63 return false;
64 }
65 return true;
66 }
◆ currentLoop()
在文件 QPropertyAnimation.x 第 174 行定义.
174 {
175 return QtXnl.widget_get_int_value(nativehandle, Constant.QA_GETCURRENTLOOP);
176 }
◆ currentLoopChanged()
void currentLoopChanged |
( |
int |
currentLoop | ) |
|
在文件 QPropertyAnimation.x 第 196 行定义.
196 {
197 if (listener != nilptr){
199 }
200 }
void currentLoopChanged(QPropertyAnimation qa, int currentLoop)
onAnimationListener listener
◆ directionChanged()
void directionChanged |
( |
int |
v | ) |
|
在文件 QPropertyAnimation.x 第 202 行定义.
202 {
203 if (listener != nilptr){
205 }
206 }
void directionChanged(QPropertyAnimation qa, Direction)
◆ duration()
在文件 QPropertyAnimation.x 第 86 行定义.
86 {
87 return QtXnl.widget_get_int_value(nativehandle, Constant.QA_GETDURATION);
88 }
◆ easingCurve()
QEasingCurveType easingCurve |
( |
| ) |
|
在文件 QPropertyAnimation.x 第 98 行定义.
98 {
99 return (QEasingCurveType)QtXnl.widget_get_int_value(nativehandle, Constant.QA_GETEASINGCURVE);
100 }
◆ endValue()
在文件 QPropertyAnimation.x 第 124 行定义.
124 {
125 return QtXnl.widget_get_object(nativehandle, Constant.QA_GETENDVALUE);
126 }
◆ finished()
在文件 QPropertyAnimation.x 第 190 行定义.
190 {
191 if (listener != nilptr){
193 }
194 }
void finished(QPropertyAnimation qa)
◆ loopCount()
在文件 QPropertyAnimation.x 第 166 行定义.
166 {
167 return QtXnl.widget_get_int_value(nativehandle, Constant.QA_GETLOOPCOUNT);
168 }
◆ pause()
◆ propertyName()
在文件 QPropertyAnimation.x 第 76 行定义.
76 {
77 String __txt = (
String)QtXnl.core_getString(nativehandle, Constant.QA_PROPERTYNAME);
78 __nilptr_safe(__txt);
79 return __txt;
80 }
◆ resume()
◆ setCurrentTime()
void setCurrentTime |
( |
int |
msecs | ) |
|
在文件 QPropertyAnimation.x 第 162 行定义.
162 {
163 QtXnl.widget_set_vint_value(nativehandle, Constant.QA_SETCURRENTTIME, msecs);
164 }
◆ setDuration()
void setDuration |
( |
int |
msecs | ) |
|
在文件 QPropertyAnimation.x 第 90 行定义.
90 {
91 QtXnl.widget_set_vint_value(nativehandle, Constant.QA_SETDURATION, msecs);
92 }
◆ setEasingCurve()
void setEasingCurve |
( |
QEasingCurveType |
easing | ) |
|
在文件 QPropertyAnimation.x 第 102 行定义.
102 {
103 QtXnl.widget_set_vint_value(nativehandle, Constant.QA_SETEASINGCURVE, easing);
104 }
◆ setEndValue()
void setEndValue |
( |
Object |
value | ) |
|
在文件 QPropertyAnimation.x 第 128 行定义.
128 {
130 QtXnl.widget_set_object_value(nativehandle, Constant.QA_SETENDVALUE, QVariant.toArray((QPoint)value));
131 }else
133 QtXnl.widget_set_object_value(nativehandle, Constant.QA_SETENDVALUE, QVariant.toArray((QRect)value));
134 }else
136 QtXnl.widget_set_object_value(nativehandle, Constant.QA_SETENDVALUE, QVariant.toArray((QSize)value));
137 }else{
138 QtXnl.widget_set_object_value(nativehandle, Constant.QA_SETENDVALUE, value);
139 }
140 }
引用了 Object.instanceOf().
◆ setLoopCount()
void setLoopCount |
( |
int |
loopCount | ) |
|
在文件 QPropertyAnimation.x 第 170 行定义.
170 {
171 QtXnl.widget_set_vint_value(nativehandle, Constant.QA_SETLOOPCOUNT, loopCount);
172 }
◆ setOnAnimationListener()
void setOnAnimationListener |
( |
onAnimationListener |
l | ) |
|
◆ setPaused()
void setPaused |
( |
bool |
bm | ) |
|
在文件 QPropertyAnimation.x 第 154 行定义.
154 {
155 QtXnl.widget_set_bool_value(nativehandle, Constant.QA_SETPAUSED, bm);
156 }
◆ setPropertyName()
void setPropertyName |
( |
String |
propertyName | ) |
|
在文件 QPropertyAnimation.x 第 82 行定义.
82 {
83 QtXnl.widget_slot_string(nativehandle, Constant.QA_SETPROPERTYNAME, propertyName);
84 }
◆ setStartValue()
void setStartValue |
( |
Object |
value | ) |
|
在文件 QPropertyAnimation.x 第 110 行定义.
110 {
112 QtXnl.widget_set_object_value(nativehandle, Constant.QA_SETSTARTVALUE, QVariant.toArray((QPoint)value));
113 }else
115 QtXnl.widget_set_object_value(nativehandle, Constant.QA_SETSTARTVALUE, QVariant.toArray((QRect)value));
116 }else
118 QtXnl.widget_set_object_value(nativehandle, Constant.QA_SETSTARTVALUE, QVariant.toArray((QSize)value));
119 }else{
120 QtXnl.widget_set_object_value(nativehandle, Constant.QA_SETSTARTVALUE, value);
121 }
122 }
引用了 Object.instanceOf().
◆ setTargetObject()
void setTargetObject |
( |
QObject |
target | ) |
|
在文件 QPropertyAnimation.x 第 72 行定义.
72 {
73 QtXnl.widget_set_native_value(nativehandle, Constant.QA_SETTARGETOBJECT, target.nativehandle);
74 }
◆ start()
◆ startValue()
在文件 QPropertyAnimation.x 第 106 行定义.
106 {
107 return QtXnl.widget_get_object(nativehandle, Constant.QA_GETSTARTVALUE);
108 }
◆ stateChanged()
void stateChanged |
( |
int |
newState, |
|
|
int |
oldState |
|
) |
| |
在文件 QPropertyAnimation.x 第 184 行定义.
184 {
185 if (listener != nilptr){
187 }
188 }
void stateChanged(QPropertyAnimation qa, State newState, State oldState)
◆ stop()
◆ targetObject()
在文件 QPropertyAnimation.x 第 68 行定义.
68 {
69 return (QObject)QtXnl.widget_get_object(nativehandle, Constant.QA_GETTARGETOBJECT);
70 }
◆ totalDuration()
在文件 QPropertyAnimation.x 第 94 行定义.
94 {
95 return QtXnl.widget_get_int_value(nativehandle, Constant.QA_GETTOTALDURATION);
96 }
◆ valueChanged()
void valueChanged |
( |
Object |
value | ) |
|
在文件 QPropertyAnimation.x 第 178 行定义.
178 {
179 if (listener != nilptr){
181 }
182 }
void valueChanged(QPropertyAnimation qa, Object value)
◆ listener
onAnimationListener listener |
|
package |