Oh, I am Sorry. (Re: How to change a cursor style in GtkTextView? )

2002-08-30 Thread mili
Hello, Olexiy I am sorry I had not express myself very well. I mean the blinking cursor of TextView, not the cursor of a mouse. In fact, I feel the bar-cursor in TextView is two thin, and I want to make it red color to attract my attention. So it must can change the height together with fo

Re: A big bug of gtk2 ?

2002-08-30 Thread Ruben Porras
I don't have this problem with gedit, I olso haven't this problem with my own program. El vie, 30-08-2002 a las 19:24, mili escribió: > Hello, Everybody > > I find perhaps a big bug of gtk2. In any program made by gtk2, the input > widget such as entry/gtktextview can't accept char '<',

A big bug of gtk2 ?

2002-08-30 Thread mili
Hello, Everybody I find perhaps a big bug of gtk2. In any program made by gtk2, the input widget such as entry/gtktextview can't accept char '<', when you try to input a '<' in it, a '>' will be displayed! And in the same system, there's no problem with QT/KDE program. I tested it on R

How to implete UNDO of GtkTextBuffer

2002-08-30 Thread mili
Hello, Everyone Can you give me a code example about UNDO of GtkTextBuffer? Thank you, Yours, mili ___ gtk-list mailing list [EMAIL PROTECTED] http://mail.gnome.org/mailman/listinfo/gtk-list

How to implete UNDO of GtkTextBuffer

2002-08-30 Thread mili
Hello, EveryoneCan you give me a code example about UNDO of GtkTextBuffer?Thank you, Yours, mili = Ãâ·ÑÓÊÏ佡¿µÉ±¶¾´óÐж¯£¡ ·ÉÎèÄãµÄ¾«Áé ÁôסÄãµÄ¾«²Ê ¾«ÁéÈ«ÃæÊÕ·Ñ£¡ ÍøÒ×ÅÄÂôпªÕÅ È«²¿Ãâ·Ñ ÒâÍ⾪ϲ ÒâÍâÊÕ»ñ£¡

A big bug of gtk2 ?

2002-08-30 Thread mili
Hello, Everybody I find perhaps a big bug of gtk2. In any program made by gtk2, the input widget such as entry/gtktextview can't accept char '<', when you try to input a '<' in it, a '>' will be displayed! And in the same system, there's no problem with QT/KDE program. I tested it on Re

GkkEntry length and TRU64

2002-08-30 Thread Bernd Demian
Hi all, We have a little problem porting a programm which is written with gtk+2. We developed an appl in linux and porting to windows and TRU64. Under linux und wnt all seems to be ok. Under TRU64 we have following problem: In Entrys we use monospaced fonts "Courier Bold 6" and set

applications load very very slowly

2002-08-30 Thread ee00158
Boas When i run some applications, they stay very slow and the processor stay at the 100%. The applications are for example xcdroast, gimp, when i close or move a window of sawfish. The processor is a celeron 1300. Has somebody some equal experience? Amândio _

Re: [Qce-ga-devel] help on better image

2002-08-30 Thread Tuukka Toivonen
On Mon, 26 Aug 2002, simith nambiar wrote: > i have a Logitech Quickcam express up and >running, the only problem i have is the color ! >the color is a bit bluish when i plot it using >gdk_draw_raw_rgb_image using gtk . Probably you have wrong byte order, RGB vs. BGR. Try loading the d

Query

2002-08-30 Thread vishal
Hi, I have a query regarding images. How do I append an image into a clist ? I want to display an image along with other things in a clist. Regards, Vishal Kothari ([EMAIL PROTECTED]) - ___ gtk-list mailing

Re: why cannot it find the library of gtk2.0.6?

2002-08-30 Thread Tony Gale
Read the FAQ entry: http://www.gtk.org/faq/#AEN200 -tony On Thu, 2002-08-22 at 11:58, xufeng lee wrote: > 主题:why cannot it find the library of gtk2.0.6?收件人:[EMAIL PROTECTED] > > I just installed gtk+2.0.6,then I try the following command: > > $gcc hellow.c -o hellow `pkg-config --c

Re: Block focus change

2002-08-30 Thread Olexiy Avramchenko
Krzysztof Magrel wrote: >How can I not let to change focus. >I wanna to stay in current widget (GtkEntry) until the good value isn't >proper. > Hello, Try gtk_grab_add(), gtk_grab_remove() functions: First grab your entry widget, second use gtk_grab_remove in callback when you'll get the proper i

Re: Setting Drawing Area Background Color

2002-08-30 Thread Olexiy Avramchenko
Fiorillo.Paul wrote: >Hello all, > >How do I set the background color of a DrawingArea? > You can use gtk_widget_modify_base() function: --- GdkColor bg; bg.red = 5; bg.green = 4; bg.blue = 3; gtk_widget_modify_base(GTK_WIDGET(drawing_area), GTK_STATE_NORMAL, &bg); --

Re: How to change a cursor style in GtkTextView?

2002-08-30 Thread Olexiy Avramchenko
mili wrote: >Hello, Everyone > > I want to change a cursor in a GtkTextView, such as in xemacs, changing to >more pixel width and color to red. Can I? > Hello, You can create your own cursor with gdk_cursor_new_from_pixmap and set its fg and bg colours: http://developer.gnome.org/doc/API/2.0/gd