Vicki,
Here is a more complete example of how to resolve your issue.
Compile with this command
'# gcc -Wall -g -O2 `pkg-config --libs --cflags gtk+-2.0 glib-2.0
gthread-2.0` gprogress.c'
BEGIN-CODE
#include
/* no globals */
typedef struct _INSTANCE_VALUES
{
GtkWidget *progressbar;
Evans Magaoga wrote:
> I am capturing video frames using the using video for Linux function.
>
> Is possible to display a frame (Image) in UYVY format on the screen directly
> using GTK.
>
> I am display RGB frame fine. I would like to know if I can display UYVY
> grames without converting
You can use the VTE terminal to embed a terminal into your GTK+
application: http://developer.gnome.org/arch/gnome/widgets/vte.html
- Micah Carrick
Developer - http://www.micahcarrick.com
GTK+ Forums - http://www.gtkforums.com
Frank Müller wrote:
> Hi.
>
> I'd like to embed an application
Hello everyone:
I'm using GTK+ to write an application.
In one case, I need to get the maximize window's size. I find the Reference
Manual and try some method, it doesn't work.
Does anybody can give me some ideas?
Thanks.
TualatriX!
___
gtk-app-devel-l
[EMAIL PROTECTED] wrote:
> The behavior you want should happen automatically - works for me. Certain
> widgets, like the TreeView and the TextView understand if they are nested
> within a scrolled window and scroll automatically when needed. Probably there
> is something wrong with the way you set
I am capturing video frames using the using video for Linux function.
Is possible to display a frame (Image) in UYVY format on the screen directly
using GTK.
I am display RGB frame fine. I would like to know if I can display UYVY grames
without converting it into RGB
Kind regards
Evans Mp
Hi.
I'd like to embed an application (e.g. xterm) into my gtk application. Does
anyone know a way how to do this or what functions I could use for this purpose?
Do I have to use GTK Drawing Areas? And if yes, how do I force my xterm to use
a given drawing area as window?
--
Frank Müller <[EMAI
Hi.
I'd like to embed an application (e.g. xterm) into my gtk application. Does
anyone know a way how to do this or what functions I could use for this purpose?
--
Frank Müller <[EMAIL PROTECTED]>
___
gtk-app-devel-list mailing list
gtk-app-devel-list
Hello,
I'd like to know if it is safe to walk over a model and remove rows at
the same time. I'm doing this in gnome-system-monitor in many places.
Two examples:
The first function walks a list_store and removes some rows.
But i can see that multiple passes are required to drop all the old
rows,