get_locale_direction


Description:


[ Version ( since = "3.12" ) ]
public TextDirection get_locale_direction ()

Get the direction of the current locale.

This is the expected reading direction for text and UI.

This function depends on the current locale being set with setlocale and will default to setting the gtk_text_dir_ltr direction otherwise. gtk_text_dir_none will never be returned.

GTK+ sets the default text direction according to the locale during init, and you should normally use get_direction or get_default_direction to obtain the current direcion.

This function is only needed rare cases when the locale is changed after GTK+ has already been initialized. In this case, you can use it to update the default text direction as follows:

setlocale (LC_ALL, new_locale);
direction = gtk_get_locale_direction ();
gtk_widget_set_default_direction (direction);

Returns:

the TextDirection of the current locale


Namespace: Gtk
Package: gtk+-3.0