I am using WindowsXp & also setting Language options from the control panel.
I am very new in this environment. Could anybody help plz..........
the only response was:
At the moment i doubt this is not possible. FOX does not support the input methods API at the moment. It is solved now? Here is a little refresh of the problem: If I generate strings inside the source code it gets the utf-8 encoding as expected, but at the moment of re-assing a string to a variable doing it by the user in a #FXTextField, the string becomes one with ascii-8bit encoding. So this is a big trouble for me because Windows use CP1252 encoding in their box titles and Ruby raises an error when I try to convert ascii-8bit into CP1252, even if I try to convert it into utf-8 encoding. If I try to show up the string as it is now(with ascii-8bit encoding) in a title in a #FXDialogBox I get strange characters. The fact is I don't know how the encoding works in the internals of Fox, how the encoding works in an #FXTextField. There are rare things, for example: entering "Á" in a FXTextField, that value will be showed in a cell in a #FXTable, it shows it correctly "Á", when I show up that string in a title of a FXDialoBox I get strange characters, not "Á"; entering "Á" in a #FXTextField, that value will be showed as an item in a #FXListBox and a #FXLabel, in both it shows "á", is not the same, it's downcased. So that's why I can't comprhend the problem, is a strange behaviour. The solution? Meaby establish UTF-8 as encoding of any text typed in a #FXTextField, but I don't know how. I didn't found documentation about it. Meaby I can find another solution if knows how the internals works about the encoding. Thanks for your time, I'll will appreciate your help.
> > Hello Jeroen, people. I'm having troubles with the encoding. First of all, I'll tell you that in the app that am developing am using ñüáéíóú characters. I've realized that when the user write some of those characters and the app take it for work with it, later I come with troubles, that's because the string taked from the #FXTextField has ascii-8bit encoding, and as you can see here: http://www.sciencebuddies.org/science-fair-projects/project_ideas/CompSci_ASCII_Table.shtml the characters ñüáéíóú doesn't exist. So I've tried to change the encoding of the #FXTextField to UTF-8 but I didn't found the right Constant: http://rubydoc.info/gems/fxruby/frames , am I missing it? is somewhere hidding? nevermind. This is a little worse: I've tried to change the encoding as I said to another one, not UTF-8(because I didn't find it) but to CP850, so I did something like this:
> > #...tf = FXTextField.new(parent, 10)tf.font=(app, FXFont.new(app, "Segoe UI,90,normal,5,0,#{FONTENCODING_CP850},0"))#checking the encoding..puts tf.encoding#=> 850
> > Seems to work, but it doesn't. When I enter text in the #FXTextField, press enter and ask for the encoding, ascii-8bit appears, not cp850...
> > tf.connect(SEL_COMMAND) do |sender, selector, data| puts data.encoding #=> <Encoding:ASCII-8BIT>end
> > So I really don't know what happen when the user enter any of ñüáéíóú,... I'm getting strange errors when I handle those writed strings. Do any of you have some advice about this? will be thankfull to hear them. Is this a bug? Thanks for your time.
> > P.D.: By the way I'm using FXRuby 1.6.25, Windows 7 Proffesional 64 bits, Ruby 1.9.3p327 (2012-11-10) [i386-mingw32].
>
> I can't speak for Ruby, but FOX should support UTF-8.
>
> For all this to work, ensure that your FOX library is compiled with -DUNICODE=1
> otherwise the interface to Win32 won't support unicode.
>
>
>
>
>
>
> -- JVZ
>
>
>
> +----------------------------------------------------------------------------+
> | Copyright (C) 09:10 02/14/2013 Jeroen van der Zijp. All Rights Reserved. |
> +----------------------------------------------------------------------------+
Thank you Jeroen for answer. Sadly seems that there's no maintainer of the framework for Ruby, and I don't know how to check if the gem we(the users of Ruby) download is compiled with -DUNICODE=1, Ruby is my first language and I'm kind of noob related to C++. I'm in middle of a project, hope to get some answer about if FXRuby is compiled with that option, if not if it can be fixed, etc. Does anybody knows that?
_______________________________________________ fxruby-users mailing list fxruby...@rubyforge.org http://rubyforge.org/mailman/listinfo/fxruby-users
Now I've tried the pre-release of the 1.6.26 and works as a love, this problem was scaring me but not anymore.