Commit Graph

2473 Commits

Author SHA1 Message Date
Scott Talbert
76444003fe Fix pubsub test when run boxed 2016-09-08 20:25:10 -04:00
Robin Dunn
78ae39a664 Merge pull request #161 from RobinD42/add-GetSizeTuple
Add (deprecated) GetSizeTuple to wx.Window
2016-08-26 11:30:56 -07:00
Robin Dunn
97108a8813 Add (deprecated) GetSizeTuple to wx.Window 2016-08-26 11:29:01 -07:00
David Hughes
4ca8c3e330 Disable ButtonPanel controls until PDF file chosen
Scale font metrics when rendering with Cairo (MSW only)
2016-08-24 17:52:35 -07:00
Robin Dunn
6758e3870a Slight improvement for the impl of the Borg design pattern. 2016-08-24 14:16:02 -07:00
Robin Dunn
07a5a1a9f9 The InspectionTool will call Init() itself when needed, we don't need to do it here. 2016-08-24 14:14:07 -07:00
Robin Dunn
0a17c5d485 Merge pull request #157 from swt2c/fix_radiobut_test
Fix radiobut test - SetValue(False) doesn't do anything so don't test…
2016-08-23 18:11:28 -07:00
Robin Dunn
240dce33d7 Merge pull request #156 from swt2c/fix_dcclient_tests
Fix dcclient test
2016-08-23 18:10:51 -07:00
Robin Dunn
75a24b4bab Merge pull request #155 from swt2c/fix_dcbuffer_tests
Fix dcbuffer tests
2016-08-23 18:10:39 -07:00
Robin Dunn
656c207f2d Merge pull request #153 from swt2c/fix_ultimatelistctrl_traceback
Fix UltimateListCtrl traceback
2016-08-23 18:10:24 -07:00
Robin Dunn
04ec9090df Merge pull request #154 from swt2c/fix_ribbonbar_transfer
Fix wxRibbonBar::SetArtProvider ownership
2016-08-23 18:09:41 -07:00
Robin Dunn
73f0622bf6 Additional ribbonbar_demo tweaks and cleanup. 2016-08-23 14:29:32 -07:00
Robin Dunn
27f607cb37 Merge branch 'fix_ribbon_sample_crash' of https://github.com/swt2c/Phoenix into swt2c-fix_ribbon_sample_crash 2016-08-23 14:18:26 -07:00
Scott Talbert
f608f4bed4 Fix radiobut test - SetValue(False) doesn't do anything so don't test that 2016-08-21 23:50:11 -04:00
Scott Talbert
215f1a3e1e Fix dcclient test 2016-08-21 23:26:59 -04:00
Scott Talbert
22be7280be Fix dcbuffer tests 2016-08-21 23:24:41 -04:00
Scott Talbert
929f6c7f22 Fix wxRibbonBar::SetArtProvider ownership
SetArtProvider in RibbonBar takes ownership of the pointer so we need to use
transfer here.
2016-08-21 15:36:03 -04:00
Scott Talbert
6d45c406c3 Fix UltimateListCtrl traceback
Replace ULC's hand-implemented Clone() with an actual Clone() call.

Fixes #59.
2016-08-21 15:25:04 -04:00
Scott Talbert
a3b10d5d63 Fix crash in ribbonbar sample
The ArtProvider shouldn't be cloned in this case because SetArtProvider() does
not take ownership of the object in this case.  Because of that, once the
cloned provider goes out of scope and gets garbage collected, future uses will
crash.

