configure:error - atk - pkg-config-glib-1.2.8

2008-10-17 Thread Embiza Tadesse
Hello ladies and gentle men. I configure -->make-->make installed the following packages in order successfully: zlib-1.2.3 libpng-1.2.18 libiconv-1.11.1 pkg-config-0.22 m4-1.4.11 -->autoconf-2.63 -->automake-1.10.1 -->libtool-2.2.4 -->fontconfig-2.4.2 -->freetype-2.3.5 -->pixman-0.10.0 -->cairo-1

Re: How do I set up the system to launch my app when the user double-clicks a file?

2008-10-17 Thread jcupitt
2008/10/17 Garth's KidStuff <[EMAIL PROTECTED]>: > I'd like to have a user install my application (LoggerLite) and then be able > to double-click on a "LoggerLite" file and have LoggerLite automatically > launch. I see how one can use the "Open With" tab in a File's "properties" I guess this is o

How do I set up the system to launch my app when the user double-clicks a file?

2008-10-17 Thread Garth's KidStuff
Hey All, I'd like to have a user install my application (LoggerLite) and then be able to double-click on a "LoggerLite" file and have LoggerLite automatically launch. I see how one can use the "Open With" tab in a File's "properties" dialog to change what app launches when double-clicking that fi

Re: Layout Composite Widget Components Using Glade-3? / Pluggable widgets replacement for Glade custom widget?

2008-10-17 Thread Tristan Van Berkom
On Fri, Oct 17, 2008 at 2:10 AM, Daniel Yek <[EMAIL PROTECTED]> wrote: [...] > This is done by installing custom widgets catalog into catalog directory, > installing custom plugin libraries, loading optional/custom plugin > libraries, installing and loading glade-3 custom widget icons, right? > > I

GTK+ 2.14.4 released

2008-10-17 Thread Matthias Clasen
GTK+ 2.14.4 is now available for download at: ftp://ftp.gtk.org/pub/gtk/2.14/ http://ftp.gnome.org/pub/GNOME/sources/gtk+/2.14/ gtk+-2.14.4.tar.bz2 md5sum: 72bf65a54d2d29a6644dc0d28313ee67 gtk+-2.14.4.tar.gz md5sum: 159b77707ceb50012086481603153a14 This is a bug fix release in the 2.14 seri

Re: Layout Composite Widget Components Using Glade-3? / Pluggable widgets replacement for Glade custom widget?

2008-10-17 Thread Tristan Van Berkom
On Thu, Oct 16, 2008 at 10:01 PM, Daniel Yek <[EMAIL PROTECTED]> wrote: > Hi, > > I have been wondering, if I were to create a (custom) composite widget to > contain several standard GTK+ widgets from within a larger Glade project, is > there a way I can keep both the application layout and the com

Re: GtkPixbuf from Char buffer

2008-10-17 Thread Eero Tamminen
Hi, ext gary liquid wrote: have you considered caching the downloaded file to disk and reading from there using the standard function? This would give you the obvious benefit of allowing offline usage and faster requerying. There isn't an infinite amount of memory available and having to downlo

Re: GtkPixbuf from Char buffer

2008-10-17 Thread gary liquid
arto, have you considered caching the downloaded file to disk and reading from there using the standard function? This would give you the obvious benefit of allowing offline usage and faster requerying. There isn't an infinite amount of memory available and having to download images everytime cou

Re: GtkPixbuf from Char buffer

2008-10-17 Thread Daniil Ivanov
Hello! One way is to create GdkPixbufLoader and feed your image with gdk_pixbuf_loader_write. It will parse it and give you GdkPixbuf. Another way is to save data into temporary file and do gdk_pixbuf_new_from_file (). Thanks, Daniil. On Thu, Oct 16, 2008 at 5:12 PM, Arto Karppinen <[EMAI

How to create alpha pixmap on drawingarea?

2008-10-17 Thread chen zhixin
HELLO: I using a GtkDrawingarea to show pixmap video,program need to measure something,such as line length,area,girth, volume,and then draw text on it. because the pixmap video can stop,i need the text still on the pixmap,so i need to use 2 channels, how can i do this ? __