started adding swigged sources
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3450 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
9592
utils/wxPython/modules/glcanvas/gtk/glcanvas.cpp
Normal file
9592
utils/wxPython/modules/glcanvas/gtk/glcanvas.cpp
Normal file
File diff suppressed because it is too large
Load Diff
1396
utils/wxPython/modules/glcanvas/gtk/glcanvas.py
Normal file
1396
utils/wxPython/modules/glcanvas/gtk/glcanvas.py
Normal file
File diff suppressed because it is too large
Load Diff
1185
utils/wxPython/modules/html/gtk/html.cpp
Normal file
1185
utils/wxPython/modules/html/gtk/html.cpp
Normal file
File diff suppressed because it is too large
Load Diff
127
utils/wxPython/modules/html/gtk/html.py
Normal file
127
utils/wxPython/modules/html/gtk/html.py
Normal file
@@ -0,0 +1,127 @@
|
|||||||
|
# This file was created automatically by SWIG.
|
||||||
|
import htmlc
|
||||||
|
|
||||||
|
from misc import *
|
||||||
|
|
||||||
|
from misc2 import *
|
||||||
|
|
||||||
|
from windows import *
|
||||||
|
|
||||||
|
from gdi import *
|
||||||
|
|
||||||
|
from events import *
|
||||||
|
|
||||||
|
from mdi import *
|
||||||
|
|
||||||
|
from frames import *
|
||||||
|
|
||||||
|
from stattool import *
|
||||||
|
|
||||||
|
from controls import *
|
||||||
|
|
||||||
|
from controls2 import *
|
||||||
|
|
||||||
|
from windows2 import *
|
||||||
|
|
||||||
|
from cmndlgs import *
|
||||||
|
|
||||||
|
from windows3 import *
|
||||||
|
|
||||||
|
from image import *
|
||||||
|
|
||||||
|
from printfw import *
|
||||||
|
import wx,htmlhelper
|
||||||
|
widget = htmlc
|
||||||
|
class HtmlHistoryItemPtr :
|
||||||
|
def __init__(self,this):
|
||||||
|
self.this = this
|
||||||
|
self.thisown = 0
|
||||||
|
def GetPos(self):
|
||||||
|
val = htmlc.HtmlHistoryItem_GetPos(self.this)
|
||||||
|
return val
|
||||||
|
def SetPos(self,arg0):
|
||||||
|
val = htmlc.HtmlHistoryItem_SetPos(self.this,arg0)
|
||||||
|
return val
|
||||||
|
def GetPage(self):
|
||||||
|
val = htmlc.HtmlHistoryItem_GetPage(self.this)
|
||||||
|
return val
|
||||||
|
def GetAnchor(self):
|
||||||
|
val = htmlc.HtmlHistoryItem_GetAnchor(self.this)
|
||||||
|
return val
|
||||||
|
def __repr__(self):
|
||||||
|
return "<C HtmlHistoryItem instance>"
|
||||||
|
class HtmlHistoryItem(HtmlHistoryItemPtr):
|
||||||
|
def __init__(self,arg0,arg1) :
|
||||||
|
self.this = htmlc.new_HtmlHistoryItem(arg0,arg1)
|
||||||
|
self.thisown = 1
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class wxHtmlWindowPtr(wxScrolledWindowPtr):
|
||||||
|
def __init__(self,this):
|
||||||
|
self.this = this
|
||||||
|
self.thisown = 0
|
||||||
|
def SetPage(self,arg0):
|
||||||
|
val = htmlc.wxHtmlWindow_SetPage(self.this,arg0)
|
||||||
|
return val
|
||||||
|
def LoadPage(self,arg0):
|
||||||
|
val = htmlc.wxHtmlWindow_LoadPage(self.this,arg0)
|
||||||
|
return val
|
||||||
|
def GetOpenedPage(self):
|
||||||
|
val = htmlc.wxHtmlWindow_GetOpenedPage(self.this)
|
||||||
|
return val
|
||||||
|
def SetRelatedFrame(self,arg0,arg1):
|
||||||
|
val = htmlc.wxHtmlWindow_SetRelatedFrame(self.this,arg0.this,arg1)
|
||||||
|
return val
|
||||||
|
def GetRelatedFrame(self):
|
||||||
|
val = htmlc.wxHtmlWindow_GetRelatedFrame(self.this)
|
||||||
|
val = wxFramePtr(val)
|
||||||
|
return val
|
||||||
|
def SetRelatedStatusBar(self,arg0):
|
||||||
|
val = htmlc.wxHtmlWindow_SetRelatedStatusBar(self.this,arg0)
|
||||||
|
return val
|
||||||
|
def SetFonts(self,arg0,arg1,arg2,arg3,arg4):
|
||||||
|
val = htmlc.wxHtmlWindow_SetFonts(self.this,arg0,arg1,arg2,arg3,arg4)
|
||||||
|
return val
|
||||||
|
def SetTitle(self,arg0):
|
||||||
|
val = htmlc.wxHtmlWindow_SetTitle(self.this,arg0)
|
||||||
|
return val
|
||||||
|
def SetBorders(self,arg0):
|
||||||
|
val = htmlc.wxHtmlWindow_SetBorders(self.this,arg0)
|
||||||
|
return val
|
||||||
|
def HistoryBack(self):
|
||||||
|
val = htmlc.wxHtmlWindow_HistoryBack(self.this)
|
||||||
|
return val
|
||||||
|
def HistoryForward(self):
|
||||||
|
val = htmlc.wxHtmlWindow_HistoryForward(self.this)
|
||||||
|
return val
|
||||||
|
def HistoryClear(self):
|
||||||
|
val = htmlc.wxHtmlWindow_HistoryClear(self.this)
|
||||||
|
return val
|
||||||
|
def __repr__(self):
|
||||||
|
return "<C wxHtmlWindow instance>"
|
||||||
|
class wxHtmlWindow(wxHtmlWindowPtr):
|
||||||
|
def __init__(self,arg0,*args) :
|
||||||
|
argl = map(None,args)
|
||||||
|
try: argl[1] = argl[1].this
|
||||||
|
except: pass
|
||||||
|
try: argl[2] = argl[2].this
|
||||||
|
except: pass
|
||||||
|
args = tuple(argl)
|
||||||
|
self.this = apply(htmlc.new_wxHtmlWindow,(arg0.this,)+args)
|
||||||
|
self.thisown = 1
|
||||||
|
wx._StdWindowCallbacks(self)
|
||||||
|
wx._StdOnScrollCallbacks(self)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#-------------- FUNCTION WRAPPERS ------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#-------------- VARIABLE WRAPPERS ------------------
|
||||||
|
|
1782
utils/wxPython/modules/lseditor/gtk/lseditor.cpp
Normal file
1782
utils/wxPython/modules/lseditor/gtk/lseditor.cpp
Normal file
File diff suppressed because it is too large
Load Diff
190
utils/wxPython/modules/lseditor/gtk/lseditor.py
Normal file
190
utils/wxPython/modules/lseditor/gtk/lseditor.py
Normal file
@@ -0,0 +1,190 @@
|
|||||||
|
# This file was created automatically by SWIG.
|
||||||
|
import lseditorc
|
||||||
|
|
||||||
|
from misc import *
|
||||||
|
|
||||||
|
from misc2 import *
|
||||||
|
|
||||||
|
from windows import *
|
||||||
|
|
||||||
|
from gdi import *
|
||||||
|
|
||||||
|
from events import *
|
||||||
|
|
||||||
|
from mdi import *
|
||||||
|
|
||||||
|
from frames import *
|
||||||
|
|
||||||
|
from stattool import *
|
||||||
|
|
||||||
|
from controls import *
|
||||||
|
|
||||||
|
from controls2 import *
|
||||||
|
|
||||||
|
from windows2 import *
|
||||||
|
|
||||||
|
from cmndlgs import *
|
||||||
|
|
||||||
|
from windows3 import *
|
||||||
|
|
||||||
|
from image import *
|
||||||
|
|
||||||
|
from printfw import *
|
||||||
|
import wx
|
||||||
|
class wxsLSEditorPluginPtr :
|
||||||
|
def __init__(self,this):
|
||||||
|
self.this = this
|
||||||
|
self.thisown = 0
|
||||||
|
def __del__(self, lseditorc=lseditorc):
|
||||||
|
if self.thisown == 1 :
|
||||||
|
lseditorc.delete_wxsLSEditorPlugin(self.this)
|
||||||
|
def Create(self,arg0,arg1):
|
||||||
|
val = lseditorc.wxsLSEditorPlugin_Create(self.this,arg0.this,arg1)
|
||||||
|
return val
|
||||||
|
def OnOpen(self,arg0):
|
||||||
|
val = lseditorc.wxsLSEditorPlugin_OnOpen(self.this,arg0)
|
||||||
|
return val
|
||||||
|
def OnSave(self,arg0):
|
||||||
|
val = lseditorc.wxsLSEditorPlugin_OnSave(self.this,arg0)
|
||||||
|
return val
|
||||||
|
def OnCopy(self):
|
||||||
|
val = lseditorc.wxsLSEditorPlugin_OnCopy(self.this)
|
||||||
|
return val
|
||||||
|
def OnCut(self):
|
||||||
|
val = lseditorc.wxsLSEditorPlugin_OnCut(self.this)
|
||||||
|
return val
|
||||||
|
def OnPaste(self):
|
||||||
|
val = lseditorc.wxsLSEditorPlugin_OnPaste(self.this)
|
||||||
|
return val
|
||||||
|
def OnDelete(self):
|
||||||
|
val = lseditorc.wxsLSEditorPlugin_OnDelete(self.this)
|
||||||
|
return val
|
||||||
|
def OnUndo(self):
|
||||||
|
val = lseditorc.wxsLSEditorPlugin_OnUndo(self.this)
|
||||||
|
return val
|
||||||
|
def OnRedo(self):
|
||||||
|
val = lseditorc.wxsLSEditorPlugin_OnRedo(self.this)
|
||||||
|
return val
|
||||||
|
def SelectAll(self):
|
||||||
|
val = lseditorc.wxsLSEditorPlugin_SelectAll(self.this)
|
||||||
|
return val
|
||||||
|
def OnGotoLine(self,arg0,*args):
|
||||||
|
val = apply(lseditorc.wxsLSEditorPlugin_OnGotoLine,(self.this,arg0,)+args)
|
||||||
|
return val
|
||||||
|
def OnProperties(self):
|
||||||
|
val = lseditorc.wxsLSEditorPlugin_OnProperties(self.this)
|
||||||
|
return val
|
||||||
|
def OnFind(self):
|
||||||
|
val = lseditorc.wxsLSEditorPlugin_OnFind(self.this)
|
||||||
|
return val
|
||||||
|
def OnFindNext(self):
|
||||||
|
val = lseditorc.wxsLSEditorPlugin_OnFindNext(self.this)
|
||||||
|
return val
|
||||||
|
def OnFindPrevious(self):
|
||||||
|
val = lseditorc.wxsLSEditorPlugin_OnFindPrevious(self.this)
|
||||||
|
return val
|
||||||
|
def OnReplace(self):
|
||||||
|
val = lseditorc.wxsLSEditorPlugin_OnReplace(self.this)
|
||||||
|
return val
|
||||||
|
def OnToggleBookmark(self):
|
||||||
|
val = lseditorc.wxsLSEditorPlugin_OnToggleBookmark(self.this)
|
||||||
|
return val
|
||||||
|
def OnNextBookmark(self):
|
||||||
|
val = lseditorc.wxsLSEditorPlugin_OnNextBookmark(self.this)
|
||||||
|
return val
|
||||||
|
def OnPreviousBookmark(self):
|
||||||
|
val = lseditorc.wxsLSEditorPlugin_OnPreviousBookmark(self.this)
|
||||||
|
return val
|
||||||
|
def OnShowBookmarks(self):
|
||||||
|
val = lseditorc.wxsLSEditorPlugin_OnShowBookmarks(self.this)
|
||||||
|
return val
|
||||||
|
def SetCheckpoint(self):
|
||||||
|
val = lseditorc.wxsLSEditorPlugin_SetCheckpoint(self.this)
|
||||||
|
return val
|
||||||
|
def CheckpointModified(self):
|
||||||
|
val = lseditorc.wxsLSEditorPlugin_CheckpointModified(self.this)
|
||||||
|
return val
|
||||||
|
def CanCopy(self):
|
||||||
|
val = lseditorc.wxsLSEditorPlugin_CanCopy(self.this)
|
||||||
|
return val
|
||||||
|
def CanCut(self):
|
||||||
|
val = lseditorc.wxsLSEditorPlugin_CanCut(self.this)
|
||||||
|
return val
|
||||||
|
def CanPaste(self):
|
||||||
|
val = lseditorc.wxsLSEditorPlugin_CanPaste(self.this)
|
||||||
|
return val
|
||||||
|
def CanUndo(self):
|
||||||
|
val = lseditorc.wxsLSEditorPlugin_CanUndo(self.this)
|
||||||
|
return val
|
||||||
|
def CanRedo(self):
|
||||||
|
val = lseditorc.wxsLSEditorPlugin_CanRedo(self.this)
|
||||||
|
return val
|
||||||
|
def GetName(self):
|
||||||
|
val = lseditorc.wxsLSEditorPlugin_GetName(self.this)
|
||||||
|
return val
|
||||||
|
def IsModified(self):
|
||||||
|
val = lseditorc.wxsLSEditorPlugin_IsModified(self.this)
|
||||||
|
return val
|
||||||
|
def GetWindow(self):
|
||||||
|
val = lseditorc.wxsLSEditorPlugin_GetWindow(self.this)
|
||||||
|
val = wxWindowPtr(val)
|
||||||
|
return val
|
||||||
|
def SetFileName(self,arg0):
|
||||||
|
val = lseditorc.wxsLSEditorPlugin_SetFileName(self.this,arg0)
|
||||||
|
return val
|
||||||
|
def HoldCursor(self,arg0):
|
||||||
|
val = lseditorc.wxsLSEditorPlugin_HoldCursor(self.this,arg0)
|
||||||
|
return val
|
||||||
|
def FindWordAtCursor(self):
|
||||||
|
val = lseditorc.wxsLSEditorPlugin_FindWordAtCursor(self.this)
|
||||||
|
return val
|
||||||
|
def GetCursorPos(self,arg0,arg1):
|
||||||
|
val = lseditorc.wxsLSEditorPlugin_GetCursorPos(self.this,arg0,arg1)
|
||||||
|
return val
|
||||||
|
def SetCursorPos(self,arg0,arg1):
|
||||||
|
val = lseditorc.wxsLSEditorPlugin_SetCursorPos(self.this,arg0,arg1)
|
||||||
|
return val
|
||||||
|
def GetPagePos(self,arg0,arg1):
|
||||||
|
val = lseditorc.wxsLSEditorPlugin_GetPagePos(self.this,arg0,arg1)
|
||||||
|
return val
|
||||||
|
def GetText(self,arg0,arg1,arg2,arg3,arg4,arg5):
|
||||||
|
val = lseditorc.wxsLSEditorPlugin_GetText(self.this,arg0,arg1,arg2,arg3,arg4,arg5)
|
||||||
|
return val
|
||||||
|
def InsertText(self,arg0,arg1,arg2,arg3):
|
||||||
|
val = lseditorc.wxsLSEditorPlugin_InsertText(self.this,arg0,arg1,arg2,arg3)
|
||||||
|
return val
|
||||||
|
def DeleteText(self,arg0,arg1,arg2,arg3):
|
||||||
|
val = lseditorc.wxsLSEditorPlugin_DeleteText(self.this,arg0,arg1,arg2,arg3)
|
||||||
|
return val
|
||||||
|
def PositionToXY(self,arg0,arg1,arg2,arg3):
|
||||||
|
val = lseditorc.wxsLSEditorPlugin_PositionToXY(self.this,arg0,arg1,arg2,arg3)
|
||||||
|
return val
|
||||||
|
def GetSelectionRange(self,arg0,arg1,arg2,arg3):
|
||||||
|
val = lseditorc.wxsLSEditorPlugin_GetSelectionRange(self.this,arg0,arg1,arg2,arg3)
|
||||||
|
return val
|
||||||
|
def GetCharacterSize(self):
|
||||||
|
val = lseditorc.wxsLSEditorPlugin_GetCharacterSize(self.this)
|
||||||
|
val = wxSizePtr(val)
|
||||||
|
val.thisown = 1
|
||||||
|
return val
|
||||||
|
def IsUnixText(self):
|
||||||
|
val = lseditorc.wxsLSEditorPlugin_IsUnixText(self.this)
|
||||||
|
return val
|
||||||
|
def __repr__(self):
|
||||||
|
return "<C wxsLSEditorPlugin instance>"
|
||||||
|
class wxsLSEditorPlugin(wxsLSEditorPluginPtr):
|
||||||
|
def __init__(self) :
|
||||||
|
self.this = lseditorc.new_wxsLSEditorPlugin()
|
||||||
|
self.thisown = 1
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#-------------- FUNCTION WRAPPERS ------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#-------------- VARIABLE WRAPPERS ------------------
|
||||||
|
|
Reference in New Issue
Block a user