Hi guys,
Anyone knows if the gtk support sub-windows?
Daniel Alves
___
gtk-app-devel-list mailing list
gtk-app-devel-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list
Hi, I'll try to explain my problem as clear as possible:
I'm developing a gtk/gnome application with two threads. An schema of
the application is this:
void thread_func(){
blah
blah
...
}
main(){
blah
blah
...
pthread_create(thread_func);
...
...
gtk_main();
}
thread_func is updating data per
My current project requires that I write wrappers around all common GTK
and Win32 .NET controls to give them a common functionality set. Sort
of like what wxWindows would do but much much more simple with much less
functionality.
I mention this because with the exception of the GtkComboBox contro
[I already posted this to the gtk-list, I'm not sure which list I should use]
I'll start with apologies for upcoming rant. In general I like Gtk:
I'm programming with it for a couple of years now and it's easy to
learn, reasonably fast, has many bindings, runs on windows, and is
highly themable. H
This is off-topic for the gimpwin-users list. Please ask GTK+
programming questions on gtk-app-devel-list (see
http://www.gtk.org/mailinglists.html). It's perfectly OK to ask also
Windows-specific questions there.
efl65 writes:
> I just wanna know if it's possible to cionify a window in systray
Hey List,
How on earth do I open a window containing a couple of widgets, one of
which is a ScrolledWindow?? This ScrolledWindow displays an image, and now I'd
like to fit the size of the ScrolledWindow to the size of the image in pixels.
I have read up on the geometry stuff, but it doe
Hi,
I am trying to create a context menu activated by the
right mouse button on a button in a toolbar,
doing something like
$button->signal_connect('button-press-event', sub {
my $bt = $_[1]->button;
$mnu->popup(undef,undef,undef,undef,$bt,0)if $bt == 3;};
With regular buttons, this works w