From jezequiel at gmail.com Wed Nov 3 06:47:15 2004 From: jezequiel at gmail.com (Justin Ezequiel) Date: Wed Nov 3 06:50:38 2004 Subject: [Tkinter-discuss] Re: Inserting a unicode zero-width nonbreaking space into a Text widget, from Tkinter, on a Mac References: <20040325035437.GD16886@unpythonic.net> Message-ID: Jeff Epler unpythonic.net> writes: > It doesn't make > things easier that Tcl has its own encoding machinery and list of fonts > to try. > > Jeff > Can you explain more about this or can you point me to where I can read more about this? From jepler at unpythonic.net Wed Nov 3 22:17:45 2004 From: jepler at unpythonic.net (Jeff Epler) Date: Wed Nov 3 22:18:00 2004 Subject: [Tkinter-discuss] Re: Inserting a unicode zero-width nonbreaking space into a Text widget, from Tkinter, on a Mac In-Reply-To: References: <20040325035437.GD16886@unpythonic.net> Message-ID: <20041103211744.GC14528@unpythonic.net> > Jeff Epler unpythonic.net> writes: > > It doesn't make > > things easier that Tcl has its own encoding machinery and list of fonts > > to try. On Wed, Nov 03, 2004 at 05:47:15AM +0000, Justin Ezequiel wrote: > Can you explain more about this or can you point me to where I can read more > about this? Well, there's the source: http://cvs.sourceforge.net/viewcvs.py/tktoolkit/tk/generic/tkFont.c http://cvs.sourceforge.net/viewcvs.py/tktoolkit/tk/unix/tkUnixFont.c http://cvs.sourceforge.net/viewcvs.py/tktoolkit/tk/unix/tkUnixRFont.c http://cvs.sourceforge.net/viewcvs.py/tktoolkit/tk/win/tkWinFont.c http://cvs.sourceforge.net/viewcvs.py/tktoolkit/tk/macosx/tkMacOSXFont.c The "list of fonts to try" I mentioned is in the generic tkFont.c. I'm the most familiar with tkUnixFont, and I don't know how similar the others are. For each character, Tk searches for an X font from the same "family" that has that character. Since X fonts can be in a variety of encodings, this gets even more exciting. There are rules about what fonts and encodings are preferred, but before giving up on finding a particular character, Tk will try almost any font on the system. Jeff -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://mail.python.org/pipermail/tkinter-discuss/attachments/20041103/dad866da/attachment.pgp From mfranklin1 at gatwick.westerngeco.slb.com Thu Nov 11 14:59:59 2004 From: mfranklin1 at gatwick.westerngeco.slb.com (Martin Franklin) Date: Thu Nov 11 15:00:13 2004 Subject: [Tkinter-discuss] Tkinter clipboard_get method... Message-ID: Hi all, I just submitted a patch to python (SF #1063914) that adds the clipboard_get method. As it stands this method will raise a TclError if it is called and the clipboard (the system clipboard) is empty... my question is therefore should I catch this exception in the Tkinter clipboard_get method (and return an empty string / None?) or let the user worry about it? Cheers Martin -- Using M2, Opera's revolutionary e-mail client: http://www.opera.com/m2/ From Screpsaj at aol.com Sat Nov 13 11:06:02 2004 From: Screpsaj at aol.com (Screpsaj@aol.com) Date: Sun Nov 14 14:03:22 2004 Subject: [Tkinter-discuss] How to change font sizes in a Tkinter app Message-ID: <9a.195ed75f.2ec7368a@aol.com> please help me. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/tkinter-discuss/attachments/20041113/31ae7165/attachment.html From stewart.midwinter at gmail.com Mon Nov 15 22:49:13 2004 From: stewart.midwinter at gmail.com (Stewart Midwinter) Date: Mon Nov 15 22:49:15 2004 Subject: [Tkinter-discuss] How to change font sizes in a Tkinter app In-Reply-To: <9a.195ed75f.2ec7368a@aol.com> References: <9a.195ed75f.2ec7368a@aol.com> Message-ID: just review the archives for this list. We discussed this topic a short while ago, and I posted a sample app with several different ways to change font sizes. On Sat, 13 Nov 2004 05:06:02 EST, screpsaj@aol.com wrote: > > please help me. -- Stewart Midwinter stewart@midwinter.ca stewart.midwinter@gmail.com From jepler at unpythonic.net Tue Nov 23 04:03:52 2004 From: jepler at unpythonic.net (Jeff Epler) Date: Tue Nov 23 04:03:55 2004 Subject: [Tkinter-discuss] Announcing wrappers for bwidget Message-ID: <20041123030350.GA22675@unpythonic.net> I have written a set of wrappers for "bwidget". bwidget is a collection of enhanced widgets written in pure TCL, from a tweaked Button widget to a snazzy-looking NoteBook (tabset) widget. The bwidget wrappers, which include a copy of BWidget 1.7.0, can be found at http://tkinter.unpythonic.net/bwidget/ and a copy of the bwidget documentation (written for people writing tcl) is nearby: http://tkinter.unpythonic.net/bwidget/BWman/ As the README says: Please report your experiences, good or bad, on the Tkinter mailing list pybwidget is written on Fedora Core 2 with Python 2.3 and Tk 8.4, but may work on other releases of Python. I'm aware that Fredrik Lundh has given this a try too (http://effbot.org/zone/bwidgets.htm) but I never looked at his work before starting on this, so I don't know how they compare. CLASSES BWidget ArrowButton(BWidget, Tkinter.Button) Button(BWidget, Tkinter.Button) ButtonBox(BWidget, _Items, Tkinter.Frame) Dialog(ButtonBox, Tkinter.BaseWidget, _Frame) MessageDialog PasswordDialog ProgressDialog SelectColor SelectFont Entry(BWidget, Tkinter.Entry) ComboBox LabelEntry SpinBox Label(BWidget, Tkinter.Label) LabelFrame(BWidget, _Frame, Tkinter.Widget) ListBox(BWidget, Tkinter.Widget, _Items) MainFrame(BWidget, _Frame, Tkinter.Widget) PagesManager(BWidget, Tkinter.Frame) NoteBook(PagesManager, _Items) PanedWindow(BWidget, Tkinter.Frame) PanelFrame(BWidget, Tkinter.Frame) ProgressBar(BWidget, Tkinter.Widget) ScrollView(BWidget, Tkinter.Widget) ScrollableFrame(BWidget, _Frame, Tkinter.Frame) ScrolledWindow(BWidget, _Frame, Tkinter.Frame) Separator(BWidget, Tkinter.Widget) StatusBar TitleFrame(BWidget, _Frame, Tkinter.Frame) Tree(BWidget, Tkinter.Widget, _Items) -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://mail.python.org/pipermail/tkinter-discuss/attachments/20041122/30416b61/attachment.pgp From stewart.midwinter at gmail.com Tue Nov 23 04:44:29 2004 From: stewart.midwinter at gmail.com (Stewart Midwinter) Date: Tue Nov 23 04:44:33 2004 Subject: [Tkinter-discuss] Re: Announcing wrappers for bwidget In-Reply-To: <20041123030350.GA22675@unpythonic.net> References: <20041123030350.GA22675@unpythonic.net> Message-ID: Jeff: is it possible to mix and match bwidgets and, say, Pmw widgets, or do you have to choose only one for your app? thanks S On Mon, 22 Nov 2004 21:03:52 -0600, Jeff Epler wrote: > I have written a set of wrappers for "bwidget". bwidget is a collection of > enhanced widgets written in pure TCL, from a tweaked Button widget to a > snazzy-looking NoteBook (tabset) widget. -- Stewart Midwinter stewart@midwinter.ca stewart.midwinter@gmail.com From jepler at unpythonic.net Tue Nov 23 04:50:00 2004 From: jepler at unpythonic.net (Jeff Epler) Date: Tue Nov 23 04:50:03 2004 Subject: [Tkinter-discuss] Re: Announcing wrappers for bwidget In-Reply-To: References: <20041123030350.GA22675@unpythonic.net> Message-ID: <20041123035000.GA25977@unpythonic.net> It's quite likely. I don't know PMW, but the bwidgets are written to behave just like normal widgets, so you can pack them, bind them, grid them, etc. without having to think "this is a bwidget, and this is a Tk widget". If pwm is the same way, they should play well together. Jeff -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://mail.python.org/pipermail/tkinter-discuss/attachments/20041122/bf3ea87c/attachment.pgp From asu at dyaptive.com Wed Nov 24 02:45:15 2004 From: asu at dyaptive.com (Albert Su) Date: Wed Nov 24 18:50:05 2004 Subject: [Tkinter-discuss] Tkinter >> Using Pmw OptionMenu: too many options Message-ID: <41A3E7AB.9040700@dyaptive.com> Hi everyone, I want to have a selection menu that displays a long selection list. However, I am getting problems with displaying the entire list because it gets cut off from the bottom of the screen. I believe the list continues on, just that it cannot be displayed. Is it possible to add in a scroll bar, or a "wrap" function of some sort? Thanks in advance, Albert From jepler at unpythonic.net Wed Nov 24 20:04:22 2004 From: jepler at unpythonic.net (Jeff Epler) Date: Wed Nov 24 20:04:33 2004 Subject: [Tkinter-discuss] Tkinter >> Using Pmw OptionMenu: too many options In-Reply-To: <41A3E7AB.9040700@dyaptive.com> References: <41A3E7AB.9040700@dyaptive.com> Message-ID: <20041124190422.GC30430@unpythonic.net> I believe that the PMW selection menu uses the Tk Menu widget under the covers, but I didn't check to be certain. If this is true, there's probably no way to do what you ask. The Tk Menu widget doesn't support scrolling, at least on Unix. On Windows, the native menu control is be used, and that may or may not support scrolling. I don't know the current state of affairs on OS X. Jeff -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://mail.python.org/pipermail/tkinter-discuss/attachments/20041124/5ef8b700/attachment.pgp From stewart at midtoad.homelinux.org Thu Nov 25 20:49:34 2004 From: stewart at midtoad.homelinux.org (stewart@midtoad.homelinux.org) Date: Sat Nov 27 16:15:19 2004 Subject: [Tkinter-discuss] using pybwidget Message-ID: <1101412174.41a6374ea3c41@midtoad.homelinux.org> Jeff: ok, I've got it installed, and I can open the demo.tcl app using TCL, which I have installed on my system as well. But how would I, say, run the demo app using python code? Somehow I have to 'import pybwidget', since I see an __init__.py in a ..\lib\site-packages\bwidget folder, but then what? do you have any more examples of its use? thanks, Stewart From jepler at unpythonic.net Sun Nov 28 20:57:10 2004 From: jepler at unpythonic.net (Jeff Epler) Date: Sun Nov 28 20:57:14 2004 Subject: [Tkinter-discuss] using pybwidget In-Reply-To: <1101412174.41a6374ea3c41@midtoad.homelinux.org> References: <1101412174.41a6374ea3c41@midtoad.homelinux.org> Message-ID: <20041128195708.GB5501@unpythonic.net> Some examples would doubtless be useful. All of the classes defined in bwidget are widgets. You can use them exactly the same as you use widgets in Tkinter, with the biggest difference being that "default root" is not supported (you must always specify a master for a bwidget). contrary to what a first glance may make you expect, test.py *does* create a bwidget: Button is bwidget.Button, not Tkinter.Button. Its primary added feature is the "link" relief, which allows buttons to be flat but raise on mouseover, like toolbar icons on Windows. Below is a demo which shows two more widgets: NoteBook and ScrolledWindow. I discovered a couple of stupid bugs in NoteBook and fixed it in pybwidget-0.1.1, also on tkinter.unpythonic.net/bwidget . Jeff #------------------------------------------------------------------------ import bwidget, Tkinter, sys, os app = Tkinter.Tk(); app.wm_title("pybwidget demo") notebook = bwidget.NoteBook(app, arcradius=2); notebook.pack() files = sys.argv[0], Tkinter.__file__, bwidget.__file__ for i, f in enumerate(files): if f.endswith(".pyc"): f = f[:-1] page = notebook.insert(Tkinter.END, i, text=os.path.basename(f)) sw = bwidget.ScrolledWindow(page) text = Tkinter.Text(sw) text.insert(Tkinter.END, open(f).read()) sw.setwidget(text) sw.pack(side=Tkinter.TOP, fill=Tkinter.BOTH, expand=True) notebook.compute_size() app.mainloop() -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://mail.python.org/pipermail/tkinter-discuss/attachments/20041128/42dbe4a1/attachment.pgp From stewart.midwinter at gmail.com Mon Nov 29 20:07:01 2004 From: stewart.midwinter at gmail.com (Stewart Midwinter) Date: Mon Nov 29 20:07:04 2004 Subject: [Tkinter-discuss] using pybwidget In-Reply-To: <20041128195708.GB5501@unpythonic.net> References: <1101412174.41a6374ea3c41@midtoad.homelinux.org> <20041128195708.GB5501@unpythonic.net> Message-ID: Say, if you are running Windows, where did you put the bwidget package? In the TCL folder? I have TCL installed in c:\programs\tcl, so would it go there? S -- Stewart Midwinter stewart@midwinter.ca stewart.midwinter@gmail.com From stewart.midwinter at gmail.com Mon Nov 29 20:17:17 2004 From: stewart.midwinter at gmail.com (Stewart Midwinter) Date: Mon Nov 29 20:17:19 2004 Subject: [Tkinter-discuss] using pybwidget - never mind In-Reply-To: <20041128195708.GB5501@unpythonic.net> References: <1101412174.41a6374ea3c41@midtoad.homelinux.org> <20041128195708.GB5501@unpythonic.net> Message-ID: never mind! I see you already included a copy of bwidget 1.7 with your pybwidget package, so installing bwidget by itself would be redundant (unless I wanted to work directly with TCL). I discovered your Notebook bug when I tried to run your test.py script, but just as you promised, your version 1.1 fixes that bug, so the test script runs properly. Thanks! -- Stewart Midwinter stewart@midwinter.ca stewart.midwinter@gmail.com From jepler at unpythonic.net Mon Nov 29 20:23:42 2004 From: jepler at unpythonic.net (Jeff Epler) Date: Mon Nov 29 20:23:46 2004 Subject: [Tkinter-discuss] using pybwidget In-Reply-To: References: <1101412174.41a6374ea3c41@midtoad.homelinux.org> <20041128195708.GB5501@unpythonic.net> Message-ID: <20041129192342.GF30430@unpythonic.net> On Mon, Nov 29, 2004 at 12:07:01PM -0700, Stewart Midwinter wrote: > Say, if you are running Windows, where did you put the bwidget > package? In the TCL folder? I have TCL installed in c:\programs\tcl, > so would it go there? I haven't run the installer on windows to see what happens, or if the resulting install works. But just running "setup.py install" and then using the bwidget module works fine on my Linux system. The tcl files are placed under prefix in a directory called share/pybwidget, so for me, this creates /usr/share/pybwidget/arrow.tcl etc I would have guessed that this would create a folder like C:\Python23\share\pybwidget on windows, assuming that sys.prefix is 'C:\\PYTHON23'. tcl is told about the location of the files by this code in bwidget/__init__.py: _datadir = os.path.join(sys.prefix, "share", "pybwidget") [...] class BWidget: def _require(self, master): auto_path = master.tk.call("set", "auto_path") if not _datadir in auto_path: master.tk.call("lappend", "auto_path", _datadir) Jeff -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://mail.python.org/pipermail/tkinter-discuss/attachments/20041129/e4788415/attachment.pgp From PeterM at resmed.com.au Mon Nov 29 20:32:17 2004 From: PeterM at resmed.com.au (Peter Milliken) Date: Mon Nov 29 20:32:25 2004 Subject: [Tkinter-discuss] using pybwidget Message-ID: <274A369893F5FB4099345F006439D9870316C5D8@bella.corp.resmed.org> Anybody else get this little of Jeff's postings? Everything I get from Jeff looks like below. Is there something in my Microsoft Outlook setup that I should change? It would be really interesting to get more than the email signature, I'm sure he has something interesting to say..... :-) Thanks Peter P.S. It is only Jeff's postings that get stripped this way, every other posting has the content intact. > -----Original Message----- > From: Jeff Epler [mailto:jepler@unpythonic.net] > Sent: Tuesday, November 30, 2004 6:24 AM > To: Stewart Midwinter > Cc: tkinter-discuss@python.org > Subject: Re: [Tkinter-discuss] using pybwidget > > > _______________________________________________ > Tkinter-discuss mailing list > Tkinter-discuss@python.org > http://mail.python.org/mailman/listinfo/tkinter-discuss > Warning: Copyright ResMed. Where the contents of this email and/or attachment includes materials prepared by ResMed, the use of those materials is subject exclusively to the conditions of engagement between ResMed and the intended recipient. This communication is confidential and may contain legally privileged information. By the use of email over the Internet or other communication systems, ResMed is not waiving either confidentiality of, or legal privilege in,the content of the email and of any attachments. If the recipient of this message is not the intended addressee, please call ResMed immediately on +61 2 9886 5000 Sydney, Australia. From stewart.midwinter at gmail.com Mon Nov 29 21:18:42 2004 From: stewart.midwinter at gmail.com (Stewart Midwinter) Date: Mon Nov 29 21:18:48 2004 Subject: [Tkinter-discuss] bwidget progression dialog Message-ID: It appears that the progression dialog (shows a little rectangle that oscillates back and forth to indicate progress of a process) would be quite useful in what I'm doing. Does anyone have a sample code of how to set it up under Python? I can get the progression dialog to pop up, but I'm clearly lacking in understanding how to display the oscillating rectangle or have it update. My sample code below includes the TCL code that displays the progression dialog and its bar. === # sample code from Tkinter import * from bwidget import * t = Tk() b = Button(t, relief=LINK, text="Quit (using bwidget)", command=t.destroy) b.pack() c = ProgressDialog(t, title="Please wait...", type="infinite", width=20, stop="Stop", ) #d = Button(c, text="end", command=c.destroy) t.mainloop() """from Tkinter import * from bwidget import * progmsg = "Compute in progress..." progval = 0 t = Tk() b = Button(t, relief=LINK, text="Quit (using bwidget)", command=t.destroy) b.pack() c = ProgressDialog(t, title="Please wait...", type="infinite", width=20, stop="Stop", textvariable = progmsg, variable = progval ) #d = Button(c, text="end", command=c.destroy) t.mainloop() """ TCL code from tmpldlg.tcl that creates a progression dialog: proc DemoDlg::_show_progdlg { } { set DemoDlg::progmsg "Compute in progress..." set DemoDlg::progval 0 ProgressDlg .progress -parent . -title "Wait..." \ -type infinite \ -width 20 \ -textvariable DemoDlg::progmsg \ -variable DemoDlg::progval \ -stop "Stop" \ -command {destroy .progress} _update_progdlg } proc DemoDlg::_update_progdlg { } { if { [winfo exists .progress] } { set DemoDlg::progval 2 after 20 DemoDlg::_update_progdlg } } """ cheers, -- Stewart Midwinter stewart@midwinter.ca stewart.midwinter@gmail.com From stewart.midwinter at gmail.com Mon Nov 29 21:22:23 2004 From: stewart.midwinter at gmail.com (Stewart Midwinter) Date: Mon Nov 29 21:22:26 2004 Subject: [Tkinter-discuss] using pybwidget In-Reply-To: <274A369893F5FB4099345F006439D9870316C5D8@bella.corp.resmed.org> References: <274A369893F5FB4099345F006439D9870316C5D8@bella.corp.resmed.org> Message-ID: Peter, it might just be easier to read the mailing list on gmane.org, at: http://news.gmane.org/gmane.comp.python.tkinter On Tue, 30 Nov 2004 06:32:17 +1100, Peter Milliken wrote: > Anybody else get this little of Jeff's postings? Everything I get from Jeff > looks like below. cheers, -- Stewart Midwinter stewart@midwinter.ca stewart.midwinter@gmail.com From PeterM at resmed.com.au Mon Nov 29 21:34:52 2004 From: PeterM at resmed.com.au (Peter Milliken) Date: Mon Nov 29 21:35:00 2004 Subject: [Tkinter-discuss] using pybwidget Message-ID: <274A369893F5FB4099345F006439D9870316C5DA@bella.corp.resmed.org> Yeah, I could but it's strange that this is the only mailing list and the only person for that matter where this happens. It sort of defeats the purpose (to my mind :-)) of subscribing to a list... I just thought there might be something simple I could do or perhaps there might be others in the same boat (sinking) that I am > -----Original Message----- > From: Stewart Midwinter [mailto:stewart.midwinter@gmail.com] > Sent: Tuesday, November 30, 2004 7:22 AM > To: Peter Milliken > Cc: tkinter-discuss@python.org > Subject: Re: [Tkinter-discuss] using pybwidget > > > Peter, it might just be easier to read the mailing list on > gmane.org, at: > http://news.gmane.org/gmane.comp.python.tkinter > > > > > On Tue, 30 Nov 2004 06:32:17 +1100, Peter Milliken > wrote: > > Anybody else get this little of Jeff's postings? Everything > I get from Jeff > > looks like below. > > cheers, > -- > Stewart Midwinter > stewart@midwinter.ca > stewart.midwinter@gmail.com > Warning: Copyright ResMed. Where the contents of this email and/or attachment includes materials prepared by ResMed, the use of those materials is subject exclusively to the conditions of engagement between ResMed and the intended recipient. This communication is confidential and may contain legally privileged information. By the use of email over the Internet or other communication systems, ResMed is not waiving either confidentiality of, or legal privilege in,the content of the email and of any attachments. If the recipient of this message is not the intended addressee, please call ResMed immediately on +61 2 9886 5000 Sydney, Australia. From fredrik at pythonware.com Tue Nov 30 09:21:03 2004 From: fredrik at pythonware.com (Fredrik Lundh) Date: Tue Nov 30 09:30:51 2004 Subject: [Tkinter-discuss] Re: using pybwidget References: <274A369893F5FB4099345F006439D9870316C5D8@bella.corp.resmed.org> Message-ID: Peter Milliken wrote: > Anybody else get this little of Jeff's postings? Everything I get from Jeff > looks like below. > > Is there something in my Microsoft Outlook setup that I should change? > > It would be really interesting to get more than the email signature, I'm > sure he has something interesting to say..... :-) It's the pgp-signature stuff he's using, possibly in combination with the python.org mail mangling; his mails end up containing nested multipart sections. Outlook isn't the only mail client that messes up on his mails (but most others will at least let you view the source for the entire message, if you insist). From fredrik at pythonware.com Tue Nov 30 09:22:18 2004 From: fredrik at pythonware.com (Fredrik Lundh) Date: Tue Nov 30 09:40:51 2004 Subject: [Tkinter-discuss] Re: bwidget progression dialog References: Message-ID: Stewart Midwinter wrote: > It appears that the progression dialog (shows a little rectangle that > oscillates back and forth to indicate progress of a process) would be > quite useful in what I'm doing. Slightly OT: if you have the WCK, you can use this progress bar instead: http://effbot.org/zone/wck-progressbar.htm From mfranklin1 at gatwick.westerngeco.slb.com Tue Nov 30 16:45:30 2004 From: mfranklin1 at gatwick.westerngeco.slb.com (Martin Franklin) Date: Tue Nov 30 16:45:45 2004 Subject: [Tkinter-discuss] Re: bwidget progression dialog References: Message-ID: On Tue, 30 Nov 2004 09:22:18 +0100, Fredrik Lundh wrote: > Stewart Midwinter wrote: > >> It appears that the progression dialog (shows a little rectangle that >> oscillates back and forth to indicate progress of a process) would be >> quite useful in what I'm doing. > > Slightly OT: if you have the WCK, you can use this progress bar > instead: > > http://effbot.org/zone/wck-progressbar.htm > > To go even more OT there is always this:- http://tkinter.unpythonic.net/wiki/BusyBar I think it's a pure python (Tkinter) BusyBar not used it myself though. Cheers Martin From stewart.midwinter at gmail.com Tue Nov 30 17:30:10 2004 From: stewart.midwinter at gmail.com (Stewart Midwinter) Date: Tue Nov 30 17:30:13 2004 Subject: [Tkinter-discuss] Re: using pybwidget In-Reply-To: References: <274A369893F5FB4099345F006439D9870316C5D8@bella.corp.resmed.org> Message-ID: On Tue, 30 Nov 2004 09:21:03 +0100, Fredrik Lundh wrote: > ... > Outlook isn't the only mail client that messes up on his mails (but most > others will at least let you view the source for the entire message, if you > insist). you're right; I spent a few minutes plumbing the depths of Outlook 2000 and indeed there seems to be no way to view the source. However, in Outlook Express you can can right-click on a message, select Properties, then Details, then View Message Source. In Mozilla Mail, it's a simple matter of using the menu and selecting View > Message Source. S From PeterM at resmed.com.au Tue Nov 30 23:11:43 2004 From: PeterM at resmed.com.au (Peter Milliken) Date: Tue Nov 30 23:11:58 2004 Subject: [Tkinter-discuss] Re: bwidget progression dialog Message-ID: <274A369893F5FB4099345F006439D9870316C5EC@bella.corp.resmed.org> Thanks, I found out how to see the original message. It comes in as an attachment ("Untitled attachment") to the email posted by the list. If I open that attachment there is a further attachment (style is "ATT5107.txt") which up until now I had assumed was some form of signature block (I get similar things on emails from friends in other companies - they contain nothing worthwhile viewing) so I never thought to venture further. So any emails from Jeff need to have three levels opened before I can see the original text - glad I saved all those emails, now I can see what was in them! :-) Thanks for the help, Peter > -----Original Message----- > From: Fredrik Lundh [mailto:fredrik@pythonware.com] > Sent: Tuesday, November 30, 2004 7:22 PM > To: tkinter-discuss@python.org > Subject: [Tkinter-discuss] Re: bwidget progression dialog > > > Stewart Midwinter wrote: > > > It appears that the progression dialog (shows a little > rectangle that > > oscillates back and forth to indicate progress of a > process) would be > > quite useful in what I'm doing. > > Slightly OT: if you have the WCK, you can use this progress bar > instead: > > http://effbot.org/zone/wck-progressbar.htm > > > > > > _______________________________________________ > Tkinter-discuss mailing list > Tkinter-discuss@python.org > http://mail.python.org/mailman/listinfo/tkinter-discuss > Warning: Copyright ResMed. Where the contents of this email and/or attachment includes materials prepared by ResMed, the use of those materials is subject exclusively to the conditions of engagement between ResMed and the intended recipient. This communication is confidential and may contain legally privileged information. By the use of email over the Internet or other communication systems, ResMed is not waiving either confidentiality of, or legal privilege in,the content of the email and of any attachments. If the recipient of this message is not the intended addressee, please call ResMed immediately on +61 2 9886 5000 Sydney, Australia.