[maemo-developers] How to make a image in a button displayed in its original size
From: Xan xan.lopez at gmail.comDate: Thu Oct 18 15:29:43 EEST 2007
- Previous message: How to make a image in a button displayed in its original size
- Next message: How to make a image in a button displayed in its original size
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On 10/18/07, Zhu, Peter J <peter.j.zhu at intel.com> wrote: > Hi, > > I met a disgusting issue as applying a image defined in a gtkrc style to > a GtkButton. It can't be displayed as original picture size but a very > small size. The GtkButton doesn't have a child of GtkImage because > sapwood gtk engine only supports BOX paint for button, no pic/image > paint for gtkimage in my experience. To make it seen, the only way I > found is of using gtk_widget_set_size_request() on the button. But this > is ugly and can't change size dynamically with change of picture. > I'm not entirely sure of what is your problem, but packing a GtkImage inside a button works just fine in maemo and it won't do any hidden scaling as long as you don't ask it to AFAIK. Something like: image = gtk_image_new_from_file ("foo.png"); button = gtk_button_new (); gtk_container_add (GTK_CONTAINER (button), image); should work. Hope it helps, Cheers Xan > Anybody here has such experience for such issue? > > Thanks, > Peter > _______________________________________________ > maemo-developers mailing list > maemo-developers at maemo.org > https://lists.maemo.org/mailman/listinfo/maemo-developers >
- Previous message: How to make a image in a button displayed in its original size
- Next message: How to make a image in a button displayed in its original size
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]