Re: How does one overlay one image on top of another ?

2008-03-30 Thread Gregory Hosler
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Bob Murphy wrote: | Hi Gregory, | |> Step 3 (where you put the 1st GtkFixed into the GtkVBox) - You specify |> that you "position" |> it in teh "upper left" corner. GtkVBox doesn't let you position it's |> children, and |> GtkFixed doesn't let you posi

Re: How to know which signals go with which widgets

2008-03-30 Thread Gregory Hosler
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Tristan Van Berkom wrote: | On Sun, Mar 30, 2008 at 7:51 AM, Gregory Hosler <[EMAIL PROTECTED]> wrote: |> -BEGIN PGP SIGNED MESSAGE- |> Hash: SHA1 |> |> HI all, |> |> if I look up the documentation on a particular widget, at the bottom of th

Re: identify unused functions?

2008-03-30 Thread G Hasse
On Sun, Mar 30, 2008 at 10:25:05PM +0300, Stefan Kost wrote: > Hi, Undefined and unused is not the same. There is NO way to clerify all unused functions in a program. You could call functions by their addresses and those addresses could be calculated in runtime. So you don't know... Something li

Re: Quitting an application

2008-03-30 Thread G Hasse
On Thu, Mar 27, 2008 at 08:01:40PM +0530, Sujith wrote: > Hi, > > I am writing a music library manager and I have a small problem when > terminating the application. > On starting the app, I scan a DB and load the tracks into a treeview. > When this is in progress, if the user closes the applicat

Rotating & scaling a widget or set of widgets

2008-03-30 Thread Jason Edgecombe
Hi There, I'm developing an application for a Nokia N800 Internet Tablet. I want to rotate and scale the whole screen or at least a set widgets so that the application can be used when holding the application in portrait or landscape orientations. How can I do that? Thanks, Jason __

Highlighting text with color

2008-03-30 Thread Jeffrey Barish
I need to highlight some text in a TreeView. I know how to change the color, but I am wondering what color to use. I am thinking that I should choose a color that is used elsewhere so that the highlighted text does not clash with the theme, even if the user were to change the theme. Perhaps them

Re: identify unused functions?

2008-03-30 Thread Dr. Michael J. Chudobiak
Stefan Kost wrote: > Hi, > > nm --undefined-only *.o | cut -c12- | sort | uniq > would give you a list of all external symbols > > nm --defined-only *.o | cut -c12- | sort | uniq > would give you a list of all defined symbols > > now all enties in 2nd list, which are not in first list should be

Re: identify unused functions?

2008-03-30 Thread Stefan Kost
Hi, nm --undefined-only *.o | cut -c12- | sort | uniq would give you a list of all external symbols nm --defined-only *.o | cut -c12- | sort | uniq would give you a list of all defined symbols now all enties in 2nd list, which are not in first list should be what you are looking for ('comm' sho

Re: Question in using gdk_pixbuf_get_from_drawable()

2008-03-30 Thread ying lcs
Yes, I am really accessing a GDK window. pb = gdk_pixbuf_get_from_drawable(NULL, GDK_DRAWABLE(window), Any other idea? Thanks. On Sun, Mar 23, 2008 at 11:34 AM, Luis Menina <[EMAIL PROTECTED]> wrote: > Are you really sure you're accessing the GdkWindow

Re: How to know which signals go with which widgets

2008-03-30 Thread Tristan Van Berkom
On Sun, Mar 30, 2008 at 7:51 AM, Gregory Hosler <[EMAIL PROTECTED]> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > HI all, > > if I look up the documentation on a particular widget, at the bottom of the > devhelp page > there is documentation on which signals it supports. > > I'

How to know which signals go with which widgets

2008-03-30 Thread Gregory Hosler
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 HI all, if I look up the documentation on a particular widget, at the bottom of the devhelp page there is documentation on which signals it supports. I'm looking for the inverse. I have a UI and i need a "leave-notify-event", so I wish to know whic

Re: How to get the preedit character from TextView?

2008-03-30 Thread amol
Hi Try this gtk_im_context_get_preedit_string (GTK_TEXT_VIEW (text_view)->im_context, &preedit_string, NULL, &cursor_pos); . . gtk_im_context_reset (GTK_TEXT_VIEW (text_view)->im_context); Regards, Amol On Fri, 2008-03-28 at 12:33 +0900, KwangYul Seo wrote: > Hi, >