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
f toggle_collapse(self): if self.collapsed: self.child_frame.pack(side=TOP) # show else: self.child_frame.pack_forget() self.collapsed = not self.collapsed def add_widget(self, widget): widget.pack(side=TOP) if __name__ == '__ma

Re: outlook bar like widget

2007-02-22 Thread Mohammad Tayseer
#x27;__main__': #import bwidget as bw root = Tk() root.title('Outlook Bar Demo') bar = OutlookBar(root) bar.pack(expand=1, fill=BOTH) bar.add_pane('pane1', OutlookPane(bar, text='Hello')) pane1 = bar.get_frame('pane1') pane1.add_widg

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

Re: outlook bar

2007-02-07 Thread Diez B. Roggisch
yvesd wrote: > Hello, > I'm trying to make an outlook bar like in python but i'm not at all > familiar with ms-outlook and i'm > a bit too weak and in early stage of python learning. > Has somebody already made or seen the code IN TKINTER(/)PMW for a bar > like t

outlook bar

2007-02-07 Thread yvesd
Hello, I'm trying to make an outlook bar like in python but i'm not at all familiar with ms-outlook and i'm a bit too weak and in early stage of python learning. Has somebody already made or seen the code IN TKINTER(/)PMW for a bar like that ? Thanks very much for all help.