• Facebook
  • Twitter
  • Reddit
  • StumbleUpon
  • Digg
  • email

All Samples(9325)  |  Call(0)  |  Derive(0)  |  Import(9325)
No Document.

src/w/x/wxPython-In-Action-HEAD/BOA_demo/Examples/images/ResourceModules/PythonImageResources.py   wxPython-In-Action(Download)
#Boa:Frame:ResourceModuleFrm
 
import wx
 
import Boa_img
 
BoaSectionIcons = ('Palette', 'Editor', 'Designer', 'Inspector', 'Debugger',

src/w/x/wxPython-In-Action-HEAD/BOA_demo/Examples/images/ArtProvider/ArtProviderFrame.py   wxPython-In-Action(Download)
#Boa:Frame:Frame1
 
# To use an artprovider for bitmap properties, click the edit button of the
# property editor to open the file dialog. On the file dialog, change the
# image type to ArtProvider and click Open.
 
import wx

src/w/x/wxPython-In-Action-HEAD/BOA_demo/Examples/images/ArtProvider/ArtProviderExample.py   wxPython-In-Action(Download)
# Important: This file should be placed in the site-packages directory or an
#            equivalent place, so that both the plug-in and your code can import it
 
import cStringIO
 
import wx
 

src/w/x/wxPython-In-Action-HEAD/BOA_demo/Examples/images/ArtProvider/ArtProviderExample.plug-in.py   wxPython-In-Action(Download)
# Important: This file should be placed in the Plug-ins directory if you want 
#            it to execute
 
import wx
import PaletteStore
 
import ArtProviderExample

src/w/x/wxPython-In-Action-HEAD/BOA_demo/Examples/advanced/SpecialAttributes/wxFrame1.py   wxPython-In-Action(Download)
#Boa:Frame:wxFrame1
 
import wx
 
def create(parent, title):
    return wxFrame1(parent, title)
 

src/w/x/wxPython-In-Action-HEAD/BOA_demo/Examples/advanced/FramePanels/wxPanel3.py   wxPython-In-Action(Download)
#Boa:FramePanel:wxPanel3
 
import wx
 
def create(parent):
    return wxPanel3(parent)
 

src/w/x/wxPython-In-Action-HEAD/BOA_demo/Examples/advanced/FramePanels/wxPanel2.py   wxPython-In-Action(Download)
#Boa:FramePanel:wxPanel2
 
import wx
 
def create(parent):
    return wxPanel2(parent)
 

src/w/x/wxPython-In-Action-HEAD/BOA_demo/Examples/advanced/FramePanels/wxPanel1.py   wxPython-In-Action(Download)
#Boa:FramePanel:wxPanel1
 
import wx
 
def create(parent):
    return wxPanel1(parent)
 

src/w/x/wxPython-In-Action-HEAD/BOA_demo/Examples/advanced/FramePanels/wxFrame1.py   wxPython-In-Action(Download)
#Boa:Frame:wxFrame1
 
import wx
 
from wxPanel1 import wxPanel1
from wxPanel2 import wxPanel2
from wxPanel3 import wxPanel3

src/w/x/wxPython-In-Action-HEAD/BOA_demo/Examples/advanced/FramePanels/wxApp1.py   wxPython-In-Action(Download)
#!/usr/bin/env python
#Boa:App:BoaApp
 
import wx
 
import wxFrame1
 

  1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9  Next