Robin Dunn
b410f5e570
Update copyright years --> 2018
2018-06-06 10:59:51 -07:00
Robin Dunn
d54f43a7f6
Copy MethodDefs for Start and GetNext from base class
2018-04-30 21:11:05 -07:00
Robin Dunn
fb8a380814
Merge pull request #762 from mesalu/admonish_deprecation
...
Admonish deprecations
2018-02-22 22:03:11 -08:00
Mesalu
5dc799e48c
Fix double-deprecation issue on tweaked-deprecations
2018-02-22 15:30:25 -08:00
Mesalu
f0b6cbdae4
Remove the version from deprecations from doxygen, fix helper method between multiple classes.
2018-02-21 15:28:32 -08:00
Mesalu
bd1cd5a52b
Create custom deprecation admonition and use it for all deprecation instances
2018-02-21 15:12:47 -08:00
Robin Dunn
086967a6b0
Merge branch 'mesalu-auto_deprecate'
2018-02-19 20:57:59 -08:00
Robin Dunn
8c4dffb091
Add virtual dtor for DC classes
2018-01-29 14:11:00 -08:00
Metallicow
c76384d458
Trim trailing whitespace *.py files
2018-01-16 08:47:07 -06:00
Robin Dunn
92468c7a87
Merge branch 'master' into port-gizmos
2018-01-08 20:32:33 -08:00
Mesalu
24a6db6cd9
Add similar tactics to wxArray (and variants)
...
According to RobinD42, use cases in wxPython should be limited to Arrays that are full (no gaps)
2018-01-06 11:36:39 -08:00
Mesalu
af084599a6
Allow Py-like reverse indexing of wxList
2018-01-06 02:04:41 -08:00
Robin Dunn
deb21aa2ed
Merge branch 'master' into port-gizmos
2017-12-06 13:15:14 -08:00
Robin Dunn
03d1e1559c
Add MappedType for wxMessageDialog::ButtonLabel,
...
so MessageDialog methods can take either string or stock IDs.
2017-11-18 19:26:42 -08:00
Robin Dunn
4120f3b56c
fix typo
2017-11-01 16:04:58 -07:00
Robin Dunn
66b4a7966d
Enable wxArray wrappers to return copy from __getitem__.
...
This solves problems where an array that is the return value of some method call is indexed immediately and a reference to the array is not held, which could result in garbage values for the indexed item. Currently this is turned on for just GridCellCoordsArray, but others can be switched in the future if needed.
2017-10-12 14:33:15 -07:00
Robin Dunn
fc2c6cda57
Add support for using the /Constrained/ annotation
2017-09-14 19:53:17 -07:00
Robin Dunn
c76880a6c3
Ensure all window classes declare GetClassDefaultAttributes.
...
Many do not actually have it, but the docs only declare it in wx.Window so we will miss the ones that really do have one unless we let sip know about them.
2017-09-12 16:07:44 -07:00
Robin Dunn
678d6d897f
Ensure wx.Notebook (and other bookctrls) declare all the base virtual methods
2017-09-05 16:38:27 -07:00
Robin Dunn
6bf050289f
Virtualize Get/SetProperty
2017-07-21 13:23:09 -07:00
Robin Dunn
2e706e7aba
Set wx.RefCounter objects to be owned by C++.
...
Set the /Transfer/ annotation on the ctors, because the C++ objects will always own themselves and will delete themselves when their C++ refcount drops to zero.
2017-05-23 13:18:53 -07:00
Robin Dunn
efa81882e3
Also allow numpy arrays for sequence conversions to value types
2017-04-17 17:22:50 -07:00
Robin Dunn
0b57a79ab0
Merge branch 'master' into release-prep
2017-04-15 10:30:48 -07:00
Robin Dunn
52facb4d7f
Add a GetIM() method to Colour, Point, Size, Rect and other ‘value’ types.
...
GetIM() returns a replicant of the original object that is immutable, so it can be used as a dictionary key, or etc., but still gives access to the properties by name, which using the Get() method to get a tuple of the values does not do.
2017-04-14 19:19:26 -07:00
Robin Dunn
a4e226c7fd
Merge branch 'master' into release-prep
2017-04-13 20:51:26 -07:00
Robin Dunn
708e2487dc
Since we know it is a Tuple or List we can use PySequence_Fast_GET_ITEM
2017-04-12 14:32:50 -07:00
Robin Dunn
b01729f4ef
Tighten up allowed types in auto sequence conversions
...
Instead of allowing generic sequences to be convertible to wxPoint, wxSize, and others, explicitly allow only tuples and lists. This is needed because these types also have methods that make them look like sequences, which meant that you could pass a wxSize where a wxPoint is expected, and so on.
Even worse is nonsense stuff like:
wx.Point(10,20) == wx.Size(10,20)
evaluating to True.
2017-04-12 13:57:08 -07:00
Robin Dunn
875c9677ac
Revert auto-propagating the mustHaveAppFlag from classes to their static methods, if any, and explicitly set the flag on only those static methods that need it instead.
2017-03-21 19:21:07 -07:00
Robin Dunn
4ef2ce2bd5
Revert auto-propagating the mustHaveAppFlag from classes to their static methods, if any, and explicitly set the flag on only those static methods that need it instead.
2017-03-21 15:55:10 -07:00
Robin Dunn
9b5f40caa4
Merge branch 'master' into release-prep
...
# Conflicts:
# etg/_propgrid.py
# etg/propgrid.py
# etg/propgridproperty.py
# ext/wxWidgets
2017-03-14 20:01:53 -07:00
Robin Dunn
479d5b9db6
typos
2017-03-13 19:44:48 -07:00
Robin Dunn
c688fb0362
Port some Python code tweaks and extensions from Classic in propgrid
2017-03-11 19:05:13 -08:00
Robin Dunn
18bbfac7f9
Fixes for things exposed by the new .pyi files tests.
2017-02-14 18:32:15 -08:00
Robin Dunn
9c87092819
Turn off the generation of the .pi files. The new official standard is .pyi files.
2017-02-13 21:24:54 -08:00
Robin Dunn
9d172ddc8a
Update copyright in etgtools
2017-02-13 16:18:47 -08:00
Robin Dunn
429829f1bb
Merge pull request #211 from RobinD42/mustHaveApp
...
mustHaveApp
2017-02-03 22:06:16 -08:00
Robin Dunn
be61a4c386
Enable skipping items only when generating docs
2017-01-28 10:41:39 -08:00
Robin Dunn
c2a63a93f4
Using the NoTypeName annotation solves the wxLongLong_t issue
2017-01-22 19:50:45 -08:00
Robin Dunn
96a0901c15
Allow ignoring items just for the pi generator
2017-01-22 19:31:39 -08:00
Robin Dunn
a69601c7c4
Set mustHaveApp for all window classes
2017-01-21 19:07:59 -08:00
Robin Dunn
bd0927fb02
Also protect static methods in mustHaveApp classes
2017-01-21 18:59:08 -08:00
Robin Dunn
6c65fbb865
Use the new %PreMethoCode directive to implement the mustHaveApp functionality
...
(Raises an exception if protected items are called before the wx.App has been created.)
2017-01-21 18:56:41 -08:00
Metallicow
067569d785
Trim trailing space etgtools directory
2016-12-05 16:26:04 -06:00
Robin Dunn
fd3ea15e0e
Handle case where the docs say there is an image, but there isn’t.
2016-11-11 20:00:35 -08:00
Robin Dunn
efa9c5982a
Also check for ‘winid’ in fixTopLevelWindowClass
2016-11-11 19:40:39 -08:00
Robin Dunn
5268ebbc73
Add the rest of the AUI modules and classes
2016-10-27 18:49:41 -07:00
Robin Dunn
981c05d968
Enable arraywWrapperTemplate to also be able to handle arrays of pointers to objects.
2016-10-27 08:38:02 -07:00
Robin Dunn
407714eea3
Fix typo
2016-09-30 13:41:36 -07:00
Robin Dunn
1a94ced4b3
a bit of cleanup
2016-09-08 12:32:11 -07:00
Robin Dunn
93b269ca82
If the memberVar has a docstring, use it.
2016-09-07 13:33:54 -07:00