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 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694
|
.. wxPython Phoenix documentation
This file was generated by Phoenix's sphinx generator and associated
tools, do not edit by hand.
Copyright: (c) 2011-2020 by Total Control Software
License: wxWindows License
.. include:: headings.inc
.. _wx.DateSpan:
==========================================================================================================================================
|phoenix_title| **wx.DateSpan**
==========================================================================================================================================
This class is a "logical time span" and is useful for implementing program logic for such things as "add one month to the date" which, in general, doesn't mean to add 60x60x24x31 seconds to it, but to take the same date the next month (to understand that this is indeed different consider adding one month to Feb, 15 – we want to get Mar, 15, of course).
When adding a month to the date, all lesser components (days, hours, ...) won't be changed unless the resulting date would be invalid: for example, Jan 31 + 1 month will be Feb 28, not (non-existing) Feb 31.
Because of this feature, adding and subtracting back again the same :ref:`wx.DateSpan` will **not**, in general, give back the original date: Feb 28 - 1 month will be Jan 28, not Jan 31!
:ref:`wx.DateSpan` objects can be either positive or negative. They may be multiplied by scalars which multiply all deltas by the scalar: i.e. 2(1 month and 1 day) is 2 months and 2 days. They can be added together with :ref:`wx.DateTime` or :ref:`wx.TimeSpan`, but the type of result is different for each case.
Equality operators are defined for DateSpans. Two DateSpans are equal if and only if they both give the same target date when added to **every** source date. Thus `DateSpan.Months(1)` is not equal to `DateSpan.Days(30),` because they don't give the same date when added to Feb 1st. But `DateSpan.Days(14)` is equal to `DateSpan.Weeks(2).`
Finally, notice that for adding hours, minutes and so on you don't need this class at all: :ref:`wx.TimeSpan` will do the job because there are no subtleties associated with those (we don't support leap seconds).
.. warning:: If you specify both weeks and days, the total number of days added will be 7weeks + days! See also :meth:`GetTotalDays` .
.. seealso:: :ref:`Date and Time <date and time>`, :ref:`wx.DateTime`
|
|class_hierarchy| Class Hierarchy
=================================
.. raw:: html
<div id="toggleBlock" onclick="return toggleVisibility(this)" class="closed" style="cursor:pointer;">
<img id="toggleBlock-trigger" src="_static/images/closed.png"/>
Inheritance diagram for class <strong>DateSpan</strong>:
</div>
<div id="toggleBlock-summary" style="display:block;"></div>
<div id="toggleBlock-content" style="display:none;">
<p class="graphviz">
<center><img src="_static/images/inheritance/wx.DateSpan_inheritance.png" alt="Inheritance diagram of DateSpan" usemap="#dummy" class="inheritance"/></center>
<script type="text/javascript">toggleVisibilityOnLoad(document.getElementById('toggleBlock'))</script>
<map id="dummy" name="dummy"> <area shape="rect" id="node1" href="wx.DateSpan.html" title="wx.DateSpan" alt="" coords="5,5,113,35"/> </map>
</p>
</div>
|
|method_summary| Methods Summary
================================
================================================================================ ================================================================================
:meth:`~wx.DateSpan.__init__` Constructs the date span object for the given number of years, months, weeks and days.
:meth:`~wx.DateSpan.Add` Adds the given :ref:`wx.DateSpan` to this :ref:`wx.DateSpan` and returns a reference to itself.
:meth:`~wx.DateSpan.Day` Returns a date span object corresponding to one day.
:meth:`~wx.DateSpan.Days` Returns a date span object corresponding to the given number of days.
:meth:`~wx.DateSpan.GetDays` Returns the number of days (not counting the weeks component) in this date span.
:meth:`~wx.DateSpan.GetMonths` Returns the number of the months (not counting the years) in this date span.
:meth:`~wx.DateSpan.GetTotalDays` Returns the combined number of days in this date span, counting both weeks and days.
:meth:`~wx.DateSpan.GetTotalMonths` Returns the combined number of months in this date span, counting both years and months.
:meth:`~wx.DateSpan.GetWeeks` Returns the number of weeks in this date span.
:meth:`~wx.DateSpan.GetYears` Returns the number of years in this date span.
:meth:`~wx.DateSpan.Month` Returns a date span object corresponding to one month.
:meth:`~wx.DateSpan.Months` Returns a date span object corresponding to the given number of months.
:meth:`~wx.DateSpan.Multiply` Multiplies this date span by the specified `factor`.
:meth:`~wx.DateSpan.Neg` Changes the sign of this date span.
:meth:`~wx.DateSpan.Negate` Returns a date span with the opposite sign.
:meth:`~wx.DateSpan.SetDays` Sets the number of days (without modifying any other components) in this date span.
:meth:`~wx.DateSpan.SetMonths` Sets the number of months (without modifying any other components) in this date span.
:meth:`~wx.DateSpan.SetWeeks` Sets the number of weeks (without modifying any other components) in this date span.
:meth:`~wx.DateSpan.SetYears` Sets the number of years (without modifying any other components) in this date span.
:meth:`~wx.DateSpan.Subtract` Subtracts the given :ref:`wx.DateSpan` to this :ref:`wx.DateSpan` and returns a reference to itself.
:meth:`~wx.DateSpan.Week` Returns a date span object corresponding to one week.
:meth:`~wx.DateSpan.Weeks` Returns a date span object corresponding to the given number of weeks.
:meth:`~wx.DateSpan.Year` Returns a date span object corresponding to one year.
:meth:`~wx.DateSpan.Years` Returns a date span object corresponding to the given number of years.
================================================================================ ================================================================================
|
|api| Class API
===============
.. class:: wx.DateSpan(object)
**Possible constructors**::
DateSpan(years=0, months=0, weeks=0, days=0)
This class is a "logical time span" and is useful for implementing
program logic for such things as "add one month to the date" which, in
general, doesn't mean to add 60x60x24x31 seconds to it, but to take
the same date the next month (to understand that this is indeed
different consider adding one month to Feb, 15 we want to get Mar,
15, of course).
.. method:: __init__(self, years=0, months=0, weeks=0, days=0)
Constructs the date span object for the given number of years, months, weeks and days.
Note that the weeks and days add together if both are given.
:param `years`:
:type `years`: int
:param `months`:
:type `months`: int
:param `weeks`:
:type `weeks`: int
:param `days`:
:type `days`: int
.. method:: Add(self, other)
Adds the given :ref:`wx.DateSpan` to this :ref:`wx.DateSpan` and returns a reference to itself.
:param `other`:
:type `other`: wx.DateSpan
:rtype: :ref:`wx.DateSpan`
.. staticmethod:: Day()
Returns a date span object corresponding to one day.
:rtype: :ref:`wx.DateSpan`
.. seealso:: :meth:`Days`
.. staticmethod:: Days(days)
Returns a date span object corresponding to the given number of days.
:param `days`:
:type `days`: int
:rtype: :ref:`wx.DateSpan`
.. seealso:: :meth:`Day`
.. method:: GetDays(self)
Returns the number of days (not counting the weeks component) in this date span.
:rtype: `int`
.. seealso:: :meth:`GetTotalDays`
.. method:: GetMonths(self)
Returns the number of the months (not counting the years) in this date span.
:rtype: `int`
.. method:: GetTotalDays(self)
Returns the combined number of days in this date span, counting both weeks and days.
This doesn't take months or years into account.
:rtype: `int`
.. seealso:: :meth:`GetWeeks` , :meth:`GetDays`
.. method:: GetTotalMonths(self)
Returns the combined number of months in this date span, counting both years and months.
:rtype: `int`
.. versionadded:: 2.9.5
.. seealso:: :meth:`GetYears` , :meth:`GetMonths`
.. method:: GetWeeks(self)
Returns the number of weeks in this date span.
:rtype: `int`
.. seealso:: :meth:`GetTotalDays`
.. method:: GetYears(self)
Returns the number of years in this date span.
:rtype: `int`
.. staticmethod:: Month()
Returns a date span object corresponding to one month.
:rtype: :ref:`wx.DateSpan`
.. seealso:: :meth:`Months`
.. staticmethod:: Months(mon)
Returns a date span object corresponding to the given number of months.
:param `mon`:
:type `mon`: int
:rtype: :ref:`wx.DateSpan`
.. seealso:: :ref:`wx.DateTime.Month`
.. method:: Multiply(self, factor)
Multiplies this date span by the specified `factor`.
The product is computed by multiplying each of the components by the `factor`.
:param `factor`:
:type `factor`: int
:rtype: :ref:`wx.DateSpan`
:returns:
A reference to this :ref:`wx.DateSpan` object modified in place.
.. method:: Neg(self)
Changes the sign of this date span.
:rtype: :ref:`wx.DateSpan`
.. seealso:: :meth:`Negate`
.. method:: Negate(self)
Returns a date span with the opposite sign.
:rtype: :ref:`wx.DateSpan`
.. seealso:: :meth:`Neg`
.. method:: SetDays(self, n)
Sets the number of days (without modifying any other components) in this date span.
:param `n`:
:type `n`: int
:rtype: :ref:`wx.DateSpan`
.. method:: SetMonths(self, n)
Sets the number of months (without modifying any other components) in this date span.
:param `n`:
:type `n`: int
:rtype: :ref:`wx.DateSpan`
.. method:: SetWeeks(self, n)
Sets the number of weeks (without modifying any other components) in this date span.
:param `n`:
:type `n`: int
:rtype: :ref:`wx.DateSpan`
.. method:: SetYears(self, n)
Sets the number of years (without modifying any other components) in this date span.
:param `n`:
:type `n`: int
:rtype: :ref:`wx.DateSpan`
.. method:: Subtract(self, other)
Subtracts the given :ref:`wx.DateSpan` to this :ref:`wx.DateSpan` and returns a reference to itself.
:param `other`:
:type `other`: wx.DateSpan
:rtype: :ref:`wx.DateSpan`
.. staticmethod:: Week()
Returns a date span object corresponding to one week.
:rtype: :ref:`wx.DateSpan`
.. seealso:: :meth:`Weeks`
.. staticmethod:: Weeks(weeks)
Returns a date span object corresponding to the given number of weeks.
:param `weeks`:
:type `weeks`: int
:rtype: :ref:`wx.DateSpan`
.. seealso:: :meth:`Week`
.. staticmethod:: Year()
Returns a date span object corresponding to one year.
:rtype: :ref:`wx.DateSpan`
.. seealso:: :meth:`Years`
.. staticmethod:: Years(years)
Returns a date span object corresponding to the given number of years.
:param `years`:
:type `years`: int
:rtype: :ref:`wx.DateSpan`
.. seealso:: :ref:`wx.DateTime.Year`
|