Skip to content

Instantly share code, notes, and snippets.

@YellowOnion
Created August 18, 2010 01:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save YellowOnion/533042 to your computer and use it in GitHub Desktop.
Save YellowOnion/533042 to your computer and use it in GitHub Desktop.
left = { 'Name': 'Webbrowser',
'elements': None }
im = { 'Name': 'Im',
'elements' None }
buddylist = { 'Name': 'Buddylist'
'elements': None }
pidgin = {'Name' : 'Pidgin',
'elements':[im, buddylist] }
xchat = { 'Name' : 'Xchat',
'elements': None }
right = { 'Name' :'right',
'elements': [pidgin, xchat]
root = { 'Name' : 'Root',
'orient' : 'hozizontal',
'elements': [ left, right] }
@cortesi
Copy link

cortesi commented Aug 18, 2010

layout = TableLayout(
[
[Cell("browser"), Cell([Cell("chatwindow"), Cell("buddylist")]],
[None, Cell("irc")]
],
)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment