1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
{'application':{'type':'Application',
'name':'Template',
'backgrounds': [
{'type':'Background',
'name':'bgTemplate',
'title':'simple mp3player',
'size':(404, 380),
'menubar': {'type':'MenuBar',
'menus': [
{'type':'Menu',
'name':'menuFile',
'label':'&File',
'items': [
{'type':'MenuItem',
'name':'menuFileExit',
'label':'E&xit',
'command':'exit',
},
]
},
]
},
'components': [
{'type':'List',
'name':'mp3s',
'position':(10, 10),
'size':(384, 168),
'items':[],
},
{'type':'Button',
'name':'pause',
'position':(190, 310),
'size':(109, -1),
'label':'Pause/Resume',
},
{'type':'TextArea',
'name':'filename',
'position':(15, 190),
'size':(370, 100),
},
{'type':'Button',
'name':'load',
'position':(15, 310),
'size':(74, -1),
'label':'Load',
},
{'type':'Button',
'name':'play',
'position':(105, 310),
'size':(74, -1),
'label':'Play',
},
{'type':'Button',
'name':'stop',
'position':(310, 310),
'size':(74, -1),
'label':'Stop',
},
] # end components
} # end background
] # end backgrounds
} }
|