Metallicow
9173bc479f
Remove wxPy < 2.9 check
2020-06-08 08:39:21 -05:00
Robin Dunn
713fa4a479
Merge pull request #1638 from efahl/patch-1
...
Eliminate deprecation warning
2020-05-20 14:15:16 -07: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
efahl
2c571edc23
Eliminate deprecation warning
...
Remove import of 'imp' module to eliminate deprecation warning.
2020-05-14 12:00:56 -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
d8af08a52d
Merge pull request #1590 from wxWidgets/fix-issue1581
...
Use different typecheck code for wxArrayInt and wxArrayString in variant conversions
2020-04-08 10:35:50 -07:00
Robin Dunn
2c03076fa6
Stop fly-out timers before closing the floating pane.
2020-04-07 19:16:01 -07:00
Robin Dunn
7de301c105
Use different typecheck code for wxArrayInt and wxArrayString in variant conversions
2020-04-07 18:30:07 -07:00
Robin Dunn
8750ef29f1
Fix additional incorrect sizer flags
2020-04-06 20:51:09 -07:00
Robin Dunn
a1bfc230e8
Merge branch 'patch-1' of https://github.com/kg-2/Phoenix into kg-2-patch-1
2020-04-06 20:41:34 -07:00
Robin Dunn
2baac81cee
Merge pull request #1579 from wxWidgets/fix-1567-AnimationDecoder
...
Use generic animation classes on all platforms
2020-04-06 20:16:51 -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
Robin Dunn
de25f3091f
Merge pull request #1576 from pbrod/Fix_issue1570_use_of_tempfile
...
Fixes issue #1570 :
2020-04-01 15:40:07 -07:00
Robin Dunn
7aac38dbcb
Updates needed for animation updates in wxWidgets
2020-04-01 15:30:27 -07:00
Per A. Brodtkorb
5cf6dc565e
Fixes #1570
...
Replaced the unsafe "tfname = tempfile.mktemp()" call with
"with tempfile.NamedTemporaryFile(delete=False) as fid: tfname = fid.name"
Also removed unused "import glob"
2020-03-25 11:27:49 +01: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
764abb41bf
Don't use relative imports in the tools scripts
2020-03-20 15:21:23 -07:00
Robin Dunn
8e2627e8e3
Merge pull request #1564 from pbrod/Fix_issue1556
...
Fixes issue #1556
2020-03-20 15:19:40 -07:00
Robin Dunn
68e8650a4d
Merge pull request #1563 from pbrod/Fix_issue1555
...
Fixes issue 1555
2020-03-20 15:06:21 -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
05ac589e2d
Fixes issue 1555
...
Replace open-close statements by the use of "with"-blocks.
With the "With" statement, you get better syntax and exceptions handling.
"The with statement simplifies exception handling by encapsulating common
preparation and cleanup tasks."
In addition, it will automatically close the file. The with statement provides
a way for ensuring that a clean-up is always used.
2020-03-20 15:03:09 +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
Robin Dunn
c51cdd2334
Merge pull request #1474 from wxWidgets/fix-wget-typos
...
Fix typos and trim whitespace
2019-12-31 16:08:30 -08:00
Robin Dunn
e3ef0db163
Fix typos and trim whitespace
2019-12-31 14:13:20 -08:00