Re: multiple GTKentry inside a GTKnotebook

2012-06-20 Thread Olivier Sessink
can you post a larger bit of the code? it is difficult to see what's going on. b.t.w. gtk_combo_box_new_text() is deprecated, use gtk_combo_box_text_new() Olivier 2012/6/20 Rudra Banerjee bnrj.ru...@yahoo.com: Thanks for your reply jjacky. This is a mistake; but does not changeing the result.

Re: Accelmap value

2012-06-20 Thread Olivier Sessink
after a bit of testing, it seems to me that the altgr key advertises itself just as alt to gtk... Olivier 2012/6/19 drkmkzs drkm...@gmail.com: 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

Re: Accelmap value

2012-06-20 Thread drkmkzs
You mean the altgr key is interpreted as alt key ? In my tests, the Alt key is well recognized. -in my accelMap file I put AltM -in my Gtk menu, I can see next to the action AltM But altgr is not -in my accelMap : AltGrM (I tried AltGraph but behaves the same) -in my Gtk menu, I can see M (the

Re: Accelmap value

2012-06-20 Thread Emmanuel Thomas-Maurin
I may be wrong but it seems AltGr is not included in gdkkeysyms.h so it's probably ignored by GTK. On 06/20/2012 02:59 PM, drkmkzs wrote: You mean the altgr key is interpreted as alt key ? In my tests, the Alt key is well recognized. -in my accelMap file I put AltM -in my Gtk menu, I can

Re: multiple GTKentry inside a GTKnotebook

2012-06-20 Thread Rudra Banerjee
Olivier, Thanks for your interest. Pasted just below is the complete code. What I want to do with that is, as a raw commented snip by line number 106-116 that according to my selection of Book/Article in combobox, some entry will be hidden. But, for that, I need to get the data from the combo

Re: multiple GTKentry inside a GTKnotebook

2012-06-20 Thread Mariano Gaudix
I cleaned the code a bit watching the GTK API 3 http://developer.gnome.org/gtk3/3.0/GtkComboBoxText.html /***THE CODE/ #include gtk/gtk.h #include stdio.h #include string.h #include gdk/gdk.h GtkWidget *window; GtkWidget *vbox, *hbox, *combo; GtkWidget *vbox1, *hbox1, *combo1;

[no subject]

2012-06-20 Thread Kevin Mahoney
http://remyalex.com/better_in_June.php ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org https://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: multiple GTKentry inside a GTKnotebook

2012-06-20 Thread Rudra Banerjee
Thanks, but its not solving the main problem. / 2012/6/20 Rudra Banerjee bnrj.ru...@yahoo.com Olivier, Thanks for your interest. Pasted just below is the complete code.