Re: How to set my gui?

2013-04-22 Thread Gene Heskett
On Friday 19 April 2013 22:16:18 Chris Angelico did opine: > On Sat, Apr 20, 2013 at 9:10 AM, Dennis Lee Bieber > > wrote: > > On Fri, 19 Apr 2013 09:24:36 +1000, Chris Angelico > > > > declaimed the following in gmane.comp.python.general: > >> On Fri, Apr 19, 2013 at 8:57 AM, Walter Hurry w

Re: How to set my gui?

2013-04-19 Thread Chris Angelico
On Sat, Apr 20, 2013 at 9:10 AM, Dennis Lee Bieber wrote: > On Fri, 19 Apr 2013 09:24:36 +1000, Chris Angelico > declaimed the following in gmane.comp.python.general: > >> On Fri, Apr 19, 2013 at 8:57 AM, Walter Hurry >> wrote: >> > On Fri, 19 Apr 2013 08:00:11 +1000, Chris Angelico wrote: >> >

Re: How to set my gui?

2013-04-19 Thread Tracubik
On 19/04/2013 10:42, Alister wrote: On Thu, 18 Apr 2013 23:24:29 +0200, Tracubik wrote: Hi all! I'm trying to make a simple program that essentially do this: 1) open a html file (extracted epub file) 2) search for occurrences like "ita-ly" 3) put them on a simple GUI: 1 text field and two butt

Re: How to set my gui?

2013-04-19 Thread Roland Koebler
Hi, > These days, GUI programming is to me just > programming and calling on certain libraries/modules. +1 > One thing you may want to consider is using your main thread for the > UI, and spinning off another thread to do your search. But do that > ONLY if you know you understand threads, and thr

Re: How to set my gui?

2013-04-19 Thread Alister
On Thu, 18 Apr 2013 23:24:29 +0200, Tracubik wrote: > Hi all! > I'm trying to make a simple program that essentially do this: > > 1) open a html file (extracted epub file) > 2) search for occurrences like "ita-ly" > 3) put them on a simple GUI: 1 text field and two buttons: keepy it and > correct

Re: How to set my gui?

2013-04-18 Thread Chris Angelico
On Fri, Apr 19, 2013 at 8:57 AM, Walter Hurry wrote: > On Fri, 19 Apr 2013 08:00:11 +1000, Chris Angelico wrote: > >> But 1 Corinthians 13:11 > > You are grown up now, I surmise. :) Born in 1984, so that'll give you some idea where I was in the 1990s. ChrisA -- http://mail.python.org/mailman/li

Re: How to set my gui?

2013-04-18 Thread Walter Hurry
On Fri, 19 Apr 2013 08:00:11 +1000, Chris Angelico wrote: > But 1 Corinthians 13:11 You are grown up now, I surmise. -- http://mail.python.org/mailman/listinfo/python-list

Re: How to set my gui?

2013-04-18 Thread Chris Angelico
On Fri, Apr 19, 2013 at 7:36 AM, Tracubik wrote: > On 18/04/2013 23:27, John Gordon wrote: >> >> In <5170648d$0$1368$4fafb...@reader2.news.tin.it> Tracubik >> writes: >> >>> i suppose i've to first generate the window and than populate it, but >>> where i've to put the "search for occurences" cod

Re: How to set my gui?

2013-04-18 Thread Tracubik
On 18/04/2013 23:27, John Gordon wrote: In <5170648d$0$1368$4fafb...@reader2.news.tin.it> Tracubik writes: i suppose i've to first generate the window and than populate it, but where i've to put the "search for occurences" code? I don't think init() is the right place.. What GUI library are

Re: How to set my gui?

2013-04-18 Thread John Gordon
In <5170648d$0$1368$4fafb...@reader2.news.tin.it> Tracubik writes: > i suppose i've to first generate the window and than populate it, but > where i've to put the "search for occurences" code? I don't think init() > is the right place.. What GUI library are you using? -- John Gordon