Commit Graph

845 Commits

Author SHA1 Message Date
Metallicow
d710c0ffcc Reduce item.GetState() calls to 1
With a toolbar(s) with x amount of buttons reduce the number of calls from possibly 3-6 each iteration down to 1.
2020-06-08 07:14:58 -05:00
Robin Dunn
00d03bb10f Merge branch 'ulc_add_orientation_to_GetSrollPos' of https://github.com/topic2k/Phoenix into topic2k-ulc_add_orientation_to_GetSrollPos 2020-05-20 14:09:49 -07:00
Robin Dunn
9976b64d44 Merge pull request #1631 from topic2k/ulc_get_checked_item_count
[ULC] add method GetCheckedItemCount
2020-05-20 14:08:39 -07:00
Robin Dunn
d1acfb6593 Merge branch 'ulc_add_col-idx_to_event' of https://github.com/topic2k/Phoenix into topic2k-ulc_add_col-idx_to_event 2020-05-20 14:03:36 -07:00
Robin Dunn
21969cc1b2 Merge pull request #1629 from topic2k/ulc_fix_GetLineLabelRect
[ULC] fix calculation of line width
2020-05-20 13:51:20 -07:00
Robin Dunn
22e1a05941 Merge pull request #1627 from jmoraleda/issue_1364
Fix issue #1364
2020-05-20 13:23:19 -07:00
Robin Dunn
ed2e69eb46 Merge branch 'ulc_no_drag' of https://github.com/topic2k/Phoenix into topic2k-ulc_no_drag 2020-05-20 13:17:35 -07:00
topic2k
d690edb3af add method GetCheckedItemCount
Added a method to get the number of checked items.
2020-05-17 14:53:05 +02:00
Robin Dunn
6c2251229f handle an OSError exception 2020-05-14 16:31:59 -07:00
Jorge Moraleda
9a8a303daa Fix issue #1364 2020-05-07 20:17:13 -07:00
topic2k
659a9b01ca add orientation parameter to GetScrollPos 2020-05-02 12:55:14 +02:00
topic2k
25c9a6bc78 add parameter column index to SendNotify
Added a column parameter to SendNotify and set it to the column index in an UltimateListEvent where applicable.
2020-05-02 12:18:26 +02:00
topic2k
95039b7059 new agwFlag ULC_NO_ITEM_DRAG
Disable item dragging
2020-05-01 11:53:27 +02:00
topic2k
7dfccd5b37 fix calculation of line width
If one or more columns are hidden, HitTest would falsely report a hit when clicked right beside the last visible column within the range of the hidden column(s).
2020-05-01 11:28:19 +02:00
Robin Dunn
2c03076fa6 Stop fly-out timers before closing the floating pane. 2020-04-07 19:16:01 -07:00
Robin Dunn
8750ef29f1 Fix additional incorrect sizer flags 2020-04-06 20:51:09 -07:00
kg-2
17e580334b Update genericmessagedialog.py
*fixed sizer flags issue in preparation for wxpython 4.1
*fixed unhandled icon style case, will raise ValueError for bad icon mask flag
*fixed general code formatting issues
2020-04-06 07:55:05 -07:00
Per A. Brodtkorb
426258b7b7 Adding missing close for open and replaced "fid=open(filename) fid.close()"
statements with the safer "with open(filename) as fid:" blocks.

Also removed unnecessary "try: ... finally: pass" statements
and refactored code from img2py function into _write_image and _replace_non_alphanumeric_with_underscore

Fixes #1574
2020-03-25 10:36:38 +01:00
Robin Dunn
7a05d20d82 Merge pull request #1572 from pbrod/Fix_issue1571
Fixes issue 1571:
2020-03-23 16:07:22 -07:00
Robin Dunn
41c5af9cde Merge pull request #1569 from pbrod/Fix_issue1554
Fixes issue # 1554:
2020-03-23 15:35:41 -07:00
Per A. Brodtkorb
e4e8bf8317 Fixes issue 1571:
Adding missing close for open.
If the "close()" call is missing after a "open(filename)" call, the filename isn't guaranteed to be closed before the interpreter exits.
This is generally a bad practice as explained here: https://stackoverflow.com/questions/7395542/is-explicitly-closing-files-important

Also replaced "fid=open(filename) fid.close()" statements for files with the safer
"with open(filename) as fid:" blocks. See https://www.python.org/dev/peps/pep-0343/
2020-03-23 17:16:44 +01:00
Per A. Brodtkorb
fc1823315b Fixes issue # 1554:
Replaced "== None" and "!= None" with "is None" and "is not None", respectively, because the former is slower and error-prone.
2020-03-23 11:53:36 +01:00
Robin Dunn
8e2627e8e3 Merge pull request #1564 from pbrod/Fix_issue1556
Fixes issue #1556
2020-03-20 15:19:40 -07:00
Per A. Brodtkorb
033c18fd9f Fixes issue #1556
Replaced XXX.keys() calls with idiomatic python 3 calls that are compatible with python 2 such as eg:
 * replaced "y = xxx.keys()" or "y = list(xxx.keys())" with just "y = list(xxx)"
 * replaced "sorted(xxx.keys())" or "sorted(list(xxx.keys()))" with just "sorted(xxx)"
 * replaced "if not A in B.keys():" with "if A not in B:"
 * replaced "for A in B.keys():"  with "for A in B:"

