<span class="gmail_quote"></span>Hi,<br><br>I have worked a little bit further. Now I have implented the small icons on the toolbars, like you suggested. I made it a little better, by making it possible to choose it in gconf-editor. Default it will show the icon only toolbar. But everyone can choose to change it in gconf-editor;-).
<br><br>file: ./src/yelp-window.c<br>(at the beginning: line~70)<br>add:<br>  /* gconf-editor */<br>  #define KEY_YELP_DIR            "/apps/yelp"<br>  #define KEY_YELP_TOOLBARE_STYLE KEY_YELP_DIR "/toolbar_style"
<br><br>  static GConfClient *gconf_client = NULL;<br>  /* // */<br><br>file: ./src/yelp-window.c<br>function: window_populate()<br>search (~line 1278): <br>    gtk_toolbar_insert (GTK_TOOLBAR (toolbar), GTK_TOOL_ITEM (f_proxy), 0);
<br>    gtk_toolbar_insert (GTK_TOOLBAR (toolbar), GTK_TOOL_ITEM (b_proxy), 0);<br>add after:<br>    /* set icon only, but let it configurable through gconf-editor */<br>    /* FIXME: don't change if yelp is open (use gconf_client_notify_add)*/
<br>    gconf_client = gconf_client_get_default ();<br>    gconf_client_add_dir (gconf_client, KEY_YELP_DIR,<br>              GCONF_CLIENT_PRELOAD_ONELEVEL, NULL);<br>    if(!gconf_client_get_int (gconf_client, KEY_YELP_TOOLBARE_STYLE, NULL))
<br>    {    <br>        gconf_client_set_int (gconf_client,<br>                   KEY_YELP_TOOLBARE_STYLE,<br>                   GTK_TOOLBAR_ICONS, NULL);<br>    }<br>    gtk_toolbar_set_style(GTK_TOOLBAR (toolbar), gconf_client_get_int (gconf_client, KEY_YELP_TOOLBARE_STYLE, NULL));
<br><br><br><br><div><span class="q"><span class="gmail_quote">On 2/28/07, <b class="gmail_sendername">Matthew Paul Thomas</b> <<a href="mailto:mpt@myrealbox.com" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
mpt@myrealbox.com</a>> wrote:</span></span><div><span class="e" id="q_1110f777e8c2974a_2"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">

[sent back to the list]<br><br>On Mar 1, 2007, at 7:08 AM, hv1989 wrote:<br>> ...<br>> I appreciate your comments, although one of them isn't correct. You<br>> are saying my version takes more place than the old one. That isn't
<br>> correct. The old side bar is 15px bigger than the one of me.<br><br>But the window would be more compact if we didn't have a sidebar at<br>all. This is already true when reading man pages, for example. If the
<br>search field was put in the sidebar as you have done it, either the<br>sidebar would need to be visible all the time, or the search wouldn't<br>be available while you were reading a page that didn't have a table of
<br>contents.<br><br>> ...<br>> Also I think there's a difference, between changing the layout of the<br>> article and changing the layout of the application. What I mean is I'm<br>> busy with how the application look like. Not the layout of the content
<br>> of yelp. And for the moment is the layout of the whole application<br>> more importent than the layout of the content. So if I get this<br>> realised I while definitly help with spacing the lists.<br>> ...
<br><br>Ah, if you want to change yelp itself, I have some suggestions there<br>too. :-) I think it would be an improvement if the toolbar was always<br>icons-only (so that the window is more compact), the "Search" field was
<br>aligned with the right end of the toolbar, and the search field shrank<br>rather than disappearing when the window became narrower.<br><br>Cheers<br>--<br>Matthew Paul Thomas<br><a href="http://mpt.net.nz/" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
http://mpt.net.nz/
</a><br><br><br>--<br>ubuntu-doc mailing list<br><a href="mailto:ubuntu-doc@lists.ubuntu.com" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">ubuntu-doc@lists.ubuntu.com</a><br><a href="https://lists.ubuntu.com/mailman/listinfo/ubuntu-doc" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
https://lists.ubuntu.com/mailman/listinfo/ubuntu-doc
</a><br></blockquote></span></div></div><br>