◆ QCalendarWidget() [1/2]
◆ QCalendarWidget() [2/2]
QCalendarWidget |
( |
long |
handle | ) |
|
◆ create() [1/2]
重载 QWidget .
在文件 QCalendarWidget.x 第 12 行定义.
12 {
13 nativehandle = QtXnl.createQObject(QType.qtCalendarWidget,
this, 0);
14 if (nativehandle == 0){
15 return false;
16 }
17 return true;
18 }
◆ create() [2/2]
bool create |
( |
@NotNilptr QWidget |
parent | ) |
|
|
override |
重载 QWidget .
在文件 QCalendarWidget.x 第 20 行定义.
20 {
21 nativehandle = QtXnl.createQObject(QType.qtCalendarWidget,
this, parent.nativehandle);
22 if (nativehandle == 0){
23 return false;
24 }
25 return true;
26 }
◆ onActivated()
void onActivated |
( |
int |
y, |
|
|
int |
m, |
|
|
int |
d |
|
) |
| |
◆ onClicked()
void onClicked |
( |
int |
y, |
|
|
int |
m, |
|
|
int |
d |
|
) |
| |
◆ onCurrentPageChanged()
void onCurrentPageChanged |
( |
int |
y, |
|
|
int |
m |
|
) |
| |
◆ onSelectionChanged()
void onSelectionChanged |
( |
| ) |
|
|
override |
◆ setCurrentPage()
void setCurrentPage |
( |
int |
year, |
|
|
int |
month |
|
) |
| |
在文件 QCalendarWidget.x 第 37 行定义.
37 {
38 QtXnl.widget_set_v3int_value(nativehandle, Constant.QCW_SETCURRENTPAGE, year, month, 0);
39 }
◆ setDateRange()
void setDateRange |
( |
QDate |
min, |
|
|
QDate |
max |
|
) |
| |
在文件 QCalendarWidget.x 第 33 行定义.
33 {
34 QtXnl.widget_set_v3int_value(nativehandle, Constant.QCW_SETDATERANGE, (min.year << 16) | max.year, (min.mon << 16) | max.mon, (min.day << 16) | max.day);
35 }
◆ setGridVisible()
void setGridVisible |
( |
bool |
show | ) |
|
在文件 QCalendarWidget.x 第 41 行定义.
41 {
42 QtXnl.widget_set_bool_value(nativehandle, Constant.QCW_SETGRIDVISIBLE, show);
43 }
◆ setNavigationBarVisible()
void setNavigationBarVisible |
( |
bool |
visible | ) |
|
在文件 QCalendarWidget.x 第 45 行定义.
45 {
46 QtXnl.widget_set_bool_value(nativehandle, Constant.QCW_SETNAVIGATIONBARVISIBLE, visible);
47 }
◆ setSelectedDate()
void setSelectedDate |
( |
QDate |
date | ) |
|
在文件 QCalendarWidget.x 第 29 行定义.
29 {
30 QtXnl.widget_set_v3int_value(nativehandle, Constant.QCW_SETSELECTEDDATE, date.year, date.mon, date.day);
31 }
◆ showNextMonth()
在文件 QCalendarWidget.x 第 49 行定义.
49 {
50 QtXnl.widget_slot(nativehandle, Constant.QCW_SHOWNEXTMONTH);
51 }
◆ showNextYear()
在文件 QCalendarWidget.x 第 57 行定义.
57 {
58 QtXnl.widget_slot(nativehandle, Constant.QCW_SHOWNEXTYEAR);
59 }
◆ showPreviousMonth()
void showPreviousMonth |
( |
| ) |
|
在文件 QCalendarWidget.x 第 53 行定义.
53 {
54 QtXnl.widget_slot(nativehandle, Constant.QCW_SHOWPREVIOUSMONTH);
55 }
◆ showPreviousYear()
void showPreviousYear |
( |
| ) |
|
在文件 QCalendarWidget.x 第 61 行定义.
61 {
62 QtXnl.widget_slot(nativehandle, Constant.QCW_SHOWPREVIOUSYEAR);
63 }
◆ showSelectedDate()
void showSelectedDate |
( |
| ) |
|
在文件 QCalendarWidget.x 第 65 行定义.
65 {
66 QtXnl.widget_slot(nativehandle, Constant.QCW_SHOWSELECTEDDATE);
67 }
◆ showToday()
在文件 QCalendarWidget.x 第 69 行定义.
69 {
70 QtXnl.widget_slot(nativehandle, Constant.QCW_SHOWTODAY);
71 }