<html><head><style type="text/css"><!-- DIV {margin:0px;} --></style></head><body><div style="font-family:times new roman, new york, times, serif;font-size:12pt"><font style="font-family: verdana,helvetica,sans-serif;" size="2">hi,<br>i want to use gtk resource file&nbsp; (e.g. MyResource.rc ) to change background colour / to put background image on widget<br>i am able to do same thing in simple gtk application . the same application&nbsp; is not able to load resource file on maemo platform .Is there any difference to load / write the resouce for maemo application (in hildon framework)?<br><br>MyResource.rc<br>-------------------------------------------------------<br>pixmap_path "../common/images/"<br><br>style "window"<br>{<br>&nbsp;&nbsp;&nbsp; &nbsp;bg_pixmap[NORMAL] =&nbsp; "bg.xpm"<br>}<br>widget_class "GtkWindow" style "window"<br><br>---------------------------------------------------------<br><br>App.c&nbsp;&nbsp;  &nbsp;&nbsp;  &nbsp;&nbsp; 
 &nbsp;&nbsp;  &nbsp;&nbsp;  /* Gtk App */<br>----------------------------------------------------------<br>int main(int argc ,char* argv[])
<br>{
<br>&nbsp;&nbsp;&nbsp; GtkWidget *window;<br>&nbsp;&nbsp;&nbsp; gtk_init(&amp;argc,&amp;argv);<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; window = gtk_window_new(GTK_WINDOW_TOPLEVEL);<br>&nbsp;&nbsp;&nbsp; gtk_widget_set_name (window, "window");<br>&nbsp; <br>&nbsp;&nbsp;&nbsp; gtk_rc_parse ("</font><font style="font-family: verdana,helvetica,sans-serif;" size="2">MyResource.rc</font><font style="font-family: verdana,helvetica,sans-serif;" size="2">");<br>&nbsp;&nbsp;&nbsp; gtk_widget_show(window);
<br>&nbsp;&nbsp;&nbsp; gtk_main();<br>&nbsp;&nbsp;&nbsp;&nbsp; 
<br>&nbsp;&nbsp;&nbsp; return 0;
<br>}<br>------------------------------------------------------------<br><br>App.c &nbsp;&nbsp;  &nbsp;&nbsp;  &nbsp;&nbsp;  &nbsp;&nbsp;  /*maemo App in Hildon */<br>-------------------------------------------------------------<br>int main( int argc, char* argv[] )<br>{<br>&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; HildonProgram* program; <br>&nbsp;&nbsp;&nbsp; GtkWidget* window; <br><br>&nbsp;&nbsp;&nbsp;&nbsp; gtk_init( &amp;argc, &amp;argv );<br><br>&nbsp;&nbsp;&nbsp; program = HILDON_PROGRAM( hildon_program_get_instance() );<br>&nbsp;&nbsp;&nbsp; g_set_application_name( "My App" );<br>&nbsp; <br>&nbsp;&nbsp;&nbsp; window&nbsp; =&nbsp; hildon_window_new();<br>&nbsp;&nbsp;&nbsp; gtk_widget_set_name (window ,"window");<br>&nbsp; </font><font style="font-family: verdana,helvetica,sans-serif;" size="2">&nbsp; gtk_rc_parse ("</font><font style="font-family: verdana,helvetica,sans-serif;" size="2">MyResource.rc</font><font style="font-family:
 verdana,helvetica,sans-serif;" size="2">"); <br></font><font style="font-family: verdana,helvetica,sans-serif;" size="2">&nbsp; &nbsp;  <br>&nbsp;&nbsp;&nbsp; hildon_program_add_window( program, HILDON_WINDOW(window));<br>&nbsp; </font><font style="font-family: verdana,helvetica,sans-serif;" size="2"><br>&nbsp;&nbsp;&nbsp; gtk_widget_show(window); <br>&nbsp;&nbsp;&nbsp; gtk_main();&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; return 0;<br>}<br><br><br>-------------------------------------------------------------<br>Thx<br>minti</font><span style="font-weight: bold;"><font size="2"><br><br><span style="font-weight: bold;"></span></font><br></span></div><br>__________________________________________________<br>Do You Yahoo!?<br>Tired of spam?  Yahoo! Mail has the best spam protection around <br>http://mail.yahoo.com </body></html>