File: wxWizardPage1.py

package info (click to toggle)
boa-constructor 0.3.0-3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 8,188 kB
  • ctags: 8,857
  • sloc: python: 54,163; sh: 66; makefile: 36
file content (17 lines) | stat: -rw-r--r-- 543 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#Boa:WizardPage:wxWizardPage1

from wxPython.wx import *
from wxPython.wizard import *

[wxID_WXWIZARDPAGE1] = map(lambda _init_ctrls: wxNewId(), range(1))

class wxWizardPage1(wxWizardPage):
    def _init_ctrls(self, prnt):
        # generated method, don't edit
        wxWizardPage.__init__(self, bitmap=wxNullBitmap, parent=prnt)
        self.SetSize(wxSize(960, 692))
        self.SetClientSize(wxSize(952, 665))
        self.SetPosition(wxPoint(88, 88))

    def __init__(self, parent):
        self._init_ctrls(parent)