Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!aioe.org!news.stack.nl!newsfeed.xs4all.nl!newsfeed5.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.003 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'received:verizon.net': 0.07; 'terry': 0.07; 'canvas': 0.09; 'folks,': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:80.91.229.12': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'received:lo.gmane.org': 0.09; 'gui': 0.13; 'canvas.': 0.16; 'reedy': 0.16; 'worked.': 0.16; 'wrote:': 0.18; 'jan': 0.19; 'trying': 0.21; 'header:In-Reply-To:1': 0.22; 'tried': 0.27; 'depends': 0.28; 'pm,': 0.29; 'widget': 0.30; 'subject:?': 0.31; "can't": 0.32; 'header:User-Agent:1': 0.33; 'header:X-Complaints-To:1': 0.33; 'to:addr:python-list': 0.34; 'probably': 0.34; 'it.': 0.34; 'but,': 0.34; 'subject:What': 0.34; 'entry': 0.37; 'think': 0.37; 'could': 0.37; 'received:org': 0.38; 'background': 0.40; 'to:addr:python.org': 0.40; 'entered': 0.40; 'type': 0.61; 'opened': 0.64; 'photo': 0.68; 'subject:this': 0.74; 'subject:widget': 0.84; '1:47': 0.91 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Terry Reedy Subject: Re: What is this widget? Date: Wed, 14 Dec 2011 18:23:44 -0500 References: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Gmane-NNTP-Posting-Host: pool-74-109-121-73.phlapa.fios.verizon.net User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:8.0) Gecko/20111105 Thunderbird/8.0 In-Reply-To: X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 16 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1323905042 news.xs4all.nl 6889 [2001:888:2000:d::a6]:52415 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:17241 On 12/14/2011 1:47 PM, Muddy Coder wrote: > Hi Folks, > > I am trying to write letters on a photo that is opened in a canvas. So > I think I must need a widget to contain the letters I will type in. I > tried to use a Label, it worked. But, a Label covered part of the > photo underneath, so I can't use it. You could use a entry widget over or outside the canvas for the user to enter the text, and then close that box and write the entered text to the canvas. Whether you can make the background of the entry box transparent probably depends on the gui toolkit. -- Terry Jan Reedy