Re: [PyKDE] Tabs in QListBoxText

2005-04-15 Thread Giovanni Bajo
Jeffrey Barish <[EMAIL PROTECTED]> wrote: > I have a statement: > > QListBoxText(clb, '%s:\t%s' % (key, thing[key])) > > The tab does not appear (it's a space). Do I have to set tab stops, > or is there no way to use tabs in listboxes? > > What I really want is for the keys and things to line

Re: [PyKDE] Tabs in QListBoxText

2005-04-14 Thread Giovanni Bajo
Jeffrey Barish <[EMAIL PROTECTED]> wrote: > I have a statement: > > QListBoxText(clb, '%s:\t%s' % (key, thing[key])) > > The tab does not appear (it's a space). Do I have to set tab stops, > or is there no way to use tabs in listboxes? > > What I really want is for the keys and things to line

[PyKDE] Tabs in QListBoxText

2005-04-14 Thread Jeffrey Barish
I have a statement: QListBoxText(clb, '%s:\t%s' % (key, thing[key])) The tab does not appear (it's a space). Do I have to set tab stops, or is there no way to use tabs in listboxes? What I really want is for the keys and things to line up vertically. A QListView could do that with 2 columns, b