Calendar.qml 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2016 The Qt Company Ltd.
  4. ** Contact: https://www.qt.io/licensing/
  5. **
  6. ** This file is part of the Qt Quick Controls module of the Qt Toolkit.
  7. **
  8. ** $QT_BEGIN_LICENSE:LGPL$
  9. ** Commercial License Usage
  10. ** Licensees holding valid commercial Qt licenses may use this file in
  11. ** accordance with the commercial license agreement provided with the
  12. ** Software or, alternatively, in accordance with the terms contained in
  13. ** a written agreement between you and The Qt Company. For licensing terms
  14. ** and conditions see https://www.qt.io/terms-conditions. For further
  15. ** information use the contact form at https://www.qt.io/contact-us.
  16. **
  17. ** GNU Lesser General Public License Usage
  18. ** Alternatively, this file may be used under the terms of the GNU Lesser
  19. ** General Public License version 3 as published by the Free Software
  20. ** Foundation and appearing in the file LICENSE.LGPL3 included in the
  21. ** packaging of this file. Please review the following information to
  22. ** ensure the GNU Lesser General Public License version 3 requirements
  23. ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
  24. **
  25. ** GNU General Public License Usage
  26. ** Alternatively, this file may be used under the terms of the GNU
  27. ** General Public License version 2.0 or (at your option) the GNU General
  28. ** Public license version 3 or any later version approved by the KDE Free
  29. ** Qt Foundation. The licenses are as published by the Free Software
  30. ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
  31. ** included in the packaging of this file. Please review the following
  32. ** information to ensure the GNU General Public License requirements will
  33. ** be met: https://www.gnu.org/licenses/gpl-2.0.html and
  34. ** https://www.gnu.org/licenses/gpl-3.0.html.
  35. **
  36. ** $QT_END_LICENSE$
  37. **
  38. ****************************************************************************/
  39. import QtQuick 2.2
  40. import QtQuick.Controls 1.2
  41. import QtQuick.Controls.Styles 1.1
  42. import QtQuick.Controls.Private 1.0
  43. /*!
  44. \qmltype Calendar
  45. \inqmlmodule QtQuick.Controls
  46. \since 5.3
  47. \ingroup controls
  48. \brief Provides a way to select dates from a calendar
  49. \image calendar.png
  50. Calendar allows selection of dates from a grid of days, similar to
  51. QCalendarWidget.
  52. The dates on the calendar can be selected with the mouse, or navigated
  53. with the keyboard.
  54. The selected date can be set through \l selectedDate.
  55. A minimum and maximum date can be set through \l minimumDate and
  56. \l maximumDate. The earliest minimum date that can be set is 1 January, 1
  57. AD. The latest maximum date that can be set is 25 October, 275759 AD.
  58. The selected date is displayed using the format in the application's
  59. default locale.
  60. Week numbers can be displayed by setting the weekNumbersVisible property to
  61. \c true.
  62. \qml
  63. Calendar {
  64. weekNumbersVisible: true
  65. }
  66. \endqml
  67. You can create a custom appearance for Calendar by assigning a
  68. \l {CalendarStyle}.
  69. */
  70. Control {
  71. id: calendar
  72. /*!
  73. \qmlproperty date Calendar::selectedDate
  74. The date that has been selected by the user.
  75. This property is subject to the following validation:
  76. \list
  77. \li If selectedDate is outside the range of \l minimumDate and
  78. \l maximumDate, it will be clamped to be within that range.
  79. \li selectedDate will not be changed if \c undefined or some other
  80. invalid value is assigned.
  81. \li If there are hours, minutes, seconds or milliseconds set, they
  82. will be removed.
  83. \endlist
  84. The default value is the current date, which is equivalent to:
  85. \code
  86. new Date()
  87. \endcode
  88. */
  89. property alias selectedDate: rangedDate.date
  90. /*!
  91. \qmlproperty date Calendar::minimumDate
  92. The earliest date that this calendar will accept.
  93. By default, this property is set to the earliest minimum date
  94. (1 January, 1 AD).
  95. */
  96. property alias minimumDate: rangedDate.minimumDate
  97. /*!
  98. \qmlproperty date Calendar::maximumDate
  99. The latest date that this calendar will accept.
  100. By default, this property is set to the latest maximum date
  101. (25 October, 275759 AD).
  102. */
  103. property alias maximumDate: rangedDate.maximumDate
  104. /*!
  105. This property determines which month in visibleYear is shown on the
  106. calendar.
  107. The month is from \c 0 to \c 11 to be consistent with the JavaScript
  108. Date object.
  109. \sa visibleYear
  110. */
  111. property int visibleMonth: selectedDate.getMonth()
  112. /*!
  113. This property determines which year is shown on the
  114. calendar.
  115. \sa visibleMonth
  116. */
  117. property int visibleYear: selectedDate.getFullYear()
  118. onSelectedDateChanged: {
  119. // When the selected date changes, the view should move back to that date.
  120. visibleMonth = selectedDate.getMonth();
  121. visibleYear = selectedDate.getFullYear();
  122. }
  123. RangedDate {
  124. id: rangedDate
  125. date: new Date()
  126. minimumDate: CalendarUtils.minimumCalendarDate
  127. maximumDate: CalendarUtils.maximumCalendarDate
  128. }
  129. /*!
  130. This property determines the visibility of the frame
  131. surrounding the calendar.
  132. The default value is \c true.
  133. */
  134. property bool frameVisible: true
  135. /*!
  136. This property determines the visibility of week numbers.
  137. The default value is \c false.
  138. */
  139. property bool weekNumbersVisible: false
  140. /*!
  141. This property determines the visibility of the navigation bar.
  142. \since QtQuick.Controls 1.3
  143. The default value is \c true.
  144. */
  145. property bool navigationBarVisible: true
  146. /*!
  147. \qmlproperty enum Calendar::dayOfWeekFormat
  148. The format in which the days of the week (in the header) are displayed.
  149. \c Locale.ShortFormat is the default and recommended format, as
  150. \c Locale.NarrowFormat may not be fully supported by each locale (see
  151. \l {Locale String Format Types}) and
  152. \c Locale.LongFormat may not fit within the header cells.
  153. */
  154. property int dayOfWeekFormat: Locale.ShortFormat
  155. /*!
  156. The locale that this calendar should use to display itself.
  157. Affects how dates and day names are localized, as well as which
  158. day is considered the first in a week.
  159. To set an Australian locale, for example:
  160. \code
  161. locale: Qt.locale("en_AU")
  162. \endcode
  163. The default locale is \c Qt.locale().
  164. */
  165. property var __locale: Qt.locale()
  166. /*!
  167. \internal
  168. This property holds the model that will be used by the Calendar to
  169. populate the dates available to the user.
  170. */
  171. property CalendarModel __model: CalendarModel {
  172. locale: calendar.__locale
  173. visibleDate: new Date(visibleYear, visibleMonth, 1)
  174. }
  175. style: Settings.styleComponent(Settings.style, "CalendarStyle.qml", calendar)
  176. /*!
  177. \qmlsignal Calendar::hovered(date date)
  178. Emitted when the mouse hovers over a valid date in the calendar.
  179. \a date is the date that was hovered over.
  180. The corresponding handler is \c onHovered.
  181. */
  182. signal hovered(date date)
  183. /*!
  184. \qmlsignal Calendar::pressed(date date)
  185. Emitted when the mouse is pressed on a valid date in the calendar.
  186. This is also emitted when dragging the mouse to another date while it is pressed.
  187. \a date is the date that the mouse was pressed on.
  188. The corresponding handler is \c onPressed.
  189. */
  190. signal pressed(date date)
  191. /*!
  192. \qmlsignal Calendar::released(date date)
  193. Emitted when the mouse is released over a valid date in the calendar.
  194. \a date is the date that the mouse was released over.
  195. The corresponding handler is \c onReleased.
  196. */
  197. signal released(date date)
  198. /*!
  199. \qmlsignal Calendar::clicked(date date)
  200. Emitted when the mouse is clicked on a valid date in the calendar.
  201. \a date is the date that the mouse was clicked on.
  202. The corresponding handler is \c onClicked.
  203. */
  204. signal clicked(date date)
  205. /*!
  206. \qmlsignal Calendar::doubleClicked(date date)
  207. Emitted when the mouse is double-clicked on a valid date in the calendar.
  208. \a date is the date that the mouse was double-clicked on.
  209. The corresponding handler is \c onDoubleClicked.
  210. */
  211. signal doubleClicked(date date)
  212. /*!
  213. \qmlsignal Calendar::pressAndHold(date date)
  214. \since QtQuick.Controls 1.3
  215. Emitted when the mouse is pressed and held on a valid date in the calendar.
  216. \a date is the date that the mouse was pressed on.
  217. The corresponding handler is \c onPressAndHold.
  218. */
  219. signal pressAndHold(date date)
  220. /*!
  221. \qmlmethod void Calendar::showPreviousMonth()
  222. Sets visibleMonth to the previous month.
  223. */
  224. function showPreviousMonth() {
  225. if (visibleMonth === 0) {
  226. visibleMonth = CalendarUtils.monthsInAYear - 1;
  227. --visibleYear;
  228. } else {
  229. --visibleMonth;
  230. }
  231. }
  232. /*!
  233. \qmlmethod void Calendar::showNextMonth()
  234. Sets visibleMonth to the next month.
  235. */
  236. function showNextMonth() {
  237. if (visibleMonth === CalendarUtils.monthsInAYear - 1) {
  238. visibleMonth = 0;
  239. ++visibleYear;
  240. } else {
  241. ++visibleMonth;
  242. }
  243. }
  244. /*!
  245. \qmlmethod void Calendar::showPreviousYear()
  246. Sets visibleYear to the previous year.
  247. */
  248. function showPreviousYear() {
  249. if (visibleYear - 1 >= minimumDate.getFullYear()) {
  250. --visibleYear;
  251. }
  252. }
  253. /*!
  254. \qmlmethod void Calendar::showNextYear()
  255. Sets visibleYear to the next year.
  256. */
  257. function showNextYear() {
  258. if (visibleYear + 1 <= maximumDate.getFullYear()) {
  259. ++visibleYear;
  260. }
  261. }
  262. /*!
  263. Selects the month before the current month in \l selectedDate.
  264. */
  265. function __selectPreviousMonth() {
  266. calendar.selectedDate = CalendarUtils.setMonth(calendar.selectedDate, calendar.selectedDate.getMonth() - 1);
  267. }
  268. /*!
  269. Selects the month after the current month in \l selectedDate.
  270. */
  271. function __selectNextMonth() {
  272. calendar.selectedDate = CalendarUtils.setMonth(calendar.selectedDate, calendar.selectedDate.getMonth() + 1);
  273. }
  274. /*!
  275. Selects the week before the current week in \l selectedDate.
  276. */
  277. function __selectPreviousWeek() {
  278. var newDate = new Date(calendar.selectedDate);
  279. newDate.setDate(newDate.getDate() - CalendarUtils.daysInAWeek);
  280. calendar.selectedDate = newDate;
  281. }
  282. /*!
  283. Selects the week after the current week in \l selectedDate.
  284. */
  285. function __selectNextWeek() {
  286. var newDate = new Date(calendar.selectedDate);
  287. newDate.setDate(newDate.getDate() + CalendarUtils.daysInAWeek);
  288. calendar.selectedDate = newDate;
  289. }
  290. /*!
  291. Selects the first day of the current month in \l selectedDate.
  292. */
  293. function __selectFirstDayOfMonth() {
  294. var newDate = new Date(calendar.selectedDate);
  295. newDate.setDate(1);
  296. calendar.selectedDate = newDate;
  297. }
  298. /*!
  299. Selects the last day of the current month in \l selectedDate.
  300. */
  301. function __selectLastDayOfMonth() {
  302. var newDate = new Date(calendar.selectedDate);
  303. newDate.setDate(CalendarUtils.daysInMonth(newDate));
  304. calendar.selectedDate = newDate;
  305. }
  306. /*!
  307. Selects the day before the current day in \l selectedDate.
  308. */
  309. function __selectPreviousDay() {
  310. var newDate = new Date(calendar.selectedDate);
  311. newDate.setDate(newDate.getDate() - 1);
  312. calendar.selectedDate = newDate;
  313. }
  314. /*!
  315. Selects the day after the current day in \l selectedDate.
  316. */
  317. function __selectNextDay() {
  318. var newDate = new Date(calendar.selectedDate);
  319. newDate.setDate(newDate.getDate() + 1);
  320. calendar.selectedDate = newDate;
  321. }
  322. Keys.onLeftPressed: {
  323. calendar.__selectPreviousDay();
  324. }
  325. Keys.onUpPressed: {
  326. calendar.__selectPreviousWeek();
  327. }
  328. Keys.onDownPressed: {
  329. calendar.__selectNextWeek();
  330. }
  331. Keys.onRightPressed: {
  332. calendar.__selectNextDay();
  333. }
  334. Keys.onPressed: {
  335. if (event.key === Qt.Key_Home) {
  336. calendar.__selectFirstDayOfMonth();
  337. event.accepted = true;
  338. } else if (event.key === Qt.Key_End) {
  339. calendar.__selectLastDayOfMonth();
  340. event.accepted = true;
  341. } else if (event.key === Qt.Key_PageUp) {
  342. calendar.__selectPreviousMonth();
  343. event.accepted = true;
  344. } else if (event.key === Qt.Key_PageDown) {
  345. calendar.__selectNextMonth();
  346. event.accepted = true;
  347. }
  348. }
  349. }