Commit Graph

2576 Commits

Author SHA1 Message Date
Metallicow
3be3859c21 advancedsplash font fix 2016-10-06 22:34:21 -07:00
Metallicow
e875cfbdb9 auqabutton phoenix fix 2016-10-06 22:34:21 -07:00
Metallicow
b60b24ff5c Optimize PNGs agw bitmaps dir
75 files processed. 70,639 bytes saved (79%)
2016-10-06 22:34:21 -07:00
Metallicow
2b8a2f9c70 Optimize PNGs-data dir
2 files processed. 2,613 bytes saved (88%)
2016-10-06 22:34:20 -07:00
Metallicow
f45b4cd648 Optimize PNGs-bmp_source dir
96 files processed. 69,399 bytes saved (76%)
2016-10-06 22:34:20 -07:00
Robin Dunn
29d01190a1 Merge pull request #113 from mesalu/patch-1
Added check for mgr in close procedure
2016-10-06 21:45:22 -07:00
Robin Dunn
bc785e9409 Merge pull request #114 from mesalu/demo_GBS_Fix
Update GridBagSizer.py
2016-10-06 21:45:04 -07:00
Mesalu
62b7c2f8d9 Update GridBagSizer.py
Allow box sizer to expand gbs.
2016-10-06 17:15:54 -07:00
Robin Dunn
1fe2585742 Merge pull request #177 from Metallicow/Optimize-PNGs-sphinx
Optimize PNGs-Sphinx
2016-10-03 18:46:15 -07:00
Robin Dunn
1c90f1f29a Merge remote-tracking branch 'upstream/master' 2016-10-03 18:40:43 -07:00
Robin Dunn
9ea5c0b4d1 Merge pull request #176 from Metallicow/Optimize-PNGs-bitmaps
Optimize PNGs bitmaps dir
2016-10-03 18:35:44 -07:00
Mesalu
a75b042f5d Added check for mgr in close procedure
Added to resolve the following error:
Traceback (most recent call last):
  File "/users/dunnsa/lib/python3.5/site-packages/wx/lib/inspection.py", line 278, in OnClose
    self.SaveSettings(self.config)
  File "/users/dunnsa/lib/python3.5/site-packages/wx/lib/inspection.py", line 431, in SaveSettings
    perspective = self.mgr.SavePerspective()
AttributeError: 'InspectionFrame' object has no attribute 'mgr'


Still not sure why this happening, and I'm more inclined to believe it a fault in my TLW's close process. 
However it has happened on two different machines (both wxGTK) under a normal user close event.
2016-10-03 13:34:18 -07:00
Metallicow
aa8c78ed2f Optimize PNGs-Sphinx
PNGs optimized with FileOptimizer
742,106 bytes saved. (81%)
Load images faster; less download time.
2016-10-02 17:30:34 -05:00
Metallicow
caca0fec92 Optimize PNGs bitmaps dir
Optimized PNG's with FileOptimizer
66 files processed. 112,331 bytes
saved (77%)

