1 |
#Boa:MDIChild:FraggleTopicFrame |
2 |
|
3 |
# $Id: fraggleViewport.py,v 1.9 2004/08/26 15:21:13 joko Exp $ |
4 |
# $Log: fraggleViewport.py,v $ |
5 |
|
6 |
from wxPython.wx import * |
7 |
|
8 |
def create(parent): |
9 |
return FraggleTopicFrame(parent) |
10 |
|
11 |
[wxID_FRAGGLETOPICFRAME] = map(lambda _init_ctrls: wxNewId(), range(1)) |
12 |
|
13 |
class FraggleTopicFrame(wxMDIChildFrame): |
14 |
def _init_ctrls(self, prnt): |
15 |
# generated method, don't edit |
16 |
wxMDIChildFrame.__init__(self, id=wxID_FRAGGLETOPICFRAME, name='', |
17 |
parent=prnt, pos=wxPoint(352, 280), size=wxSize(138, 215), |
18 |
style=wxSIMPLE_BORDER | wxDEFAULT_FRAME_STYLE, title='Topics') |
19 |
self.SetClientSize(wxSize(130, 188)) |
20 |
|
21 |
def __init__(self, parent): |
22 |
self._init_ctrls(parent) |