updates to correct build errors (new locations, etc.)
minor bug fixes, etc. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6608 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
92
utils/wxPython/demo/run.py
Normal file
92
utils/wxPython/demo/run.py
Normal file
@@ -0,0 +1,92 @@
|
|||||||
|
#!/bin/env python
|
||||||
|
#----------------------------------------------------------------------------
|
||||||
|
# Name: run.py
|
||||||
|
# Purpose: Simple framework for running individual demos
|
||||||
|
#
|
||||||
|
# Author: Robin Dunn
|
||||||
|
#
|
||||||
|
# Created: 6-March-2000
|
||||||
|
# RCS-ID: $Id$
|
||||||
|
# Copyright: (c) 2000 by Total Control Software
|
||||||
|
# Licence: wxWindows license
|
||||||
|
#----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
"""
|
||||||
|
This program will load and run one of the individual demos in this
|
||||||
|
directory within its own frame window. Just specify the module name
|
||||||
|
on the command line.
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
|
import sys
|
||||||
|
from wxPython.wx import *
|
||||||
|
|
||||||
|
#----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
class Log:
|
||||||
|
def WriteText(self, text):
|
||||||
|
sys.stdout.write(text)
|
||||||
|
write = WriteText
|
||||||
|
|
||||||
|
|
||||||
|
class RunDemoApp(wxApp):
|
||||||
|
def __init__(self, name, module):
|
||||||
|
self.name = name
|
||||||
|
self.demoModule = module
|
||||||
|
wxApp.__init__(self, 0)
|
||||||
|
|
||||||
|
def OnInit(self):
|
||||||
|
wxInitAllImageHandlers()
|
||||||
|
frame = wxFrame(None, -1, "RunDemo: " + self.name, size=(0,0))
|
||||||
|
frame.CreateStatusBar()
|
||||||
|
frame.Show(true)
|
||||||
|
win = self.demoModule.runTest(frame, frame, Log())
|
||||||
|
|
||||||
|
# a window will be returned if the demo does not create
|
||||||
|
# its own top-level window
|
||||||
|
if win:
|
||||||
|
# so set the frame to a good size for showing stuff
|
||||||
|
frame.SetSize((600, 450))
|
||||||
|
|
||||||
|
else:
|
||||||
|
# otherwise the demo made its own frame, so just put a
|
||||||
|
# button in this one
|
||||||
|
if hasattr(frame, 'otherWin'):
|
||||||
|
wxButton(frame, 1101, " Exit ")
|
||||||
|
frame.SetSize((200, 100))
|
||||||
|
EVT_BUTTON(frame, 1101, self.OnButton)
|
||||||
|
else:
|
||||||
|
# It was probably a dialog or something that is already
|
||||||
|
# gone, so we're done.
|
||||||
|
frame.Destroy()
|
||||||
|
return true
|
||||||
|
|
||||||
|
self.SetTopWindow(frame)
|
||||||
|
self.frame = frame
|
||||||
|
return true
|
||||||
|
|
||||||
|
|
||||||
|
def OnButton(self, evt):
|
||||||
|
self.frame.Close(true)
|
||||||
|
|
||||||
|
#----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
if len(sys.argv) != 2:
|
||||||
|
print "Please specify a demo module name on the command-line"
|
||||||
|
raise SystemExit
|
||||||
|
|
||||||
|
name = sys.argv[1]
|
||||||
|
module = __import__(name)
|
||||||
|
|
||||||
|
|
||||||
|
app = RunDemoApp(name, module)
|
||||||
|
app.MainLoop()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
||||||
|
|
||||||
|
|
@@ -18,10 +18,12 @@ class TestPanel(wxPanel):
|
|||||||
EVT_BUTTON(self, 20, self.OnClick)
|
EVT_BUTTON(self, 20, self.OnClick)
|
||||||
|
|
||||||
bmp = wxBitmap('bitmaps/test2.bmp', wxBITMAP_TYPE_BMP)
|
bmp = wxBitmap('bitmaps/test2.bmp', wxBITMAP_TYPE_BMP)
|
||||||
# the mask is still having troubles on win95/98...
|
|
||||||
mask = wxMaskColour(bmp, wxBLUE)
|
mask = wxMaskColour(bmp, wxBLUE)
|
||||||
bmp.SetMask(mask)
|
bmp.SetMask(mask)
|
||||||
|
|
||||||
|
print bmp.GetWidth(), bmp.GetHeight()
|
||||||
|
|
||||||
wxBitmapButton(self, 30, bmp, wxPoint(140, 20),
|
wxBitmapButton(self, 30, bmp, wxPoint(140, 20),
|
||||||
wxSize(bmp.GetWidth()+10, bmp.GetHeight()+10))
|
wxSize(bmp.GetWidth()+10, bmp.GetHeight()+10))
|
||||||
EVT_BUTTON(self, 30, self.OnClick)
|
EVT_BUTTON(self, 30, self.OnClick)
|
||||||
|
@@ -156,7 +156,7 @@ FINAL=1
|
|||||||
|
|
||||||
|
|
||||||
# #*#*#*#*#* Comment this out to allow upload...
|
# #*#*#*#*#* Comment this out to allow upload...
|
||||||
#return
|
return
|
||||||
|
|
||||||
logSeparator("Uploading to website...")
|
logSeparator("Uploading to website...")
|
||||||
do('python d:\util32\sendwxp.py %s' % destName)
|
do('python d:\util32\sendwxp.py %s' % destName)
|
||||||
|
@@ -17,7 +17,7 @@ item: Global
|
|||||||
Patch Flags=0000000000001001
|
Patch Flags=0000000000001001
|
||||||
Patch Threshold=85
|
Patch Threshold=85
|
||||||
Patch Memory=4000
|
Patch Memory=4000
|
||||||
EXE Filename=wxPython-2.1.13.exe
|
EXE Filename=wxPython-2.1.14.exe
|
||||||
FTP Cluster Size=20
|
FTP Cluster Size=20
|
||||||
Per-User Version ID=1
|
Per-User Version ID=1
|
||||||
Dialogs Version=6
|
Dialogs Version=6
|
||||||
@@ -815,8 +815,8 @@ item: Install File
|
|||||||
Flags=0000001010000011
|
Flags=0000001010000011
|
||||||
end
|
end
|
||||||
item: Install File
|
item: Install File
|
||||||
Source=e:\projects\wx\lib\wx21_13.dll
|
Source=e:\projects\wx\lib\wx21_14.dll
|
||||||
Destination=%SYS%\wx21_13.dll
|
Destination=%SYS%\wx21_14.dll
|
||||||
Flags=0000001010010010
|
Flags=0000001010010010
|
||||||
end
|
end
|
||||||
item: Install File
|
item: Install File
|
||||||
|
@@ -163,14 +163,17 @@ class wxpTagHandler(wxHtmlWinTagHandler):
|
|||||||
self.ParseInner(tag)
|
self.ParseInner(tag)
|
||||||
|
|
||||||
# create the object
|
# create the object
|
||||||
obj = apply(self.ctx.classObj,
|
parent = self.GetParser().GetWindow()
|
||||||
(self.GetParser().GetWindow(),),
|
if parent:
|
||||||
self.ctx.kwargs)
|
obj = apply(self.ctx.classObj,
|
||||||
obj.Show(true)
|
(parent,),
|
||||||
|
self.ctx.kwargs)
|
||||||
|
obj.Show(true)
|
||||||
|
|
||||||
|
# add it to the HtmlWindow
|
||||||
|
self.GetParser().GetContainer().InsertCell(wxHtmlWidgetCell(obj, self.ctx.floatWidth))
|
||||||
|
self.ctx = None
|
||||||
|
|
||||||
# add it to the HtmlWindow
|
|
||||||
self.GetParser().GetContainer().InsertCell(wxHtmlWidgetCell(obj, self.ctx.floatWidth))
|
|
||||||
self.ctx = None
|
|
||||||
return true
|
return true
|
||||||
|
|
||||||
|
|
||||||
|
@@ -10,8 +10,9 @@ SWIGFILES = ['glcanvas.i', ]
|
|||||||
# Unix make system isn't so advanced, so we'll go looking for the source
|
# Unix make system isn't so advanced, so we'll go looking for the source
|
||||||
# file ourselves...
|
# file ourselves...
|
||||||
if sys.platform == 'win32':
|
if sys.platform == 'win32':
|
||||||
OTHERLIBS = '$(WXDIR)\lib\glcanvas$(LIBEXT).lib glu32.lib opengl32.lib'
|
# OTHERLIBS = '$(WXDIR)\lib\glcanvas$(LIBEXT).lib glu32.lib opengl32.lib'
|
||||||
OTHERCFLAGS = '-DWITH_GLCANVAS -I$(WXDIR)/utils/glcanvas/win'
|
# OTHERCFLAGS = '-DWITH_GLCANVAS -I$(WXDIR)/utils/glcanvas/win'
|
||||||
|
pass
|
||||||
|
|
||||||
else:
|
else:
|
||||||
|
|
||||||
|
@@ -15,7 +15,7 @@
|
|||||||
|
|
||||||
%{
|
%{
|
||||||
#include "helpers.h"
|
#include "helpers.h"
|
||||||
#include <glcanvas.h>
|
#include <wx/glcanvas.h>
|
||||||
%}
|
%}
|
||||||
|
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
|
@@ -54,7 +54,7 @@ extern PyObject *SWIG_newvarlink(void);
|
|||||||
#define SWIG_name "glcanvasc"
|
#define SWIG_name "glcanvasc"
|
||||||
|
|
||||||
#include "helpers.h"
|
#include "helpers.h"
|
||||||
#include <glcanvas.h>
|
#include <wx/glcanvas.h>
|
||||||
|
|
||||||
static PyObject* l_output_helper(PyObject* target, PyObject* o) {
|
static PyObject* l_output_helper(PyObject* target, PyObject* o) {
|
||||||
PyObject* o2;
|
PyObject* o2;
|
||||||
@@ -584,7 +584,6 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxTreeCtrl","_wxTreeCtrl",0},
|
{ "_class_wxTreeCtrl","_wxTreeCtrl",0},
|
||||||
{ "_wxMask","_class_wxMask",0},
|
{ "_wxMask","_class_wxMask",0},
|
||||||
{ "_wxToolTip","_class_wxToolTip",0},
|
{ "_wxToolTip","_class_wxToolTip",0},
|
||||||
{ "_wxGrid","_class_wxGrid",0},
|
|
||||||
{ "_wxPNGHandler","_class_wxPNGHandler",0},
|
{ "_wxPNGHandler","_class_wxPNGHandler",0},
|
||||||
{ "_class_wxColourData","_wxColourData",0},
|
{ "_class_wxColourData","_wxColourData",0},
|
||||||
{ "_class_wxPageSetupDialogData","_wxPageSetupDialogData",0},
|
{ "_class_wxPageSetupDialogData","_wxPageSetupDialogData",0},
|
||||||
@@ -655,7 +654,6 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxTextDataObject","_class_wxTextDataObject",0},
|
{ "_wxTextDataObject","_class_wxTextDataObject",0},
|
||||||
{ "_class_wxKeyEvent","_wxKeyEvent",0},
|
{ "_class_wxKeyEvent","_wxKeyEvent",0},
|
||||||
{ "_class_wxToolTip","_wxToolTip",0},
|
{ "_class_wxToolTip","_wxToolTip",0},
|
||||||
{ "_class_wxGrid","_wxGrid",0},
|
|
||||||
{ "_class_wxPNGHandler","_wxPNGHandler",0},
|
{ "_class_wxPNGHandler","_wxPNGHandler",0},
|
||||||
{ "_wxColour","_class_wxColour",0},
|
{ "_wxColour","_class_wxColour",0},
|
||||||
{ "_class_wxDialog","_wxDialog",0},
|
{ "_class_wxDialog","_wxDialog",0},
|
||||||
@@ -688,7 +686,6 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxEvent","_wxEvent",0},
|
{ "_class_wxEvent","_wxEvent",0},
|
||||||
{ "_wxCheckListBox","_class_wxCheckListBox",0},
|
{ "_wxCheckListBox","_class_wxCheckListBox",0},
|
||||||
{ "_wxSplitterEvent","_class_wxSplitterEvent",0},
|
{ "_wxSplitterEvent","_class_wxSplitterEvent",0},
|
||||||
{ "_wxGridEvent","_class_wxGridEvent",0},
|
|
||||||
{ "_wxRect","_class_wxRect",0},
|
{ "_wxRect","_class_wxRect",0},
|
||||||
{ "_wxCommandEvent","_class_wxCommandEvent",0},
|
{ "_wxCommandEvent","_class_wxCommandEvent",0},
|
||||||
{ "_wxSizeEvent","_class_wxSizeEvent",0},
|
{ "_wxSizeEvent","_class_wxSizeEvent",0},
|
||||||
@@ -815,7 +812,6 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxPoint","_wxPoint",0},
|
{ "_class_wxPoint","_wxPoint",0},
|
||||||
{ "_wxRealPoint","_class_wxRealPoint",0},
|
{ "_wxRealPoint","_class_wxRealPoint",0},
|
||||||
{ "_class_wxRadioBox","_wxRadioBox",0},
|
{ "_class_wxRadioBox","_wxRadioBox",0},
|
||||||
{ "_wxGridCell","_class_wxGridCell",0},
|
|
||||||
{ "_class_wxBoxSizer","_wxBoxSizer",0},
|
{ "_class_wxBoxSizer","_wxBoxSizer",0},
|
||||||
{ "_signed_short","_WXTYPE",0},
|
{ "_signed_short","_WXTYPE",0},
|
||||||
{ "_signed_short","_short",0},
|
{ "_signed_short","_short",0},
|
||||||
@@ -952,14 +948,12 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxGauge","_class_wxGauge",0},
|
{ "_wxGauge","_class_wxGauge",0},
|
||||||
{ "_class_wxCheckListBox","_wxCheckListBox",0},
|
{ "_class_wxCheckListBox","_wxCheckListBox",0},
|
||||||
{ "_class_wxBusyInfo","_wxBusyInfo",0},
|
{ "_class_wxBusyInfo","_wxBusyInfo",0},
|
||||||
{ "_class_wxGridEvent","_wxGridEvent",0},
|
|
||||||
{ "_class_wxCommandEvent","_wxCommandEvent",0},
|
{ "_class_wxCommandEvent","_wxCommandEvent",0},
|
||||||
{ "_class_wxClientDC","_wxClientDC",0},
|
{ "_class_wxClientDC","_wxClientDC",0},
|
||||||
{ "_class_wxSizeEvent","_wxSizeEvent",0},
|
{ "_class_wxSizeEvent","_wxSizeEvent",0},
|
||||||
{ "_class_wxListCtrl","_wxListCtrl",0},
|
{ "_class_wxListCtrl","_wxListCtrl",0},
|
||||||
{ "_class_wxGLCanvas","_wxGLCanvas",0},
|
{ "_class_wxGLCanvas","_wxGLCanvas",0},
|
||||||
{ "_wxCustomDataObject","_class_wxCustomDataObject",0},
|
{ "_wxCustomDataObject","_class_wxCustomDataObject",0},
|
||||||
{ "_class_wxGridCell","_wxGridCell",0},
|
|
||||||
{ "_class_wxSize","_wxSize",0},
|
{ "_class_wxSize","_wxSize",0},
|
||||||
{ "_class_wxBitmap","_wxBitmap",0},
|
{ "_class_wxBitmap","_wxBitmap",0},
|
||||||
{ "_class_wxMemoryDC","_wxMemoryDC",0},
|
{ "_class_wxMemoryDC","_wxMemoryDC",0},
|
||||||
|
@@ -6,10 +6,10 @@ SWIGFILES = ['ogl.i', 'oglbasic.i', 'oglshapes.i', 'oglshapes2.i', 'oglcanvas.i'
|
|||||||
SOURCES = ['oglhelpers.cpp']
|
SOURCES = ['oglhelpers.cpp']
|
||||||
|
|
||||||
|
|
||||||
OTHERCFLAGS = '-I$(WXWIN)/utils/ogl/src'
|
OTHERCFLAGS = '-I$(WXWIN)/contrib/include'
|
||||||
|
|
||||||
if sys.platform == 'win32':
|
if sys.platform == 'win32':
|
||||||
OTHERLIBS = '$(WXWIN)/lib/ogl$(LIBEXT).lib'
|
OTHERLIBS = '$(WXWIN)/contrib/lib/ogl$(LIBEXT).lib'
|
||||||
else:
|
else:
|
||||||
OTHERLIBS = '-logl'
|
OTHERLIBS = '-logl'
|
||||||
|
|
||||||
|
@@ -55,11 +55,6 @@ extern PyObject *SWIG_newvarlink(void);
|
|||||||
|
|
||||||
#include "helpers.h"
|
#include "helpers.h"
|
||||||
#include "oglhelpers.h"
|
#include "oglhelpers.h"
|
||||||
#include <ogl.h>
|
|
||||||
#include <basicp.h>
|
|
||||||
#include <constrnt.h>
|
|
||||||
#include <bmpshape.h>
|
|
||||||
#include <drawn.h>
|
|
||||||
|
|
||||||
static PyObject* l_output_helper(PyObject* target, PyObject* o) {
|
static PyObject* l_output_helper(PyObject* target, PyObject* o) {
|
||||||
PyObject* o2;
|
PyObject* o2;
|
||||||
@@ -175,9 +170,12 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_signed_long","_long",0},
|
{ "_signed_long","_long",0},
|
||||||
{ "_wxMenuEvent","_class_wxMenuEvent",0},
|
{ "_wxMenuEvent","_class_wxMenuEvent",0},
|
||||||
{ "_class_wxJPEGHandler","_wxJPEGHandler",0},
|
{ "_class_wxJPEGHandler","_wxJPEGHandler",0},
|
||||||
|
{ "_wxPyBitmapDataObject","_class_wxPyBitmapDataObject",0},
|
||||||
|
{ "_wxBitmapDataObject","_class_wxBitmapDataObject",0},
|
||||||
{ "_class_wxPyCommandEvent","_wxPyCommandEvent",0},
|
{ "_class_wxPyCommandEvent","_wxPyCommandEvent",0},
|
||||||
{ "_wxBMPHandler","_class_wxBMPHandler",0},
|
{ "_wxBMPHandler","_class_wxBMPHandler",0},
|
||||||
{ "_wxImage","_class_wxImage",0},
|
{ "_wxImage","_class_wxImage",0},
|
||||||
|
{ "_wxPrintQuality","_wxCoord",0},
|
||||||
{ "_wxPrintQuality","_int",0},
|
{ "_wxPrintQuality","_int",0},
|
||||||
{ "_wxPrintQuality","_signed_int",0},
|
{ "_wxPrintQuality","_signed_int",0},
|
||||||
{ "_wxPrintQuality","_unsigned_int",0},
|
{ "_wxPrintQuality","_unsigned_int",0},
|
||||||
@@ -185,9 +183,10 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxPrintQuality","_uint",0},
|
{ "_wxPrintQuality","_uint",0},
|
||||||
{ "_wxPrintQuality","_EBool",0},
|
{ "_wxPrintQuality","_EBool",0},
|
||||||
{ "_wxPrintQuality","_size_t",0},
|
{ "_wxPrintQuality","_size_t",0},
|
||||||
|
{ "_class_wxCustomDataObject","_wxCustomDataObject",0},
|
||||||
{ "_wxFontData","_class_wxFontData",0},
|
{ "_wxFontData","_class_wxFontData",0},
|
||||||
{ "___wxPyCleanup","_class___wxPyCleanup",0},
|
|
||||||
{ "_class_wxRegionIterator","_wxRegionIterator",0},
|
{ "_class_wxRegionIterator","_wxRegionIterator",0},
|
||||||
|
{ "_class_wxPyTextDropTarget","_wxPyTextDropTarget",0},
|
||||||
{ "_class_wxMenuBar","_wxMenuBar",0},
|
{ "_class_wxMenuBar","_wxMenuBar",0},
|
||||||
{ "_class_wxPyTreeItemData","_wxPyTreeItemData",0},
|
{ "_class_wxPyTreeItemData","_wxPyTreeItemData",0},
|
||||||
{ "_class_wxStaticBoxSizer","_wxStaticBoxSizer",0},
|
{ "_class_wxStaticBoxSizer","_wxStaticBoxSizer",0},
|
||||||
@@ -201,10 +200,10 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxNotifyEvent","_class_wxNotifyEvent",0},
|
{ "_wxNotifyEvent","_class_wxNotifyEvent",0},
|
||||||
{ "_wxImageHandler","_class_wxImageHandler",0},
|
{ "_wxImageHandler","_class_wxImageHandler",0},
|
||||||
{ "_class_wxPyRectangleShape","_wxPyRectangleShape",0},
|
{ "_class_wxPyRectangleShape","_wxPyRectangleShape",0},
|
||||||
|
{ "_class_wxToolBarBase","_wxToolBarBase",0},
|
||||||
{ "_class_wxTreeCtrl","_wxTreeCtrl",0},
|
{ "_class_wxTreeCtrl","_wxTreeCtrl",0},
|
||||||
{ "_wxMask","_class_wxMask",0},
|
{ "_wxMask","_class_wxMask",0},
|
||||||
{ "_wxToolTip","_class_wxToolTip",0},
|
{ "_wxToolTip","_class_wxToolTip",0},
|
||||||
{ "_wxGrid","_class_wxGrid",0},
|
|
||||||
{ "_wxPNGHandler","_class_wxPNGHandler",0},
|
{ "_wxPNGHandler","_class_wxPNGHandler",0},
|
||||||
{ "_class_wxOGLConstraint","_wxOGLConstraint",0},
|
{ "_class_wxOGLConstraint","_wxOGLConstraint",0},
|
||||||
{ "_class_wxColourData","_wxColourData",0},
|
{ "_class_wxColourData","_wxColourData",0},
|
||||||
@@ -215,26 +214,33 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxPen","_class_wxPen",0},
|
{ "_wxPen","_class_wxPen",0},
|
||||||
{ "_wxUpdateUIEvent","_class_wxUpdateUIEvent",0},
|
{ "_wxUpdateUIEvent","_class_wxUpdateUIEvent",0},
|
||||||
{ "_byte","_unsigned_char",0},
|
{ "_byte","_unsigned_char",0},
|
||||||
|
{ "_wxDataObject","_class_wxDataObject",0},
|
||||||
|
{ "_class_wxPyFontEnumerator","_wxPyFontEnumerator",0},
|
||||||
{ "_wxStaticBox","_class_wxStaticBox",0},
|
{ "_wxStaticBox","_class_wxStaticBox",0},
|
||||||
|
{ "_wxPyDataObjectSimple","_class_wxPyDataObjectSimple",0},
|
||||||
|
{ "_wxPyDropSource","_class_wxPyDropSource",0},
|
||||||
{ "_wxChoice","_class_wxChoice",0},
|
{ "_wxChoice","_class_wxChoice",0},
|
||||||
{ "_wxSlider","_class_wxSlider",0},
|
{ "_wxSlider","_class_wxSlider",0},
|
||||||
{ "_wxNotebookEvent","_class_wxNotebookEvent",0},
|
{ "_wxNotebookEvent","_class_wxNotebookEvent",0},
|
||||||
{ "_wxPyPrintout","_class_wxPyPrintout",0},
|
{ "_wxPyPrintout","_class_wxPyPrintout",0},
|
||||||
{ "_wxShapeRegion","_class_wxShapeRegion",0},
|
{ "_wxShapeRegion","_class_wxShapeRegion",0},
|
||||||
{ "_long","_wxDash",0},
|
|
||||||
{ "_long","_unsigned_long",0},
|
{ "_long","_unsigned_long",0},
|
||||||
{ "_long","_signed_long",0},
|
{ "_long","_signed_long",0},
|
||||||
{ "_wxImageList","_class_wxImageList",0},
|
{ "_wxImageList","_class_wxImageList",0},
|
||||||
|
{ "_wxDataObjectSimple","_class_wxDataObjectSimple",0},
|
||||||
{ "_wxDropFilesEvent","_class_wxDropFilesEvent",0},
|
{ "_wxDropFilesEvent","_class_wxDropFilesEvent",0},
|
||||||
{ "_wxBitmapButton","_class_wxBitmapButton",0},
|
{ "_wxBitmapButton","_class_wxBitmapButton",0},
|
||||||
{ "_wxSashWindow","_class_wxSashWindow",0},
|
{ "_wxSashWindow","_class_wxSashWindow",0},
|
||||||
{ "_class_wxSizer","_wxSizer",0},
|
{ "_class_wxSizer","_wxSizer",0},
|
||||||
|
{ "_class_wxTIFFHandler","_wxTIFFHandler",0},
|
||||||
{ "_class_wxPrintDialogData","_wxPrintDialogData",0},
|
{ "_class_wxPrintDialogData","_wxPrintDialogData",0},
|
||||||
{ "_class_wxAcceleratorTable","_wxAcceleratorTable",0},
|
{ "_class_wxAcceleratorTable","_wxAcceleratorTable",0},
|
||||||
|
{ "_class_wxClipboard","_wxClipboard",0},
|
||||||
{ "_class_wxGauge","_wxGauge",0},
|
{ "_class_wxGauge","_wxGauge",0},
|
||||||
{ "_class_wxSashEvent","_wxSashEvent",0},
|
{ "_class_wxSashEvent","_wxSashEvent",0},
|
||||||
{ "_wxDC","_class_wxDC",0},
|
{ "_wxDC","_class_wxDC",0},
|
||||||
{ "_wxSizerItem","_class_wxSizerItem",0},
|
{ "_wxSizerItem","_class_wxSizerItem",0},
|
||||||
|
{ "_class_wxBitmapDataObject","_wxBitmapDataObject",0},
|
||||||
{ "_wxListEvent","_class_wxListEvent",0},
|
{ "_wxListEvent","_class_wxListEvent",0},
|
||||||
{ "_class_wxSingleChoiceDialog","_wxSingleChoiceDialog",0},
|
{ "_class_wxSingleChoiceDialog","_wxSingleChoiceDialog",0},
|
||||||
{ "_wxProgressDialog","_class_wxProgressDialog",0},
|
{ "_wxProgressDialog","_class_wxProgressDialog",0},
|
||||||
@@ -244,13 +250,16 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxSashLayoutWindow","_class_wxSashLayoutWindow",0},
|
{ "_wxSashLayoutWindow","_class_wxSashLayoutWindow",0},
|
||||||
{ "_wxPyBitmapShape","_class_wxPyBitmapShape",0},
|
{ "_wxPyBitmapShape","_class_wxPyBitmapShape",0},
|
||||||
{ "_class_wxPyEllipseShape","_wxPyEllipseShape",0},
|
{ "_class_wxPyEllipseShape","_wxPyEllipseShape",0},
|
||||||
|
{ "_size_t","_wxCoord",0},
|
||||||
{ "_size_t","_wxPrintQuality",0},
|
{ "_size_t","_wxPrintQuality",0},
|
||||||
{ "_size_t","_unsigned_int",0},
|
{ "_size_t","_unsigned_int",0},
|
||||||
{ "_size_t","_int",0},
|
{ "_size_t","_int",0},
|
||||||
{ "_size_t","_wxWindowID",0},
|
{ "_size_t","_wxWindowID",0},
|
||||||
{ "_size_t","_uint",0},
|
{ "_size_t","_uint",0},
|
||||||
{ "_class_wxRealPoint","_wxRealPoint",0},
|
{ "_class_wxRealPoint","_wxRealPoint",0},
|
||||||
{ "_wxPrinterDC","_class_wxPrinterDC",0},
|
{ "_wxNavigationKeyEvent","_class_wxNavigationKeyEvent",0},
|
||||||
|
{ "_wxPNMHandler","_class_wxPNMHandler",0},
|
||||||
|
{ "_wxWindowCreateEvent","_class_wxWindowCreateEvent",0},
|
||||||
{ "_class_wxPyShapeEvtHandler","_wxPyShapeEvtHandler",0},
|
{ "_class_wxPyShapeEvtHandler","_wxPyShapeEvtHandler",0},
|
||||||
{ "_class_wxMenuItem","_wxMenuItem",0},
|
{ "_class_wxMenuItem","_wxMenuItem",0},
|
||||||
{ "_class_wxPaintEvent","_wxPaintEvent",0},
|
{ "_class_wxPaintEvent","_wxPaintEvent",0},
|
||||||
@@ -260,23 +269,27 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxPySizer","_wxPySizer",0},
|
{ "_class_wxPySizer","_wxPySizer",0},
|
||||||
{ "_class_wxPyCompositeShape","_wxPyCompositeShape",0},
|
{ "_class_wxPyCompositeShape","_wxPyCompositeShape",0},
|
||||||
{ "_wxPyPolygonShape","_class_wxPyPolygonShape",0},
|
{ "_wxPyPolygonShape","_class_wxPyPolygonShape",0},
|
||||||
|
{ "_class_wxPostScriptDC","_wxPostScriptDC",0},
|
||||||
{ "_wxPanel","_class_wxPanel",0},
|
{ "_wxPanel","_class_wxPanel",0},
|
||||||
{ "_wxInitDialogEvent","_class_wxInitDialogEvent",0},
|
{ "_wxInitDialogEvent","_class_wxInitDialogEvent",0},
|
||||||
{ "_wxCheckBox","_class_wxCheckBox",0},
|
{ "_wxCheckBox","_class_wxCheckBox",0},
|
||||||
{ "_wxPyEvent","_class_wxPyEvent",0},
|
{ "_wxPyEvent","_class_wxPyEvent",0},
|
||||||
{ "_wxTextCtrl","_class_wxTextCtrl",0},
|
{ "_wxTextCtrl","_class_wxTextCtrl",0},
|
||||||
{ "_class_wxMask","_wxMask",0},
|
{ "_class_wxMask","_wxMask",0},
|
||||||
{ "_class_wxToolTip","_wxToolTip",0},
|
{ "_wxTextDataObject","_class_wxTextDataObject",0},
|
||||||
{ "_class_wxKeyEvent","_wxKeyEvent",0},
|
{ "_class_wxKeyEvent","_wxKeyEvent",0},
|
||||||
{ "_class_wxGrid","_wxGrid",0},
|
{ "_class_wxToolTip","_wxToolTip",0},
|
||||||
{ "_class_wxPNGHandler","_wxPNGHandler",0},
|
{ "_class_wxPNGHandler","_wxPNGHandler",0},
|
||||||
{ "_wxColour","_class_wxColour",0},
|
{ "_wxColour","_class_wxColour",0},
|
||||||
{ "_class_wxDialog","_wxDialog",0},
|
{ "_class_wxDialog","_wxDialog",0},
|
||||||
|
{ "_wxBusyCursor","_class_wxBusyCursor",0},
|
||||||
{ "_wxPageSetupDialog","_class_wxPageSetupDialog",0},
|
{ "_wxPageSetupDialog","_class_wxPageSetupDialog",0},
|
||||||
{ "_class_wxPrinter","_wxPrinter",0},
|
{ "_class_wxPrinter","_wxPrinter",0},
|
||||||
|
{ "_class_wxFileDataObject","_wxFileDataObject",0},
|
||||||
{ "_wxIdleEvent","_class_wxIdleEvent",0},
|
{ "_wxIdleEvent","_class_wxIdleEvent",0},
|
||||||
{ "_class_wxUpdateUIEvent","_wxUpdateUIEvent",0},
|
{ "_class_wxUpdateUIEvent","_wxUpdateUIEvent",0},
|
||||||
{ "_wxToolBar","_class_wxToolBar",0},
|
{ "_wxToolBar","_class_wxToolBar",0},
|
||||||
|
{ "_class_wxDataObject","_wxDataObject",0},
|
||||||
{ "_wxCaret","_class_wxCaret",0},
|
{ "_wxCaret","_class_wxCaret",0},
|
||||||
{ "_wxStaticLine","_class_wxStaticLine",0},
|
{ "_wxStaticLine","_class_wxStaticLine",0},
|
||||||
{ "_class_wxLayoutAlgorithm","_wxLayoutAlgorithm",0},
|
{ "_class_wxLayoutAlgorithm","_wxLayoutAlgorithm",0},
|
||||||
@@ -284,9 +297,12 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxMiniFrame","_class_wxMiniFrame",0},
|
{ "_wxMiniFrame","_class_wxMiniFrame",0},
|
||||||
{ "_class_wxNotebookEvent","_wxNotebookEvent",0},
|
{ "_class_wxNotebookEvent","_wxNotebookEvent",0},
|
||||||
{ "_class_wxPyPrintout","_wxPyPrintout",0},
|
{ "_class_wxPyPrintout","_wxPyPrintout",0},
|
||||||
|
{ "_wxDataFormat","_class_wxDataFormat",0},
|
||||||
|
{ "_class_wxDataObjectSimple","_wxDataObjectSimple",0},
|
||||||
{ "_class_wxSashWindow","_wxSashWindow",0},
|
{ "_class_wxSashWindow","_wxSashWindow",0},
|
||||||
{ "_wxShowEvent","_class_wxShowEvent",0},
|
{ "_wxShowEvent","_class_wxShowEvent",0},
|
||||||
{ "_class_wxPyDivisionShape","_wxPyDivisionShape",0},
|
{ "_class_wxPyDivisionShape","_wxPyDivisionShape",0},
|
||||||
|
{ "_uint","_wxCoord",0},
|
||||||
{ "_uint","_wxPrintQuality",0},
|
{ "_uint","_wxPrintQuality",0},
|
||||||
{ "_uint","_size_t",0},
|
{ "_uint","_size_t",0},
|
||||||
{ "_uint","_unsigned_int",0},
|
{ "_uint","_unsigned_int",0},
|
||||||
@@ -296,7 +312,6 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxEvent","_wxEvent",0},
|
{ "_class_wxEvent","_wxEvent",0},
|
||||||
{ "_wxCheckListBox","_class_wxCheckListBox",0},
|
{ "_wxCheckListBox","_class_wxCheckListBox",0},
|
||||||
{ "_wxSplitterEvent","_class_wxSplitterEvent",0},
|
{ "_wxSplitterEvent","_class_wxSplitterEvent",0},
|
||||||
{ "_wxGridEvent","_class_wxGridEvent",0},
|
|
||||||
{ "_wxRect","_class_wxRect",0},
|
{ "_wxRect","_class_wxRect",0},
|
||||||
{ "_wxCommandEvent","_class_wxCommandEvent",0},
|
{ "_wxCommandEvent","_class_wxCommandEvent",0},
|
||||||
{ "_wxPyShapeCanvas","_class_wxPyShapeCanvas",0},
|
{ "_wxPyShapeCanvas","_class_wxPyShapeCanvas",0},
|
||||||
@@ -308,17 +323,16 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxButton","_wxButton",0},
|
{ "_class_wxButton","_wxButton",0},
|
||||||
{ "_wxRadioBox","_class_wxRadioBox",0},
|
{ "_wxRadioBox","_class_wxRadioBox",0},
|
||||||
{ "_class_wxFontData","_wxFontData",0},
|
{ "_class_wxFontData","_wxFontData",0},
|
||||||
|
{ "_class_wxPNMHandler","_wxPNMHandler",0},
|
||||||
{ "_wxBoxSizer","_class_wxBoxSizer",0},
|
{ "_wxBoxSizer","_class_wxBoxSizer",0},
|
||||||
{ "_class___wxPyCleanup","___wxPyCleanup",0},
|
|
||||||
{ "_wxBitmap","_class_wxBitmap",0},
|
{ "_wxBitmap","_class_wxBitmap",0},
|
||||||
{ "_wxTaskBarIcon","_class_wxTaskBarIcon",0},
|
{ "_char","_wxDash",0},
|
||||||
{ "_wxPrintDialog","_class_wxPrintDialog",0},
|
{ "_wxPrintDialog","_class_wxPrintDialog",0},
|
||||||
{ "_wxPyControlPoint","_class_wxPyControlPoint",0},
|
{ "_wxPyControlPoint","_class_wxPyControlPoint",0},
|
||||||
{ "_wxPyTimer","_class_wxPyTimer",0},
|
{ "_wxPyTimer","_class_wxPyTimer",0},
|
||||||
{ "_wxWindowDC","_class_wxWindowDC",0},
|
{ "_wxWindowDC","_class_wxWindowDC",0},
|
||||||
{ "_wxScrollBar","_class_wxScrollBar",0},
|
{ "_wxScrollBar","_class_wxScrollBar",0},
|
||||||
{ "_wxSpinButton","_class_wxSpinButton",0},
|
{ "_wxSpinButton","_class_wxSpinButton",0},
|
||||||
{ "_wxToolBarTool","_class_wxToolBarTool",0},
|
|
||||||
{ "_wxColourDialog","_class_wxColourDialog",0},
|
{ "_wxColourDialog","_class_wxColourDialog",0},
|
||||||
{ "_wxPrintData","_class_wxPrintData",0},
|
{ "_wxPrintData","_class_wxPrintData",0},
|
||||||
{ "_class_wxIndividualLayoutConstraint","_wxIndividualLayoutConstraint",0},
|
{ "_class_wxIndividualLayoutConstraint","_wxIndividualLayoutConstraint",0},
|
||||||
@@ -330,27 +344,34 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxIconizeEvent","_wxIconizeEvent",0},
|
{ "_class_wxIconizeEvent","_wxIconizeEvent",0},
|
||||||
{ "_class_wxStaticBitmap","_wxStaticBitmap",0},
|
{ "_class_wxStaticBitmap","_wxStaticBitmap",0},
|
||||||
{ "_class_wxPyDrawnShape","_wxPyDrawnShape",0},
|
{ "_class_wxPyDrawnShape","_wxPyDrawnShape",0},
|
||||||
|
{ "_class_wxBusyCursor","_wxBusyCursor",0},
|
||||||
|
{ "_wxToolBarSimple","_class_wxToolBarSimple",0},
|
||||||
{ "_wxMDIChildFrame","_class_wxMDIChildFrame",0},
|
{ "_wxMDIChildFrame","_class_wxMDIChildFrame",0},
|
||||||
{ "_wxListItem","_class_wxListItem",0},
|
{ "_wxListItem","_class_wxListItem",0},
|
||||||
{ "_class_wxPseudoMetaFile","_wxPseudoMetaFile",0},
|
{ "_class_wxPseudoMetaFile","_wxPseudoMetaFile",0},
|
||||||
{ "_class_wxToolBar","_wxToolBar",0},
|
{ "_class_wxToolBar","_wxToolBar",0},
|
||||||
|
{ "_wxDropTarget","_class_wxDropTarget",0},
|
||||||
{ "_class_wxStaticLine","_wxStaticLine",0},
|
{ "_class_wxStaticLine","_wxStaticLine",0},
|
||||||
{ "_wxScrollEvent","_class_wxScrollEvent",0},
|
{ "_wxScrollEvent","_class_wxScrollEvent",0},
|
||||||
|
{ "_wxToolBarToolBase","_class_wxToolBarToolBase",0},
|
||||||
{ "_wxCalculateLayoutEvent","_class_wxCalculateLayoutEvent",0},
|
{ "_wxCalculateLayoutEvent","_class_wxCalculateLayoutEvent",0},
|
||||||
{ "_class_wxShapeRegion","_wxShapeRegion",0},
|
{ "_class_wxShapeRegion","_wxShapeRegion",0},
|
||||||
|
{ "_EBool","_wxCoord",0},
|
||||||
{ "_EBool","_wxPrintQuality",0},
|
{ "_EBool","_wxPrintQuality",0},
|
||||||
{ "_EBool","_signed_int",0},
|
{ "_EBool","_signed_int",0},
|
||||||
{ "_EBool","_int",0},
|
{ "_EBool","_int",0},
|
||||||
{ "_EBool","_wxWindowID",0},
|
{ "_EBool","_wxWindowID",0},
|
||||||
{ "_class_wxRegion","_wxRegion",0},
|
{ "_class_wxRegion","_wxRegion",0},
|
||||||
|
{ "_class_wxDataFormat","_wxDataFormat",0},
|
||||||
{ "_class_wxDropFilesEvent","_wxDropFilesEvent",0},
|
{ "_class_wxDropFilesEvent","_wxDropFilesEvent",0},
|
||||||
|
{ "_wxWindowDestroyEvent","_class_wxWindowDestroyEvent",0},
|
||||||
{ "_class_wxPreviewFrame","_wxPreviewFrame",0},
|
{ "_class_wxPreviewFrame","_wxPreviewFrame",0},
|
||||||
{ "_wxStaticText","_class_wxStaticText",0},
|
{ "_wxStaticText","_class_wxStaticText",0},
|
||||||
{ "_wxFont","_class_wxFont",0},
|
{ "_wxFont","_class_wxFont",0},
|
||||||
|
{ "_class_wxPyDropTarget","_wxPyDropTarget",0},
|
||||||
{ "_wxCloseEvent","_class_wxCloseEvent",0},
|
{ "_wxCloseEvent","_class_wxCloseEvent",0},
|
||||||
{ "_class_wxSplitterEvent","_wxSplitterEvent",0},
|
{ "_class_wxSplitterEvent","_wxSplitterEvent",0},
|
||||||
{ "_wxNotebook","_class_wxNotebook",0},
|
{ "_wxNotebook","_class_wxNotebook",0},
|
||||||
{ "_unsigned_long","_wxDash",0},
|
|
||||||
{ "_unsigned_long","_long",0},
|
{ "_unsigned_long","_long",0},
|
||||||
{ "_class_wxRect","_wxRect",0},
|
{ "_class_wxRect","_wxRect",0},
|
||||||
{ "_class_wxDC","_wxDC",0},
|
{ "_class_wxDC","_wxDC",0},
|
||||||
@@ -358,7 +379,9 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxPyCircleShape","_class_wxPyCircleShape",0},
|
{ "_wxPyCircleShape","_class_wxPyCircleShape",0},
|
||||||
{ "_class_wxPyShapeCanvas","_wxPyShapeCanvas",0},
|
{ "_class_wxPyShapeCanvas","_wxPyShapeCanvas",0},
|
||||||
{ "_class_wxProgressDialog","_wxProgressDialog",0},
|
{ "_class_wxProgressDialog","_wxProgressDialog",0},
|
||||||
|
{ "_wxQueryNewPaletteEvent","_class_wxQueryNewPaletteEvent",0},
|
||||||
{ "_wxPyApp","_class_wxPyApp",0},
|
{ "_wxPyApp","_class_wxPyApp",0},
|
||||||
|
{ "_class_wxWindowCreateEvent","_wxWindowCreateEvent",0},
|
||||||
{ "_wxMDIParentFrame","_class_wxMDIParentFrame",0},
|
{ "_wxMDIParentFrame","_class_wxMDIParentFrame",0},
|
||||||
{ "_class_wxTreeEvent","_wxTreeEvent",0},
|
{ "_class_wxTreeEvent","_wxTreeEvent",0},
|
||||||
{ "_class_wxDirDialog","_wxDirDialog",0},
|
{ "_class_wxDirDialog","_wxDirDialog",0},
|
||||||
@@ -374,23 +397,26 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxComboBox","_class_wxComboBox",0},
|
{ "_wxComboBox","_class_wxComboBox",0},
|
||||||
{ "_wxRadioButton","_class_wxRadioButton",0},
|
{ "_wxRadioButton","_class_wxRadioButton",0},
|
||||||
{ "_class_wxMessageDialog","_wxMessageDialog",0},
|
{ "_class_wxMessageDialog","_wxMessageDialog",0},
|
||||||
|
{ "_signed_int","_wxCoord",0},
|
||||||
{ "_signed_int","_wxPrintQuality",0},
|
{ "_signed_int","_wxPrintQuality",0},
|
||||||
{ "_signed_int","_EBool",0},
|
{ "_signed_int","_EBool",0},
|
||||||
{ "_signed_int","_wxWindowID",0},
|
{ "_signed_int","_wxWindowID",0},
|
||||||
{ "_signed_int","_int",0},
|
{ "_signed_int","_int",0},
|
||||||
{ "_class_wxTextCtrl","_wxTextCtrl",0},
|
{ "_class_wxTextCtrl","_wxTextCtrl",0},
|
||||||
{ "_wxLayoutConstraints","_class_wxLayoutConstraints",0},
|
{ "_wxLayoutConstraints","_class_wxLayoutConstraints",0},
|
||||||
{ "_wxMetaFileDC","_class_wxMetaFileDC",0},
|
{ "_class_wxTextDataObject","_wxTextDataObject",0},
|
||||||
{ "_wxMenu","_class_wxMenu",0},
|
{ "_wxMenu","_class_wxMenu",0},
|
||||||
{ "_class_wxMoveEvent","_wxMoveEvent",0},
|
{ "_class_wxMoveEvent","_wxMoveEvent",0},
|
||||||
{ "_wxListBox","_class_wxListBox",0},
|
{ "_wxListBox","_class_wxListBox",0},
|
||||||
{ "_wxScreenDC","_class_wxScreenDC",0},
|
{ "_wxScreenDC","_class_wxScreenDC",0},
|
||||||
|
{ "_class_wxToolBarSimple","_wxToolBarSimple",0},
|
||||||
{ "_class_wxMDIChildFrame","_wxMDIChildFrame",0},
|
{ "_class_wxMDIChildFrame","_wxMDIChildFrame",0},
|
||||||
{ "_wxArrowHead","_class_wxArrowHead",0},
|
{ "_wxArrowHead","_class_wxArrowHead",0},
|
||||||
{ "_WXTYPE","_short",0},
|
{ "_WXTYPE","_short",0},
|
||||||
{ "_WXTYPE","_signed_short",0},
|
{ "_WXTYPE","_signed_short",0},
|
||||||
{ "_WXTYPE","_unsigned_short",0},
|
{ "_WXTYPE","_unsigned_short",0},
|
||||||
{ "_wxFileDialog","_class_wxFileDialog",0},
|
{ "_wxFileDialog","_class_wxFileDialog",0},
|
||||||
|
{ "_class_wxDropTarget","_wxDropTarget",0},
|
||||||
{ "_class_wxCaret","_wxCaret",0},
|
{ "_class_wxCaret","_wxCaret",0},
|
||||||
{ "_class_wxMDIClientWindow","_wxMDIClientWindow",0},
|
{ "_class_wxMDIClientWindow","_wxMDIClientWindow",0},
|
||||||
{ "_class_wxBrush","_wxBrush",0},
|
{ "_class_wxBrush","_wxBrush",0},
|
||||||
@@ -401,10 +427,14 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxStaticText","_wxStaticText",0},
|
{ "_class_wxStaticText","_wxStaticText",0},
|
||||||
{ "_wxPrintDialogData","_class_wxPrintDialogData",0},
|
{ "_wxPrintDialogData","_class_wxPrintDialogData",0},
|
||||||
{ "_class_wxFont","_wxFont",0},
|
{ "_class_wxFont","_wxFont",0},
|
||||||
|
{ "_wxClipboard","_class_wxClipboard",0},
|
||||||
{ "_class_wxPyValidator","_wxPyValidator",0},
|
{ "_class_wxPyValidator","_wxPyValidator",0},
|
||||||
{ "_class_wxCloseEvent","_wxCloseEvent",0},
|
{ "_class_wxCloseEvent","_wxCloseEvent",0},
|
||||||
{ "_wxSashEvent","_class_wxSashEvent",0},
|
{ "_wxSashEvent","_class_wxSashEvent",0},
|
||||||
|
{ "_wxBusyInfo","_class_wxBusyInfo",0},
|
||||||
{ "_class_wxMenuEvent","_wxMenuEvent",0},
|
{ "_class_wxMenuEvent","_wxMenuEvent",0},
|
||||||
|
{ "_wxPaletteChangedEvent","_class_wxPaletteChangedEvent",0},
|
||||||
|
{ "_class_wxPyBitmapDataObject","_wxPyBitmapDataObject",0},
|
||||||
{ "_class_wxPyCircleShape","_wxPyCircleShape",0},
|
{ "_class_wxPyCircleShape","_wxPyCircleShape",0},
|
||||||
{ "_wxClientDC","_class_wxClientDC",0},
|
{ "_wxClientDC","_class_wxClientDC",0},
|
||||||
{ "_wxMouseEvent","_class_wxMouseEvent",0},
|
{ "_wxMouseEvent","_class_wxMouseEvent",0},
|
||||||
@@ -414,12 +444,11 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxPoint","_wxPoint",0},
|
{ "_class_wxPoint","_wxPoint",0},
|
||||||
{ "_wxRealPoint","_class_wxRealPoint",0},
|
{ "_wxRealPoint","_class_wxRealPoint",0},
|
||||||
{ "_class_wxRadioBox","_wxRadioBox",0},
|
{ "_class_wxRadioBox","_wxRadioBox",0},
|
||||||
{ "_wxGridCell","_class_wxGridCell",0},
|
|
||||||
{ "_class_wxBoxSizer","_wxBoxSizer",0},
|
{ "_class_wxBoxSizer","_wxBoxSizer",0},
|
||||||
{ "_signed_short","_WXTYPE",0},
|
{ "_signed_short","_WXTYPE",0},
|
||||||
{ "_signed_short","_short",0},
|
{ "_signed_short","_short",0},
|
||||||
{ "_wxMemoryDC","_class_wxMemoryDC",0},
|
{ "_wxMemoryDC","_class_wxMemoryDC",0},
|
||||||
{ "_class_wxTaskBarIcon","_wxTaskBarIcon",0},
|
{ "_wxPyTextDataObject","_class_wxPyTextDataObject",0},
|
||||||
{ "_class_wxPrintDialog","_wxPrintDialog",0},
|
{ "_class_wxPrintDialog","_wxPrintDialog",0},
|
||||||
{ "_class_wxPyControlPoint","_wxPyControlPoint",0},
|
{ "_class_wxPyControlPoint","_wxPyControlPoint",0},
|
||||||
{ "_wxPaintDC","_class_wxPaintDC",0},
|
{ "_wxPaintDC","_class_wxPaintDC",0},
|
||||||
@@ -427,18 +456,19 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxFocusEvent","_wxFocusEvent",0},
|
{ "_class_wxFocusEvent","_wxFocusEvent",0},
|
||||||
{ "_class_wxMaximizeEvent","_wxMaximizeEvent",0},
|
{ "_class_wxMaximizeEvent","_wxMaximizeEvent",0},
|
||||||
{ "_wxStatusBar","_class_wxStatusBar",0},
|
{ "_wxStatusBar","_class_wxStatusBar",0},
|
||||||
{ "_class_wxToolBarTool","_wxToolBarTool",0},
|
|
||||||
{ "_class_wxAcceleratorEntry","_wxAcceleratorEntry",0},
|
{ "_class_wxAcceleratorEntry","_wxAcceleratorEntry",0},
|
||||||
{ "_class_wxCursor","_wxCursor",0},
|
{ "_class_wxCursor","_wxCursor",0},
|
||||||
|
{ "_wxPostScriptDC","_class_wxPostScriptDC",0},
|
||||||
|
{ "_wxPyFileDropTarget","_class_wxPyFileDropTarget",0},
|
||||||
{ "_class_wxImageHandler","_wxImageHandler",0},
|
{ "_class_wxImageHandler","_wxImageHandler",0},
|
||||||
{ "_wxPyShape","_class_wxPyShape",0},
|
{ "_wxPyShape","_class_wxPyShape",0},
|
||||||
{ "_wxScrolledWindow","_class_wxScrolledWindow",0},
|
{ "_wxScrolledWindow","_class_wxScrolledWindow",0},
|
||||||
{ "_wxTreeItemId","_class_wxTreeItemId",0},
|
{ "_wxTreeItemId","_class_wxTreeItemId",0},
|
||||||
{ "_unsigned_char","_byte",0},
|
{ "_unsigned_char","_byte",0},
|
||||||
{ "_class_wxMetaFileDC","_wxMetaFileDC",0},
|
|
||||||
{ "_class_wxMenu","_wxMenu",0},
|
{ "_class_wxMenu","_wxMenu",0},
|
||||||
{ "_wxControl","_class_wxControl",0},
|
{ "_wxControl","_class_wxControl",0},
|
||||||
{ "_class_wxListBox","_wxListBox",0},
|
{ "_class_wxListBox","_wxListBox",0},
|
||||||
|
{ "_unsigned_int","_wxCoord",0},
|
||||||
{ "_unsigned_int","_wxPrintQuality",0},
|
{ "_unsigned_int","_wxPrintQuality",0},
|
||||||
{ "_unsigned_int","_size_t",0},
|
{ "_unsigned_int","_size_t",0},
|
||||||
{ "_unsigned_int","_uint",0},
|
{ "_unsigned_int","_uint",0},
|
||||||
@@ -456,6 +486,8 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxStaticBox","_wxStaticBox",0},
|
{ "_class_wxStaticBox","_wxStaticBox",0},
|
||||||
{ "_wxLayoutAlgorithm","_class_wxLayoutAlgorithm",0},
|
{ "_wxLayoutAlgorithm","_class_wxLayoutAlgorithm",0},
|
||||||
{ "_wxPyTextShape","_class_wxPyTextShape",0},
|
{ "_wxPyTextShape","_class_wxPyTextShape",0},
|
||||||
|
{ "_class_wxPyDataObjectSimple","_wxPyDataObjectSimple",0},
|
||||||
|
{ "_class_wxPyDropSource","_wxPyDropSource",0},
|
||||||
{ "_class_wxScrollEvent","_wxScrollEvent",0},
|
{ "_class_wxScrollEvent","_wxScrollEvent",0},
|
||||||
{ "_wxJoystickEvent","_class_wxJoystickEvent",0},
|
{ "_wxJoystickEvent","_class_wxJoystickEvent",0},
|
||||||
{ "_class_wxChoice","_wxChoice",0},
|
{ "_class_wxChoice","_wxChoice",0},
|
||||||
@@ -464,9 +496,12 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxImageList","_wxImageList",0},
|
{ "_class_wxImageList","_wxImageList",0},
|
||||||
{ "_class_wxBitmapButton","_wxBitmapButton",0},
|
{ "_class_wxBitmapButton","_wxBitmapButton",0},
|
||||||
{ "_wxFrame","_class_wxFrame",0},
|
{ "_wxFrame","_class_wxFrame",0},
|
||||||
|
{ "_wxPCXHandler","_class_wxPCXHandler",0},
|
||||||
{ "_wxPyDivisionShape","_class_wxPyDivisionShape",0},
|
{ "_wxPyDivisionShape","_class_wxPyDivisionShape",0},
|
||||||
|
{ "_class_wxPaletteChangedEvent","_wxPaletteChangedEvent",0},
|
||||||
{ "_class_wxNotebook","_wxNotebook",0},
|
{ "_class_wxNotebook","_wxNotebook",0},
|
||||||
{ "_wxJPEGHandler","_class_wxJPEGHandler",0},
|
{ "_wxJPEGHandler","_class_wxJPEGHandler",0},
|
||||||
|
{ "_wxWindowID","_wxCoord",0},
|
||||||
{ "_wxWindowID","_wxPrintQuality",0},
|
{ "_wxWindowID","_wxPrintQuality",0},
|
||||||
{ "_wxWindowID","_size_t",0},
|
{ "_wxWindowID","_size_t",0},
|
||||||
{ "_wxWindowID","_EBool",0},
|
{ "_wxWindowID","_EBool",0},
|
||||||
@@ -476,6 +511,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxWindowID","_unsigned_int",0},
|
{ "_wxWindowID","_unsigned_int",0},
|
||||||
{ "_class_wxScrollWinEvent","_wxScrollWinEvent",0},
|
{ "_class_wxScrollWinEvent","_wxScrollWinEvent",0},
|
||||||
{ "_class_wxSizerItem","_wxSizerItem",0},
|
{ "_class_wxSizerItem","_wxSizerItem",0},
|
||||||
|
{ "_int","_wxCoord",0},
|
||||||
{ "_int","_wxPrintQuality",0},
|
{ "_int","_wxPrintQuality",0},
|
||||||
{ "_int","_size_t",0},
|
{ "_int","_size_t",0},
|
||||||
{ "_int","_EBool",0},
|
{ "_int","_EBool",0},
|
||||||
@@ -488,22 +524,26 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxListEvent","_wxListEvent",0},
|
{ "_class_wxListEvent","_wxListEvent",0},
|
||||||
{ "_class_wxPrintPreview","_wxPrintPreview",0},
|
{ "_class_wxPrintPreview","_wxPrintPreview",0},
|
||||||
{ "_class_wxSpinEvent","_wxSpinEvent",0},
|
{ "_class_wxSpinEvent","_wxSpinEvent",0},
|
||||||
|
{ "_class_wxQueryNewPaletteEvent","_wxQueryNewPaletteEvent",0},
|
||||||
|
{ "_class_wxNavigationKeyEvent","_wxNavigationKeyEvent",0},
|
||||||
{ "_wxButton","_class_wxButton",0},
|
{ "_wxButton","_class_wxButton",0},
|
||||||
{ "_class_wxPyApp","_wxPyApp",0},
|
{ "_class_wxPyApp","_wxPyApp",0},
|
||||||
{ "_wxSize","_class_wxSize",0},
|
{ "_wxSize","_class_wxSize",0},
|
||||||
{ "_wxRegionIterator","_class_wxRegionIterator",0},
|
{ "_wxRegionIterator","_class_wxRegionIterator",0},
|
||||||
{ "_class_wxPrinterDC","_wxPrinterDC",0},
|
{ "_class_wxPyTextDataObject","_wxPyTextDataObject",0},
|
||||||
{ "_class_wxMDIParentFrame","_wxMDIParentFrame",0},
|
{ "_class_wxMDIParentFrame","_wxMDIParentFrame",0},
|
||||||
{ "_wxPyTreeItemData","_class_wxPyTreeItemData",0},
|
{ "_wxPyTreeItemData","_class_wxPyTreeItemData",0},
|
||||||
{ "_wxStaticBoxSizer","_class_wxStaticBoxSizer",0},
|
{ "_wxStaticBoxSizer","_class_wxStaticBoxSizer",0},
|
||||||
{ "_class_wxPyLineShape","_wxPyLineShape",0},
|
{ "_class_wxPyLineShape","_wxPyLineShape",0},
|
||||||
{ "_class_wxPaintDC","_wxPaintDC",0},
|
{ "_class_wxPaintDC","_wxPaintDC",0},
|
||||||
{ "_class_wxSysColourChangedEvent","_wxSysColourChangedEvent",0},
|
{ "_class_wxSysColourChangedEvent","_wxSysColourChangedEvent",0},
|
||||||
|
{ "_class_wxPyFileDropTarget","_wxPyFileDropTarget",0},
|
||||||
{ "_class_wxInitDialogEvent","_wxInitDialogEvent",0},
|
{ "_class_wxInitDialogEvent","_wxInitDialogEvent",0},
|
||||||
{ "_class_wxComboBox","_wxComboBox",0},
|
{ "_class_wxComboBox","_wxComboBox",0},
|
||||||
{ "_class_wxRadioButton","_wxRadioButton",0},
|
{ "_class_wxRadioButton","_wxRadioButton",0},
|
||||||
{ "_class_wxPyShape","_wxPyShape",0},
|
{ "_class_wxPyShape","_wxPyShape",0},
|
||||||
{ "_wxValidator","_class_wxValidator",0},
|
{ "_wxValidator","_class_wxValidator",0},
|
||||||
|
{ "_wxToolBarBase","_class_wxToolBarBase",0},
|
||||||
{ "_class_wxTreeItemId","_wxTreeItemId",0},
|
{ "_class_wxTreeItemId","_wxTreeItemId",0},
|
||||||
{ "_wxTreeCtrl","_class_wxTreeCtrl",0},
|
{ "_wxTreeCtrl","_class_wxTreeCtrl",0},
|
||||||
{ "_class_wxLayoutConstraints","_wxLayoutConstraints",0},
|
{ "_class_wxLayoutConstraints","_wxLayoutConstraints",0},
|
||||||
@@ -517,7 +557,16 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxPageSetupDialog","_wxPageSetupDialog",0},
|
{ "_class_wxPageSetupDialog","_wxPageSetupDialog",0},
|
||||||
{ "_wxPalette","_class_wxPalette",0},
|
{ "_wxPalette","_class_wxPalette",0},
|
||||||
{ "_class_wxIdleEvent","_wxIdleEvent",0},
|
{ "_class_wxIdleEvent","_wxIdleEvent",0},
|
||||||
|
{ "_wxCoord","_int",0},
|
||||||
|
{ "_wxCoord","_signed_int",0},
|
||||||
|
{ "_wxCoord","_unsigned_int",0},
|
||||||
|
{ "_wxCoord","_wxWindowID",0},
|
||||||
|
{ "_wxCoord","_uint",0},
|
||||||
|
{ "_wxCoord","_EBool",0},
|
||||||
|
{ "_wxCoord","_size_t",0},
|
||||||
|
{ "_wxCoord","_wxPrintQuality",0},
|
||||||
{ "_wxEraseEvent","_class_wxEraseEvent",0},
|
{ "_wxEraseEvent","_class_wxEraseEvent",0},
|
||||||
|
{ "_wxDataObjectComposite","_class_wxDataObjectComposite",0},
|
||||||
{ "_class_wxJoystickEvent","_wxJoystickEvent",0},
|
{ "_class_wxJoystickEvent","_wxJoystickEvent",0},
|
||||||
{ "_class_wxMiniFrame","_wxMiniFrame",0},
|
{ "_class_wxMiniFrame","_wxMiniFrame",0},
|
||||||
{ "_wxFontDialog","_class_wxFontDialog",0},
|
{ "_wxFontDialog","_class_wxFontDialog",0},
|
||||||
@@ -526,21 +575,25 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxPreviewFrame","_class_wxPreviewFrame",0},
|
{ "_wxPreviewFrame","_class_wxPreviewFrame",0},
|
||||||
{ "_wxSizer","_class_wxSizer",0},
|
{ "_wxSizer","_class_wxSizer",0},
|
||||||
{ "_class_wxShowEvent","_wxShowEvent",0},
|
{ "_class_wxShowEvent","_wxShowEvent",0},
|
||||||
|
{ "_class_wxPCXHandler","_wxPCXHandler",0},
|
||||||
|
{ "_wxTIFFHandler","_class_wxTIFFHandler",0},
|
||||||
{ "_wxDiagram","_class_wxDiagram",0},
|
{ "_wxDiagram","_class_wxDiagram",0},
|
||||||
|
{ "_wxPyDropTarget","_class_wxPyDropTarget",0},
|
||||||
{ "_wxActivateEvent","_class_wxActivateEvent",0},
|
{ "_wxActivateEvent","_class_wxActivateEvent",0},
|
||||||
{ "_wxGauge","_class_wxGauge",0},
|
{ "_wxGauge","_class_wxGauge",0},
|
||||||
{ "_class_wxCheckListBox","_wxCheckListBox",0},
|
{ "_class_wxCheckListBox","_wxCheckListBox",0},
|
||||||
{ "_class_wxGridEvent","_wxGridEvent",0},
|
{ "_class_wxBusyInfo","_wxBusyInfo",0},
|
||||||
{ "_class_wxCommandEvent","_wxCommandEvent",0},
|
{ "_class_wxCommandEvent","_wxCommandEvent",0},
|
||||||
{ "_class_wxClientDC","_wxClientDC",0},
|
{ "_class_wxClientDC","_wxClientDC",0},
|
||||||
{ "_class_wxSizeEvent","_wxSizeEvent",0},
|
{ "_class_wxSizeEvent","_wxSizeEvent",0},
|
||||||
{ "_class_wxListCtrl","_wxListCtrl",0},
|
{ "_class_wxListCtrl","_wxListCtrl",0},
|
||||||
{ "_class_wxPyDividedShape","_wxPyDividedShape",0},
|
{ "_class_wxPyDividedShape","_wxPyDividedShape",0},
|
||||||
{ "_wxPyEllipseShape","_class_wxPyEllipseShape",0},
|
{ "_wxPyEllipseShape","_class_wxPyEllipseShape",0},
|
||||||
{ "_class_wxGridCell","_wxGridCell",0},
|
{ "_wxCustomDataObject","_class_wxCustomDataObject",0},
|
||||||
{ "_class_wxSize","_wxSize",0},
|
{ "_class_wxSize","_wxSize",0},
|
||||||
{ "_class_wxBitmap","_wxBitmap",0},
|
{ "_class_wxBitmap","_wxBitmap",0},
|
||||||
{ "_class_wxMemoryDC","_wxMemoryDC",0},
|
{ "_class_wxMemoryDC","_wxMemoryDC",0},
|
||||||
|
{ "_wxPyTextDropTarget","_class_wxPyTextDropTarget",0},
|
||||||
{ "_wxMenuBar","_class_wxMenuBar",0},
|
{ "_wxMenuBar","_class_wxMenuBar",0},
|
||||||
{ "_wxTreeEvent","_class_wxTreeEvent",0},
|
{ "_wxTreeEvent","_class_wxTreeEvent",0},
|
||||||
{ "_wxDirDialog","_class_wxDirDialog",0},
|
{ "_wxDirDialog","_class_wxDirDialog",0},
|
||||||
@@ -550,8 +603,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxScrollBar","_wxScrollBar",0},
|
{ "_class_wxScrollBar","_wxScrollBar",0},
|
||||||
{ "_class_wxColourDialog","_wxColourDialog",0},
|
{ "_class_wxColourDialog","_wxColourDialog",0},
|
||||||
{ "_class_wxPrintData","_wxPrintData",0},
|
{ "_class_wxPrintData","_wxPrintData",0},
|
||||||
{ "_wxDash","_unsigned_long",0},
|
{ "_wxDash","_char",0},
|
||||||
{ "_wxDash","_long",0},
|
|
||||||
{ "_wxPyRectangleShape","_class_wxPyRectangleShape",0},
|
{ "_wxPyRectangleShape","_class_wxPyRectangleShape",0},
|
||||||
{ "_class_wxScrolledWindow","_wxScrolledWindow",0},
|
{ "_class_wxScrolledWindow","_wxScrolledWindow",0},
|
||||||
{ "_class_wxTextEntryDialog","_wxTextEntryDialog",0},
|
{ "_class_wxTextEntryDialog","_wxTextEntryDialog",0},
|
||||||
@@ -561,12 +613,17 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxColourData","_class_wxColourData",0},
|
{ "_wxColourData","_class_wxColourData",0},
|
||||||
{ "_wxPageSetupDialogData","_class_wxPageSetupDialogData",0},
|
{ "_wxPageSetupDialogData","_class_wxPageSetupDialogData",0},
|
||||||
{ "_class_wxPalette","_wxPalette",0},
|
{ "_class_wxPalette","_wxPalette",0},
|
||||||
|
{ "_wxFileDataObject","_class_wxFileDataObject",0},
|
||||||
{ "_class_wxQueryLayoutInfoEvent","_wxQueryLayoutInfoEvent",0},
|
{ "_class_wxQueryLayoutInfoEvent","_wxQueryLayoutInfoEvent",0},
|
||||||
{ "_class_wxEraseEvent","_wxEraseEvent",0},
|
{ "_class_wxEraseEvent","_wxEraseEvent",0},
|
||||||
|
{ "_wxPyFontEnumerator","_class_wxPyFontEnumerator",0},
|
||||||
{ "_wxMDIClientWindow","_class_wxMDIClientWindow",0},
|
{ "_wxMDIClientWindow","_class_wxMDIClientWindow",0},
|
||||||
{ "_class_wxPyTextShape","_wxPyTextShape",0},
|
{ "_class_wxPyTextShape","_wxPyTextShape",0},
|
||||||
|
{ "_class_wxDataObjectComposite","_wxDataObjectComposite",0},
|
||||||
|
{ "_class_wxToolBarToolBase","_wxToolBarToolBase",0},
|
||||||
{ "_class_wxFontDialog","_wxFontDialog",0},
|
{ "_class_wxFontDialog","_wxFontDialog",0},
|
||||||
{ "_wxWindow","_class_wxWindow",0},
|
{ "_wxWindow","_class_wxWindow",0},
|
||||||
|
{ "_class_wxWindowDestroyEvent","_wxWindowDestroyEvent",0},
|
||||||
{ "_class_wxFrame","_wxFrame",0},
|
{ "_class_wxFrame","_wxFrame",0},
|
||||||
{ "_class_wxDiagram","_wxDiagram",0},
|
{ "_class_wxDiagram","_wxDiagram",0},
|
||||||
{0,0,0}};
|
{0,0,0}};
|
||||||
|
@@ -16,11 +16,6 @@
|
|||||||
%{
|
%{
|
||||||
#include "helpers.h"
|
#include "helpers.h"
|
||||||
#include "oglhelpers.h"
|
#include "oglhelpers.h"
|
||||||
#include <ogl.h>
|
|
||||||
#include <basicp.h>
|
|
||||||
#include <constrnt.h>
|
|
||||||
#include <bmpshape.h>
|
|
||||||
#include <drawn.h>
|
|
||||||
%}
|
%}
|
||||||
|
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
|
@@ -9,6 +9,8 @@ from windows import *
|
|||||||
|
|
||||||
from gdi import *
|
from gdi import *
|
||||||
|
|
||||||
|
from clip_dnd import *
|
||||||
|
|
||||||
from events import *
|
from events import *
|
||||||
|
|
||||||
from mdi import *
|
from mdi import *
|
||||||
|
@@ -14,11 +14,12 @@
|
|||||||
#define __wxp_ogl_helpers__
|
#define __wxp_ogl_helpers__
|
||||||
|
|
||||||
|
|
||||||
#include <ogl.h>
|
#include <wx/ogl/ogl.h>
|
||||||
#include <basicp.h>
|
#include <wx/ogl/basicp.h>
|
||||||
#include <constrnt.h>
|
#include <wx/ogl/constrnt.h>
|
||||||
#include <bmpshape.h>
|
#include <wx/ogl/bmpshape.h>
|
||||||
#include <drawn.h>
|
#include <wx/ogl/drawn.h>
|
||||||
|
|
||||||
|
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
// Define a macro that will be used in the class definintions below
|
// Define a macro that will be used in the class definintions below
|
||||||
|
@@ -215,6 +215,7 @@ enum {
|
|||||||
|
|
||||||
wxFRAME_TOOL_WINDOW,
|
wxFRAME_TOOL_WINDOW,
|
||||||
wxFRAME_FLOAT_ON_PARENT,
|
wxFRAME_FLOAT_ON_PARENT,
|
||||||
|
wxFRAME_NO_WINDOW_MENU,
|
||||||
wxED_CLIENT_MARGIN,
|
wxED_CLIENT_MARGIN,
|
||||||
wxED_BUTTONS_BOTTOM,
|
wxED_BUTTONS_BOTTOM,
|
||||||
wxED_BUTTONS_RIGHT,
|
wxED_BUTTONS_RIGHT,
|
||||||
@@ -404,6 +405,7 @@ enum {
|
|||||||
wxID_YES,
|
wxID_YES,
|
||||||
wxID_NO,
|
wxID_NO,
|
||||||
wxID_STATIC,
|
wxID_STATIC,
|
||||||
|
wxID_SEPARATOR,
|
||||||
|
|
||||||
wxBITMAP_TYPE_BMP,
|
wxBITMAP_TYPE_BMP,
|
||||||
wxBITMAP_TYPE_BMP_RESOURCE,
|
wxBITMAP_TYPE_BMP_RESOURCE,
|
||||||
|
@@ -86,7 +86,7 @@ public:
|
|||||||
%new wxBitmap* wxEmptyBitmap(int width, int height, int depth=-1);
|
%new wxBitmap* wxEmptyBitmap(int width, int height, int depth=-1);
|
||||||
|
|
||||||
#ifdef __WXMSW__
|
#ifdef __WXMSW__
|
||||||
%new wxBitmap* wxBitmapFromData(char* data, long type,
|
%new wxBitmap* wxBitmapFromData(PyObject* data, long type,
|
||||||
int width, int height, int depth = 1);
|
int width, int height, int depth = 1);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@@ -96,9 +96,14 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
#ifdef __WXMSW__
|
#ifdef __WXMSW__
|
||||||
wxBitmap* wxBitmapFromData(char* data, long type,
|
wxBitmap* wxBitmapFromData(PyObject* data, long type,
|
||||||
int width, int height, int depth = 1) {
|
int width, int height, int depth = 1) {
|
||||||
return new wxBitmap((void*)data, type, width, height, depth);
|
if (! PyString_Check(data)) {
|
||||||
|
PyErr_SetString(PyExc_TypeError, "Expected string object");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
return new wxBitmap((void*)PyString_AsString(data), type, width, height, depth);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
%}
|
%}
|
||||||
|
@@ -114,9 +114,14 @@ static char* wxStringErrorMsg = "string type is required for parameter";
|
|||||||
}
|
}
|
||||||
|
|
||||||
#ifdef __WXMSW__
|
#ifdef __WXMSW__
|
||||||
wxBitmap* wxBitmapFromData(char* data, long type,
|
wxBitmap* wxBitmapFromData(PyObject* data, long type,
|
||||||
int width, int height, int depth = 1) {
|
int width, int height, int depth = 1) {
|
||||||
return new wxBitmap((void*)data, type, width, height, depth);
|
if (! PyString_Check(data)) {
|
||||||
|
PyErr_SetString(PyExc_TypeError, "Expected string object");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
return new wxBitmap((void*)PyString_AsString(data), type, width, height, depth);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@@ -222,17 +227,21 @@ static PyObject *_wrap_wxEmptyBitmap(PyObject *self, PyObject *args, PyObject *k
|
|||||||
static PyObject *_wrap_wxBitmapFromData(PyObject *self, PyObject *args, PyObject *kwargs) {
|
static PyObject *_wrap_wxBitmapFromData(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
PyObject * _resultobj;
|
PyObject * _resultobj;
|
||||||
wxBitmap * _result;
|
wxBitmap * _result;
|
||||||
char * _arg0;
|
PyObject * _arg0;
|
||||||
long _arg1;
|
long _arg1;
|
||||||
int _arg2;
|
int _arg2;
|
||||||
int _arg3;
|
int _arg3;
|
||||||
int _arg4 = (int ) 1;
|
int _arg4 = (int ) 1;
|
||||||
|
PyObject * _obj0 = 0;
|
||||||
char *_kwnames[] = { "data","type","width","height","depth", NULL };
|
char *_kwnames[] = { "data","type","width","height","depth", NULL };
|
||||||
char _ptemp[128];
|
char _ptemp[128];
|
||||||
|
|
||||||
self = self;
|
self = self;
|
||||||
if(!PyArg_ParseTupleAndKeywords(args,kwargs,"slii|i:wxBitmapFromData",_kwnames,&_arg0,&_arg1,&_arg2,&_arg3,&_arg4))
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Olii|i:wxBitmapFromData",_kwnames,&_obj0,&_arg1,&_arg2,&_arg3,&_arg4))
|
||||||
return NULL;
|
return NULL;
|
||||||
|
{
|
||||||
|
_arg0 = _obj0;
|
||||||
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
_result = (wxBitmap *)wxBitmapFromData(_arg0,_arg1,_arg2,_arg3,_arg4);
|
_result = (wxBitmap *)wxBitmapFromData(_arg0,_arg1,_arg2,_arg3,_arg4);
|
||||||
|
@@ -5892,6 +5892,53 @@ static PyObject *_wrap_wxScrolledWindow_SetTargetWindow(PyObject *self, PyObject
|
|||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#define wxScrolledWindow_GetViewStart(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetViewStart(_swigarg0,_swigarg1))
|
||||||
|
static PyObject *_wrap_wxScrolledWindow_GetViewStart(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
|
PyObject * _resultobj;
|
||||||
|
wxScrolledWindow * _arg0;
|
||||||
|
int * _arg1;
|
||||||
|
int temp;
|
||||||
|
int * _arg2;
|
||||||
|
int temp0;
|
||||||
|
PyObject * _argo0 = 0;
|
||||||
|
char *_kwnames[] = { "self", NULL };
|
||||||
|
|
||||||
|
self = self;
|
||||||
|
{
|
||||||
|
_arg1 = &temp;
|
||||||
|
}
|
||||||
|
{
|
||||||
|
_arg2 = &temp0;
|
||||||
|
}
|
||||||
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxScrolledWindow_GetViewStart",_kwnames,&_argo0))
|
||||||
|
return NULL;
|
||||||
|
if (_argo0) {
|
||||||
|
if (_argo0 == Py_None) { _arg0 = NULL; }
|
||||||
|
else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxScrolledWindow_p")) {
|
||||||
|
PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxScrolledWindow_GetViewStart. Expected _wxScrolledWindow_p.");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
|
wxScrolledWindow_GetViewStart(_arg0,_arg1,_arg2);
|
||||||
|
|
||||||
|
wxPy_END_ALLOW_THREADS;
|
||||||
|
} Py_INCREF(Py_None);
|
||||||
|
_resultobj = Py_None;
|
||||||
|
{
|
||||||
|
PyObject *o;
|
||||||
|
o = PyInt_FromLong((long) (*_arg1));
|
||||||
|
_resultobj = t_output_helper(_resultobj, o);
|
||||||
|
}
|
||||||
|
{
|
||||||
|
PyObject *o;
|
||||||
|
o = PyInt_FromLong((long) (*_arg2));
|
||||||
|
_resultobj = t_output_helper(_resultobj, o);
|
||||||
|
}
|
||||||
|
return _resultobj;
|
||||||
|
}
|
||||||
|
|
||||||
#define wxScrolledWindow_ViewStart(_swigobj,_swigarg0,_swigarg1) (_swigobj->ViewStart(_swigarg0,_swigarg1))
|
#define wxScrolledWindow_ViewStart(_swigobj,_swigarg0,_swigarg1) (_swigobj->ViewStart(_swigarg0,_swigarg1))
|
||||||
static PyObject *_wrap_wxScrolledWindow_ViewStart(PyObject *self, PyObject *args, PyObject *kwargs) {
|
static PyObject *_wrap_wxScrolledWindow_ViewStart(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
PyObject * _resultobj;
|
PyObject * _resultobj;
|
||||||
@@ -8095,7 +8142,7 @@ static PyObject *_wrap_new_wxMenuItem(PyObject *self, PyObject *args, PyObject *
|
|||||||
PyObject * _resultobj;
|
PyObject * _resultobj;
|
||||||
wxMenuItem * _result;
|
wxMenuItem * _result;
|
||||||
wxMenu * _arg0 = (wxMenu *) NULL;
|
wxMenu * _arg0 = (wxMenu *) NULL;
|
||||||
int _arg1 = (int ) ID_SEPARATOR;
|
int _arg1 = (int ) wxID_SEPARATOR;
|
||||||
wxString * _arg2 = (wxString *) &wxPyEmptyStr;
|
wxString * _arg2 = (wxString *) &wxPyEmptyStr;
|
||||||
wxString * _arg3 = (wxString *) &wxPyEmptyStr;
|
wxString * _arg3 = (wxString *) &wxPyEmptyStr;
|
||||||
bool _arg4 = (bool ) FALSE;
|
bool _arg4 = (bool ) FALSE;
|
||||||
@@ -8901,6 +8948,7 @@ static PyMethodDef windowscMethods[] = {
|
|||||||
{ "wxScrolledWindow_CalcUnscrolledPosition", (PyCFunction) _wrap_wxScrolledWindow_CalcUnscrolledPosition, METH_VARARGS | METH_KEYWORDS },
|
{ "wxScrolledWindow_CalcUnscrolledPosition", (PyCFunction) _wrap_wxScrolledWindow_CalcUnscrolledPosition, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "wxScrolledWindow_CalcScrolledPosition", (PyCFunction) _wrap_wxScrolledWindow_CalcScrolledPosition, METH_VARARGS | METH_KEYWORDS },
|
{ "wxScrolledWindow_CalcScrolledPosition", (PyCFunction) _wrap_wxScrolledWindow_CalcScrolledPosition, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "wxScrolledWindow_ViewStart", (PyCFunction) _wrap_wxScrolledWindow_ViewStart, METH_VARARGS | METH_KEYWORDS },
|
{ "wxScrolledWindow_ViewStart", (PyCFunction) _wrap_wxScrolledWindow_ViewStart, METH_VARARGS | METH_KEYWORDS },
|
||||||
|
{ "wxScrolledWindow_GetViewStart", (PyCFunction) _wrap_wxScrolledWindow_GetViewStart, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "wxScrolledWindow_SetTargetWindow", (PyCFunction) _wrap_wxScrolledWindow_SetTargetWindow, METH_VARARGS | METH_KEYWORDS },
|
{ "wxScrolledWindow_SetTargetWindow", (PyCFunction) _wrap_wxScrolledWindow_SetTargetWindow, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "wxScrolledWindow_SetScrollPageSize", (PyCFunction) _wrap_wxScrolledWindow_SetScrollPageSize, METH_VARARGS | METH_KEYWORDS },
|
{ "wxScrolledWindow_SetScrollPageSize", (PyCFunction) _wrap_wxScrolledWindow_SetScrollPageSize, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "wxScrolledWindow_SetScrollbars", (PyCFunction) _wrap_wxScrolledWindow_SetScrollbars, METH_VARARGS | METH_KEYWORDS },
|
{ "wxScrolledWindow_SetScrollbars", (PyCFunction) _wrap_wxScrolledWindow_SetScrollbars, METH_VARARGS | METH_KEYWORDS },
|
||||||
|
@@ -631,6 +631,9 @@ class wxScrolledWindowPtr(wxPanelPtr):
|
|||||||
def SetTargetWindow(self, *_args, **_kwargs):
|
def SetTargetWindow(self, *_args, **_kwargs):
|
||||||
val = apply(windowsc.wxScrolledWindow_SetTargetWindow,(self,) + _args, _kwargs)
|
val = apply(windowsc.wxScrolledWindow_SetTargetWindow,(self,) + _args, _kwargs)
|
||||||
return val
|
return val
|
||||||
|
def GetViewStart(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxScrolledWindow_GetViewStart,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
def ViewStart(self, *_args, **_kwargs):
|
def ViewStart(self, *_args, **_kwargs):
|
||||||
val = apply(windowsc.wxScrolledWindow_ViewStart,(self,) + _args, _kwargs)
|
val = apply(windowsc.wxScrolledWindow_ViewStart,(self,) + _args, _kwargs)
|
||||||
return val
|
return val
|
||||||
|
File diff suppressed because it is too large
Load Diff
@@ -13,378 +13,6 @@ from controls import *
|
|||||||
|
|
||||||
from events import *
|
from events import *
|
||||||
import wx
|
import wx
|
||||||
class wxGridCellPtr :
|
|
||||||
def __init__(self,this):
|
|
||||||
self.this = this
|
|
||||||
self.thisown = 0
|
|
||||||
def __del__(self,windows2c=windows2c):
|
|
||||||
if self.thisown == 1 :
|
|
||||||
windows2c.delete_wxGridCell(self)
|
|
||||||
def GetTextValue(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGridCell_GetTextValue,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def SetTextValue(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGridCell_SetTextValue,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def GetFont(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGridCell_GetFont,(self,) + _args, _kwargs)
|
|
||||||
if val: val = wxFontPtr(val)
|
|
||||||
return val
|
|
||||||
def SetFont(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGridCell_SetFont,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def GetTextColour(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGridCell_GetTextColour,(self,) + _args, _kwargs)
|
|
||||||
if val: val = wxColourPtr(val)
|
|
||||||
return val
|
|
||||||
def SetTextColour(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGridCell_SetTextColour,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def GetBackgroundColour(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGridCell_GetBackgroundColour,(self,) + _args, _kwargs)
|
|
||||||
if val: val = wxColourPtr(val)
|
|
||||||
return val
|
|
||||||
def SetBackgroundColour(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGridCell_SetBackgroundColour,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def GetBackgroundBrush(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGridCell_GetBackgroundBrush,(self,) + _args, _kwargs)
|
|
||||||
if val: val = wxBrushPtr(val)
|
|
||||||
return val
|
|
||||||
def GetAlignment(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGridCell_GetAlignment,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def SetAlignment(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGridCell_SetAlignment,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def GetCellBitmap(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGridCell_GetCellBitmap,(self,) + _args, _kwargs)
|
|
||||||
if val: val = wxBitmapPtr(val)
|
|
||||||
return val
|
|
||||||
def SetCellBitmap(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGridCell_SetCellBitmap,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def __repr__(self):
|
|
||||||
return "<C wxGridCell instance at %s>" % (self.this,)
|
|
||||||
class wxGridCell(wxGridCellPtr):
|
|
||||||
def __init__(self,*_args,**_kwargs):
|
|
||||||
self.this = apply(windows2c.new_wxGridCell,_args,_kwargs)
|
|
||||||
self.thisown = 1
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class wxGridPtr(wxPanelPtr):
|
|
||||||
def __init__(self,this):
|
|
||||||
self.this = this
|
|
||||||
self.thisown = 0
|
|
||||||
def AdjustScrollbars(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_AdjustScrollbars,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def AppendCols(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_AppendCols,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def AppendRows(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_AppendRows,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def BeginBatch(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_BeginBatch,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def CellHitTest(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_CellHitTest,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def CreateGrid(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_CreateGrid,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def CurrentCellVisible(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_CurrentCellVisible,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def DeleteCols(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_DeleteCols,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def DeleteRows(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_DeleteRows,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def EndBatch(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_EndBatch,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def GetBatchCount(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_GetBatchCount,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def GetCell(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_GetCell,(self,) + _args, _kwargs)
|
|
||||||
if val: val = wxGridCellPtr(val)
|
|
||||||
return val
|
|
||||||
def GetCellAlignment(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_GetCellAlignment,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def GetDefCellAlignment(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_GetDefCellAlignment,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def GetCellBackgroundColour(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_GetCellBackgroundColour,(self,) + _args, _kwargs)
|
|
||||||
if val: val = wxColourPtr(val)
|
|
||||||
return val
|
|
||||||
def GetDefCellBackgroundColour(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_GetDefCellBackgroundColour,(self,) + _args, _kwargs)
|
|
||||||
if val: val = wxColourPtr(val)
|
|
||||||
return val
|
|
||||||
def GetCells(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_GetCells,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def GetCellTextColour(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_GetCellTextColour,(self,) + _args, _kwargs)
|
|
||||||
if val: val = wxColourPtr(val)
|
|
||||||
return val
|
|
||||||
def GetDefCellTextColour(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_GetDefCellTextColour,(self,) + _args, _kwargs)
|
|
||||||
if val: val = wxColourPtr(val)
|
|
||||||
return val
|
|
||||||
def GetCellTextFont(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_GetCellTextFont,(self,) + _args, _kwargs)
|
|
||||||
if val: val = wxFontPtr(val)
|
|
||||||
return val
|
|
||||||
def GetDefCellTextFont(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_GetDefCellTextFont,(self,) + _args, _kwargs)
|
|
||||||
if val: val = wxFontPtr(val)
|
|
||||||
return val
|
|
||||||
def GetCellValue(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_GetCellValue,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def GetCols(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_GetCols,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def GetColumnWidth(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_GetColumnWidth,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def GetCurrentRect(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_GetCurrentRect,(self,) + _args, _kwargs)
|
|
||||||
if val: val = wxRectPtr(val) ; val.thisown = 1
|
|
||||||
return val
|
|
||||||
def GetCursorColumn(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_GetCursorColumn,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def GetCursorRow(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_GetCursorRow,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def GetEditable(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_GetEditable,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def GetHorizScrollBar(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_GetHorizScrollBar,(self,) + _args, _kwargs)
|
|
||||||
if val: val = wxScrollBarPtr(val)
|
|
||||||
return val
|
|
||||||
def GetLabelAlignment(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_GetLabelAlignment,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def GetLabelBackgroundColour(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_GetLabelBackgroundColour,(self,) + _args, _kwargs)
|
|
||||||
if val: val = wxColourPtr(val)
|
|
||||||
return val
|
|
||||||
def GetLabelSize(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_GetLabelSize,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def GetLabelTextColour(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_GetLabelTextColour,(self,) + _args, _kwargs)
|
|
||||||
if val: val = wxColourPtr(val)
|
|
||||||
return val
|
|
||||||
def GetLabelTextFont(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_GetLabelTextFont,(self,) + _args, _kwargs)
|
|
||||||
if val: val = wxFontPtr(val)
|
|
||||||
return val
|
|
||||||
def GetLabelValue(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_GetLabelValue,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def GetRowHeight(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_GetRowHeight,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def GetRows(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_GetRows,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def GetScrollPosX(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_GetScrollPosX,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def GetScrollPosY(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_GetScrollPosY,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def GetTextItem(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_GetTextItem,(self,) + _args, _kwargs)
|
|
||||||
if val: val = wxTextCtrlPtr(val)
|
|
||||||
return val
|
|
||||||
def GetVertScrollBar(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_GetVertScrollBar,(self,) + _args, _kwargs)
|
|
||||||
if val: val = wxScrollBarPtr(val)
|
|
||||||
return val
|
|
||||||
def InsertCols(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_InsertCols,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def InsertRows(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_InsertRows,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def OnActivate(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_OnActivate,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def SetCellAlignment(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_SetCellAlignment,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def SetDefCellAlignment(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_SetDefCellAlignment,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def SetCellBackgroundColour(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_SetCellBackgroundColour,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def SetDefCellBackgroundColour(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_SetDefCellBackgroundColour,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def SetCellTextColour(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_SetCellTextColour,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def SetDefCellTextColour(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_SetDefCellTextColour,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def SetCellTextFont(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_SetCellTextFont,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def SetDefCellTextFont(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_SetDefCellTextFont,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def SetCellValue(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_SetCellValue,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def SetColumnWidth(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_SetColumnWidth,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def SetDividerPen(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_SetDividerPen,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def SetEditable(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_SetEditable,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def SetGridCursor(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_SetGridCursor,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def SetLabelAlignment(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_SetLabelAlignment,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def SetLabelBackgroundColour(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_SetLabelBackgroundColour,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def SetLabelSize(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_SetLabelSize,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def SetLabelTextColour(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_SetLabelTextColour,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def SetLabelTextFont(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_SetLabelTextFont,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def SetLabelValue(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_SetLabelValue,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def SetRowHeight(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_SetRowHeight,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def UpdateDimensions(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_UpdateDimensions,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def GetEditInPlace(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_GetEditInPlace,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def SetEditInPlace(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGrid_SetEditInPlace,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def __repr__(self):
|
|
||||||
return "<C wxGrid instance at %s>" % (self.this,)
|
|
||||||
class wxGrid(wxGridPtr):
|
|
||||||
def __init__(self,*_args,**_kwargs):
|
|
||||||
self.this = apply(windows2c.new_wxGrid,_args,_kwargs)
|
|
||||||
self.thisown = 1
|
|
||||||
wx._StdWindowCallbacks(self)
|
|
||||||
wx._checkForCallback(self, 'OnSelectCell', wxEVT_GRID_SELECT_CELL)
|
|
||||||
wx._checkForCallback(self, 'OnCreateCell', wxEVT_GRID_CREATE_CELL)
|
|
||||||
wx._checkForCallback(self, 'OnChangeLabels', wxEVT_GRID_CHANGE_LABELS)
|
|
||||||
wx._checkForCallback(self, 'OnChangeSelectionLabel', wxEVT_GRID_CHANGE_SEL_LABEL)
|
|
||||||
wx._checkForCallback(self, 'OnCellChange', wxEVT_GRID_CELL_CHANGE)
|
|
||||||
wx._checkForCallback(self, 'OnCellLeftClick', wxEVT_GRID_CELL_LCLICK)
|
|
||||||
wx._checkForCallback(self, 'OnCellRightClick', wxEVT_GRID_CELL_RCLICK)
|
|
||||||
wx._checkForCallback(self, 'OnLabelLeftClick', wxEVT_GRID_LABEL_LCLICK)
|
|
||||||
wx._checkForCallback(self, 'OnLabelRightClick', wxEVT_GRID_LABEL_RCLICK)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class wxGridEventPtr(wxEventPtr):
|
|
||||||
def __init__(self,this):
|
|
||||||
self.this = this
|
|
||||||
self.thisown = 0
|
|
||||||
def GetRow(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGridEvent_GetRow,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def GetCol(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGridEvent_GetCol,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def GetPosition(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGridEvent_GetPosition,(self,) + _args, _kwargs)
|
|
||||||
if val: val = wxPointPtr(val) ; val.thisown = 1
|
|
||||||
return val
|
|
||||||
def ControlDown(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGridEvent_ControlDown,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def ShiftDown(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGridEvent_ShiftDown,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def GetCell(self, *_args, **_kwargs):
|
|
||||||
val = apply(windows2c.wxGridEvent_GetCell,(self,) + _args, _kwargs)
|
|
||||||
if val: val = wxGridCellPtr(val)
|
|
||||||
return val
|
|
||||||
def __setattr__(self,name,value):
|
|
||||||
if name == "m_row" :
|
|
||||||
windows2c.wxGridEvent_m_row_set(self,value)
|
|
||||||
return
|
|
||||||
if name == "m_col" :
|
|
||||||
windows2c.wxGridEvent_m_col_set(self,value)
|
|
||||||
return
|
|
||||||
if name == "m_x" :
|
|
||||||
windows2c.wxGridEvent_m_x_set(self,value)
|
|
||||||
return
|
|
||||||
if name == "m_y" :
|
|
||||||
windows2c.wxGridEvent_m_y_set(self,value)
|
|
||||||
return
|
|
||||||
if name == "m_control" :
|
|
||||||
windows2c.wxGridEvent_m_control_set(self,value)
|
|
||||||
return
|
|
||||||
if name == "m_shift" :
|
|
||||||
windows2c.wxGridEvent_m_shift_set(self,value)
|
|
||||||
return
|
|
||||||
if name == "m_cell" :
|
|
||||||
windows2c.wxGridEvent_m_cell_set(self,value.this)
|
|
||||||
return
|
|
||||||
self.__dict__[name] = value
|
|
||||||
def __getattr__(self,name):
|
|
||||||
if name == "m_row" :
|
|
||||||
return windows2c.wxGridEvent_m_row_get(self)
|
|
||||||
if name == "m_col" :
|
|
||||||
return windows2c.wxGridEvent_m_col_get(self)
|
|
||||||
if name == "m_x" :
|
|
||||||
return windows2c.wxGridEvent_m_x_get(self)
|
|
||||||
if name == "m_y" :
|
|
||||||
return windows2c.wxGridEvent_m_y_get(self)
|
|
||||||
if name == "m_control" :
|
|
||||||
return windows2c.wxGridEvent_m_control_get(self)
|
|
||||||
if name == "m_shift" :
|
|
||||||
return windows2c.wxGridEvent_m_shift_get(self)
|
|
||||||
if name == "m_cell" :
|
|
||||||
return wxGridCellPtr(windows2c.wxGridEvent_m_cell_get(self))
|
|
||||||
raise AttributeError,name
|
|
||||||
def __repr__(self):
|
|
||||||
return "<C wxGridEvent instance at %s>" % (self.this,)
|
|
||||||
class wxGridEvent(wxGridEventPtr):
|
|
||||||
def __init__(self,this):
|
|
||||||
self.this = this
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class wxNotebookEventPtr(wxNotifyEventPtr):
|
class wxNotebookEventPtr(wxNotifyEventPtr):
|
||||||
def __init__(self,this):
|
def __init__(self,this):
|
||||||
self.this = this
|
self.this = this
|
||||||
@@ -622,18 +250,6 @@ class wxTaskBarIcon(wxTaskBarIconPtr):
|
|||||||
|
|
||||||
#-------------- VARIABLE WRAPPERS ------------------
|
#-------------- VARIABLE WRAPPERS ------------------
|
||||||
|
|
||||||
wxGRID_TEXT_CTRL = windows2c.wxGRID_TEXT_CTRL
|
|
||||||
wxGRID_HSCROLL = windows2c.wxGRID_HSCROLL
|
|
||||||
wxGRID_VSCROLL = windows2c.wxGRID_VSCROLL
|
|
||||||
wxEVT_GRID_SELECT_CELL = windows2c.wxEVT_GRID_SELECT_CELL
|
|
||||||
wxEVT_GRID_CREATE_CELL = windows2c.wxEVT_GRID_CREATE_CELL
|
|
||||||
wxEVT_GRID_CHANGE_LABELS = windows2c.wxEVT_GRID_CHANGE_LABELS
|
|
||||||
wxEVT_GRID_CHANGE_SEL_LABEL = windows2c.wxEVT_GRID_CHANGE_SEL_LABEL
|
|
||||||
wxEVT_GRID_CELL_CHANGE = windows2c.wxEVT_GRID_CELL_CHANGE
|
|
||||||
wxEVT_GRID_CELL_LCLICK = windows2c.wxEVT_GRID_CELL_LCLICK
|
|
||||||
wxEVT_GRID_CELL_RCLICK = windows2c.wxEVT_GRID_CELL_RCLICK
|
|
||||||
wxEVT_GRID_LABEL_LCLICK = windows2c.wxEVT_GRID_LABEL_LCLICK
|
|
||||||
wxEVT_GRID_LABEL_RCLICK = windows2c.wxEVT_GRID_LABEL_RCLICK
|
|
||||||
wxEVT_TASKBAR_MOVE = windows2c.wxEVT_TASKBAR_MOVE
|
wxEVT_TASKBAR_MOVE = windows2c.wxEVT_TASKBAR_MOVE
|
||||||
wxEVT_TASKBAR_LEFT_DOWN = windows2c.wxEVT_TASKBAR_LEFT_DOWN
|
wxEVT_TASKBAR_LEFT_DOWN = windows2c.wxEVT_TASKBAR_LEFT_DOWN
|
||||||
wxEVT_TASKBAR_LEFT_UP = windows2c.wxEVT_TASKBAR_LEFT_UP
|
wxEVT_TASKBAR_LEFT_UP = windows2c.wxEVT_TASKBAR_LEFT_UP
|
||||||
|
@@ -1771,7 +1771,6 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxNotifyEvent","_class_wxNotifyEvent",0},
|
{ "_wxNotifyEvent","_class_wxNotifyEvent",0},
|
||||||
{ "_class_wxToolBarBase","_wxToolBarBase",0},
|
{ "_class_wxToolBarBase","_wxToolBarBase",0},
|
||||||
{ "_wxMask","_class_wxMask",0},
|
{ "_wxMask","_class_wxMask",0},
|
||||||
{ "_wxGrid","_class_wxGrid",0},
|
|
||||||
{ "_wxPen","_class_wxPen",0},
|
{ "_wxPen","_class_wxPen",0},
|
||||||
{ "_wxUpdateUIEvent","_class_wxUpdateUIEvent",0},
|
{ "_wxUpdateUIEvent","_class_wxUpdateUIEvent",0},
|
||||||
{ "_byte","_unsigned_char",0},
|
{ "_byte","_unsigned_char",0},
|
||||||
@@ -1822,7 +1821,6 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxMask","_wxMask",0},
|
{ "_class_wxMask","_wxMask",0},
|
||||||
{ "_wxTextDataObject","_class_wxTextDataObject",0},
|
{ "_wxTextDataObject","_class_wxTextDataObject",0},
|
||||||
{ "_class_wxKeyEvent","_wxKeyEvent",0},
|
{ "_class_wxKeyEvent","_wxKeyEvent",0},
|
||||||
{ "_class_wxGrid","_wxGrid",0},
|
|
||||||
{ "_wxColour","_class_wxColour",0},
|
{ "_wxColour","_class_wxColour",0},
|
||||||
{ "_class_wxDialog","_wxDialog",0},
|
{ "_class_wxDialog","_wxDialog",0},
|
||||||
{ "_class_wxFileDataObject","_wxFileDataObject",0},
|
{ "_class_wxFileDataObject","_wxFileDataObject",0},
|
||||||
@@ -1857,7 +1855,6 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxEvent","_wxEvent",0},
|
{ "_class_wxEvent","_wxEvent",0},
|
||||||
{ "_wxCheckListBox","_class_wxCheckListBox",0},
|
{ "_wxCheckListBox","_class_wxCheckListBox",0},
|
||||||
{ "_wxSplitterEvent","_class_wxSplitterEvent",0},
|
{ "_wxSplitterEvent","_class_wxSplitterEvent",0},
|
||||||
{ "_wxGridEvent","_class_wxGridEvent",0},
|
|
||||||
{ "_wxRect","_class_wxRect",0},
|
{ "_wxRect","_class_wxRect",0},
|
||||||
{ "_wxCommandEvent","_class_wxSashEvent",SwigwxSashEventTowxCommandEvent},
|
{ "_wxCommandEvent","_class_wxSashEvent",SwigwxSashEventTowxCommandEvent},
|
||||||
{ "_wxCommandEvent","_wxSashEvent",SwigwxSashEventTowxCommandEvent},
|
{ "_wxCommandEvent","_wxSashEvent",SwigwxSashEventTowxCommandEvent},
|
||||||
@@ -1963,7 +1960,6 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxPoint","_wxPoint",0},
|
{ "_class_wxPoint","_wxPoint",0},
|
||||||
{ "_wxRealPoint","_class_wxRealPoint",0},
|
{ "_wxRealPoint","_class_wxRealPoint",0},
|
||||||
{ "_class_wxRadioBox","_wxRadioBox",0},
|
{ "_class_wxRadioBox","_wxRadioBox",0},
|
||||||
{ "_wxGridCell","_class_wxGridCell",0},
|
|
||||||
{ "_signed_short","_WXTYPE",0},
|
{ "_signed_short","_WXTYPE",0},
|
||||||
{ "_signed_short","_short",0},
|
{ "_signed_short","_short",0},
|
||||||
{ "_wxMemoryDC","_class_wxMemoryDC",0},
|
{ "_wxMemoryDC","_class_wxMemoryDC",0},
|
||||||
@@ -2075,14 +2071,12 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxGauge","_class_wxGauge",0},
|
{ "_wxGauge","_class_wxGauge",0},
|
||||||
{ "_class_wxCheckListBox","_wxCheckListBox",0},
|
{ "_class_wxCheckListBox","_wxCheckListBox",0},
|
||||||
{ "_class_wxBusyInfo","_wxBusyInfo",0},
|
{ "_class_wxBusyInfo","_wxBusyInfo",0},
|
||||||
{ "_class_wxGridEvent","_wxGridEvent",0},
|
|
||||||
{ "_class_wxCommandEvent","_class_wxSashEvent",SwigwxSashEventTowxCommandEvent},
|
{ "_class_wxCommandEvent","_class_wxSashEvent",SwigwxSashEventTowxCommandEvent},
|
||||||
{ "_class_wxCommandEvent","_wxSashEvent",SwigwxSashEventTowxCommandEvent},
|
{ "_class_wxCommandEvent","_wxSashEvent",SwigwxSashEventTowxCommandEvent},
|
||||||
{ "_class_wxCommandEvent","_wxCommandEvent",0},
|
{ "_class_wxCommandEvent","_wxCommandEvent",0},
|
||||||
{ "_class_wxClientDC","_wxClientDC",0},
|
{ "_class_wxClientDC","_wxClientDC",0},
|
||||||
{ "_class_wxSizeEvent","_wxSizeEvent",0},
|
{ "_class_wxSizeEvent","_wxSizeEvent",0},
|
||||||
{ "_wxCustomDataObject","_class_wxCustomDataObject",0},
|
{ "_wxCustomDataObject","_class_wxCustomDataObject",0},
|
||||||
{ "_class_wxGridCell","_wxGridCell",0},
|
|
||||||
{ "_class_wxSize","_wxSize",0},
|
{ "_class_wxSize","_wxSize",0},
|
||||||
{ "_class_wxBitmap","_wxBitmap",0},
|
{ "_class_wxBitmap","_wxBitmap",0},
|
||||||
{ "_class_wxMemoryDC","_wxMemoryDC",0},
|
{ "_class_wxMemoryDC","_wxMemoryDC",0},
|
||||||
|
@@ -1672,7 +1672,6 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxTreeCtrl","_wxTreeCtrl",0},
|
{ "_class_wxTreeCtrl","_wxTreeCtrl",0},
|
||||||
{ "_wxMask","_class_wxMask",0},
|
{ "_wxMask","_class_wxMask",0},
|
||||||
{ "_wxToolTip","_class_wxToolTip",0},
|
{ "_wxToolTip","_class_wxToolTip",0},
|
||||||
{ "_wxGrid","_class_wxGrid",0},
|
|
||||||
{ "_wxPNGHandler","_class_wxPNGHandler",0},
|
{ "_wxPNGHandler","_class_wxPNGHandler",0},
|
||||||
{ "_class_wxColourData","_wxColourData",0},
|
{ "_class_wxColourData","_wxColourData",0},
|
||||||
{ "_class_wxPageSetupDialogData","_wxPageSetupDialogData",0},
|
{ "_class_wxPageSetupDialogData","_wxPageSetupDialogData",0},
|
||||||
@@ -1740,7 +1739,6 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxTextDataObject","_class_wxTextDataObject",0},
|
{ "_wxTextDataObject","_class_wxTextDataObject",0},
|
||||||
{ "_class_wxKeyEvent","_wxKeyEvent",0},
|
{ "_class_wxKeyEvent","_wxKeyEvent",0},
|
||||||
{ "_class_wxToolTip","_wxToolTip",0},
|
{ "_class_wxToolTip","_wxToolTip",0},
|
||||||
{ "_class_wxGrid","_wxGrid",0},
|
|
||||||
{ "_class_wxPNGHandler","_wxPNGHandler",0},
|
{ "_class_wxPNGHandler","_wxPNGHandler",0},
|
||||||
{ "_wxColour","_class_wxColour",0},
|
{ "_wxColour","_class_wxColour",0},
|
||||||
{ "_class_wxDialog","_wxDialog",0},
|
{ "_class_wxDialog","_wxDialog",0},
|
||||||
@@ -1773,7 +1771,6 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxEvent","_wxEvent",0},
|
{ "_class_wxEvent","_wxEvent",0},
|
||||||
{ "_wxCheckListBox","_class_wxCheckListBox",0},
|
{ "_wxCheckListBox","_class_wxCheckListBox",0},
|
||||||
{ "_wxSplitterEvent","_class_wxSplitterEvent",0},
|
{ "_wxSplitterEvent","_class_wxSplitterEvent",0},
|
||||||
{ "_wxGridEvent","_class_wxGridEvent",0},
|
|
||||||
{ "_wxRect","_class_wxRect",0},
|
{ "_wxRect","_class_wxRect",0},
|
||||||
{ "_wxCommandEvent","_class_wxCommandEvent",0},
|
{ "_wxCommandEvent","_class_wxCommandEvent",0},
|
||||||
{ "_wxSizeEvent","_class_wxSizeEvent",0},
|
{ "_wxSizeEvent","_class_wxSizeEvent",0},
|
||||||
@@ -1895,7 +1892,6 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxPoint","_wxPoint",0},
|
{ "_class_wxPoint","_wxPoint",0},
|
||||||
{ "_wxRealPoint","_class_wxRealPoint",0},
|
{ "_wxRealPoint","_class_wxRealPoint",0},
|
||||||
{ "_class_wxRadioBox","_wxRadioBox",0},
|
{ "_class_wxRadioBox","_wxRadioBox",0},
|
||||||
{ "_wxGridCell","_class_wxGridCell",0},
|
|
||||||
{ "_class_wxBoxSizer","_wxBoxSizer",0},
|
{ "_class_wxBoxSizer","_wxBoxSizer",0},
|
||||||
{ "_signed_short","_WXTYPE",0},
|
{ "_signed_short","_WXTYPE",0},
|
||||||
{ "_signed_short","_short",0},
|
{ "_signed_short","_short",0},
|
||||||
@@ -2029,13 +2025,11 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxGauge","_class_wxGauge",0},
|
{ "_wxGauge","_class_wxGauge",0},
|
||||||
{ "_class_wxCheckListBox","_wxCheckListBox",0},
|
{ "_class_wxCheckListBox","_wxCheckListBox",0},
|
||||||
{ "_class_wxBusyInfo","_wxBusyInfo",0},
|
{ "_class_wxBusyInfo","_wxBusyInfo",0},
|
||||||
{ "_class_wxGridEvent","_wxGridEvent",0},
|
|
||||||
{ "_class_wxCommandEvent","_wxCommandEvent",0},
|
{ "_class_wxCommandEvent","_wxCommandEvent",0},
|
||||||
{ "_class_wxClientDC","_wxClientDC",0},
|
{ "_class_wxClientDC","_wxClientDC",0},
|
||||||
{ "_class_wxSizeEvent","_wxSizeEvent",0},
|
{ "_class_wxSizeEvent","_wxSizeEvent",0},
|
||||||
{ "_class_wxListCtrl","_wxListCtrl",0},
|
{ "_class_wxListCtrl","_wxListCtrl",0},
|
||||||
{ "_wxCustomDataObject","_class_wxCustomDataObject",0},
|
{ "_wxCustomDataObject","_class_wxCustomDataObject",0},
|
||||||
{ "_class_wxGridCell","_wxGridCell",0},
|
|
||||||
{ "_class_wxSize","_wxSize",0},
|
{ "_class_wxSize","_wxSize",0},
|
||||||
{ "_class_wxBitmap","_wxBitmap",0},
|
{ "_class_wxBitmap","_wxBitmap",0},
|
||||||
{ "_class_wxMemoryDC","_wxMemoryDC",0},
|
{ "_class_wxMemoryDC","_wxMemoryDC",0},
|
||||||
@@ -2124,6 +2118,7 @@ SWIGEXPORT(void) initwxc() {
|
|||||||
PyDict_SetItemString(d,"wxDEFAULT_DIALOG_STYLE", PyInt_FromLong((long) wxDEFAULT_DIALOG_STYLE));
|
PyDict_SetItemString(d,"wxDEFAULT_DIALOG_STYLE", PyInt_FromLong((long) wxDEFAULT_DIALOG_STYLE));
|
||||||
PyDict_SetItemString(d,"wxFRAME_TOOL_WINDOW", PyInt_FromLong((long) wxFRAME_TOOL_WINDOW));
|
PyDict_SetItemString(d,"wxFRAME_TOOL_WINDOW", PyInt_FromLong((long) wxFRAME_TOOL_WINDOW));
|
||||||
PyDict_SetItemString(d,"wxFRAME_FLOAT_ON_PARENT", PyInt_FromLong((long) wxFRAME_FLOAT_ON_PARENT));
|
PyDict_SetItemString(d,"wxFRAME_FLOAT_ON_PARENT", PyInt_FromLong((long) wxFRAME_FLOAT_ON_PARENT));
|
||||||
|
PyDict_SetItemString(d,"wxFRAME_NO_WINDOW_MENU", PyInt_FromLong((long) wxFRAME_NO_WINDOW_MENU));
|
||||||
PyDict_SetItemString(d,"wxED_CLIENT_MARGIN", PyInt_FromLong((long) wxED_CLIENT_MARGIN));
|
PyDict_SetItemString(d,"wxED_CLIENT_MARGIN", PyInt_FromLong((long) wxED_CLIENT_MARGIN));
|
||||||
PyDict_SetItemString(d,"wxED_BUTTONS_BOTTOM", PyInt_FromLong((long) wxED_BUTTONS_BOTTOM));
|
PyDict_SetItemString(d,"wxED_BUTTONS_BOTTOM", PyInt_FromLong((long) wxED_BUTTONS_BOTTOM));
|
||||||
PyDict_SetItemString(d,"wxED_BUTTONS_RIGHT", PyInt_FromLong((long) wxED_BUTTONS_RIGHT));
|
PyDict_SetItemString(d,"wxED_BUTTONS_RIGHT", PyInt_FromLong((long) wxED_BUTTONS_RIGHT));
|
||||||
@@ -2309,6 +2304,7 @@ SWIGEXPORT(void) initwxc() {
|
|||||||
PyDict_SetItemString(d,"wxID_YES", PyInt_FromLong((long) wxID_YES));
|
PyDict_SetItemString(d,"wxID_YES", PyInt_FromLong((long) wxID_YES));
|
||||||
PyDict_SetItemString(d,"wxID_NO", PyInt_FromLong((long) wxID_NO));
|
PyDict_SetItemString(d,"wxID_NO", PyInt_FromLong((long) wxID_NO));
|
||||||
PyDict_SetItemString(d,"wxID_STATIC", PyInt_FromLong((long) wxID_STATIC));
|
PyDict_SetItemString(d,"wxID_STATIC", PyInt_FromLong((long) wxID_STATIC));
|
||||||
|
PyDict_SetItemString(d,"wxID_SEPARATOR", PyInt_FromLong((long) wxID_SEPARATOR));
|
||||||
PyDict_SetItemString(d,"wxBITMAP_TYPE_BMP", PyInt_FromLong((long) wxBITMAP_TYPE_BMP));
|
PyDict_SetItemString(d,"wxBITMAP_TYPE_BMP", PyInt_FromLong((long) wxBITMAP_TYPE_BMP));
|
||||||
PyDict_SetItemString(d,"wxBITMAP_TYPE_BMP_RESOURCE", PyInt_FromLong((long) wxBITMAP_TYPE_BMP_RESOURCE));
|
PyDict_SetItemString(d,"wxBITMAP_TYPE_BMP_RESOURCE", PyInt_FromLong((long) wxBITMAP_TYPE_BMP_RESOURCE));
|
||||||
PyDict_SetItemString(d,"wxBITMAP_TYPE_ICO", PyInt_FromLong((long) wxBITMAP_TYPE_ICO));
|
PyDict_SetItemString(d,"wxBITMAP_TYPE_ICO", PyInt_FromLong((long) wxBITMAP_TYPE_ICO));
|
||||||
|
@@ -187,6 +187,7 @@ wxDEFAULT_FRAME_STYLE = wxc.wxDEFAULT_FRAME_STYLE
|
|||||||
wxDEFAULT_DIALOG_STYLE = wxc.wxDEFAULT_DIALOG_STYLE
|
wxDEFAULT_DIALOG_STYLE = wxc.wxDEFAULT_DIALOG_STYLE
|
||||||
wxFRAME_TOOL_WINDOW = wxc.wxFRAME_TOOL_WINDOW
|
wxFRAME_TOOL_WINDOW = wxc.wxFRAME_TOOL_WINDOW
|
||||||
wxFRAME_FLOAT_ON_PARENT = wxc.wxFRAME_FLOAT_ON_PARENT
|
wxFRAME_FLOAT_ON_PARENT = wxc.wxFRAME_FLOAT_ON_PARENT
|
||||||
|
wxFRAME_NO_WINDOW_MENU = wxc.wxFRAME_NO_WINDOW_MENU
|
||||||
wxED_CLIENT_MARGIN = wxc.wxED_CLIENT_MARGIN
|
wxED_CLIENT_MARGIN = wxc.wxED_CLIENT_MARGIN
|
||||||
wxED_BUTTONS_BOTTOM = wxc.wxED_BUTTONS_BOTTOM
|
wxED_BUTTONS_BOTTOM = wxc.wxED_BUTTONS_BOTTOM
|
||||||
wxED_BUTTONS_RIGHT = wxc.wxED_BUTTONS_RIGHT
|
wxED_BUTTONS_RIGHT = wxc.wxED_BUTTONS_RIGHT
|
||||||
@@ -372,6 +373,7 @@ wxID_APPLY = wxc.wxID_APPLY
|
|||||||
wxID_YES = wxc.wxID_YES
|
wxID_YES = wxc.wxID_YES
|
||||||
wxID_NO = wxc.wxID_NO
|
wxID_NO = wxc.wxID_NO
|
||||||
wxID_STATIC = wxc.wxID_STATIC
|
wxID_STATIC = wxc.wxID_STATIC
|
||||||
|
wxID_SEPARATOR = wxc.wxID_SEPARATOR
|
||||||
wxBITMAP_TYPE_BMP = wxc.wxBITMAP_TYPE_BMP
|
wxBITMAP_TYPE_BMP = wxc.wxBITMAP_TYPE_BMP
|
||||||
wxBITMAP_TYPE_BMP_RESOURCE = wxc.wxBITMAP_TYPE_BMP_RESOURCE
|
wxBITMAP_TYPE_BMP_RESOURCE = wxc.wxBITMAP_TYPE_BMP_RESOURCE
|
||||||
wxBITMAP_TYPE_ICO = wxc.wxBITMAP_TYPE_ICO
|
wxBITMAP_TYPE_ICO = wxc.wxBITMAP_TYPE_ICO
|
||||||
|
@@ -468,6 +468,7 @@ public:
|
|||||||
int xPos = 0, int yPos = 0);
|
int xPos = 0, int yPos = 0);
|
||||||
void SetScrollPageSize(int orient, int pageSize);
|
void SetScrollPageSize(int orient, int pageSize);
|
||||||
void SetTargetWindow(wxWindow* window);
|
void SetTargetWindow(wxWindow* window);
|
||||||
|
void GetViewStart(int* OUTPUT, int* OUTPUT);
|
||||||
void ViewStart(int* OUTPUT, int* OUTPUT);
|
void ViewStart(int* OUTPUT, int* OUTPUT);
|
||||||
|
|
||||||
void CalcScrolledPosition( int x, int y, int *OUTPUT, int *OUTPUT);
|
void CalcScrolledPosition( int x, int y, int *OUTPUT, int *OUTPUT);
|
||||||
@@ -580,7 +581,7 @@ public:
|
|||||||
|
|
||||||
class wxMenuItem {
|
class wxMenuItem {
|
||||||
public:
|
public:
|
||||||
wxMenuItem(wxMenu* parentMenu=NULL, int id=ID_SEPARATOR,
|
wxMenuItem(wxMenu* parentMenu=NULL, int id=wxID_SEPARATOR,
|
||||||
const wxString& text = wxPyEmptyStr,
|
const wxString& text = wxPyEmptyStr,
|
||||||
const wxString& help = wxPyEmptyStr,
|
const wxString& help = wxPyEmptyStr,
|
||||||
bool isCheckable = FALSE, wxMenu* subMenu = NULL);
|
bool isCheckable = FALSE, wxMenu* subMenu = NULL);
|
||||||
|
@@ -39,7 +39,7 @@
|
|||||||
|
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
|
|
||||||
#ifndef OLD_GRID
|
#ifdef OLD_GRID
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
wxGRID_TEXT_CTRL,
|
wxGRID_TEXT_CTRL,
|
||||||
|
Reference in New Issue
Block a user