See also https://python-future.org/compatible_idioms.html
https://python-future.org/compatible_idioms.html#dict-keys-values-items-as-a-list
2020-03-20 18:51:19 +01:00
Per A. Brodtkorb
f2dbd64253 Fixes issue #1557 by replacing call to tempfile.mktemp with tempfile.NamedTemporaryFile. 2020-03-20 14:51:28 +01:00
Robin Dunn
1f33298627 Add new font families and weights 2020-03-13 10:42:08 -07:00
Robin Dunn
ad4fd0db53 Initialize self._middleicon, verify it is valid before trying to use it 2020-03-13 10:40:00 -07:00
Robin Dunn
9f2cc54b48 Update copyright years 2020-03-10 11:41:39 -07:00
Linneweber, Thorben, Dr. (G-GEAC)
9dc006f6a7 Fixed a bug in the tabHeight calculation. 2020-02-27 10:21:09 +01:00
Robin Dunn
c1b18e0cc2 Merge pull request #1524 from Metallicow/fix2-time.clock
time.clock is removed in py3.8 use perf_counter
2020-02-26 20:00:28 -08:00
Metallicow
63268a83f6 time.clock is removed in py3.8 use perf_counter
time.clock is removed in py3.8 use perf_counter
2020-02-21 03:00:55 -06:00
Robin Dunn
73e6aa759c Initialize __oldvalue 2020-02-18 15:12:01 -08:00
Robin Dunn
99f4506929 Merge pull request #1516 from jmoraleda/bugfix1350
Fixes pdfviewer when using PyMuPDF version 1.15 or above. Fixes #1350
2020-02-18 14:48:57 -08:00
Jorge Moraleda
54b065f1fd Always perform full initialization of pdfViewer so that expected pdfViewer attributes always exist. Now, instead of performing a partial initialization, correctly handle the case where the containing window is still being initialized and is not reporting a correct client size. Fixes issue #1177 2020-02-17 18:00:02 -08:00
Jorge Moraleda
0e15258d96 Fixes pdfviewer when using PyMuPDF version 1.15 or above. Fixes #1350 2020-02-13 16:53:13 -08:00
Metallicow
733c38850b fix links http: -> https: 2020-01-20 23:00:08 -06:00
Kevin Schlosser
da89035e82 corrects moving of the text in the ctrl when resize occurs.
This was caused by the use of GetClientSize being used when the control is constructed and then event.GetSize() when a size event took place. These 2 methods eturn different values and causes the text to shift. After this issue was solved another issue existed. there is a border around the control. this border is not directly specified to be drawn when the widget is rendered. the dc defaults to a white pen with a width of 1. a pen is not set before drawing the box. so the white pen there for gets used. This white border is not taken into consideration when the text is drawn and causes the text to be offset slightly. this corrects the offset issue. There is also no calculation in place to determine the actual width and actual height of each character and without having that it is more like a guess to figure out exactly where to draw the characters to have them be centered correctly inside of the box. I kept the same mechanism in place and made an adjustment to fix this issue i believe. I do think that the current wat it is being done makes the code a tad more difficult to read and could be simplified. This is something I may take care of in a future PR.
2019-12-22 01:43:34 -07:00
Robin Dunn
42762bb439 Fix typo 2019-12-10 13:04:53 -08:00
Robin Dunn
bd2b8e972b iteritems --> items 2019-12-05 13:01:08 -08:00
Robin Dunn
f3b370b6da Merge pull request #1448 from wxWidgets/fix-issue1444
Verify parameter types for Check and Set3StateValue
2019-11-22 15:58:06 -08:00
Robin Dunn
e1c44da146 Verify parameter types for Check and Set3StateValue 2019-11-22 13:39:16 -08:00
Scott Talbert
d050934321 Fix SyntaxWarning in wx.lib.masked.maskededit 2019-11-22 10:41:58 -05:00
Robin Dunn
171df70a43 Fix SyntaxWarnings 2019-11-14 12:22:45 -08:00
Robin Dunn
8f5bfd6484 Add option to the plot demo for toggling the scrollbars 2019-11-13 12:00:52 -08:00
Robin Dunn
5b91b8443e Decouple showScrollbars property from the actual showing/hiding of the scrollbar widgets. Instead it indicates whether the scrollbars are allowed to be shown if _adjustScrollbars() determines that they are needed.
Also fix issues with calculating scrolled view positions when scrolling with the scrollbars.
2019-11-13 12:00:32 -08:00
Robin Dunn
8e054e37bf More long() --> int() fixes 2019-11-12 13:52:06 -08:00
Robin Dunn
9740c8e455 Use stock IDs for stock menu items 2019-11-12 11:45:42 -08:00
Robin Dunn
5c9716f503 Switch from layout constraints to a sizer 2019-11-12 11:45:05 -08:00
topic2k
3387de54d2 Use default position for PopupMenu in wx.lib.agw.ribbon.toolbar.RibbonToolBarEvent 2019-10-23 09:46:21 +02:00
topic2k
0335b898a4 Use default position for PopupMenu in wx.lib.agw.thumbnailctrl.ScrolledThumbnail 2019-10-23 09:45:48 +02:00