Commit Graph

4886 Commits

Author SHA1 Message Date
Metallicow
5ceaff1874 Convert all line endings to Unix(LF) 2020-07-19 23:56:16 -05:00
Metallicow
0bdbfd532d revert richtooltip bork 2020-07-19 23:54:21 -05:00
Metallicow
542a32c17d Optimize Colour Brush Pen
Use builtin Colours, Brushes, Pens where needed. They are faster.
2020-07-19 23:48:39 -05:00
Robin Dunn
75f1081f84 Merge branch 'spelling-fixes' 2020-07-16 20:13:31 -07:00
Robin Dunn
4cc48522b4 New names added to the map 2020-07-16 20:12:43 -07:00
Robin Dunn
9079f2d216 Update the wxWidgets reference 2020-07-16 20:12:11 -07:00
Robin Dunn
baa9b01930 Merge pull request #1726 from swt2c/more_pg_fixes
Fix wx.PropertyGridManager GetExtraStyle() and GTK3 demo issue
2020-07-16 19:27:41 -07:00
Robin Dunn
a0ae876bff Merge pull request #1709 from jeremyd2019/wxpybuffer-python2
Try both old and new buffer protocols on python2.7
2020-07-16 19:23:14 -07:00
Robin Dunn
c00b8950da Spelling fixes in wx.lib 2020-07-14 12:53:31 -07:00
Robin Dunn
d265d13f6c Spelling fixes in the demo 2020-07-14 12:00:55 -07:00
Robin Dunn
92f8cd2d55 Fix lots of misspelled words 2020-07-14 11:38:32 -07:00
Scott Talbert
3a7748db47 PG Demo: OR the "help as tooltips" flag instead of setting
This fixes an issue on GTK3 platforms with HiDPI screens.  When using
SetExtraStyle(), all of the existing flags, including native double buffering,
were being cleared.  GTK3 currently has issues when native double buffering is
disabled, so this ensures that the existing default flags aren't overwritten.
2020-07-14 10:06:53 -04:00
Scott Talbert
f42d2de988 Update wxWidgets commit for wxPG GetExtraStyle() fix 2020-07-14 10:06:53 -04:00
Robin Dunn
bd6733afa2 Add, and ignore for now, some new things in grid 2020-07-08 16:59:11 -07:00
Robin Dunn
9b682d61c4 Update wxWidgets commit ref 2020-07-08 16:50:36 -07:00
Robin Dunn
503e9e2340 Merge pull request #1719 from wxWidgets/fix-issue1718
Fix compilation errors in glcanvas stubs
2020-07-08 16:11:26 -07:00
Robin Dunn
2e413a1c33 Fix compilation errors in glcanvas stubs 2020-07-08 09:35:42 -07:00
Robin Dunn
07941fc888 Ignore the TryActivate method for now,
some related compilation issues need to be resolved first.
2020-07-07 16:52:45 -07:00
Robin Dunn
8ed62491e7 Add some code snippets for the docs 2020-07-07 16:03:56 -07:00
Robin Dunn
509de11947 Add note about wx.PyApp 2020-07-07 11:33:23 -07:00
Robin Dunn
ab674002af Bump min OSX version to 10.10 2020-07-07 11:12:22 -07:00
Robin Dunn
5af1e297ba Update wxWidgets commit ref 2020-07-07 10:03:07 -07:00
Robin Dunn
3fd90c0c97 fix typo 2020-07-06 14:19:00 -07:00
Jeremy Drake
4a292c3cda Revert "pywxrc: fix embedded resources in python 2.7 and 3"
This reverts commit 234491058f now that
memoryview works properly on python 2.7.
2020-07-02 22:42:27 -07:00
jeremyd2019
357a350837 Try both old and new buffer protocols on python2.7
While some objects on 2.7 might only implement the old buffer protocol,
some (notably memoryview) only implement the new buffer protocol, so
both need to be tried.
2020-07-02 22:41:12 -07:00
Robin Dunn
961dda67ee Merge pull request #1699 from evils/delicious
build.py: append PYTHONPATH
2020-07-02 20:45:51 -07:00
Robin Dunn
b60eaf3dc1 Merge pull request #1711 from wxWidgets/fix-issue1706
Add `IsNull()` checks for all property methods in GraphicsObject classes
2020-07-02 20:45:08 -07:00
Robin Dunn
6f1e8afcb0 Merge pull request #1710 from wxWidgets/fix-issue1701
Copy the full documentation for our custom dc.GetPixel wrapper
2020-07-02 20:44:55 -07:00
Robin Dunn
4ac15dda3a Ensure that demo/version.py makes it into the source and demo archives 2020-07-02 16:41:35 -07:00
Robin Dunn
2573b6de8e Also catch the locale.Error exception 2020-07-02 16:15:03 -07:00
Robin Dunn
152a24e341 Add IsNull() checks for all property methods in GraphicsObject classes 2020-07-02 15:49:54 -07:00
Robin Dunn
ca257209e6 Add ability to use %PreMethodCode% for more than just the mustHaveApp check 2020-07-02 15:48:48 -07:00
Robin Dunn
90176323bd Merge pull request #1705 from StefanBruens/stl_fixes
Allow building with STL wxWidgets variant
2020-07-02 15:46:12 -07:00
Robin Dunn
78120174d6 Copy the full documentation for our custom dc.GetPixel wrapper 2020-07-02 15:29:49 -07:00
Robin Dunn
f1252484a8 Merge pull request #1697 from swt2c/windowlist_transfer
Set transfer flag on wxPGWindowList constructor and SetSecondary method
2020-07-02 15:06:42 -07:00
Robin Dunn
fa22d882cd Merge pull request #1688 from jeremyd2019/pywxrc-embedded-binary-resources
pywxrc: fix embedded resources in python 2.7 AND 3
2020-07-02 14:32:46 -07:00
Stefan Brüns
b45ec07194 Use explicit wxString::c_str conversion for sipFindType(const char*) 2020-07-01 15:13:07 +02:00
Stefan Brüns
5990d44b5e Fix conversion of variant list members
Item() returns either a Node* or (with wxUSE_STL=1) a
compatibility_iterator. While the former is silently and erroneously
converted to a Variant using the Variant(void*) overload, the STL
flavor fortunately failed. Dereference the Node*/iterator before
passing it to wxVariant_out_helper(const Variant&).
2020-07-01 15:11:07 +02:00
Robin Dunn
73f75ea3e4 Fix builds on Windows 2020-06-29 12:26:46 -07:00
Robin Dunn
64b5ddd8c4 Merge branch 'wx-updates' 2020-06-29 10:33:54 -07:00
Robin Dunn
de1c8b42d8 Update wxWidgets to latest commit 2020-06-29 10:16:42 -07:00
Robin Dunn
56dc1f699e Update changelog for recent changes 2020-06-29 10:08:44 -07:00
Robin Dunn
7ac363ca7e Merge pull request #1702 from wxWidgets/locale-stuff
New InitLocale implementation
2020-06-29 08:21:50 -07:00
Robin Dunn
c369038ad4 Tweaks needed for new wxWidgets changes 2020-06-26 22:35:51 -07:00
Robin Dunn
99d7c1a52e Update wxWidgets to latest commit 2020-06-26 21:51:35 -07:00
Robin Dunn
41220cc9bb Don't use an f-string, in order to not break Py2.7 (yet) 2020-06-26 21:49:47 -07:00
Robin Dunn
089985a9fb Log the exception's message too 2020-06-26 13:29:00 -07:00
Robin Dunn
f67f588fb9 Update wx.App.InitLocale to be MSW-only, simpler, and maybe better 2020-06-26 12:45:18 -07:00
Robin Dunn
1e92a83dfa Add note about locale issue on Windows 2020-06-26 12:19:46 -07:00
Robin Dunn
315789a9ec Add wxString version of wxSetLocale 2020-06-26 12:15:59 -07:00