[INIMSS] GtkCList :: Wrapping Text in Cells

2002-01-31 Thread Dino Cherian K
Hi, How can I make the text in the cell of GtkCList wrap-around within it? If it can't be done with GtkCList, then which widget should I use for the purpose? Thanks Dino Cherian K _ Do You Yahoo!? Get your free @yahoo.com address at http:

Re: Send signal?

2002-01-31 Thread Vahid Zahiri
hi ishan i can execute callbackfunction :), but i want get selection text in other applications by button3 click on my entry. but i find better way (on GTK world)to do this. thanks Vahid --- Ishan <[EMAIL PROTECTED]> wrote: > Why on earth would you want the computer to think > that way

Re: drawing a line

2002-01-31 Thread Shiraz Baig
Hi, Mr Sven Neumann has given an excellent answer. Now I understand the difference between two functions (gtk_signal_connect and gtk_signal_connect_object). I changed the parameters as suggested by Mr Neumann and viola! I am drawing the lines without "expose" event and only with pushing a butt

Re: Does GTK+ support OpenGL and Inventor ?

2002-01-31 Thread Ralf Corsepius
Am Don, 2002-01-31 um 20.07 schrieb Lin, Lynn: > Hi there, > > If I create a GtkWidget* gtk_drawing_area_new, can I call OpenGL or > Inventor routines to draw 3D graphics on the GTK drawing area widget ? If > yes, how to do it ? There exist several more or less immature ports of InventorXt to

Re: GtkListStore getting values in Gtk2.0

2002-01-31 Thread Havoc Pennington
Andreas Scherf <[EMAIL PROTECTED]> writes: > Hello, im porting some apps to Gtk+2.0, i wondering how to get values > back from a GtkListStore ? I saw only functions to add or del values > inside the List but no function to get the data back.What i want is to > print a GtkTreeView so istored the d

Re: GtkEntry color Background

2002-01-31 Thread Havoc Pennington
"Isaac Pernas" <[EMAIL PROTECTED]> writes: > Estoy intentando cambiar el fondo d un GtkEntry pero por más que lo > intento no me deja. Nosé que estoy haciendo mal. La versión de mis > librerías Gtk es la 1.2. > I'm trying to change de background color for my GtkEntry but i can´t. > I don't know w

Re: HELP: Compiling GTK+ Applications on UNIX

2002-01-31 Thread Havoc Pennington
Paul Davis <[EMAIL PROTECTED]> writes: > i sincerely hope that in a future release of the 1.2 series, > pkg-config gets added. > Note that pkg-config has some dubious "legacy hacks" in it - try "pkg-config --cflags gtk" for example. Havoc ___ gtk-l

Re: drawing a line

2002-01-31 Thread Shiraz Baig
Hi, Thanks for the reply. But I have not really understood the answer. My doubt is that if Drawing the line with the timer function does not need any "expose" event. Then why is pushing_button needing it? Why can't pushing_button also draw the line without expose_event? Thanks. Shiraz --- [EMAI

how to change focus problem in two tables?

2002-01-31 Thread 黃慶 Kason Huang
Title: how to change focus problem in two tables? hello: do anyone tell me how to change focus of buttons in two GtkTable with "up down left right"key on the condition of no mouse supporting.if a easy way? i find i could change focus in one table,not happened in two tables. eg:buttons in

What event has happened?

2002-01-31 Thread hzeng
Hi, At the virtual screen of XWindow,when I do nothing to my app window and only move the mouse, so my app window will move out of the view port bordered by the monitor. In this situation I want to do some thing in my app, but how can I get the signal, or what event happen? Thank

Re: How put text in pixmap? How put vertical (rotate 90 degrees) text?

2002-01-31 Thread Paul Davis
>How put text in pixmap, horizontal and vertical text??? i meant to add: you should probably look at the source code for the Gnome or Gtk Canvas objects, which allow for arbitrary scaling and rotation of text. the code is not pretty, however, and its computationally expensive. --p __

Re: How put text in pixmap? How put vertical (rotate 90 degrees) text?

