Re: glade

2004-05-19 Thread Carlo
[EMAIL PROTECTED] ha scritto lo scorso 18/05/04 14.40: I'm using glade to develop with gtk... What are the steps to compile correctly??? Thanks for the answers Give Anjuta a chance; it's great with Glade-2. ciao ___ gtk-list mailing list [EMAIL PROTECTED

Default font question

2004-05-19 Thread Andrew E. Makeev
Hi Could someone explain, please, how should I to determine default font name for widget where it's applicable (label, textview, etc)? I have used these methods: 1. Using GtkStyle: Gtk::Label ().get_style ()->get_font ().to_string () - returned "Sans 10" 2. Using GtkRcStyle: Gtk::Label ().get_mo

Re: glade

2004-05-19 Thread Diego Zuccato
Carlo wrote: > > I'm using glade to develop with gtk... What are the steps to compile correctly??? > Give Anjuta a chance; it's great with Glade-2. Yep. But it (Glade-2) lacks support for new widgets in Gtk+2.4.x :-( BTW, I'd suggest using libglade instead of the code generated by glade. This way

Re: which IDE do u suggest to use to develop gtk applicacions?

2004-05-19 Thread Jean Bréfort
Le lun 17/05/2004 Ã 19:41, [EMAIL PROTECTED] a Ãcrit : > On Sun, May 16, 2004 at 09:53:57AM +0200, Jean BrÃfort wrote: > > > > which IDE do you suggest to use to develop gtk applicacions? I am still > > > learning gtk and i right now i compile my .c files using the gcc > > > compiler in the konsol

Gtk-CRITICAL : GDK_IS_SCREEN failed

2004-05-19 Thread c adfand
Does anyone know what these errors mean?   -- (process:26698): Gtk-CRITICAL **: file gtksettings.c: line 448 (gtk_settings_get_for_screen): assertion `GDK_IS_SCREEN (screen)' failed (process:26698): GLib-GObject-CRITICAL **: file gobject.c: line 1222 (g_object_get):

Installation Error

2004-05-19 Thread Pramod Patangay
Hi, This is my first mail to this list so my problem might have been faced by others previously. If that is so please provide the link. I am trying to install GTK on solaris8. Before that I have to install Glib,Pango and atk. While building GLIb, I get an error. I am using these variables exp

Re: which IDE do u suggest to use to develop gtk applicacions?

2004-05-19 Thread Flavio Alberto Lopes Soares
Em Seg, 2004-05-17 às 14:56, Jean Bréfort escreveu: > > > > > > I just took a look at Anjuta. I'm not entirely sure what it gives me > > over just using glade. Also glade-2 works with gtk 2, but it seems as > > if Anjuta is gtk 1. > > Recent version of Anjuta support gtk-2. Glade can be used to

Re: which IDE do u suggest to use to develop gtk applicacions?

2004-05-19 Thread Jean Bréfort
Le mer 19/05/2004 Ã 18:56, Flavio Alberto Lopes Soares a Ãcrit : > Em Seg, 2004-05-17 Ãs 14:56, Jean BrÃfort escreveu: > > > > > > > > > I just took a look at Anjuta. I'm not entirely sure what it gives me > > > over just using glade. Also glade-2 works with gtk 2, but it seems as > > > if Anjuta

Problem With Installing GTK.

2004-05-19 Thread Shahin Saadati
Hi, I am having a problem when trying to install GTK+-2.0 on my linux machine. I installed the following packages in order: Glib Fontconfig Render Xrender Xft Pango Atk Gtk But GTK complains about not having Pangoxft. I know that in order to get that, I have to intall Freetype before Pango. But w

How to Play sounds?

2004-05-19 Thread Jose Ricardo Meda Araujo
Hi: I always have wondered how to play sounds(.wav or mp3 files) in gtk applicacions. Which library do you suggest should i use? Or can anyone give some kind of clue or advice where to start looking. Thanks Ricardo ___ gtk-list mailing list [EMAIL PRO

Re: Default font question

2004-05-19 Thread Daniel Elstner
Am Mi, den 19.05.2004 um 14:45 Uhr +0400 schrieb Andrew E. Makeev: > Hi > > Could someone explain, please, how should I to determine default font > name for widget where it's applicable (label, textview, etc)? > I have used these methods: > > 1. Using GtkStyle: Gtk::Label ().get_style ()->get_fo

Re: Win32 Modal dialog problem

2004-05-19 Thread Clive Levinson
Purely as a workaround, call gtk_window_presenton your main window from a callback connected to the "destroy" event on the dialog. Something like this (untested): void on_dialog_destroyed(GtkWidget *dialog, gpointer data) { gtk_window_present(GTK_WINDOW(data)); } ... g_signal_connect(myDlg

Re: GTk/Glib 2.2 Install Problem

2004-05-19 Thread jason healy
Thanks for the suggestions. This is what I eventually tried (unfortunately) First I set LD_LIBRARY_PATH to /usr/local/lib and executed ldconfig I then recompiled my test program and it now picks up the latest version of Glib. I then built and installed ATK and GTK and repeated the above steps. My

Re: Win32 Modal dialog problem

2004-05-19 Thread Tim Evans
Clive Levinson wrote: Purely as a workaround, call gtk_window_presenton your main window from a callback connected to the "destroy" event on the dialog. Something like this (untested): void on_dialog_destroyed(GtkWidget *dialog, gpointer data) { gtk_window_present(GTK_WINDOW(data)); } ...