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

All Samples(2361)  |  Call(506)  |  Derive(1850)  |  Import(5)
Proxy of C++ Frame class

src/p/y/pyidea-HEAD/pynsource/trunk/pynsource/pyNsourceGui.py   pyidea(Download)
from wxPython.wx import *
from wxPython.ogl import *
import wx
from wx import Frame
 
#import images
 
 
 
 
        self.frame = Frame(None, -1, self.andyapptitle, pos=(50,50), size=(0,0),
                        style=wx.NO_FULL_REPAINT_ON_RESIZE|wx.DEFAULT_FRAME_STYLE)
        self.frame.CreateStatusBar()
        menuBar = wx.MenuBar()

src/d/b/dbabble-HEAD/Trunk/clip.py   dbabble(Download)
#!/usr/bin/python
import wx
from wx import Frame, Menu, MenuBar, MenuItem
import os
import re
from string import atof
import cStringIO
class MetaPlatform(Frame):
    def __init__(self, parent, id, title):
        Frame.__init__(self, parent, id, title)
 
 
 
 

src/h/a/hachoir-wx-0.3/hachoir_wx/frame_view/frame_view.py   hachoir-wx(Download)
# -*- coding: utf-8 -*-
 
from wx import Frame, PreFrame
 
class frame_view_t(Frame):
    def __init__(self):
        pre = PreFrame()

src/p/u/purepy-HEAD/src/view/components/frame.py   purepy(Download)
# -*- coding: utf-8 -*-
 
from wx import Frame
 
class AppFrame(Frame):
 
  def __init__(self):

src/s/i/simca-HEAD/test_scripts/wxdemo.py   simca(Download)
 
import sys
 
from wx import Frame, DefaultPosition, Size, Menu, MenuBar, App
from wx import EVT_MENU, EVT_CLOSE
 
from twisted.python import log
class MyFrame(Frame):
    def __init__(self, parent, ID, title):
        Frame.__init__(self, parent, ID, title, DefaultPosition, Size(300, 200))
        menu = Menu()
        menu.Append(ID_EXIT, "E&xit", "Terminate the program")
        menuBar = MenuBar()
        menuBar.Append(menu, "&File")