2002-01-31 Thread Paul Davis
>How put text in pixmap, horizontal and vertical text??? you have no choice but to draw the text 1 character at a time. XWindow has no primitives for drawing anything except horizontally arranged text. --p ___ gtk-list mailing list [EMAIL PROTECTED] ht

How put text in pixmap? How put vertical (rotate 90 degrees) text?

2002-01-31 Thread Chris Seberino
How put text in pixmap, horizontal and vertical text??? Chris -- === | Dr. Christian Seberino || (619) 553-7940 (office) | | SPAWARSYSCEN 2363 || (619) 553-2836 (fax)| | 53560 HULL ST || | | SAN D

Re: Please help---- Understand Concepts

2002-01-31 Thread Skip Montanaro
Lynn> What is the different between WxWindow and GTK+ ? Are they Lynn> related ? wxWindows is a cross-platform GUI library that is ported on top of the native toolkit on the various platforms on which it runs. This has the advantage that each application looks and behaves like other ap

Re: Does GTK+ support OpenGL and Inventor ?

2002-01-31 Thread rsteinke
From: "Lin, Lynn" <[EMAIL PROTECTED]> > > Hi there, > > If I create a GtkWidget* gtk_drawing_area_new, can I call OpenGL or > Inventor routines to draw 3D graphics on the GTK drawing area widget ? If > yes, how to do it ? I'm aware of this project: http://www.student.oulu.fi/~jlof/gtkglarea/

Does GTK+ support OpenGL and Inventor ?

2002-01-31 Thread Lin, Lynn
Hi there, If I create a GtkWidget* gtk_drawing_area_new, can I call OpenGL or Inventor routines to draw 3D graphics on the GTK drawing area widget ? If yes, how to do it ? Thank you :) Lynn ___ gtk-list mailing list [EMAIL PROTECTED] http://mail.gn

Re: Send signal?

2002-01-31 Thread Ishan
Why on earth would you want the computer to think that way? Better execute the callback function which you have written for the clicked signal of your button. Hope this helps, Ishan > Hi All > I want send a click signal to a widget, > is it possible? > I want widget thinked mouse click on it. >

how to draw on a pixbuf?

2002-01-31 Thread Luis Velez
Hi, If I want to draw directly into a pixbuf is there any way to do so? If not, must I convert it to something else and then draw on it and bring it back to pixbuf? If anybody knows I would appreciate the help Thanks. ___ gtk-list mailing list [EMAIL PR

GtkListStore getting values in Gtk2.0

2002-01-31 Thread Andreas Scherf
Hello, im porting some apps to Gtk+2.0, i wondering how to get values back from a GtkListStore ? I saw only functions to add or del values inside the List but no function to get the data back.What i want is to print a GtkTreeView so istored the data inside a GtkListStore but after showing them i c

Re: drawing a line

2002-01-31 Thread John . Cupitt
Shiraz Baig wrote: > Hi, > I want to draw a line when I push a button. I have > written the following code. It draws line thru two > alternative signal commands. > a. Thru the timer function. > b. Thru the push button. > > It works with the timer function. But it does not work > with the

Re: drawing a line

2002-01-31 Thread Sven Neumann
Hi, Shiraz Baig <[EMAIL PROTECTED]> writes: > I want to draw a line when I push a button. I have > written the following code. It draws line thru two > alternative signal commands. > a. Thru the timer function. > b. Thru the push button. > > It works with the timer function. But it does not wor

drawing a line

2002-01-31 Thread Shiraz Baig
Hi, I want to draw a line when I push a button. I have written the following code. It draws line thru two alternative signal commands. a. Thru the timer function. b. Thru the push button. It works with the timer function. But it does not work with the push button. Question: Can anyone suggest h

Re: gtk+ 1.2 and gtk+ 1.3

2002-01-31 Thread Sven Neumann
Hi, "satyajit kanungo" <[EMAIL PROTECTED]> writes: > Yes , you can install both the libraries on the same system > and work on both the version . you can change your LD_LIBRARY_PATH and BIN path > accordingly to compile the software with different version . you don't even need to install