test_prog.py :  » GUI » wxPython » wxPython-src-2.8.11.0 » wxPython » demo » dllwidget » Python Open Source

Home
Python Open Source
1.3.1.2 Python
2.Ajax
3.Aspect Oriented
4.Blog
5.Build
6.Business Application
7.Chart Report
8.Content Management Systems
9.Cryptographic
10.Database
11.Development
12.Editor
13.Email
14.ERP
15.Game 2D 3D
16.GIS
17.GUI
18.IDE
19.Installer
20.IRC
21.Issue Tracker
22.Language Interface
23.Log
24.Math
25.Media Sound Audio
26.Mobile
27.Network
28.Parser
29.PDF
30.Project Management
31.RSS
32.Search
33.Security
34.Template Engines
35.Test
36.UML
37.USB Serial
38.Web Frameworks
39.Web Server
40.Web Services
41.Web Unit
42.Wiki
43.Windows
44.XML
Python Open Source » GUI » wxPython 
wxPython » wxPython src 2.8.11.0 » wxPython » demo » dllwidget » test_prog.py
#!/usr/bin/env python

from wxPython.wx import *
from wxPython.dllwidget import wxDllWidget,wxDllWidget_GetDllExt

#----------------------------------------------------------------------

class TestFrame(wxFrame):
    def __init__(self):
        wxFrame.__init__(self, None, -1, "Test wxDllWidget")

        menu = wxMenu()
        menu.Append(101, "Send command &1")
        menu.Append(102, "Send command &2")
        menu.Append(103, "Send command &3")
        menu.AppendSeparator()
        menu.Append(110, "E&xit")

        mb = wxMenuBar()
        mb.Append(menu, "&Test")
        self.SetMenuBar(mb)

        EVT_MENU_RANGE(self, 101, 109, self.OnSendCommand)
        EVT_MENU(self, 110, self.OnExit)

        panel = wxPanel(self, -1)
        panel.SetFont(wxFont(12, wxSWISS, wxNORMAL, wxBOLD))

        st = wxStaticText(panel, -1,
                          "The widget below was dynamically imported from\n"
                          "test_dll.dll or test_dll.so with no prior knowledge\n"
                          "of it's contents or structure by wxPython.")

        self.dw = dw = wxDllWidget(panel, -1,
                                   "test_dll" + wxDllWidget_GetDllExt(),
                                   "TestWindow",
                                   size=(250, 150))

        if dw.Ok():
            # The embedded window is the one exported from the DLL
            print dw.GetWidgetWindow().GetClassName()

            # This shows that we can give it a child from this side of things.
            # You can also call any wxWindow methods on it too.
            wxStaticText(dw.GetWidgetWindow(), -1,
                         "Loaded from test_dll...", pos=(10,10))
        else:
            wxStaticText(dw, -1, "ERROR!!!!", pos=(20,20))

        sizer = wxBoxSizer(wxVERTICAL)
        sizer.Add(wxStaticLine(panel, -1), 0, wxGROW)
        sizer.Add(st, 0, wxGROW|wxALL, 5)
        sizer.Add(dw, 1, wxGROW|wxALL, 5)

        panel.SetSizer(sizer)
        panel.SetAutoLayout(true)
        sizer.Fit(self)
        sizer.SetSizeHints(self)


    def OnExit(self, evt):
        self.Close()


    def OnSendCommand(self, evt):
        ID = evt.GetId() - 100  # use the menu ID as the command
        param = ""
        if ID == 2:
            dlg = wxTextEntryDialog(self, "Enter a colour name to pass to the embedded widget:")
            if dlg.ShowModal() == wxID_OK:
                param = dlg.GetValue()
            dlg.Destroy()
        self.dw.SendCommand(ID, param)



#----------------------------------------------------------------------


if __name__ == "__main__":
    app = wxPySimpleApp()
    frame = TestFrame()
    frame.Show(true)
    app.MainLoop()
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.