[Mono-bugs] [Bug 501276] New: [PATCH] implement multi byte input support for winforms
bugzilla_noreply at novell.com
bugzilla_noreply at novell.com
Wed May 6 04:53:08 EDT 2009
http://bugzilla.novell.com/show_bug.cgi?id=501276
Summary: [PATCH] implement multi byte input support for
winforms
Classification: Mono
Product: Mono: Class Libraries
Version: SVN
Platform: Macintosh
OS/Version: Mac OS X 10.5
Status: NEW
Severity: Enhancement
Priority: P5 - None
Component: Windows.Forms
AssignedTo: mono-bugs at lists.ximian.com
ReportedBy: atsushi at ximian.com
QAContact: mono-bugs at lists.ximian.com
Found By: ---
User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US;
rv:1.9.0.10) Gecko/2009042315 Firefox/3.0.10 GTB5
We lack multi byte text input support in XplatUICarbon. Here is a quick hack
that is mostly copied from XplatUIX11 (looks like Carbon is similarly lame as
X11 on multi byte character processing).
Though I haven't fully confirmed if it is right, because mono on osx does not
show any Japanese characters at all. For example, even pasting Japanese
characters onto a TextBox does not work.
Anything can be a repro code, but here is a simple one:
using System;
using System.Windows.Forms;
public class Test : Form
{
public static void Main ()
{
Application.Run (new Test ());
}
public Test ()
{
var tb = new TextBox ();
Controls.Add (tb);
}
}
Reproducible: Always
Steps to Reproduce:
1.
2.
3.
--
Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
More information about the mono-bugs
mailing list