Re: Multiple post-activate signal

2009-03-24 Thread gege2061
t proxy in list) { a.block_activate_from (proxy); a.set_active (false); a.unblock_activate_from (proxy); } 2009/3/24 gege2061 > Hello, > > I use GtkUIManager and connect my main window on the 'post-activate' signal > to process the actions. > > Sometimes the s

Multiple post-activate signal

2009-03-24 Thread gege2061
Hello, I use GtkUIManager and connect my main window on the 'post-activate' signal to process the actions. Sometimes the signal is sent twice. My UIManager class: http://code.google.com/p/valide/source/browse/trunk/libvalide/uimanager.vala And the connection of the window: http://code.google.co

Re: [win32] Spawning process : Invalid argument

2008-09-21 Thread gege2061
2008/9/19 Tor Lillqvist <[EMAIL PROTECTED]> > Do you have gspawn-win32-helper.exe and > gspawn-win32-helper-console.exe in your PATH, or in the "bin" folder > under your GLib installation directory? > No, now, it's works fine. > There is little reason to insist on using the g_spawn*() API in ca

[win32] Spawning process : Invalid argument

2008-09-19 Thread gege2061
Hello, I have a specific MS Windows problem when I launch a process. The code : string command = "%s -n --sort=no --fields=-k-f-s-t+K+l+n -f - \"%s\"" .printf (Config.VALIDE_CTAGS_EXEC, filename); Process.spawn_command_line_sync (command, out output, null, null);

Re: How kill a process with its GPid?

2008-07-03 Thread gege2061
ok, thanks :) Have you planned to add this function? It's a part of bug #142591 (g_pid_terminate). 2008/7/2 Tor Lillqvist <[EMAIL PROTECTED]>: >> I create process with g_spawn_async_with_pipes. Is it possible to kill it? > > Not in a cross-platform way. On POSIX, a GPid is just a pid, so use > ki

How kill a process with its GPid?

2008-06-25 Thread gege2061
Hi, I create process with g_spawn_async_with_pipes. Is it possible to kill it? -- Nicolas Joseph Responsable de la rubrique GTK+ de developpez.com / In charge of the GTK+ section on developpez.com http://nicolasj.developpez.com ___ gtk-app-devel-list

Wysiwyg text view for html ou xml

2008-05-17 Thread gege2061
Hello, I'm looking for a widget for a wysiwyg XML editor (I have a XSL file, therefore an HTML version will be ok). Do you know where I can find it? Thanks in advance. -- Nicolas Joseph Responsable de la rubrique GTK+ de developpez.com / In charge of the GTK+ section on developpez.com http:/

How place correctly GtkVPaned separtor?

2008-03-27 Thread gege2061
Hello, I want set position of GtkVPaned, but I don't understand when set position attribut for separator correctly show when widget showing. My new class (write in Vala) : --- public class Valide.SmartVPaned : Gtk.VPaned { private Gtk.HBox hbox; private Gtk.Widget child; private const int

Re: How create new GtkBin widget

2008-03-18 Thread gege2061
2008/3/17, Eduardo M KALINOWSKI <[EMAIL PROTECTED]>: > Use a GtkNotebook with the tabs hidden. It works perfectly for that purpose. This is generally what I use, but for fun I want test implement this feature from to GtkBin. -- Nicolas Joseph Responsable de la rubrique GTK+ de developpez.com h

Re: How create new GtkBin widget

2008-03-17 Thread gege2061
2008/3/17, Emmanuele Bassi <[EMAIL PROTECTED]>: > a Bin is a specialised container that can contain just *one* child at a > time. I know, I would like create a container that can contain several widgets but just one is showing (to simulate a superposition of widgets). > if you want to implement

How create new GtkBin widget

2008-03-17 Thread gege2061
Hello, I would like create a new GtkBin widget, but this simple code (writen in Vala) don't work (label don't show) : using Gtk; public class Gtk.StackContainer : Gtk.Bin { } public class Test { public static int main (string[] args) { Gtk.init (ref args); Gtk.Window win = new Gtk.W

Re: GTK+ Windows dependancies

2008-01-31 Thread gege2061
I looked the gimp install directory and I found this files : - bin/*.dll - etc/gtk-2.0/gdk-pixbuf.loaders - etc/gtk-2.0/gtk.immodules - etc/gtk-2.0/gtkrc - etc/pango/pango.aliases - etc/pango/pango.modules - lib/gtk-2.0/2.10.0/engines/* - lib/gtk-2.0/2.10.0/immodules/* - lib/gtk-2.0/2.10.

Re: GTK+ Windows dependancies

2008-01-30 Thread gege2061
2008/1/30, Tor Lillqvist <[EMAIL PROTECTED]>: > > > I use http://ricardo.ecn.wfu.edu/~cottrell/cross-gtk/#installertutoriel for > > create inno setup script file for GTK+, but some files no longer exist > > Which files no longer exist? Where don't they exist, in the zipfiles > from ftp.gnome.org?

GTK+ Windows dependancies

2008-01-30 Thread gege2061
Hello, I use http://ricardo.ecn.wfu.edu/~cottrell/cross-gtk/#installer tutoriel for create inno setup script file for GTK+, but some files no longer exist (GTK+ 2.4.0). DLL dependencies : ; GTK+ dependencies > Source: "C:\MinGW\bin\libcairo-2.dll"; DestDir: "{app}"; Flags: > ignoreversion > Sour

Re: zooming a image on GtkWidget

2007-04-27 Thread gege2061
Hi, Here a simple example for scale an image from GtkPixbuf : http://gtk.developpez.com/faq/?page=V-B#GTK_IMAGE_redimentionne 2007/4/27, kirantoday <[EMAIL PROTECTED]>: > > Hi iam displaying the image like this using GtkImage widget. > > GtkWidget* set_wallpaper_image; >