sharing widgets between processes

2005-10-29 Thread david::
hello all I have two different processes, one written in C and one written in Java. I would like the Java process to use some widgets owned by the C process. the question is simple, is it possible? thanks ___ gtk-app-devel-list mailing list

Removing a GtkMenuItem?

2005-10-29 Thread Daniel Pekelharing
Hi all, What's the correct way to remove a GtkMenuItem from a constructed menu? calling gtk_widget_destroy on the item seems to result in random crashes.. Thanks.. -- Daniel Pekelharing [EMAIL PROTECTED] ___ gtk-app-devel-list mailing list

Re: Removing a GtkMenuItem?

2005-10-29 Thread Daniel Pekelharing
On Sat, 2005-10-29 at 18:02 +0200, Daniel Pekelharing wrote: Hi all, What's the correct way to remove a GtkMenuItem from a constructed menu? calling gtk_widget_destroy on the item seems to result in random crashes.. Thanks.. Oops... it seems that gtk_widget_destroy works fine.. I had

Re: Changing the GtkButton appearence

2005-10-29 Thread Alem Dain
This is the province of the GTK theme, usually defined in resource files. The philosophy is that the user -- not the programmer -- decides how his buttons should look. That being said, there are plenty of ways around it. The first is to enforce the use of a particular theme, either by

Compile gtkextra

2005-10-29 Thread Joseph Turner
Hello, I'm trying to compile gtk+extra-2.1.1 on the following:- Platform: Win32 (Cygwin) 1-5.18.1 gcc version 3.4.4 and I'm getting the errors (pasted at the end) Other posts indicate issue with glib, but no specifics. I tried looking at the header files, to see if there was something obvious

problems with window size

2005-10-29 Thread Dan McMahill
Hi, I have what is I'm sure is a fairly simple question. I have a dialog box created with window = gtk_dialog_new(); Then I create a table containing a bunch of label widgets and stick it in the window with gtk_box_pack_start (GTK_BOX (GTK_DIALOG (window)-vbox),

Re: Only numeric chars for GtkEntry

2005-10-29 Thread antonio giulio
is there a way to input only numeric characters in GtkEntry? Example: if I press 'a' or 'b' or ' ' or '?' etc., they are not printed, but 0-9. Hi, I've solved from gtk FAQ, sorry. bye Giulio ___ gtk-list mailing list gtk-list@gnome.org

GTK equivalent to Qt Motif Extension

2005-10-29 Thread Dirkx, Jason J.
I am evaluating GUI toolkits for my project and I am wrapping up an evaluation of Qt (with which, I have to say, I was pretty impressed). Qt offers a module to allow for a gradual conversion of Motif code while developing Qt Widgets. Basically it allows for Motif and Qt widgets to

Re: should I use wxWidgets or is GTK+ enough?

2005-10-29 Thread Samuel Yin
If you want write the GUI code once, and run it at Windows or Linux without modifing anything, you can use Tkinter/Tix module in Python. But if your GUI app is complicated, python is not suitable because it is not as fast as gtk. Thanks and Regards Samuel Yin Jose Hevia wrote: I

gdk_draw_line Start/End point

2005-10-29 Thread Mattias Gaertner
Hi all, I searched the gtk site, the internet and the archive, but I didn't found any clue. When drawing under linux/X with gdk_draw_line a line from 0,0 to 2,2, the point at 2,2 is missing. When drawing with gdk_draw_line a line from 2,2 to 0,4 the point at 2,2 is still missing. It seems

Re: should I use wxWidgets or is GTK+ enough?

2005-10-29 Thread Benjamin Lau Wei Yii
Or you could also use pygtk, the Python bindings to GTK+. It's also easily gotten for Windows at http://www.pcpm.ucl.ac.be/~gustin/win32_ports/index.html PyGTK: www.pygtk.org Benjamin Lau __ Meet your soulmate! Yahoo! Asia presents Meetic -

May gdk_pixmap_ref if GDK_IS_PIXMAP returns true?

2005-10-29 Thread Clemens Eisserer
Hi there, I am currently hacing problems with running some GTK based code on my Nokia770 (based on the maemo platform) which works perfektly on x86, but fails on nokias customized ARM build. I tried already to get some informations on their lists but it seems core-devs are there :-( The

Re: should I use wxWidgets or is GTK+ enough?

2005-10-29 Thread Gian Mario Tagliaretti
2005/10/29, Samuel Yin [EMAIL PROTECTED]: But if your GUI app is complicated, python is not suitable because it is not as fast as gtk. Python is a programming language and GTK is a Graphical User Interface Toolkit, there is no point in compare the speed between those 2 cheers -- Gian Mario

Announcing Gtk2::Ex::GraphViz - 0.01

2005-10-29 Thread ofey aikon
Gtk2::Ex::GraphViz is a Gtk2 wrapper to the GraphViz.pm module. GraphViz package can be used to produce good-looking network graphs. Wrapping with Gtk2 allows those graph images to respond to events such as mouse-over, clicked etc. By implementing callbacks to the respective signals, you can

Re: Announcing Gtk2::Ex::GraphViz - 0.01

2005-10-29 Thread ofey aikon
The package is available in CPAN. http://search.cpan.org/~ofeyaikon/Gtk2-Ex-GraphViz-0.01/ The source can also be found at http://cvs.sourceforge.net/viewcvs.py/gtk2-perl-ex/Gtk2-Ex/GraphViz/ On 10/29/05, ofey aikon [EMAIL PROTECTED] wrote: Gtk2::Ex::GraphViz is a Gtk2 wrapper to the