Re: displaying 2 images from combobox

2007-03-07 Thread lucks
when i use this: { GtkWidget *image = lookup_widget(GTK_WIDGET(combobox), img_objectdesign); gtk_image_set_from_file (GTK_IMAGE(image), Pictures/baby.jpg); } it works...as you can see image is already declared in the first line. that is GtkWidget *image=lookup...etc. if i declare it at

Re: trying to launch a dialog from outside the main gui thread by emiting a signal to the thread.

2007-03-07 Thread Jim George
On 3/7/07, Kevin Lambert [EMAIL PROTECTED] wrote: I ended up modifying my class such that the information for the dialog gets added to a vector and I added a timer which looks at the vector and if there is something new to be displayed it pops it off and launches the appropriate dialog, thus

selecting and displaying from combobox in C

2007-03-07 Thread lucks
hi...am new to gtk+ and i want to display 2 images in 2 different image widgets when a specific item is clicked from a comboboxi`ve managed to display only one picture but i still dont know how to display a selected item...the image is displayed by default when i use the following code: void

Re: displaying 2 images from combobox

2007-03-07 Thread lucks
thanks for the info... am still having a lot of problems...you told me to declare it, so i did.but still i cant. in fact am new to gtk+ and dont know too mucn but i have to manage because i have to submit my project on gtk+.. i tried this too: void on_cbo_itemdesign_changed

Re: displaying 2 images from combobox

2007-03-07 Thread lucks
thanks for the info... am still having a lot of problems...you told me to declare it, so i did.but still i cant. in fact am new to gtk+ and dont know too mucn but i have to manage because i have to submit my project on gtk+.. i tried this too: void on_cbo_itemdesign_changed

Re: displaying 2 images from combobox

2007-03-07 Thread Junior Polegato - GTK+ GTKmm
lucks escreveu: image1 = lookup_widget(GTK_WIDGET(combobox), img_patterndesign); Hi, you have a space between and img_. -- Yours Truly, Junior Polegato A pilgrim of problems; A parchment of solutions! Professional Page: http://www.juniorpolegato.com.br

GLib 2.12.10 released

2007-03-07 Thread Matthias Clasen
GLib 2.12.10 is now available for download at: ftp://ftp.gtk.org/pub/glib/2.12/ http://download.gnome.org/sources/glib/2.12/ glib-2.12.10.tar.bz2 md5sum: 82d44a53690b0eff8f7a5dc65e592f61 glib-2.12.10.tar.gzmd5sum: 6bbf2372fa4b4e32015d6c31208e18e6 This is a bug fix release in the 2.12

Re: Problem to open a new window using libglade

2007-03-07 Thread patrick
Hello, if I use g_idle_add, then when the function from g_idle_add is executed, it blocks the 'update_pbar' function. So I probably must make it with threads but by now I think it's to early for me to work with threads. It's easier if I add the progressbar into the main window, and update it with:

Expose event crashes app

2007-03-07 Thread Nelson Wang
Hi all, I am developing a application, which is able to play back several jpeg/mpeg files simultaneously in a single window(like NxN cell table), I mainly use gdk_draw_rgb_image to render decoded frame. It works quite well for a while but fails to stand for more then 2 week. It will crash with

Fixing size of window containing 2 buttons

2007-03-07 Thread Jeffrey Barish
I am just starting with GTK, so no doubt I am missing something basic. I have a window with a buttonbox with 2 buttons. I use size_allocate on the buttons to position them. One of the buttons starts hidden. I would like to size the window so that it will accommodate both buttons, but I keep

Re: Fixing size of window containing 2 buttons

2007-03-07 Thread Allin Cottrell
On Wed, 7 Mar 2007, Jeffrey Barish wrote: I am just starting with GTK, so no doubt I am missing something basic. I have a window with a buttonbox with 2 buttons. I use size_allocate on the buttons to position them. One of the buttons starts hidden... It may be possible to get that to

Re: GTK+ Love

2007-03-07 Thread Alejandro Garcia Castro
On Mon, Mar 05, 2007 at 02:04:19PM -0500, Behdad Esfahbod wrote: On Fri, 2007-03-02 at 08:49 -0500, Xan Lopez wrote: - The first one is to implement the well known gnome-love strategy done by GNOME in gtk+. Basically we'd have a maintained list of easy gtk+ bugs suitable for starting

Re: Multimedia widgets in GTK+?

2007-03-07 Thread Bastien Nocera
On Thu, 2007-03-01 at 19:39 +, Ross Burton wrote: On Thu, 2007-03-01 at 11:06 -0800, Brian J. Tarricone wrote: - BaconVolumeWidget, living in the libbacon module in SVN. It's currently used by a large number of applications, cut'n'pasted (Totem, Rhythmbox, LastExit, Banshee, Muine,

Need a little guidance with signals

2007-03-07 Thread Mark Richardson
Hi All, I've been having a little trouble with signals. I'm using gladeXML to change views inside of my application. In the .glade file that I'm opening, there are some custom widgets. When I create a custom widget, I keep a pointer to it for some internal purposes. But I want the pointer

Re: Need a little guidance with signals

2007-03-07 Thread Emmanuele Bassi
hi; On Wed, 2007-03-07 at 10:43 -0800, Mark Richardson wrote: Hi All, I've been having a little trouble with signals. this is the gtk-devel-list, a list for developer the gtk+ libraries, no developing with the gtk+ libraries. you should ask application development related questions on

GTK+ 2.10.7 plans and Icon Theme crasher bug?

2007-03-07 Thread Christian Hammond
Hey guys. I'm curious what the plans are for a GTK+ 2.10.7 release. I read over the archives and it seems the focus is on GTK+ 2.12 right now, which makes sense. However, there's a crasher bug (bug #381236) in current releases of GTK+ 2.10 that has been fixed in SVN but has not made it into a

Re: GTK+ 2.10.7 plans and Icon Theme crasher bug?

2007-03-07 Thread Allin Cottrell
On Wed, 7 Mar 2007, Christian Hammond wrote: I'm curious what the plans are for a GTK+ 2.10.7 release. A bit late for that. See ftp://ftp.gtk.org/pub/gtk/v2.10 GTK+ version 2.10.7 was released 2007/01/05. The current 2.10 release is 2.10.9 (2007/01/22). Allin Cottrell Wake Forest

Re: GTK+ 2.10.7 plans and Icon Theme crasher bug?

2007-03-07 Thread Christian Hammond
Oh, I guess I should have dug deeper, but I figured there was nothing newer than 2.10.6, given the lack of release announcements for these versions on gtk.org. (What happened there, btw?) This makes my life a lot easier. :) Thanks! Christian On 3/7/07, Allin Cottrell [EMAIL PROTECTED] wrote:

Re: [Patch] GdkPixbuf's GIF loader should set invalid delay times to 100ms, not 20ms

2007-03-07 Thread John Millikin
The bug got closed as WONTFIX, but I feel the explanation given is insufficient. I don't think you'll be able to prove that most other software claim in any meaningful way. I've done an admittedly quick test in Windows, Linux, and Mac OS X of various applications capable of displaying images. I

Re: GTK+ Love

2007-03-07 Thread Xan Lopez
Ugh, sorry, some mail server decided to eat the mails regarding this thread and I just found out that you had answered me. On 3/6/07, Bob Murphy [EMAIL PROTECTED] wrote: I'm in California, and have a pretty flexible schedule. If we prearrange it, I could generally be available for IRC on this 9