File tree Expand file tree Collapse file tree 5 files changed +26
-18
lines changed Expand file tree Collapse file tree 5 files changed +26
-18
lines changed Original file line number Diff line number Diff line change 33
33
#'calctrl',
34
34
#'hyperlink',
35
35
#'tipdlg',
36
- # 'taskbar',
36
+ 'taskbar' ,
37
37
#'sound',
38
38
#'joystick',
39
39
#'animate',
40
40
#'bannerwindow',
41
41
#'editlbox',
42
42
#'notifmsg',
43
- # 'splash',
43
+ 'splash' ,
44
44
#'sashwin',
45
45
#'laywin',
46
46
#'odcombo',
57
57
# sources and/or additional dependencies when building this extension module.
58
58
ETGFILES = ['etg/%s.py' % NAME ] + tools .getEtgFiles (INCLUDES )
59
59
DEPENDS = tools .getNonEtgFiles (INCLUDES )
60
- OTHERDEPS = [ ]
60
+ OTHERDEPS = [ 'etg/cffi/_adv.py' ,
61
+ ]
61
62
62
63
63
64
#---------------------------------------------------------------------------
Original file line number Diff line number Diff line change 25
25
# included as part of this module. These should all be items that are put in
26
26
# the wxWidgets "html" library in a multi-lib build.
27
27
INCLUDES = [
28
- 'htmldefs' ,
29
- 'htmlcell' ,
30
- 'htmlfilt' ,
31
- 'htmltag' ,
32
- 'htmlpars' ,
33
- 'htmlwin' ,
34
- 'htmlprint' ,
35
- 'htmlwinpars' ,
28
+ # 'htmldefs',
29
+ # 'htmlcell',
30
+ # 'htmlfilt',
31
+ # 'htmltag',
32
+ # 'htmlpars',
33
+ # 'htmlwin',
34
+ # 'htmlprint',
35
+ # 'htmlwinpars',
36
36
37
- 'helpdata' ,
38
- 'helpfrm' ,
39
- 'helpdlg' ,
40
- 'helpwnd' ,
41
- 'helpctrl' ,
37
+ # 'helpdata',
38
+ # 'helpfrm',
39
+ # 'helpdlg',
40
+ # 'helpwnd',
41
+ # 'helpctrl',
42
42
43
- 'htmllbox' ,
43
+ # 'htmllbox',
44
44
]
45
45
46
46
@@ -64,7 +64,8 @@ def run():
64
64
# Tweak the parsed meta objects in the module object as needed for
65
65
# customizing the generated code and docstrings.
66
66
67
- module .addHeaderCode ('#include <wxpy_api.h>' )
67
+ # XXX(amauryfa): only for SIP?
68
+ # module.addHeaderCode('#include <wxpy_api.h>')
68
69
module .addImport ('_core' )
69
70
module .addPyCode ("import wx" , order = 10 )
70
71
module .addInclude (INCLUDES )
Original file line number Diff line number Diff line change
1
+ def run (module ):
2
+
3
+ module .addPyCode ('''\
4
+ from ._adv import *
5
+ from . import _adv
6
+ ''' , order = 0 )
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments