Re: [Development] Stop insertion QTextEdit unicode character.

2016-05-10 Thread Simon Hausmann
PM To: development@qt-project.org Subject: Re: [Development] Stop insertion QTextEdit unicode character. On segunda-feira, 9 de maio de 2016 14:59:16 PDT kang joni wrote: > If you right click on editable QLineEdit or QTextEdit > there should be "Insert Unicode control > character

Re: [Development] Stop insertion QTextEdit unicode character.

2016-05-09 Thread Thiago Macieira
On segunda-feira, 9 de maio de 2016 14:59:16 PDT kang joni wrote: > If you right click on editable QLineEdit or QTextEdit > there should be "Insert Unicode control > character" I don't see that option. Is that OS-specific? -- Thiago Macieira - thiago.macieira (AT) intel.com Software Architect

Re: [Development] Stop insertion QTextEdit unicode character.

2016-05-09 Thread Alexander Nassian
You see the condition in line 2288: d->interactionFlags & Qt::TextEditable) && QGuiApplication::styleHints()->useRtlExtensions() So, right-to-left writing direction must be active and the input field must be editable. Are you using or do you need RTL writing? If not, you could just disable it a

Re: [Development] Stop insertion QTextEdit unicode character.

2016-05-09 Thread kang joni
Sorry for my bad English, Quick grep-ing in qtbase 5.6 src/widgets/widgets/qwidgettextcontrol.cpp at line 3254 just found my case here. I don't know how to use this. And I didnt aware any of docs explaining this. If you right click on editable QLineEdit or QTextEdit there should be "Insert Unicode

Re: [Development] Stop insertion QTextEdit unicode character.

2016-05-08 Thread Thiago Macieira
On segunda-feira, 9 de maio de 2016 06:52:27 PDT kang joni wrote: > I accidentally was clicking insert Unicode character menu in > QTextEdit. How to switch normal again to use ASCII character? I > couldn't type any ASCII Character after clicking > insert unicode character. My keyboard layout is US

[Development] Stop insertion QTextEdit unicode character.

2016-05-08 Thread kang joni
I accidentally was clicking insert Unicode character menu in QTextEdit. How to switch normal again to use ASCII character? I couldn't type any ASCII Character after clicking insert unicode character. My keyboard layout is US letter. And I didn't saw any docs explaining this features in either QText