By optimizing images, it strips all metadata
but leaves the
image looking the same(lossless).
This directly relates to shorter load
times,
and smaller amount of code output when converted
to a
PyEmbeddedImage.
2016-10-02 00:32:04 -05:00
Robin Dunn
33fadd8c5b Link the _richtext module with the adv lib 2016-10-01 01:16:47 -07:00
Robin Dunn
3762e10e19 cleanup 2016-10-01 01:16:20 -07:00
Robin Dunn
0c3721e0ed Better code snippets for wx.Dialog 2016-09-30 20:01:54 -07:00
Robin Dunn
04815c372b Add code snippets for wx.richtext.RichTextFormattingDialog and wx.adv.PropertySheetDialog
Add demo module
2016-09-30 20:01:34 -07:00
Robin Dunn
3384f99be7 Add wx.richtext.RichTextFormattingDialog 2016-09-30 14:17:58 -07:00
Robin Dunn
03c47b50df Add wx.adv.PropertySheetDialog 2016-09-30 13:45:41 -07:00
Robin Dunn
936cdb7a66 Source build needs to have a full build available to draw some files from. 2016-09-30 13:43:30 -07:00
Robin Dunn
c56918b7ea GetContentWindow needs to be virtual 2016-09-30 13:42:07 -07:00
Robin Dunn
407714eea3 Fix typo 2016-09-30 13:41:36 -07:00
Robin Dunn
47f1fd2761 Move the building of the docs to the Windows buildslave. 2016-09-23 19:24:38 -07:00
Robin Dunn
a2cb50fd15 Handle case where cairo.CAPI is not able to be imported 2016-09-23 19:22:50 -07:00
Robin Dunn
4e990745ca Restore wx.lib.rcsizer, it is still used in a couple places in wx.lib 2016-09-23 19:07:14 -07:00
Robin Dunn
5b0fa09164 Add a deprecated alias for SetSizeHints for backwards compatibility 2016-09-23 16:02:25 -07:00
Robin Dunn
8568cd0871 Change docs_bdist --> bdist_docs 2016-09-23 16:01:33 -07:00
Robin Dunn
deab176d26 Fix sdist on Windows 2016-09-23 15:31:47 -07:00
Robin Dunn
32a324f73b Some minor cleanup 2016-09-22 09:46:39 -07:00
Robin Dunn
8e6609a3d4 Fix MD5 for sip win32 2016-09-21 23:24:58 -07:00
Robin Dunn
b4bfb4d879 Switch to the released sip 4.18.1 2016-09-21 22:39:54 -07:00
Robin Dunn
5f3d20a7ac Tweak wording a bit. 2016-09-21 21:58:20 -07:00
Robin Dunn
79e5973f96 Merge pull request #174 from david-hughes/listctrl_demo
In demos using wx.ListCtrl, replaced sys.maxsize with GetItemCount()
2016-09-21 21:56:38 -07:00
Robin Dunn
a5d62439ec Merge pull request #173 from david-hughes/agw_piectrl_demo
Fix PieCtrl RuntimeError: wrapped C/C++ object of type ProgressPie
2016-09-21 21:55:50 -07:00
David Hughes
3ea7da85fc In demos using wx.ListCtrl, replaced sys.maxsize with GetItemCount()
in InsertItem() when appending, fixing problem with 64 bit Python
passing a value > 32 bits to underlying C++ widget.

Also disabled automatic initial list sort via wx.LC_SORT_ASCENDING style
where appropriate.
2016-09-21 15:27:20 +01:00
David Hughes
6b8e729df2 Fix PieCtrl RuntimeError: wrapped C/C++ object of type ProgressPie
has been deleted.
ListCtrl.py and run.py deleted as duplicates from parent directory
2016-09-21 12:57:04 +01:00
Robin Dunn
975175e0fd Merge pull request #172 from topic2k/patch-1
fix MultiMessageDialog (wx.BitmapFromIcon removed)
2016-09-19 19:49:26 -07:00
Robin Dunn
8ca8b06541 Merge pull request #136 from RobinD42/propgrid
add propgrid
2016-09-19 19:46:16 -07:00
Robin Dunn
881925967a Update wxWidgets revision 2016-09-19 17:28:58 -07:00
Robin Dunn
b57b645cce Update wx.Image.Scale doc snippet 2016-09-19 17:28:29 -07:00
Robin Dunn
ad4196b7a7 the rest of the propgrid doc snippets 2016-09-19 17:27:57 -07:00
topic2k
842714478b fix MultiMessageDialog (wx.BitmapFromIcon removed) 2016-09-17 17:34:41 +02:00
Robin Dunn
a3e3ddb60f More code snippets converted for the docs 2016-09-14 20:39:27 -07:00
Robin Dunn
e13273c5d9 Test wx.ListEvent properties 2016-09-14 20:26:30 -07:00
Robin Dunn
bf707d9624 typo fix 2016-09-14 20:23:05 -07:00
Robin Dunn
0ffcd4323a Set some output and inOut parameter annotations 2016-09-14 20:21:06 -07:00
Robin Dunn
756e5a42b0 Add built-in editor pointers 2016-09-14 20:19:25 -07:00
Robin Dunn
6f318bee0c Merge branch 'master' into propgrid 2016-09-14 09:02:44 -07:00
Robin Dunn
7a6944855a Merge pull request #171 from swt2c/fix_abstract_class_tests
Fix abstract class tests - check for TypeError instead of expected fa…
2016-09-14 08:58:13 -07:00