Robin Dunn
62e5198463
Fix backslashes.
2016-08-12 10:58:03 -07:00
Robin Dunn
1efd6fb03f
Merge pull request #124 from RobinD42/wip-demo
...
WIP: Various tweaks and fixes for issues discovered in the demo
2016-08-10 19:58:25 -07:00
Robin Dunn
175542eafa
Remove more old and unused demo files
2016-08-10 19:49:48 -07:00
Robin Dunn
2f1f0ee1e9
XRC and MemoryFSHandler fixes
2016-08-10 19:46:58 -07:00
Robin Dunn
9d5e743e50
More minor demo fixes and updates for Py3, Phoenix, etc.
2016-08-10 15:56:04 -07:00
Robin Dunn
9fe03f7570
Remove some additional unused/outdated demo files
2016-08-10 15:55:21 -07:00
Robin Dunn
2e93343b6f
Merge branch 'master' into wip-demo
2016-08-10 10:59:10 -07:00
Robin Dunn
ce00fc06a5
* Slight refactoring in wx/lib/plot/examples/demo.py
...
* Add a __init__.py
* Update the PyPlot sample in the main wxPython demo to use the new plot demo
2016-08-10 10:48:54 -07:00
Robin Dunn
56492c33c7
Merge branch 'master' into wip-demo
2016-08-09 23:07:38 -07:00
Robin Dunn
4eb38cb526
Merge pull request #127 from david-hughes/pdfviewer
...
4 August 2016 Phoenix updates for wx.lib.pdfviewer and demo/PDFViewer
2016-08-09 23:02:05 -07:00
Robin Dunn
f04fe636e6
Merge pull request #131 from swt2c/fix_fontdlg_test
...
Fix fontdlg test on wxGTK
2016-08-09 22:31:58 -07:00
Robin Dunn
58989a69fc
Merge pull request #130 from swt2c/fix_filedlg_test
...
Fix filedlg test
2016-08-09 22:29:49 -07:00
Robin Dunn
9d0f91e010
Merge pull request #129 from swt2c/fix_event_tests_crash
...
Fix crash when running event tests
2016-08-09 22:28:30 -07:00
Robin Dunn
8d320deb78
Merge pull request #128 from swt2c/fix_filectrl_tests
...
Fix filectrl tests
2016-08-09 22:25:12 -07:00
Scott Talbert
349f314318
Fix fontdlg test on wxGTK
...
Unfortunately, wx treats FONTFAMILY_MODERN and FONTFAMILY_TELETYPE as the same,
and even worse, the underlying MSW and GTK implementations are different.
Thus, we need to check for either MODERN or TELETYPE here.
2016-08-07 21:05:27 -04:00
Scott Talbert
1b3f680157
Fix filedlg test
2016-08-07 10:28:03 -04:00
Scott Talbert
127b8dba9b
Fix crash when running event tests
...
HelpEvent requires a wx.App to exist, at least on GTK as it ultimately fetches
the root window.
2016-08-07 10:18:14 -04:00
Scott Talbert
52939e4912
Fix filectrl tests
2016-08-07 09:41:30 -04:00
Robin Dunn
0a80536c8b
PyFunctionDef should also have a hasOverloads() method for quacking like a duck.
2016-08-05 21:20:04 -07:00
Robin Dunn
048f8dfe06
PyFunctionDef should also have a hasOverloads() method for quacking like a duck.
2016-08-05 21:17:15 -07:00
Robin Dunn
b1c22a32a4
Merge branch 'master' into wip-demo
2016-08-05 21:04:57 -07:00
Robin Dunn
97a5183ebf
Merge branch 'swt2c-fix_wxmask_test'
2016-08-05 21:03:23 -07:00
Robin Dunn
b643ea4289
wx.Palette constructor doesn't need the array length anymore
2016-08-05 21:02:50 -07:00
Robin Dunn
0d1d4ddf58
Merge branch 'fix_wxmask_test' of https://github.com/swt2c/Phoenix into swt2c-fix_wxmask_test
2016-08-05 20:57:38 -07:00
Robin Dunn
3bbcd4b7f3
Some docs updates for wx.Palette
2016-08-05 16:22:45 -07:00
Robin Dunn
f48b90f8c4
Use bold for method and class names
2016-08-05 16:22:15 -07:00
Robin Dunn
50c1acd136
Don't use "*args, **kw" in the docs when only one of the overloads is not ignored.
2016-08-05 16:21:35 -07:00
Robin Dunn
854f2b509a
Merge branch 'master' into wip-demo
2016-08-05 13:24:13 -07:00
Robin Dunn
cd9d6b7be8
Merge branch 'swt2c-palette'
2016-08-05 13:20:37 -07:00
Robin Dunn
a672913e97
Refactor custom Create code to a separate helper function.
...
Add a replacement for the constructor taking arrays of rgb values.
Update and expand tests.
2016-08-05 12:08:21 -07:00
Robin Dunn
1429bb0dd2
Add missing "PyErr_Clear();" for cppCtors
2016-08-05 12:00:17 -07:00
David Hughes
a0436a3b6b
Updated intra-doc links to ensure fully qualified names
2016-08-05 16:03:43 +01:00
Robin Dunn
ab01a89816
Fix wxPalette::Create on OSX
2016-08-04 22:48:57 -07:00
Robin Dunn
fe29df05d4
Switch from Tuple to more general Sequence, and other refactoring.
2016-08-04 22:42:32 -07:00
Robin Dunn
c680758ff1
Merge branch 'palette' of https://github.com/swt2c/Phoenix into swt2c-palette
2016-08-04 19:47:54 -07:00
Robin Dunn
7dc652896c
Add comment explaining the magic '2'
2016-08-04 19:46:47 -07:00
Robin Dunn
23b4a1b4d3
Don't use apply()
2016-08-04 19:44:43 -07:00
Robin Dunn
92d15292ec
Enforce passing a bytes object to wx.OutputStream.write, don't try to coerce it.
...
Fix use of the thread blocker in streams
2016-08-04 19:43:49 -07:00
Scott Talbert
fefc7c59b0
Add wrapper and unittests for wxPalette
2016-08-04 20:47:58 -04:00
Robin Dunn
8b8536ccfb
More minor demo fixes and updates for Py3, Phoenix, etc.
2016-08-04 15:20:02 -07:00
Robin Dunn
0e79905aa0
Don't set the hourglass cursor every time the diagram is redrawn. It can get real annoying.
2016-08-04 15:14:43 -07:00
Robin Dunn
33e3e8d32c
Get rid of mvctree
2016-08-04 15:11:53 -07:00
Robin Dunn
9c5073244f
Fixes for the mimetype wrappers and demo
2016-08-04 12:42:14 -07:00
Robin Dunn
b00620f286
Reorder overloads when adding a new one, in case the primary FunctionDef has been ignored.
2016-08-04 12:02:04 -07:00
Robin Dunn
090931f415
Updates for the TODO list
2016-08-04 10:58:22 -07:00
Robin Dunn
f271cd7a6f
More minor demo updates for Py3, Phoenix, etc.
2016-08-04 10:57:09 -07:00
Robin Dunn
08f2a9af59
wxMac doesn't like wx.INVERT anymore
2016-08-04 10:53:24 -07:00
David Hughes
56cad152d9
4 August 2016 Phoenix updates for wx.lib.pdfviewer and demo/PDFViewer
...
demo/viewer.py and viewer_basics.py removed - was demo of obsolete vtk
2016-08-04 11:26:08 +01:00
Robin Dunn
217a3f1967
Add setters for wxListEvent to fix the ListCtrl_edit sample
2016-08-03 16:40:41 -07:00
Robin Dunn
a4ecd56a7d
More minor demo tweaks
2016-08-03 14:09:40 -07:00