/usr/include/KF5/KWidgetsAddons/kdatetimeedit.h is in libkf5widgetsaddons-dev 5.18.0-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 | /*
Copyright 2011 John Layt <john@layt.net>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef KDATETIMEEDIT_H
#define KDATETIMEEDIT_H
#include <kwidgetsaddons_export.h>
#include <QLocale>
#include <QTimeZone>
#include <QWidget>
class KDateTimeEditPrivate;
class KWIDGETSADDONS_EXPORT KDateTimeEdit : public QWidget
{
Q_OBJECT
Q_PROPERTY(QDate date READ date WRITE setDate NOTIFY dateChanged USER true)
Q_PROPERTY(QTime time READ time WRITE setTime NOTIFY timeChanged USER true)
Q_PROPERTY(int timeListInterval READ timeListInterval WRITE setTimeListInterval)
Q_PROPERTY(Options options READ options WRITE setOptions)
Q_FLAGS(Options)
public:
/**
* Options provided by the widget
* @see options
* @see setOptions
*/
enum Option {
ShowCalendar = 0x00001, /**< If the Calendar System edit is displayed */
ShowDate = 0x00002, /**< If the Date is displayed */
ShowTime = 0x00004, /**< If the Time is displayed */
ShowTimeZone = 0x00008, /**< If the Time Zone is displayed */
//EditCalendar = 0x00010, /**< Allow the user to manually edit the calendar */
EditDate = 0x00020, /**< Allow the user to manually edit the date */
EditTime = 0x00040, /**< Allow the user to manually edit the time */
//EditTimeZone = 0x00080, /**< Allow the user to manually edit the time zone */
SelectCalendar = 0x00100, /**< Allow the user to select a calendar */
SelectDate = 0x00200, /**< Allow the user to select a date */
SelectTime = 0x00400, /**< Allow the user to select a time */
SelectTimeZone = 0x00800, /**< Allow the user to select a time zone */
DatePicker = 0x01000, /**< Show a date picker */
DateKeywords = 0x02000, /**< Show date keywords */
ForceTime = 0x04000, /**< The entered time can only be a selected time */
WarnOnInvalid = 0x08000 /**< Show a warning on focus out if the date or time is invalid */
};
Q_DECLARE_FLAGS(Options, Option)
/**
* Create a new KDateTimeEdit widget
*/
explicit KDateTimeEdit(QWidget *parent = 0);
/**
* Destroy the widget
*/
virtual ~KDateTimeEdit();
/**
* Return the currently set widget options
*
* @return the currently set widget options
*/
Options options() const;
/**
* Return the currently selected date, time and time zone
*
* @return the currently selected date, time and time zone
*/
QDateTime dateTime() const;
/**
* Return the currently selected date
*
* @return the currently selected date
*/
QDate date() const;
/**
* Return the currently selected time
*
* @return the currently selected time
*/
QTime time() const;
/**
* Return the currently selected time zone
*
* @return the currently selected time zone
*/
QTimeZone timeZone() const;
/**
* Returns the list of Calendar Systems displayed.
*
* @param calendars the list of calendar systems to display
*/
QList<QLocale> calendarLocalesList() const;
/**
* Return the current minimum date and time
*
* @return the current minimum date and time
*/
QDateTime minimumDateTime() const;
/**
* Return the current maximum date and time
*
* @return the current maximum date and time
*/
QDateTime maximumDateTime() const;
/**
* Return the currently set date display format
*
* By default this is the Short Format
*
* @return the currently set date format
*/
QLocale::FormatType dateDisplayFormat() const;
/**
* Return the map of dates listed in the drop-down and their displayed
* string forms.
*
* @see setDateMap()
* @return the select date map
*/
QMap<QDate, QString> dateMap() const;
/**
* Return the currently set time format
*
* By default this is the Short Format
*
* @return the currently set time format
*/
QLocale::FormatType timeDisplayFormat() const;
/**
* Return the time list interval able to be selected
*
* @return the select time intervals in minutes
*/
int timeListInterval() const;
/**
* Return the list of times able to be selected in the drop-down.
*
* @see setTimeList()
* @see timeListInterval()
* @see setTimeListInterval()
* @return the select time list
*/
QList<QTime> timeList() const;
/**
* Return the list of time zones able to be selected
*
* @param zones the time zones to display
*/
QList<QTimeZone> timeZones() const;
/**
* Return if the current user input is valid
*
* If the user input is null then it is not valid
*
* @see isNull()
* @return if the current user input is valid
*/
bool isValid() const;
/**
* Return if the current user input is null
*
* @see isValid()
* @return if the current user input is null
*/
bool isNull() const;
/**
* Return if the current user input date is valid
*
* If the user input date is null then it is not valid
*
* @see isNullDate()
* @return if the current user input date is valid
*/
bool isValidDate() const;
/**
* Return if the current user input date is null
*
* @see isValidDate()
* @return if the current user input date is null
*/
bool isNullDate() const;
/**
* Return if the current user input time is valid
*
* If the user input time is null then it is not valid
*
* @see isNullTime()
* @return if the current user input time is valid
*/
bool isValidTime() const;
/**
* Return if the current user input time is null
*
* @see isValidTime()
* @return if the current user input time is null
*/
bool isNullTime() const;
Q_SIGNALS:
/**
* Signal if the date or time has been manually entered by the user.
*
* The returned date and time may be invalid.
*
* @param dateTime the new date, time and time zone
*/
void dateTimeEntered(const QDateTime &dateTime);
/**
* Signal if the date or time has been changed either manually by the user
* or programatically.
*
* The returned date and time may be invalid.
*
* @param dateTime the new date, time and time zone
*/
void dateTimeChanged(const QDateTime &dateTime);
/**
* Signal if the date or time is being manually edited by the user.
*
* The returned date and time may be invalid.
*
* @param dateTime the new date, time and time zone
*/
void dateTimeEdited(const QDateTime &dateTime);
/**
* Signal if the Calendar Locale has been manually entered by the user.
*
* @param calendarLocale the new calendar locale
*/
void calendarEntered(const QLocale &calendarLocale);
/**
* Signal if the Calendar Locale has been changed either manually by the user
* or programatically.
*
* @param calendarLocale the new calendar locale
*/
void calendarChanged(const QLocale &calendarLocale);
/**
* Signal if the date has been manually entered by the user.
*
* The returned date may be invalid.
*
* @param date the new date
*/
void dateEntered(const QDate &date);
/**
* Signal if the date has been changed either manually by the user
* or programatically.
*
* The returned date may be invalid.
*
* @param date the new date
*/
void dateChanged(const QDate &date);
/**
* Signal if the date is being manually edited by the user.
*
* The returned date may be invalid.
*
* @param date the new date
*/
void dateEdited(const QDate &date);
/**
* Signal if the time has been manually entered by the user.
*
* The returned time may be invalid.
*
* @param time the new time
*/
void timeEntered(const QTime &time);
/**
* Signal if the time has been changed either manually by the user
* or programatically.
*
* The returned time may be invalid.
*
* @param time the new time
*/
void timeChanged(const QTime &time);
/**
* Signal if the time is being manually edited by the user.
*
* The returned time may be invalid.
*
* @param time the new time
*/
void timeEdited(const QTime &time);
/**
* Signal if the time zone has been changed manually by the user.
*
* @param timeZone the new time zone
*/
void timeZoneEntered(const QTimeZone &zone);
/**
* Signal if the time zone has been changed either manually by the user
* or programatically.
*
* @param timeZone the new time zone
*/
void timeZoneChanged(const QTimeZone &zone);
public Q_SLOTS:
/**
* Set the new widget options
*
* @param options the new widget options
*/
void setOptions(Options options);
/**
* Set the currently selected date, time and time zone
*
* @param dateTime the new date, time and time zone
*/
void setDateTime(const QDateTime &dateTime);
/**
* Set the currently selected date
*
* @param date the new date
*/
void setDate(const QDate &date);
/**
* Set the currently selected time
*
* @param time the new time
*/
void setTime(const QTime &time);
/**
* Set the current time zone
*
* @param zone the new zone
*/
void setTimeZone(const QTimeZone &zone);
/**
* Set the minimum and maximum date and time range
*
* To enable range checking provide two valid dates.
* To disable range checking provide two invalid dates, or call
* clearDateRange;
*
* @param minDateTime the minimum date and time
* @param maxDateTime the maximum date and time
* @param minWarnMsg the minimum warning message
* @param maxWarnMsg the maximum warning message
*/
void setDateTimeRange(const QDateTime &minDateTime,
const QDateTime &maxDateTime,
const QString &minWarnMsg = QString(),
const QString &maxWarnMsg = QString());
/**
* Reset the minimum and maximum date and time to the default
*/
void resetDateTimeRange();
/**
* Set the minimum allowed date.
*
* If the date is invalid, or more than current maximum,
* then the minimum will not be set.
*
* @see setMaximumDateTime()
* @see setDateRange()
* @param maxDate the minimum date
* @param maxWarnMsg the minimum warning message
*/
void setMinimumDateTime(const QDateTime &minDateTime, const QString &minWarnMsg = QString());
/**
* Reset the minimum date and time to the default
*/
void resetMinimumDateTime();
/**
* Set the maximum allowed date.
*
* If the date is invalid, or less than current minimum,
* then the maximum will not be set.
*
* @see setMinimumDateTime()
* @see setDateRange()
* @param maxDate the maximum date
* @param maxWarnMsg the maximum warning message
*/
void setMaximumDateTime(const QDateTime &maxDateTime, const QString &maxWarnMsg = QString());
/**
* Reset the minimum date and time to the default
*/
void resetMaximumDateTime();
/**
* Sets the date format to display.
*
* By default is the Short Format.
*
* @param format the date format to use
*/
void setDateDisplayFormat(QLocale::FormatType format);
/**
* Set the list of Calendar Locales to display.
*
* @param calendarLocales the list of calendar locales to display
*/
void setCalendarLocalesList(const QList<QLocale> &calendarLocales);
/**
* Set the list of dates able to be selected from the drop-down and the
* string form to display for those dates, e.g. "2010-01-01" and "Yesterday".
*
* Any invalid or duplicate dates will be used, the list will NOT be
* sorted, and the minimum and maximum date will not be affected.
*
* The @p dateMap is keyed by the date to be listed and the value is the
* string to be displayed. If you want the date to be displayed in the
* default date format then the string should be null. If you want a
* separator to be displayed then set the string to "separator".
*
* @see dateMap()
* @param dateMap the map of dates able to be selected
*/
void setDateMap(QMap<QDate, QString> dateMap);
/**
* Sets the time format to display.
*
* By default is the Short Format.
*
* @param format the time format to use
*/
void setTimeDisplayFormat(QLocale::FormatType formatOptions);
/**
* Set the interval between times able to be selected from the drop-down.
*
* The combo drop-down will be populated with times every @param minutes
* apart, starting from the minimumTime() and ending at maximumTime().
*
* If the ForceInterval option is set then any time manually typed into the
* combo line edit will be forced to the nearest interval.
*
* This interval must be an exact divisor of the valid time range hours.
* For example with the default 24 hour range @p interval must divide 1440
* minutes exactly, meaning 1, 6 and 90 are valid but 7, 31 and 91 are not.
*
* Setting the time list interval will override any time list previously set
* via setTimeList().
*
* @see timeListInterval()
* @param minutes the time list interval to display
*/
void setTimeListInterval(int minutes);
/**
* Set the list of times able to be selected from the drop-down.
*
* Setting the time list will override any time interval previously set via
* setTimeListInterval().
*
* Any invalid or duplicate times will be ignored, and the list will be
* sorted.
*
* The minimum and maximum time will automatically be set to the earliest
* and latest value in the list.
*
* @see timeList()
* @param timeList the list of times able to be selected
* @param minWarnMsg the minimum warning message
* @param maxWarnMsg the maximum warning message
*/
void setTimeList(QList<QTime> timeList,
const QString &minWarnMsg = QString(),
const QString &maxWarnMsg = QString());
/**
* Set the time zones able to be selected
*
* @param zones the time zones to display
*/
void setTimeZones(const QList<QTimeZone> &zones);
protected:
bool eventFilter(QObject *object, QEvent *event) Q_DECL_OVERRIDE;
void focusInEvent(QFocusEvent *event) Q_DECL_OVERRIDE;
void focusOutEvent(QFocusEvent *event) Q_DECL_OVERRIDE;
void resizeEvent(QResizeEvent *event) Q_DECL_OVERRIDE;
/**
* Assign the date, time and time zone for the widget.
*
* Virtual to allow sub-classes to apply extra validation rules,
* but reimplementations must call the parent method at the end.
*
* @param datetime the new date and time
*/
virtual void assignDateTime(const QDateTime &dateTime);
/**
* Assign the date for the widget.
*
* Virtual to allow sub-classes to apply extra validation rules,
* but reimplementations must call the parent method at the end.
*
* @param date the new date
*/
virtual void assignDate(const QDate &date);
/**
* Assign the time for the widget.
*
* Virtual to allow sub-classes to apply extra validation rules,
* but reimplementations must call the parent method at the end.
*
* @param time the new time
*/
virtual void assignTime(const QTime &time);
/**
* Assign the time zone for the widget.
*
* Virtual to allow sub-classes to apply extra validation rules,
* but reimplementations must call the parent method at the end.
*
* @param zone the new time zone
*/
void assignTimeZone(const QTimeZone &zone);
private:
friend class KDateTimeEditPrivate;
KDateTimeEditPrivate *const d;
Q_PRIVATE_SLOT(d, void selectCalendar(int))
Q_PRIVATE_SLOT(d, void enterCalendar(const QLocale &))
Q_PRIVATE_SLOT(d, void selectTimeZone(int))
Q_PRIVATE_SLOT(d, void enterTimeZone(const QByteArray &))
};
Q_DECLARE_OPERATORS_FOR_FLAGS(KDateTimeEdit::Options)
#endif // KDATETIMEEDIT_H
|