glibconfig not find

2001-06-13 Thread 김용일(yong il.kim)
please help me!! I am beginner GTK+ programming. when i compiled sample code(hello.c), there are error message usr/include/glib.h:66:glibconfig.h not being able to find glibconfig.h please inform me Your life on the net DreamWiz Free Mail @ http://www.dreamwiz.com/ DreamSearch Clic

Raising and lowering windows

2001-06-13 Thread Ralph Walden
Dear List, It is possible to minimize (iconfiy) and restore windows programmatically in GTK? [for the pygtk list] Is this supported by pygtk? How? Thank you, Ralph Walden -- Ralph E. Walden Tripos, Inc. [EMAIL PROTECTED] ___ gtk-list mailing

Re: drawing_area->window != NULL

2001-06-13 Thread Donna Martin
Your expose_event handler is of the wrong prototype. If you look at the RDP for GtkWidget you'll see the correct prototype: "expose-event" gbooleanuser_function (GtkWidget *widget, GdkEventExpose *event,

Re: PanedBox Bug?

2001-06-13 Thread Owen Taylor
David Robin <[EMAIL PROTECTED]> writes: > I Created a H-Paned Box with a notebook in each of the panels with gtk_panel_add. > When I hide the left notebook, the left panel goes hidden. But the right notebook >doesnot takes the empty space, and the gutter stays visible. Is it the expected > beh

Re: Callbacks and Signals works with Classes?

2001-06-13 Thread Andrés
Ok, thanks, but how I supposed to make request to the class members? I mean, I need the signal connect in the public part of the class, and the callback in the private class myclass { private: static void on_button_clicked (myclass *); public: gtk_signal_connect (GTK

RE: Callbacks and Signals works with Classes?

2001-06-13 Thread Ignacio Nodal
From: Paul Davis <[EMAIL PROTECTED]> > this is member function. C++ member functions are not, and never have > been, interchangeable with regular C functions. this is a common > confusion among relatively new C++ programmers (i suffered from it > myself many years ago). Hey! Where was this email

RE: Callbacks and Signals works with Classes?

2001-06-13 Thread Ignacio Nodal
From: Andrés Giraldo <[EMAIL PROTECTED]> To: Gtk List <[EMAIL PROTECTED]> Sent: Wednesday, June 13, 2001 6:39 PM Subject: Callbacks and Signals works with Classes? > Hi! > > I'm trying to create a class, this class defines a > button, on it's clicked signal it calls a callback > function that I

Re: Callbacks and Signals works with Classes?

2001-06-13 Thread Paul Davis
>no matches converting function `on_button_clicked' >to type `void (*) ()' >clases.h:400: candidates are: void >myclass::on_button_clicked this is member function. C++ member functions are not, and never have been, interchangeable with regular C functions. this is a common confusion among relativ

Callbacks and Signals works with Classes?

2001-06-13 Thread Andrés
Hi! I'm trying to create a class, this class defines a button, on it's clicked signal it calls a callback function that I want to put in the private part of the class, but it returns me... no matches converting function `on_button_clicked' to type `void (*) ()' clases.h:400: candidates are: void

Re: human language support

2001-06-13 Thread Havoc Pennington
Jim Edwards <[EMAIL PROTECTED]> writes: > 1. Can someone point me to an example of, or document about, how to > build a gtk+ gui with multi-language support. Just read the gettext info pages, GTK works the same as a non-GUI program basically. > > 2. I have an application in C with no gui and

[ANNOUNCE] Release 1.2.0 of the GNU Visual Debugger

2001-06-13 Thread Arnaud Charlet
We are pleased to announce the availability of GVD, the GNU Visual Debugger, a general purpose graphical debugger front-end licensed under the GNU General Public License. Besides providing all the features of other debugger GUIs, GVD includes advanced data display and visualization capabilities.

GL widget to ship with GTK

2001-06-13 Thread Jordi Rovira i Bonet
Hi, I think it would be a good thing if the GtkGLArea widget shipped with the default GTK distribution, as in my oppinion, it has been tested a lot and is very used. I suppose that this is not the first time someone suggests this, but i haven't seen any discussion before about

The size of a widget.

2001-06-13 Thread Roberto
How can I know the size of a widget? Have you a little little example? Thank you Roberto ___ gtk-list mailing list [EMAIL PROTECTED] http://mail.gnome.org/mailman/listinfo/gtk-list

gtk-main

2001-06-13 Thread Florian Scandella
Hi ! Is there a possibility to close the resources allocatet by gtk-main, without exiting the program ( gtk-exit ) ? It's not much ( 104 bytes ) but i hate it to have memory leaks in my programs :-) Another question : Can i call gtk_init twice ? thanx, flo

ANNOUNCE: GtkAda 1.2.12

2001-06-13 Thread Arnaud Charlet
GtkAda 1.2.12 release - We are happy to announce the availability of GtkAda 1.2.12. GtkAda is an Ada95 graphical toolkit based on Gtk+ version >= 1.2.2. It allows you to develop graphical applications in Ada95 using Gtk+. The primary download site is http://libre.act-europe.

human language support

2001-06-13 Thread Jim Edwards
Hi, I´ve been lurking here and working with glade/gtk+ for a short while now and have a couple of questions: 1. Can someone point me to an example of, or document about, how to build a gtk+ gui with multi-language support. 2. I have an application in C with no gui and one in perl with a perl/T

Re: Argument passing / GTKTextView

2001-06-13 Thread John Cupitt
Raymond Wan wrote: > My GTK+ program is getting fairly large and until now, I've had > one big global variable structure that has all the information I need. I > was wondering if there is an alternative to this. Hi Raymond, there are lots of ways to fix this. One of the easiest is to ha

how to hide discrete toggle button not hidding the button completely (button->draw_indicator hide it completely)

2001-06-13 Thread Ignacio Nodal
Is there any way to hide the discrete toggle button from a check button? I have add a pixmap to the button "gtk_container_add(GTK_CONTAINER(_boolean_button), _pixmap);" This pixmap changes its GdkPixmap according to the _boolean_button->active value (TRUE or FALSE), so I don't need the discrete t