--- On Thu, 2/2/12, Emmanuel Thomas-Maurin wrote:
> I think you may use something like:
> gtk_editable_set_position(GTK_EDITABLE(entry), -1)
>
The problem is that I don't seem to have access to location_entry in
GtkFileChooser for me to use the above function. Do you know how I can get hold
o
On 02/02/2012 10:23 PM, Ferdinand Ramirez wrote:
> If I set the filename using gtk_file_chooser_set_current_name from a callback
> method for key-press-event, the filename shows up in the text entry box, but
> the cursor position is at 0 once the filename has been set. How do I set the
> cursor
If I set the filename using gtk_file_chooser_set_current_name from a callback
method for key-press-event, the filename shows up in the text entry box, but
the cursor position is at 0 once the filename has been set. How do I set the
cursor position to be at the end of the string I set as the file
Hi all.
I'm pretty new to GTK.
I'm writing a simple code and I load a XML file with the builder to
create my GUI, then I'd like to do some background actions after loaded
the builder and before the gtk_widget_show() and the gtk_main() calls.
Right now I put my code right before the two calls,