Update widget without re-enetring to event loop.

2005-12-04 Thread Deekshit Mantampady
Hi all, I have a very basic question. Is there any way to update the window/widget without re-enetring the event loop. In my application, I have a table with some rows. On clicking on a button It will process each of the row. Then I need to update one of the column with the status of the

Help system library using GTK

2005-11-16 Thread Deekshit Mantampady
Hi all, I want to have a help subsystem in my application, and i am using GTK.(No GNOME APIs). But I couldn't find any help system package (like winhelp). I was looking for the one, written in GTK and I should be able to compile the source in windows and Linux. I tried to write my own Help

help regarding gtk_window_default

2005-10-26 Thread Deekshit Mantampady
Hi all, I have been trying to make a button on my WINDOW a default one, so that even if my foxus is on entry field, pressing ENTER should activate the button. I have try the following peice of code. But it didn't work. Please help me.

Re: Building a GUI-Application

2005-10-19 Thread Deekshit Mantampady
You can fixed layout (GtkFixed). For objects if you have a very few colors, You can use pixmap (.xpm) files. Thanks Deekshit M On 10/19/05, Kranz, Willi [EMAIL PROTECTED] wrote: Hallo! I want to build a new GUI-Application under Linux with GTK. First I built an easy Application under

Re: How to display Indian language text on a button(Urgent)

2005-10-19 Thread Deekshit Mantampady
Hi Lalith, Try gettext ... http://www.gnu.org/software/gettext/ Thanks DM On 10/19/05, Zeeshan Ali [EMAIL PROTECTED] wrote: On 10/19/05, Lalit Kumar [EMAIL PROTECTED] wrote: Hi, Hello! Sample code for displaying hindi text or any Indian language text will help me a lot.

delete event for contained widget does not work

2005-10-02 Thread Deekshit Mantampady
Hi all, I have an entry in window with containment as window vbox hbox entry. (Code pasted below). I registered for window delete_event, I call destroy on window, in the callback. I was expecting it to destroy the etry also. In that case destroy/delete event callback for entry should be

Re: delete event for contained widget does not work

2005-10-02 Thread Deekshit Mantampady
Thank you very much. That worked. On 10/2/05, Daniel Pekelharing [EMAIL PROTECTED] wrote: Hi, I notice that you're connecting the entry with destroy_event, I think you're wanting the destroy signal... Hope this helps - Daniel On Sun, 2005-10-02 at 11:39 +0530, Deekshit Mantampady wrote

Setting cusros position does not work in text_changed callback

2005-10-02 Thread Deekshit Mantampady
Hi all, I am not able to set the cursor positon in an entry widget using gtk_editable_set_position(), inside a textchanged callback. In the following code, I always set the cursor postion to 0, for each text changed. But it does not happen. Please help me. Thanks in advance Deekshit M

coloring vbox/scrolled window

2005-09-24 Thread Deekshit Mantampady
Hi all, witha few of of VBOX scrolled window etc. Here is the containment. vbox1 scl vbox2 button. I want to make the background area of button to be area. That is the remaining uncovered part of scl/vbox2 should be in read. I tried to set the BG/FG color for scl/vbox2 it didn't work.

Re: gtk_window_set_default does not work (for me)

2005-09-18 Thread Deekshit Mantampady
Does it mean, I cannot do this on a window. I mean do I need to use GtkDialog instead of window.. Thanks Deekshith M On 9/13/05, Christian Neumair [EMAIL PROTECTED] wrote: Am Montag, den 12.09.2005, 18:11 +0530 schrieb Deekshit Mantampady: Hi all, I have a window where I want to make

shortcut keys for buttons.

2005-09-18 Thread Deekshit Mantampady
Hi all, I have a window, which has some buttons. Say OK, cancel and help. I want to activate one of the button by ppressing a short cut key. Say, when I press, F10, OK should be actvated. Pressing ESC should activate cacnel and F1 should activate Help button. Any help...? Thanks in advance

gtk_window_set_default does not work (for me)

2005-09-12 Thread Deekshit Mantampady
Hi all, I have a window where I want to make the OK button to repond to enter keys. I used gtk_window_set_default(window, okbtn); I also set GTK_CAN_DEFAULT flag before using that. But pressing the entre key does not work. Any help...? I am using GTK 2.4.x on windows. Xp Thanks Deekshit M

Re: Local on GTK windows

2005-09-05 Thread Deekshit Mantampady
, Any help? On 9/2/05, Tor Lillqvist [EMAIL PROTECTED] wrote: Deekshit Mantampady writes: I wanted to know what all Locales are supported on GTK-Win32. To to be specific Indian languages. Locales in what sense? The same GTK+ message catalogs are available (in a full installation

Local on GTK windows

2005-09-01 Thread Deekshit Mantampady
Hi all, I wanted to know what all Locales are supported on GTK-Win32. To to be specific Indian languages. I see some threads in this list. But not useful for me. Thanks Deekshit M ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org

Re: How to insert GtkLabel inside GtkButton ?

2005-04-05 Thread Deekshit Mantampady
How about gtk_button_new_with_label(Test); or gtk_container_add(GTK_CONTAINER(button), my_gtk_label) Thanks Deekshit On Apr 5, 2005 12:13 PM, dimitri PIEL [EMAIL PROTECTED] wrote: Hi Could you tell me how to insert a child like a GtkLabel inside a GtkButton ? Should I use the image