Re: [Tkinter-discuss] Recommendations for free and commercial icon/image sets licensed for commercial use?

2010-12-07 Thread Kevin Walzer
On 12/7/10 1:58 PM, pyt...@bdurham.com wrote: Any recommendations for free and commercial icon/image sets licensed for commercial use? I've seen some really high quality icons/images in open source software lately, but I suspect most of these image sets are GPL in nature, thus (in my interpretat

[Tkinter-discuss] Possible to create single pixel wide horizontal/vertical ttk.Separator's?

2010-12-07 Thread python
Is there a way to create single pixel wide horizontal and vertical ttk.Separator()'s? Python 2.7/Windows: When I magnify the ttk Separators they are built as 2 parallel lines - one line gray and one line a light/white color. The latter color added to create a subtle 3d effect? I would like to cre

[Tkinter-discuss] [Fwd: Change font and size in control ttk.Entry]

2010-12-07 Thread craf
- Mensaje reenviado > De: craf > Para: Python Tkinter Ingles > Asunto: [Tkinter-discuss] Change font and size in control ttk.Entry > Fecha: Tue, 07 Dec 2010 16:44:20 -0300 > > Hi. > > I'm trying to change the font type and size of a ttk.Entry control. > > Example: > > from tk

[Tkinter-discuss] Change font and size in control ttk.Entry

2010-12-07 Thread craf
Hi. I'm trying to change the font type and size of a ttk.Entry control. Example: from tkinter import * from tkinter import ttk master=Tk() s = ttk.Style() s.theme_use('clam') s.configure('TEntry', font='Monaco') entrada = ttk.Entry(master, style='TEntry') entrada.pack() master.mainloop() Un

Re: [Tkinter-discuss] Recommendations for free and commercial icon/image sets licensed for commercial use?

2010-12-07 Thread Wayne Werner
On Tue, Dec 7, 2010 at 12:58 PM, wrote: > Any recommendations for free and commercial icon/image sets > licensed for commercial use? > > I've seen some really high quality icons/images in open source > software lately, but I suspect most of these image sets are GPL > in nature, thus (in my interp

[Tkinter-discuss] Recommendations for free and commercial icon/image sets licensed for commercial use?

2010-12-07 Thread python
Any recommendations for free and commercial icon/image sets licensed for commercial use? I've seen some really high quality icons/images in open source software lately, but I suspect most of these image sets are GPL in nature, thus (in my interpretation) not available for use in commercial product

Re: [Tkinter-discuss] Force a Frame and/or Text widget to a specific width?

2010-12-07 Thread python
Apologies for the poorly worded description below. I *can* set my Text widget to a specific width. What I would like to do is set my Text widget to a specific width, have it do its layout with word wrap, then remove the width property so that the Text widget can resize as its parent container resi

[Tkinter-discuss] Force a Frame and/or Text widget to a specific width?

2010-12-07 Thread python
Is there a technique where I can force a Frame and/or Text widget to a specific width? I understand that width= many times only serves as a hint to Tkinter's layout managers. I'm looking for a width setting technique that's much more forceful than a suggestion :) I'm using a Text widget with wrap=

Re: [Tkinter-discuss] Possible to fade a small Tkinter image into a specific background color?

2010-12-07 Thread Wayne Werner
On Mon, Dec 6, 2010 at 8:38 PM, wrote: > Wondering if there's a PIL/Tkinter technique I can use to fade a small > image into a specific background color? > > Use case: I have a small message area that displays both an icon and text > message. I can fade my foreground text into its background cont