COM object. I actually create a new class on the fly that derives from wxWindow, the COM CoClass and others needed to make it all work. The resulting class can be instantiated just like wxWindow, used in sizers, etc. It also responds to all COM method calls, properties, etc. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@7148 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
108 lines
2.8 KiB
Python
108 lines
2.8 KiB
Python
"""
|
|
"""
|
|
|
|
from wxPython.wx import *
|
|
from wxPython.lib.activexwrapper import MakeActiveXClass
|
|
|
|
import win32com.client.gencache
|
|
|
|
try:
|
|
acrobat = win32com.client.gencache.EnsureModule('{CA8A9783-280D-11CF-A24D-444553540000}', 0x0, 1, 3)
|
|
except:
|
|
raise ImportError("Can't load PDF.OCX, install Acrobat 4.0")
|
|
|
|
|
|
#----------------------------------------------------------------------
|
|
|
|
class TestPanel(wxPanel):
|
|
def __init__(self, parent, log):
|
|
wxPanel.__init__(self, parent, -1)
|
|
self.log = log
|
|
|
|
sizer = wxBoxSizer(wxVERTICAL)
|
|
btnSizer = wxBoxSizer(wxHORIZONTAL)
|
|
|
|
# this function creates a new class that can be used as
|
|
# a wxWindow, but contains the given ActiveX control.
|
|
ActiveXWrapper = MakeActiveXClass(acrobat.Pdf)
|
|
|
|
# create an instance of the new class
|
|
self.pdf = ActiveXWrapper( self, -1, style=wxSUNKEN_BORDER)
|
|
|
|
sizer.Add(self.pdf, 1, wxEXPAND)
|
|
|
|
btn = wxButton(self, wxNewId(), "Open PDF File")
|
|
EVT_BUTTON(self, btn.GetId(), self.OnOpenButton)
|
|
btnSizer.Add(btn, 1, wxEXPAND|wxALL, 5)
|
|
|
|
btn = wxButton(self, wxNewId(), "<-- Previous Page")
|
|
EVT_BUTTON(self, btn.GetId(), self.OnPrevPageButton)
|
|
btnSizer.Add(btn, 1, wxEXPAND|wxALL, 5)
|
|
|
|
btn = wxButton(self, wxNewId(), "Next Page -->")
|
|
EVT_BUTTON(self, btn.GetId(), self.OnNextPageButton)
|
|
btnSizer.Add(btn, 1, wxEXPAND|wxALL, 5)
|
|
|
|
|
|
btnSizer.Add(50, -1, 2, wxEXPAND)
|
|
sizer.Add(btnSizer, 0, wxEXPAND)
|
|
|
|
self.SetSizer(sizer)
|
|
self.SetAutoLayout(true)
|
|
|
|
def __del__(self):
|
|
self.pdf.Cleanup()
|
|
self.pdf = None
|
|
|
|
|
|
def OnOpenButton(self, event):
|
|
dlg = wxFileDialog(self, wildcard="*.pdf")
|
|
if dlg.ShowModal() == wxID_OK:
|
|
wxBeginBusyCursor()
|
|
self.pdf.LoadFile(dlg.GetPath())
|
|
wxEndBusyCursor()
|
|
|
|
dlg.Destroy()
|
|
|
|
|
|
def OnPrevPageButton(self, event):
|
|
self.pdf.gotoPreviousPage()
|
|
|
|
|
|
def OnNextPageButton(self, event):
|
|
self.pdf.gotoNextPage()
|
|
|
|
|
|
|
|
#----------------------------------------------------------------------
|
|
|
|
def runTest(frame, nb, log):
|
|
win = TestPanel(nb, log)
|
|
return win
|
|
|
|
|
|
overview = __doc__
|
|
|
|
#----------------------------------------------------------------------
|
|
|
|
|
|
if __name__ == '__main__':
|
|
class TestFrame(wxFrame):
|
|
def __init__(self):
|
|
wxFrame.__init__(self, None, -1, "ActiveX test -- Acrobat", size=(640, 480),
|
|
style=wxDEFAULT_FRAME_STYLE|wxNO_FULL_REPAINT_ON_RESIZE)
|
|
self.tp = TestPanel(self, sys.stdout)
|
|
|
|
def OnCloseWindow(self, event):
|
|
self.tp.pdf.Cleanup()
|
|
self.Destroy()
|
|
|
|
|
|
app = wxPySimpleApp()
|
|
frame = TestFrame()
|
|
frame.Show(true)
|
|
app.MainLoop()
|
|
|
|
|
|
|