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
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
- 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
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
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
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
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
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=
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