Re: [pygtk] Question concerning to detection of locale direction

2013-06-26 Thread Genghis Khan
As far as I understand, this code is for GTK3.

Can you provide inputs that are of GTK2?

Request is: Recognize direction of currently used GUI. (RTL or LTR)

On Mon, 15 Apr 2013 11:10:14 +0200
Timo timomli...@gmail.com wrote:

 Op 15-04-13 10:38, Genghis Khan schreef:
  Hello,
 
  How is it possible to detect alignment of currently in-use gtk20.mo
  without directly probing gtk20.mo with msgunfmt for default:RTL?
 
  I have seen the following but I am not sure if it is applied to
  PyGTK, and I am also not sure it is relevant.
  https://developer.gnome.org/gtk3/3.4/GtkEntry.html#gtk-entry-get-alignment
 
 I'm not really sure what you're asking, but I'm guessing you're 
 searching for the default text direction, right? If not, specify your 
 question.
 
 This should do it:
 
  from gi.repository import Gtk
  Gtk.Widget.get_default_direction() == Gtk.TextDirection.LTR
 True
  Gtk.Widget.set_default_direction(Gtk.TextDirection.RTL)
  button = Gtk.Button(Just for testing)
  button.get_direction() == Gtk.TextDirection.RTL
 True
 
 Timo
 
 
  Regards,
  --GK.
 
 
 ___
 pygtk mailing list pygtk@daa.com.au
 http://www.daa.com.au/mailman/listinfo/pygtk
 Read the PyGTK FAQ: http://faq.pygtk.org/


-- 
Proper English www.reddit.com/r/proper
4 teh lulz... http://email.is-not-s.ms
___
pygtk mailing list   pygtk@daa.com.au
http://www.daa.com.au/mailman/listinfo/pygtk
Read the PyGTK FAQ: http://faq.pygtk.org/


[pygtk] Question concerning to detection of locale direction

2013-04-15 Thread Genghis Khan
Hello,

How is it possible to detect alignment of currently in-use gtk20.mo
without directly probing gtk20.mo with msgunfmt for default:RTL?

I have seen the following but I am not sure if it is applied to PyGTK,
and I am also not sure it is relevant.
https://developer.gnome.org/gtk3/3.4/GtkEntry.html#gtk-entry-get-alignment

Regards,
--GK.

-- 
Proper English www.reddit.com/r/proper
4 teh lulz... http://email.is-not-s.ms
___
pygtk mailing list   pygtk@daa.com.au
http://www.daa.com.au/mailman/listinfo/pygtk
Read the PyGTK FAQ: http://faq.pygtk.org/


Re: [pygtk] Question concerning to detection of locale direction

2013-04-15 Thread Timo

Op 15-04-13 10:38, Genghis Khan schreef:

Hello,

How is it possible to detect alignment of currently in-use gtk20.mo
without directly probing gtk20.mo with msgunfmt for default:RTL?

I have seen the following but I am not sure if it is applied to PyGTK,
and I am also not sure it is relevant.
https://developer.gnome.org/gtk3/3.4/GtkEntry.html#gtk-entry-get-alignment


I'm not really sure what you're asking, but I'm guessing you're 
searching for the default text direction, right? If not, specify your 
question.


This should do it:

 from gi.repository import Gtk
 Gtk.Widget.get_default_direction() == Gtk.TextDirection.LTR
True
 Gtk.Widget.set_default_direction(Gtk.TextDirection.RTL)
 button = Gtk.Button(Just for testing)
 button.get_direction() == Gtk.TextDirection.RTL
True

Timo



Regards,
--GK.



___
pygtk mailing list   pygtk@daa.com.au
http://www.daa.com.au/mailman/listinfo/pygtk
Read the PyGTK FAQ: http://faq.pygtk.org/