Accelmap value

2012-06-19 Thread drkmkzs
Hi, I'm using a gtk application with an accelmap file. All shortcuts with Control, Shift, or Alt are currently available. But if I want to add some shortcuts with AltGr key (key on the right of the spacebar) it doesn't work (I think i'm not using the good syntax in the accelmap because in the

Re: multiple GTKentry inside a GTKnotebook

2012-06-19 Thread Rudra Banerjee
Yeti, Thanks for your help. That is working now. I have one more problem. I need to take the data from the combo box. So after the combo box, I added the line: gchar *bibtype = gtk_combo_box_get_active_text(GTK_COMBO_BOX(widget)); fprintf(stdout, %s, bibtype); So, that part looks like combo

Re: multiple GTKentry inside a GTKnotebook

2012-06-19 Thread jjacky
On 06/19/12 21:43, Rudra Banerjee wrote: Yeti, Thanks for your help. That is working now. I have one more problem. I need to take the data from the combo box. So after the combo box, I added the line: gchar *bibtype = gtk_combo_box_get_active_text(GTK_COMBO_BOX(widget)); fprintf(stdout,

Re: multiple GTKentry inside a GTKnotebook

2012-06-19 Thread Rudra Banerjee
Thanks for your reply jjacky. This is a mistake; but does not changeing the result. On Tue, 2012-06-19 at 22:13 +0200, jjacky wrote: On 06/19/12 21:43, Rudra Banerjee wrote: Yeti, Thanks for your help. That is working now. it should probably be GTK_COMBO_BOX(combo), not GTK_COMBO_BOX(widget)