Code Search for Developers
 
 
  

appwizard.py from The Nebula Device at Krugle


Show appwizard.py syntax highlighted

#----------------------------------------------------------------------
#  appwizard.py
#
#  nApplication wizard dialog which helps to generate napplication
#  devied class.
#
#  (C)2005 Kim, Hyoun Woo
#----------------------------------------------------------------------
import zlib
import  wx
from  appwiz.appframe import *

#----------------------------------------------------------------------
#  wxPyton Application.
#----------------------------------------------------------------------
class WizApp(wx.App):
    def __init__(self, name):
        self.name = name
        wx.App.__init__(self, redirect=False)

    def OnInit(self):
        frame = AppWizFrame(None, -1, "AppWizard", 
                            pos=(0,0), size=(400,200), 
                            style=wx.DEFAULT_FRAME_STYLE)
 
        return True

#----------------------------------------------------------------------
#
#----------------------------------------------------------------------
def main(argv):
    app = WizApp("AppWizard")
    app.MainLoop()

#----------------------------------------------------------------------
#
#----------------------------------------------------------------------
if __name__ == '__main__':
    import sys,os
    main(sys.argv)

#----------------------------------------------------------------------
# EOF
#----------------------------------------------------------------------




See more files for this project here

The Nebula Device

Realtime 3D game/visualization engine, written in C++, scriptable through Tcl/Tk, Python and Lua. Supports D3D and OpenGL for rendering, runs under Linux and Windows.

Project homepage: http://sourceforge.net/projects/nebuladevice
Programming language(s): C,C++,Python
License: other

  appwiz/
    template/
      app.sbld
      app.sc
      napp.sh
      napp_cmds.sc
      napp_main.sc
      nappstate.sh
      nappstate_cmds.sc
      nappstate_main.sc
    __init__.py
    appentrypage.py
    appframe.py
    appgenpage.py
    appmodpage.py
    bldpage.py
    common.py
    disppage.py
    finpage.py
    readme.txt
    scripthelper.py
    titlepage.py
    wizimage1.py
  bin/
    linux/
      README
    macosx/
      README
    win32/
      nebula.ico
    win32d/
    xmlgenerator.rb
  buildsys3/
    Plex/
      Actions.py
      DFA.py
      Errors.py
      Lexicons.py
      Machines.py
      README
      Regexps.py
      Scanners.py
      TODO
      Timing.py
      Traditional.py
      Transitions.py
      __init__.py
      test_tm.py
    docs/
      layout/
        inset-h.jpg
        nav-end.gif
        nav-start.jpg
        nebuladevice2.gif
        tnd.css
        top-back.gif
        top-image.jpg
      screens/
        classbuilderconfirm.png
        classbuildertab.png
        workspacestab.png
      Manual.html
    generators/
      __init__.py
      doxygen.py
      factory.py
      makefile.py
      vstudio7.py
      vstudio71.py
      vstudio8.py
    gui/
      xrc/
      __init__.py
      buildlog.py
      classbuilderpanel.py
      cmddatapanels.py
      cmdeditorpanel.py
      cmdparser.py
      doxygengeneratorsettings.py
      externaltaskdialog.py
      main.py
      workspacespanel.py
      xrcguiutils.py
    __init__.py
    bldscanner.py
    buildconfig.py
    buildsys.py
    bundle.py
    config.mak
    externaltask.py
    guid.py
    module.py
    pykillwinproc.pyd
    target.py
    workspace.py
  code/
    contrib/
    doxycfg/
    mangalore/
    nebula2/
  data/
    scripts/
    shaders/
    tables/
  doc/
    autodoc/
    doxydoc/
    nebula2/
  export/
    anims/
    cegui/
    db/
    gfxlib/
    levels/
    meshes/
    physics/
    textures/
    readme.txt
  tools/
    mangalore/
  utils/
    renderpath.py
    shader.py
  work/
    gfxlib/
    installer/
    textures/
    readme.txt
  appwizard.py
  build.cfg.py
  readme.txt
  update.py