◆ QAbstractSlider() [1/2]
◆ QAbstractSlider() [2/2]
QAbstractSlider |
( |
long |
handle | ) |
|
◆ getSliderEventListener()
SliderEventListener getSliderEventListener |
( |
| ) |
|
◆ hasTracking()
在文件 QAbstractSlider.x 第 87 行定义.
87 {
88 return QtXnl.widget_get_bool_value(nativehandle, Constant.SLD_GETTRACKING);
89 }
◆ invertedAppearance()
bool invertedAppearance |
( |
| ) |
|
在文件 QAbstractSlider.x 第 111 行定义.
111 {
112 return QtXnl.widget_get_bool_value(nativehandle, Constant.SLD_GETINVERTEDAPPEARANCE);
113 }
◆ invertedControls()
bool invertedControls |
( |
| ) |
|
在文件 QAbstractSlider.x 第 119 行定义.
119 {
120 return QtXnl.widget_get_bool_value(nativehandle, Constant.SLD_GETINVERTEDCONTROLS);
121 }
◆ isSliderDown()
在文件 QAbstractSlider.x 第 95 行定义.
95 {
96 return QtXnl.widget_get_bool_value(nativehandle, Constant.SLD_GETSLIDDOWN);
97 }
◆ maximum()
在文件 QAbstractSlider.x 第 63 行定义.
63 {
64 return QtXnl.widget_get_int_value(nativehandle, Constant.SLD_GETMAX);
65 }
◆ minimum()
在文件 QAbstractSlider.x 第 55 行定义.
55 {
56 return QtXnl.widget_get_int_value(nativehandle, Constant.SLD_GETMIN);
57 }
◆ onActionTriggered()
void onActionTriggered |
( |
int |
action | ) |
|
在文件 QAbstractSlider.x 第 187 行定义.
187 {
188 if (listener != nilptr){
190 }
191 }
void onActionTriggered(QAbstractSlider, int action)
◆ onMoved()
void onMoved |
( |
int |
position | ) |
|
在文件 QAbstractSlider.x 第 169 行定义.
169 {
170 if (listener != nilptr){
172 }
173 }
void onMoved(QAbstractSlider, int position)
◆ onPressed()
在文件 QAbstractSlider.x 第 163 行定义.
163 {
164 if (listener != nilptr){
166 }
167 }
void onPressed(QAbstractSlider)
◆ onRangeChanged()
void onRangeChanged |
( |
int |
min, |
|
|
int |
max |
|
) |
| |
在文件 QAbstractSlider.x 第 181 行定义.
181 {
182 if (listener != nilptr){
184 }
185 }
void onRangeChanged(QAbstractSlider, int min, int max)
◆ onReleased()
在文件 QAbstractSlider.x 第 175 行定义.
175 {
176 if (listener != nilptr){
178 }
179 }
void onReleased(QAbstractSlider)
◆ onValueChanged()
void onValueChanged |
( |
int |
value | ) |
|
在文件 QAbstractSlider.x 第 157 行定义.
157 {
158 if (listener != nilptr){
160 }
161 }
void onValueChanged(QAbstractSlider, int value)
◆ pageStep()
在文件 QAbstractSlider.x 第 79 行定义.
79 {
80 return QtXnl.widget_get_int_value(nativehandle, Constant.SLD_GETPAGESTEP);
81 }
◆ setInvertedAppearance()
void setInvertedAppearance |
( |
bool |
enable | ) |
|
在文件 QAbstractSlider.x 第 107 行定义.
107 {
108 QtXnl.widget_set_bool_value(nativehandle, Constant.SLD_SETINVERTEDAPPEARANCE, enable);
109 }
◆ setInvertedControls()
void setInvertedControls |
( |
bool |
enable | ) |
|
在文件 QAbstractSlider.x 第 115 行定义.
115 {
116 QtXnl.widget_set_bool_value(nativehandle, Constant.SLD_SETINVERTEDCONTROLS, enable);
117 }
◆ setMaximum()
在文件 QAbstractSlider.x 第 59 行定义.
59 {
60 QtXnl.widget_set_vint_value(nativehandle, Constant.SLD_SETMAX, v);
61 }
◆ setMinimum()
在文件 QAbstractSlider.x 第 51 行定义.
51 {
52 QtXnl.widget_set_vint_value(nativehandle, Constant.SLD_SETMIN, v);
53 }
◆ setOrientation()
void setOrientation |
( |
int |
orientation | ) |
|
在文件 QAbstractSlider.x 第 147 行定义.
147 {
148 QtXnl.widget_set_vint_value(nativehandle, Constant.SLD_SETORIENTATION, orientation);
149 }
◆ setPageStep()
void setPageStep |
( |
int |
v | ) |
|
在文件 QAbstractSlider.x 第 75 行定义.
75 {
76 QtXnl.widget_set_vint_value(nativehandle, Constant.SLD_SETPAGESTEP, v);
77 }
◆ setRange()
void setRange |
( |
int |
min, |
|
|
int |
max |
|
) |
| |
在文件 QAbstractSlider.x 第 151 行定义.
151 {
152 QtXnl.widget_set_v2int_value(nativehandle,Constant. SLD_SETRANGE, min, max);
153 }
◆ setSingleStep()
void setSingleStep |
( |
int |
v | ) |
|
在文件 QAbstractSlider.x 第 67 行定义.
67 {
68 QtXnl.widget_set_vint_value(nativehandle, Constant.SLD_SETSINGLESTEP, v);
69 }
◆ setSliderDown()
void setSliderDown |
( |
bool |
enable | ) |
|
在文件 QAbstractSlider.x 第 91 行定义.
91 {
92 QtXnl.widget_set_bool_value(nativehandle, Constant.SLD_SETSLIDDOWN, enable);
93 }
◆ setSliderEventListener()
void setSliderEventListener |
( |
SliderEventListener |
l | ) |
|
◆ setSliderPosition()
void setSliderPosition |
( |
int |
v | ) |
|
在文件 QAbstractSlider.x 第 99 行定义.
99 {
100 QtXnl.widget_set_vint_value(nativehandle, Constant.SLD_SETSLIDPOS, v);
101 }
◆ setTracking()
void setTracking |
( |
bool |
enable | ) |
|
在文件 QAbstractSlider.x 第 83 行定义.
83 {
84 QtXnl.widget_set_bool_value(nativehandle, Constant.SLD_SETTRACKING, enable);
85 }
◆ setValue()
在文件 QAbstractSlider.x 第 143 行定义.
143 {
144 QtXnl.widget_set_vint_value(nativehandle,Constant. SLD_SETVALUE, v);
145 }
◆ singleStep()
在文件 QAbstractSlider.x 第 71 行定义.
71 {
72 return QtXnl.widget_get_int_value(nativehandle, Constant.SLD_GETSINGLESTEP);
73 }
◆ sliderPosition()
在文件 QAbstractSlider.x 第 103 行定义.
103 {
104 return QtXnl.widget_get_int_value(nativehandle, Constant.SLD_GETSLIDPOS);
105 }
◆ triggerAction()
void triggerAction |
( |
SliderAction |
action | ) |
|
在文件 QAbstractSlider.x 第 138 行定义.
138 {
139 QtXnl.widget_set_vint_value(nativehandle, Constant.SLD_TRIGGERACTION, action);
140 }
◆ value()
在文件 QAbstractSlider.x 第 134 行定义.
134 {
135 return QtXnl.widget_get_int_value(nativehandle, Constant.SLD_GETVALUE);
136 }
◆ listener
SliderEventListener listener = nilptr |
|
package |