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
|
{ 'application':{ 'type':'Application',
'name':'DbBrowser2',
'backgrounds':
[
{'type':'Background',
'name':'DbBrowser',
'title':'DbBrowser',
'position':( 100, 100 ),
'size':( 610, 570 ),
'statusBar':1,
'icon':'dbBrowser.ico',
'menubar':
{ 'type':'MenuBar',
'menus':
[
{'type':'Menu',
'name':'mnuFile',
'label':'&File',
'items': [ { 'type':'MenuItem',
'name':'mnuOpen',
'label':'&Open\tCtrl+O',
'command':'connect' },
{ 'type':'MenuItem',
'name':'mnuExit',
'label':'E&xit\tAlt+X' } ] },
{'type':'Menu',
'name':'mnuHelp',
'label':'&Help',
'items': [ { 'type':'MenuItem',
'name':'mnuAbout',
'label':'&About dbBrowser...' } ] }
]
},
'components':
[
{'type':'StaticText', 'name':'lblTables', 'position':(5, 26), 'text':'Table' },
{'type':'Choice', 'name':'chsTables', 'position':(60, 26), 'size':(150, -1), 'items':[], 'stringSelection':None},
{'type':'Button', 'name':'btnBrowse', 'position':(415, 26), 'size':(-1, -1), 'label':'Browse', 'toolTip':'Browse the table data'},
{'type':'StaticLine', 'name':'lnButtons', 'position':(5, 64), 'size':(590, -1) },
{'type':'Grid', 'name':'myGrid', 'position':(0, 110), 'size':(600, 390),},
]
}
]
}
}
|