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
|
// qdatetime.sip generated by MetaSIP on Fri Apr 16 11:32:08 2010
//
// This file is part of the QtCore Python extension module.
//
// Copyright (c) 2010 Riverbank Computing Limited <info@riverbankcomputing.com>
//
// This file is part of PyQt.
//
// This file may be used under the terms of the GNU General Public
// License versions 2.0 or 3.0 as published by the Free Software
// Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3
// included in the packaging of this file. Alternatively you may (at
// your option) use any later version of the GNU General Public
// License if such license has been publicly approved by Riverbank
// Computing Limited (or its successors, if any) and the KDE Free Qt
// Foundation. In addition, as a special exception, Riverbank gives you
// certain additional rights. These rights are described in the Riverbank
// GPL Exception version 1.1, which can be found in the file
// GPL_EXCEPTION.txt in this package.
//
// Please review the following information to ensure GNU General
// Public Licensing requirements will be met:
// http://trolltech.com/products/qt/licenses/licensing/opensource/. If
// you are unsure which license is appropriate for your use, please
// review the following information:
// http://trolltech.com/products/qt/licenses/licensing/licensingoverview
// or contact the sales department at sales@riverbankcomputing.com.
//
// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
%ModuleCode
#include <qdatetime.h>
%End
class QDate
{
%TypeHeaderCode
#include <qdatetime.h>
%End
%TypeCode
#include <QHash>
#if PY_VERSION_HEX >= 0x02040000
#include <datetime.h>
#endif
%End
%ConvertToTypeCode
#if PY_VERSION_HEX >= 0x02040000
if (!PyDateTimeAPI)
PyDateTime_IMPORT;
#endif
// Allow a Python date object whenever a QDate is expected.
if (sipIsErr == NULL)
return (
#if PY_VERSION_HEX >= 0x02040000
PyDate_Check(sipPy) ||
#endif
sipCanConvertToType(sipPy, sipType_QDate, SIP_NO_CONVERTORS));
#if PY_VERSION_HEX >= 0x02040000
if (PyDate_Check(sipPy))
{
*sipCppPtr = new QDate(PyDateTime_GET_YEAR(sipPy),
PyDateTime_GET_MONTH(sipPy),
PyDateTime_GET_DAY(sipPy));
return sipGetState(sipTransferObj);
}
#endif
*sipCppPtr = reinterpret_cast<QDate *>(sipConvertToType(sipPy, sipType_QDate, sipTransferObj, SIP_NO_CONVERTORS, 0, sipIsErr));
return 0;
%End
%PickleCode
sipRes = Py_BuildValue((char *)"iii", sipCpp->year(), sipCpp->month(), sipCpp->day());
%End
public:
QDate();
QDate(int, int, int);
SIP_PYOBJECT __repr__() const /DocType="str"/;
%MethodCode
sipRes =
#if PY_MAJOR_VERSION >= 3
PyUnicode_FromFormat
#else
PyString_FromFormat
#endif
("PyQt4.QtCore.QDate(%i, %i, %i)", sipCpp->year(),
sipCpp->month(), sipCpp->day());
%End
long __hash__() const;
%MethodCode
if (sipIsAPIEnabled("QDate", 2, 0))
{
sipRes = qHash(sipCpp->toString(Qt::ISODate));
}
else
{
// Mimic Python's default behavour.
sipRes = _Py_HashPointer(sipSelf);
}
%End
%If (Py_DateTime)
SIP_PYOBJECT toPyDate() const /DocType="datetime.date"/;
%MethodCode
if (!PyDateTimeAPI)
PyDateTime_IMPORT;
// Convert to a Python date object.
sipRes = PyDate_FromDate(sipCpp->year(), sipCpp->month(), sipCpp->day());
%End
%End
bool isNull() const;
int __bool__() const;
%MethodCode
sipRes = !sipCpp->isNull();
%End
bool isValid() const;
int year() const;
int month() const;
int day() const;
int dayOfWeek() const;
int dayOfYear() const;
int daysInMonth() const;
int daysInYear() const;
int weekNumber(int *yearNumber = 0) const;
static QString shortMonthName(int);
static QString shortDayName(int);
static QString longMonthName(int);
static QString longDayName(int);
QString toString(Qt::DateFormat format = Qt::TextDate) const;
QString toString(const QString &) const;
bool setYMD(int, int, int);
QDate addDays(int) const;
QDate addMonths(int) const;
QDate addYears(int) const;
int daysTo(const QDate &) const;
bool operator==(const QDate &) const;
bool operator!=(const QDate &) const;
bool operator<(const QDate &) const;
bool operator<=(const QDate &) const;
bool operator>(const QDate &) const;
bool operator>=(const QDate &) const;
static QDate currentDate();
static QDate fromString(const QString &, Qt::DateFormat format = Qt::TextDate);
static QDate fromString(const QString &, const QString &);
static bool isValid(int, int, int);
static bool isLeapYear(int);
static uint gregorianToJulian(int, int, int);
static void julianToGregorian(uint, int &, int &, int &);
static QDate fromJulianDay(int);
int toJulianDay() const;
%If (Qt_4_2_0 -)
bool setDate(int, int, int);
%End
%If (Qt_4_5_0 -)
void getDate(int *, int *, int *);
%End
%If (Qt_4_5_0 -)
enum MonthNameType
{
DateFormat,
StandaloneFormat,
};
%End
%If (Qt_4_5_0 -)
static QString shortMonthName(int, QDate::MonthNameType);
%End
%If (Qt_4_5_0 -)
static QString shortDayName(int, QDate::MonthNameType);
%End
%If (Qt_4_5_0 -)
static QString longMonthName(int, QDate::MonthNameType);
%End
%If (Qt_4_5_0 -)
static QString longDayName(int, QDate::MonthNameType);
%End
};
class QTime
{
%TypeHeaderCode
#include <qdatetime.h>
%End
%TypeCode
#include <QHash>
#if PY_VERSION_HEX >= 0x02040000
#include <datetime.h>
#endif
%End
%ConvertToTypeCode
#if PY_VERSION_HEX >= 0x02040000
if (!PyDateTimeAPI)
PyDateTime_IMPORT;
#endif
// Allow a Python time object whenever a QTime is expected.
if (sipIsErr == NULL)
return (
#if PY_VERSION_HEX >= 0x02040000
PyTime_Check(sipPy) ||
#endif
sipCanConvertToType(sipPy, sipType_QTime, SIP_NO_CONVERTORS));
#if PY_VERSION_HEX >= 0x02040000
if (PyTime_Check(sipPy))
{
*sipCppPtr = new QTime(PyDateTime_TIME_GET_HOUR(sipPy),
PyDateTime_TIME_GET_MINUTE(sipPy),
PyDateTime_TIME_GET_SECOND(sipPy),
PyDateTime_TIME_GET_MICROSECOND(sipPy) / 1000);
return sipGetState(sipTransferObj);
}
#endif
*sipCppPtr = reinterpret_cast<QTime *>(sipConvertToType(sipPy, sipType_QTime, sipTransferObj, SIP_NO_CONVERTORS, 0, sipIsErr));
return 0;
%End
%PickleCode
sipRes = Py_BuildValue((char *)"iiii", sipCpp->hour(), sipCpp->minute(), sipCpp->second(), sipCpp->msec());
%End
public:
QTime();
QTime(int, int, int second = 0, int msec = 0);
SIP_PYOBJECT __repr__() const /DocType="str"/;
%MethodCode
#if PY_MAJOR_VERSION >= 3
sipRes = PyUnicode_FromFormat("PyQt4.QtCore.QTime(%i, %i", sipCpp->hour(),
sipCpp->minute());
if (sipCpp->second() || sipCpp->msec())
{
qpycore_Unicode_ConcatAndDel(&sipRes,
PyUnicode_FromFormat(", %i", sipCpp->second()));
if (sipCpp->msec())
qpycore_Unicode_ConcatAndDel(&sipRes,
PyUnicode_FromFormat(", %i", sipCpp->msec()));
}
qpycore_Unicode_ConcatAndDel(&sipRes, PyUnicode_FromString(")"));
#else
sipRes = PyString_FromFormat("PyQt4.QtCore.QTime(%i, %i", sipCpp->hour(),
sipCpp->minute());
if (sipCpp->second() || sipCpp->msec())
{
PyString_ConcatAndDel(&sipRes,
PyString_FromFormat(", %i", sipCpp->second()));
if (sipCpp->msec())
PyString_ConcatAndDel(&sipRes,
PyString_FromFormat(", %i", sipCpp->msec()));
}
PyString_ConcatAndDel(&sipRes, PyString_FromString(")"));
#endif
%End
long __hash__() const;
%MethodCode
if (sipIsAPIEnabled("QTime", 2, 0))
{
sipRes = qHash(sipCpp->toString(Qt::ISODate));
}
else
{
// Mimic Python's default behavour.
sipRes = _Py_HashPointer(sipSelf);
}
%End
%If (Py_DateTime)
SIP_PYOBJECT toPyTime() const /DocType="datetime.time"/;
%MethodCode
if (!PyDateTimeAPI)
PyDateTime_IMPORT;
// Convert to a Python time object.
sipRes = PyTime_FromTime(sipCpp->hour(), sipCpp->minute(), sipCpp->second(), sipCpp->msec() * 1000);
%End
%End
bool isNull() const;
int __bool__() const;
%MethodCode
sipRes = !sipCpp->isNull();
%End
bool isValid() const;
int hour() const;
int minute() const;
int second() const;
int msec() const;
QString toString(Qt::DateFormat format = Qt::TextDate) const;
QString toString(const QString &) const;
bool setHMS(int, int, int, int msec = 0);
QTime addSecs(int) const;
int secsTo(const QTime &) const;
QTime addMSecs(int) const;
int msecsTo(const QTime &) const;
bool operator==(const QTime &) const;
bool operator!=(const QTime &) const;
bool operator<(const QTime &) const;
bool operator<=(const QTime &) const;
bool operator>(const QTime &) const;
bool operator>=(const QTime &) const;
static QTime currentTime();
static QTime fromString(const QString &, Qt::DateFormat format = Qt::TextDate);
static QTime fromString(const QString &, const QString &);
static bool isValid(int, int, int, int msec = 0);
void start();
int restart();
int elapsed() const;
};
class QDateTime
{
%TypeHeaderCode
#include <qdatetime.h>
%End
%TypeCode
#include <QHash>
#if PY_VERSION_HEX >= 0x02040000
#include <datetime.h>
#endif
%End
%ConvertToTypeCode
#if PY_VERSION_HEX >= 0x02040000
if (!PyDateTimeAPI)
PyDateTime_IMPORT;
#endif
// Allow a Python datetime object whenever a QDateTime is expected.
if (sipIsErr == NULL)
return (
#if PY_VERSION_HEX >= 0x02040000
PyDateTime_Check(sipPy) ||
#endif
sipCanConvertToType(sipPy, sipType_QDateTime, SIP_NO_CONVERTORS));
#if PY_VERSION_HEX >= 0x02040000
if (PyDateTime_Check(sipPy))
{
QDate qdate(PyDateTime_GET_YEAR(sipPy),
PyDateTime_GET_MONTH(sipPy),
PyDateTime_GET_DAY(sipPy));
QTime qtime(PyDateTime_DATE_GET_HOUR(sipPy),
PyDateTime_DATE_GET_MINUTE(sipPy),
PyDateTime_DATE_GET_SECOND(sipPy),
PyDateTime_DATE_GET_MICROSECOND(sipPy) / 1000);
QDateTime *qdt = new QDateTime(qdate, qtime);
*sipCppPtr = qdt;
return sipGetState(sipTransferObj);
}
#endif
*sipCppPtr = reinterpret_cast<QDateTime *>(sipConvertToType(sipPy, sipType_QDateTime, sipTransferObj, SIP_NO_CONVERTORS, 0, sipIsErr));
return 0;
%End
%PickleCode
QDate qd = sipCpp->date();
QTime qt = sipCpp->time();
sipRes = Py_BuildValue((char *)"iiiiiiii", qd.year(), qd.month(), qd.day(),
qt.hour(), qt.minute(), qt.second(), qt.msec(),
(int)sipCpp->timeSpec());
%End
public:
QDateTime();
QDateTime(const QDateTime &);
explicit QDateTime(const QDate &);
QDateTime(const QDate &, const QTime &, Qt::TimeSpec timeSpec = Qt::LocalTime);
QDateTime(int y, int m, int d, int h, int m, int s = 0, int msec = 0, int timeSpec = 0) /NoDerived/;
%MethodCode
// This ctor is mainly supplied to allow pickling.
QDate qd(a0, a1, a2);
QTime qt(a3, a4, a5, a6);
sipCpp = new QDateTime(qd, qt, (Qt::TimeSpec)a7);
%End
~QDateTime();
SIP_PYOBJECT __repr__() const /DocType="str"/;
%MethodCode
QDate qd = sipCpp->date();
QTime qt = sipCpp->time();
#if PY_MAJOR_VERSION >= 3
sipRes = PyUnicode_FromFormat("PyQt4.QtCore.QDateTime(%i, %i, %i, %i, %i",
qd.year(), qd.month(), qd.day(), qt.hour(), qt.minute());
if (qt.second() || qt.msec() || sipCpp->timeSpec() != Qt::LocalTime)
{
qpycore_Unicode_ConcatAndDel(&sipRes,
PyUnicode_FromFormat(", %i", qt.second()));
if (qt.msec() || sipCpp->timeSpec() != Qt::LocalTime)
{
qpycore_Unicode_ConcatAndDel(&sipRes, PyUnicode_FromFormat(", %i", qt.msec()));
if (sipCpp->timeSpec() != Qt::LocalTime)
qpycore_Unicode_ConcatAndDel(&sipRes,
PyUnicode_FromFormat(", PyQt4.QtCore.Qt.TimeSpec(%i)",
(int)sipCpp->timeSpec()));
}
}
qpycore_Unicode_ConcatAndDel(&sipRes, PyUnicode_FromString(")"));
#else
sipRes = PyString_FromFormat("PyQt4.QtCore.QDateTime(%i, %i, %i, %i, %i",
qd.year(), qd.month(), qd.day(), qt.hour(), qt.minute());
if (qt.second() || qt.msec() || sipCpp->timeSpec() != Qt::LocalTime)
{
PyString_ConcatAndDel(&sipRes,
PyString_FromFormat(", %i", qt.second()));
if (qt.msec() || sipCpp->timeSpec() != Qt::LocalTime)
{
PyString_ConcatAndDel(&sipRes, PyString_FromFormat(", %i", qt.msec()));
if (sipCpp->timeSpec() != Qt::LocalTime)
PyString_ConcatAndDel(&sipRes,
PyString_FromFormat(", PyQt4.QtCore.Qt.TimeSpec(%i)",
(int)sipCpp->timeSpec()));
}
}
PyString_ConcatAndDel(&sipRes, PyString_FromString(")"));
#endif
%End
long __hash__() const;
%MethodCode
if (sipIsAPIEnabled("QDateTime", 2, 0))
{
sipRes = qHash(sipCpp->toString(Qt::ISODate));
}
else
{
// Mimic Python's default behavour.
sipRes = _Py_HashPointer(sipSelf);
}
%End
%If (Py_DateTime)
SIP_PYOBJECT toPyDateTime() const /DocType="datetime.datetime"/;
%MethodCode
if (!PyDateTimeAPI)
PyDateTime_IMPORT;
// Convert to a Python datetime object.
QDate qd = sipCpp->date();
QTime qt = sipCpp->time();
sipRes = PyDateTime_FromDateAndTime(qd.year(), qd.month(), qd.day(),
qt.hour(), qt.minute(), qt.second(), qt.msec() * 1000);
%End
%End
bool isNull() const;
int __bool__() const;
%MethodCode
sipRes = !sipCpp->isNull();
%End
bool isValid() const;
QDate date() const;
QTime time() const;
Qt::TimeSpec timeSpec() const;
uint toTime_t() const;
void setDate(const QDate &);
void setTime(const QTime &);
void setTimeSpec(Qt::TimeSpec);
void setTime_t(uint);
QString toString(Qt::DateFormat format = Qt::TextDate) const;
QString toString(const QString &) const;
QDateTime addDays(int) const;
QDateTime addMonths(int) const;
QDateTime addYears(int) const;
QDateTime addSecs(int) const;
QDateTime addMSecs(qint64) const;
QDateTime toTimeSpec(Qt::TimeSpec) const;
QDateTime toLocalTime() const;
QDateTime toUTC() const;
int daysTo(const QDateTime &) const;
int secsTo(const QDateTime &) const;
bool operator==(const QDateTime &) const;
bool operator!=(const QDateTime &) const;
bool operator<(const QDateTime &) const;
bool operator<=(const QDateTime &) const;
bool operator>(const QDateTime &) const;
bool operator>=(const QDateTime &) const;
static QDateTime currentDateTime();
static QDateTime fromString(const QString &, Qt::DateFormat format = Qt::TextDate);
static QDateTime fromString(const QString &, const QString &);
%If (Qt_4_2_0 -)
static QDateTime fromTime_t(uint);
%End
};
QDataStream &operator<<(QDataStream &, const QDate & /Constrained/);
QDataStream &operator>>(QDataStream &, QDate & /Constrained/);
QDataStream &operator<<(QDataStream &, const QTime & /Constrained/);
QDataStream &operator>>(QDataStream &, QTime & /Constrained/);
QDataStream &operator<<(QDataStream &, const QDateTime & /Constrained/);
QDataStream &operator>>(QDataStream &, QDateTime & /Constrained/);
|