Where to place pixmaps on makefiles and GnomeGoals

2007-08-10 Thread Daniel Morales
Hi all, I've a gtk+ app using a few pixmaps... i was reading http://live.gnome.org/GnomeGoals/AppIcon, and say a new place to install pixmaps.. i've this images: ticketpanel.png - The icon used in the .desktop file and gtk_window_icon and the rest of .png are _not_ icons... This is my pixmaps/M

Re: How to make GtkTreeview columns invisible

2007-08-10 Thread Iain *
On 8/10/07, David Nečas (Yeti) <[EMAIL PROTECTED]> wrote: > The author of this dislaimer is hereby notified that I will > continue to disclose, copy and distribute anything I receive > from a public mailing list. If he/she/it does not want this > disclaimer to lose any threatening weight (it does

Re: How to make GtkTreeview columns invisible

2007-08-10 Thread Eduardo M KALINOWSKI
Prasanna Kumar K wrote: > I don't want any columns of GtkTreeView visible in my application. I want > only rows to be shown. > is it possible? > I suppose you do not want column headers. In this case, try gtk_tree_view_set_headers_visible(): http://developer.gnome.org/doc/API/2.0/gtk/GtkTreeVi

Re: How to make GtkTreeview columns invisible

2007-08-10 Thread Yeti
On Fri, Aug 10, 2007 at 05:47:07PM +0530, Prasanna Kumar K wrote: > I don't want any columns of GtkTreeView visible in my application. I want > only rows to be shown. > is it possible? It was answered when you asked the first time: http://mail.gnome.org/archives/gtk-list/2007-August/msg00042.h

RE: GtkTreeView+vscroll in hbox

2007-08-10 Thread Kumar Siddharth
Hi, >>the problem is, in hbox the width of hbox is equally divided for both treeview and vscroll. >>So a huge gap is coming between treeview and vscroll. This depends upon how did you create your HBOX. If you create it like: gtk_hbox_new(TRUE, ..); then, all packed widgets will have same width,

How to make GtkTreeview columns invisible

2007-08-10 Thread Prasanna Kumar K
I don't want any columns of GtkTreeView visible in my application. I want only rows to be shown. is it possible? Regards, Prasanna. This message (including any attachment) is confidential and may be legally privileged. Access to this message by anyone other than the intended recipient(s) lis

Re: GtkTreeView+vscroll in hbox

2007-08-10 Thread Damien Caliste
Hello, Le 10/08/2007, "Prasanna Kumar K" <[EMAIL PROTECTED]> a écrit : > gtk_box_pack_start (GTK_BOX(hbox), treeview, TRUE, TRUE, 0); > gtk_box_pack_start (GTK_BOX(hbox), vscroll, TRUE, TRUE, 0); > gtk_box_pack_start (GTK_BOX(vbox), hbox, TRUE, TRUE, 1); > > the problem is, in hbox the width

Re: gtk_tree_model_iter_next works, what should I do about prev]

2007-08-10 Thread Yeti
On Wed, Aug 08, 2007 at 07:32:18AM -0600, Kevin DeKorte wrote: > > I've been having some great luck using a GtkListStore, but recently I > wanted to see the previous node on the list. Obviously, the > gtk_tree_model_iter_prev doesn't exist. So what is the best way to get > the previous node. > >

GtkTreeView+vscroll in hbox

2007-08-10 Thread Prasanna Kumar K
Hi, I want to place one gtktreeview(treeview) and one vertical scrollbar(vscroll) in one horizontal box(hbox).And at last want to pack this single horizontal box into a vertical box(vbox). I have done this coding.. gtk_box_pack_start (GTK_BOX(hbox), treeview, TRUE, TRUE, 0); gtk_box_pack

Setting a widget's width to the text width

2007-08-10 Thread Patrick Hallinan
Hi, I want to create a GtkComboEntry where the width is exactly set to display the largest string in the drop down list. I do not want to hard code the width. Is this something easy to do? Thanks for any help! Pat. ___ gtk-app-devel-list mailing list

Re: color of vscrollbar

2007-08-10 Thread Andreas Stricker
Jonathan Winterflood schrieb: > Maybe we should try and find out whether many people here are strongly > annoyed by these messages and in that case make it list > policy (or at least Good Practice) that any post sent to it should not have > this message. Yes there are many people strongly annoyed

Re: dynamic combo entry

2007-08-10 Thread Dave Howorth
[posted back to list and trimmed] Varun Khaneja wrote: > On 8/7/07, Jim George <[EMAIL PROTECTED]> wrote: >> On 8/7/07, Dave Howorth <[EMAIL PROTECTED]> wrote: >>> Jim George wrote: It may not be exactly what you want, but gtk_entry_set_completion might help. >>> It looks interesting. I'

Re: dynamic combo entry

2007-08-10 Thread Dave Howorth
Jim George wrote: > On 8/7/07, Dave Howorth <[EMAIL PROTECTED]> wrote: >> Jim George wrote: >>> It may not be exactly what you want, but gtk_entry_set_completion might >>> help. >> It looks interesting. I've found the page in the reference manual and it >> says lots of things that sound intriguing