Re: [pygtk] question about tree view

2006-01-02 Thread dannym
Hi, Am Montag, den 02.01.2006, 16:36 + schrieb nephish: > Hey there, > i am using a tree view to show one main coloum and one child. > i can browse through the tree just fine, but i have to double-click to > make it selected and give the on_tree_row_activated signal. Where can i >

Re: [pygtk] A design question

2006-01-02 Thread Gary Jaffe
A.T.Hofkamp wrote: Hello, Gary Jaffe wrote: I wrote a pygtk application that displays ascii letters and spaces arranged as 70 columns by 20 rows. Each letter and its background color represents a potential appointment spot in a doctor's office. The user can click on any of the letters to e

[pygtk] question about tree view

2006-01-02 Thread nephish
Hey there, i am using a tree view to show one main coloum and one child. i can browse through the tree just fine, but i have to double-click to make it selected and give the on_tree_row_activated signal. Where can i set it up to make a single click work the same way ? thanks shawn

Re: [pygtk] A design question

2006-01-02 Thread A.T.Hofkamp
Hello, Gary Jaffe wrote: I wrote a pygtk application that displays ascii letters and spaces arranged as 70 columns by 20 rows. Each letter and its background color represents a potential appointment spot in a doctor's office. The user can click on any of the letters to either make or view an

Re: [pygtk] A design question

2006-01-02 Thread John Ehresman
Before you get into implementing widgets in python, look at using buttons w/ set_relief(gtk.RELIEF_NONE), ListView, and TextView, probably in that order. This is not to say that implementing widgets isn't a fun exercise, but it's probably not the place to start. John Nicolas ROMAN wrote: le

Re: [pygtk] A design question

2006-01-02 Thread Nicolas ROMAN
le Mon, 02 Jan 2006 10:21:26 -0500, Gary Jaffe écrivait : > Nicolas ROMAN wrote: > > le Mon, 02 Jan 2006 09:22:26 -0500, Gary Jaffe écrivait : > > > > > >>I wrote a pygtk application that displays ascii letters and > >>spaces arranged as 70 columns by 20 rows. Each letter and its > >>backgrou

Re: [pygtk] A design question

2006-01-02 Thread Gary Jaffe
Nicolas ROMAN wrote: le Mon, 02 Jan 2006 09:22:26 -0500, Gary Jaffe écrivait : I wrote a pygtk application that displays ascii letters and spaces arranged as 70 columns by 20 rows. Each letter and its background color represents a potential appointment spot in a doctor's office. The user ca

Re: [pygtk] A design question

2006-01-02 Thread Nicolas ROMAN
le Mon, 02 Jan 2006 09:22:26 -0500, Gary Jaffe écrivait : > I wrote a pygtk application that displays ascii letters and > spaces arranged as 70 columns by 20 rows. Each letter and its > background color represents a potential appointment spot in a > doctor's office. The user can click on any of

[pygtk] A design question

2006-01-02 Thread Gary Jaffe
I wrote a pygtk application that displays ascii letters and spaces arranged as 70 columns by 20 rows. Each letter and its background color represents a potential appointment spot in a doctor's office. The user can click on any of the letters to either make or view an appointment. This is work