in reply to Re: Perl::Gtk and Color tutorial
in thread Perl::Gtk and Color tutorial
I already looked at that Gtk link (in fact I mentioned it in my question), but it doesn't really help me. I tried to adapt the example to work with a label, but $label->window returns undef so it dies.
my $l = new Gtk::Label( "Success" ); my $colormap = $l->window->get_colormap(); my $gdk_color = Gtk::Gdk::Color->parse_color( "green" ); $gdk_color = $colormap->color_alloc( $gdk_color ); $l->window->set_background( $gdk_color );
Looking at it a bit closer, it seems to expect that the widget is already added to a realized window. That's unfortunate, since I'd like for my module to return a Gtk::Table that can then be added to a window at will.
As for the theme remark: I would compare what I'm working on to a web browser in that regard. There's some general UI that should be affected by themes (cfr. the browser chrome), and then some content that should be shown a certain way no matter what the theme (cfr. a webpage in the browser)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Perl::Gtk and Color tutorial
by blueberryCoffee (Scribe) on Dec 15, 2004 at 10:30 UTC | |
by Crackers2 (Parson) on Dec 15, 2004 at 15:00 UTC |