Re: [pygtk] Left justify content of Vbox.

2005-12-12 Thread tjas ni
Thank you so much, that worked fine! ___ pygtk mailing list pygtk@daa.com.au http://www.daa.com.au/mailman/listinfo/pygtk Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/

[pygtk] Left justify content of Vbox.

2005-12-12 Thread tjas ni
Hi I've got a gtk.VBox(False, 0) to hold some of my content. But that content is aligned at the center. So I wonder how I can make my content (gtk.Label) to be justified to the left of my box. Do I need to create an Hbox inside my Vbox? Thanks for any input! ___

[pygtk] Check if gtk.VBox is hidden

2005-12-05 Thread tjas ni
Hi I could not find anything in the gtk reference about how to find out if a gtk.VBox is visible or hidden... What I want to do is to check if the box has been set to box.show() or box.hide() Thanks for any input ___ pygtk mailing list pygtk@daa.com.a

Re: [pygtk] Error with rc_parse

2005-12-05 Thread tjas ni
n on them. I just started with them a couple of nights ago since you have more control over the appearance of widgets than with direct code (there are some attributes that can't be modified through code, so far as I can tell)spikeOn Monday, November 28, 2005, at 11:29AM, tjas ni <[EMAIL

Re: [pygtk] Error with rc_parse

2005-11-28 Thread tjas ni
On 11/28/05, tjas ni <[EMAIL PROTECTED]> wrote: Thanks, gtk.rc_parse("test") worked fine! But I got into some other problems. I defined a GtkLabel with this command: headline.set_name("head") In my RC file I inserted this line: widget "head.GtkLabel" style &quo

Re: [pygtk] Error with rc_parse

2005-11-28 Thread tjas ni
On 11/27/05, spike grobstein <[EMAIL PROTECTED]> wrote: how are you importing pygtk?try like this:import pygtkpygtk.require('2.0')import gtkgtk.rc_parse("test") # rc file's path should be relative to thesource file that calls this Thanks, gtk.rc_parse("test") worked fine!

[pygtk] Error with rc_parse

2005-11-27 Thread tjas ni
Hello I am trying to include my rc file, but I get this error: unhandled NameError: "name 'rc_parse' is not defined" this is my rc call: rc_parse(test) where test is my rc file... What am I doing wrong here? Thanks for any input ___ pygtk mailing list