Re: outlook bar like widget

2007-02-22 Thread Jaime Casanova
On 2/21/07, Mohammad Tayseer <[EMAIL PROTECTED]> wrote: > I implemented this module using Tkinter > wow! i will try this, thanks -- regards, Jaime Casanova "Programming today is a race between software engineers striving to build bigger and better idiot-proof programs and the universe trying to

Re: outlook bar like widget

2007-02-22 Thread Mohammad Tayseer
This is a module that does what you want using Tkinter from Tkinter import * class OutlookBar(Frame): def __init__(self, *args, **options): Frame.__init__(self, *args, **options) self.panes = {} def add_pane(self, name, pane): self.panes[n

Re: outlook bar like widget

2007-02-22 Thread Mohammad Tayseer
#x27;pane2') pane2.add_widget(Button(pane2.frame(), text='Button 1')) pane2.add_widget(Button(pane2.frame(), text='Button 2')) pane2.add_widget(Button(pane2.frame(), text='Button 3')) mainloop() - Jaim

outlook bar like widget

2007-02-20 Thread Jaime Casanova
Hi, i'm trying to make an outlook bar like widget basically buttons that when pressed extends to lists... any idea where to start? -- regards, Jaime Casanova "Programming today is a race between software engineers striving to build bigger and better idiot-proof programs and th