1 |
joko |
1.1 |
#Boa:MDIChild:FraggleTopicDetailFrame |
2 |
|
|
|
3 |
|
|
from wxPython.wx import * |
4 |
|
|
|
5 |
|
|
def create(parent): |
6 |
|
|
return FraggleTopicDetailFrame(parent) |
7 |
|
|
|
8 |
|
|
[wxID_FRAGGLETOPICDETAILFRAME] = map(lambda _init_ctrls: wxNewId(), range(1)) |
9 |
|
|
|
10 |
|
|
class FraggleTopicDetailFrame(wxMDIChildFrame): |
11 |
|
|
def _init_ctrls(self, prnt): |
12 |
|
|
# generated method, don't edit |
13 |
|
|
wxMDIChildFrame.__init__(self, id=wxID_FRAGGLETOPICDETAILFRAME, name='', |
14 |
|
|
parent=prnt, pos=wxPoint(384, 266), size=wxSize(350, 231), |
15 |
|
|
style=wxDEFAULT_FRAME_STYLE, title='Topic details') |
16 |
|
|
self.SetClientSize(wxSize(342, 204)) |
17 |
|
|
|
18 |
|
|
def __init__(self, parent): |
19 |
|
|
self._init_ctrls(parent) |