Fixes #141.
2016-08-20 23:16:39 -04:00
Robin Dunn
53f3c37eb1 Merge pull request #148 from swt2c/fix_msgdlg_tests
Fix msgdlg tests
2016-08-20 18:23:47 -07:00
Robin Dunn
cddd5c8295 Merge pull request #147 from swt2c/fix_richmsgdlg_tests
Fix richmsgdlg tests
2016-08-20 18:23:27 -07:00
Robin Dunn
1aef9baa4b Merge pull request #146 from swt2c/fix_scrolwin_test
Fix scrolwin test
2016-08-20 18:23:03 -07:00
Robin Dunn
98e333ed67 Merge pull request #145 from swt2c/fix_pi_import_test
Fix pi_import test - look for the .pi files in the same directory as wx
2016-08-20 18:22:51 -07:00
Robin Dunn
b88d08c220 Add a wx.GridBagSizer.Add method that allows a spacer to be defined with a wx.Size (or just a tuple) as in Classic. 2016-08-20 18:22:16 -07:00
Scott Talbert
3bce861b59 Fix msgdlg tests 2016-08-18 23:31:58 -04:00
Scott Talbert
abfe4113fb Fix richmsgdlg tests 2016-08-18 23:29:41 -04:00
Scott Talbert
24a45b69f4 Fix scrolwin test 2016-08-18 20:13:14 -04:00
Scott Talbert
6b4f5e886a Fix pi_import test - look for the .pi files in the same directory as wx 2016-08-18 20:03:43 -04:00
Robin Dunn
ca34d719be Merge pull request #144 from swt2c/fix_topictreetraverser
Fix TopicTreeTraverser when doing breadth traversal on Python 3
2016-08-15 23:18:26 -07:00
Robin Dunn
c17f51d459 Merge pull request #143 from swt2c/fix_pubsub_provider_tests
Fix lib_pubsub_provider tests
2016-08-15 23:17:57 -07:00
Robin Dunn
bce90d0941 Merge pull request #142 from swt2c/fix_pubsub_listener_tests
Fix lib_pubsub_listener tests
2016-08-15 23:17:08 -07:00
Robin Dunn
2a30ee163d Merge pull request #140 from swt2c/fix_pubsub_except_tests
Fix lib_pubsub_except tests
2016-08-15 23:16:22 -07:00
Robin Dunn
f5fea14e5e Merge pull request #139 from swt2c/fix_flatmenu_test
Fix lib_agw_flatmenu test
2016-08-15 23:15:42 -07:00
Robin Dunn
e47140fb01 Merge pull request #138 from swt2c/fix_pyprogress_tests
Fix lib_agw_pyprogress tests
2016-08-15 23:15:17 -07:00
Robin Dunn
bd371e6aab Merge pull request #137 from swt2c/fix_dockart
Fix dockart when not using the Windows XP theme
2016-08-15 23:15:00 -07:00
Scott Talbert
cf59ae09fb Fix TopicTreeTraverser when doing breadth traversal on Python 3
Python 3 orders maps differently from Python 2, so sort the subtopics before
traversing them like is done with depth traversal.
2016-08-16 00:15:36 -04:00
Scott Talbert
b683d39ab2 Fix lib_pubsub_provider tests 2016-08-15 20:54:44 -04:00
Scott Talbert
30f991910d Fix lib_pubsub_listener tests
Python 3 doesn't have unbound methods and thus will not throw the ValueError
that is expected in Python 2.
2016-08-14 20:15:49 -04:00
Scott Talbert
ed9ddf5300 Fix lib_pubsub_except tests 2016-08-14 11:13:44 -04:00
Scott Talbert
bf8c78ea8b Fix lib_agw_flatmenu test 2016-08-13 20:57:35 -04:00
Scott Talbert
22d9d555ab Fix lib_agw_pyprogress tests 2016-08-13 20:38:54 -04:00
Robin Dunn
25d687d8a3 Convert some code snippets for the docs. 2016-08-13 17:33:33 -07:00
Scott Talbert
6f026ab75f Fix dockart when not using the Windows XP theme 2016-08-13 20:19:00 -04:00
Robin Dunn
5b831d5498 Merge pull request #135 from swt2c/fix_helpwnd_test
Fix helpwnd test - need to wait a bit longer for window to be realized
2016-08-13 12:29:42 -07:00
Robin Dunn
f3869e4d3c Merge pull request #133 from swt2c/fix_helpdlg_test
Fix helpdlg test
2016-08-13 12:29:25 -07:00
Robin Dunn
ad4fa75d03 Merge pull request #132 from swt2c/fix_graphics_tests
Fix graphics tests
2016-08-13 12:28:40 -07:00
Scott Talbert
5fb4967629 Fix helpwnd test - need to wait a bit longer for window to be realized 2016-08-12 21:49:03 -04:00
Robin Dunn
ffcc23cb60 Change "~lib" --> "~wx.lib" in agw 2016-08-12 14:57:10 -07:00
Robin Dunn
b4233d9299 Fully qualify names for more links. 2016-08-12 14:53:29 -07:00
Robin Dunn
62e5198463 Fix backslashes. 2016-08-12 10:58:03 -07:00