[Interest] [SOLVED] Re: no keyboard input on old CentOS

2013-10-15 Thread Konrad Rosenbaum
Hi, in case anybody else stumbles over this: with a lot of help from Thomas Leitner the problem has been solved. The problem was that legacy versions of CentOS (4.x and 5.x; and probably other older distributions as well) contain a very subtle syntactic problem that some newer versions of xkbc

Re: [Interest] QSerialPort read issue

2013-10-15 Thread nus1998
I write a workaround function as below which now works although the actual timeout doesn't match with "TIMEOUT" since sometimes "waitForReadyRead" will return immediately without data available. I have patched "https://codereview.qt-project.org/#patch,sidebyside,67962,2,src/serialport/qserialpor

Re: [Interest] QSerialPort read issue

2013-10-15 Thread Mandeep Sandhu
You can also try doing a raw read (non Qt way) on the device using open/read system calls and check if data is actually available. That'll make sure that the OS is indeed receiving data and the problem can then be isolated to QSerialPort. HTH, -mandeep On Wed, Oct 16, 2013 at 6:25 AM, nus1998 wr

Re: [Interest] QSerialPort read issue

2013-10-15 Thread nus1998
HI Denis, Thanks for the reply. Even if I don't use "waitForReadyRead" but polling "bytesAvailable" instead, the later always returns 0 although there is data received and I can use other terminal software to display it too. Best regards, Je At 2013-10-16 01:15:36,"Denis Shienkov" wrot

Re: [Interest] Problem with Embedding Translucent windows

2013-10-15 Thread Dave Butler
I have been using xcompmgr, but It does look like it could be a compositing issue. I have looked at the source for xcompmgr, and it looks like it refuses to do composite rendering on embedded windows. I have tried to modify it, but I couldn't get a desired effect I also tried compiz, and it

Re: [Interest] Wifi support in QT5.2 alpha

2013-10-15 Thread Christian Gagneraud
On 15/10/13 23:51, Rutledge Shawn wrote: > > On 15 Oct 2013, at 10:43 AM, Ramakanthreddy Kesireddy wrote: > >> Hi, >> >> Please let me know the Qt Module(in Qt5.2 alpha) which would display list of >> WiFi access points and enable connection with access >> points(WPA/WPA2/WEP/Open Networks) > > B

[Interest] Reimplementing QGraphicsView::contextMenuEvent blocks other context menus

2013-10-15 Thread Richard Kimmel
I have observed that when I reimplement QGraphicsView::contextMenuEvent and have also reimplemented QGraphicsItem::contextMenuEvent, that the graphics view seem to block access to the individual context menus of the item(s). My workaround is as follows: void MyGraphicsView::contextMenuEvent(QCo

Re: [Interest] QSerialPort read issue

2013-10-15 Thread Denis Shienkov
Hi. Seems it is a bug, see: https://bugreports.qt-project.org/browse/QTBUG-33987 You can test this patch. Besd regards, Denis 15.10.2013 18:37, nus1998 ?: I found a strange issue, when I read from serial, first I will call "waitForReadyRead", it returns with true in specified time, how

[Interest] QSerialPort read issue

2013-10-15 Thread nus1998
I found a strange issue, when I read from serial, first I will call "waitForReadyRead", it returns with true in specified time, however, when I call "read" function thereafter, I can't read even a byte. the hardware works fine since I checked it by logic analyzer. env: win7 64, qt 5.1 mingw v

Re: [Interest] Problem with Embedding Translucent windows

2013-10-15 Thread Ing . Reynier Pupo Gómez
Hi, I think this is not a Qt problem. Check if your desktop manager can support xcompmgr and enable it. -- Linux Registered User: #515619 Linux Registered Machine: #421715 III Escuela Int

Re: [Interest] Voice recogntion support in Qt5.x

2013-10-15 Thread John Layt
On 15 October 2013 12:42, Till Oliver Knoll wrote: > > Am 15.10.2013 um 12:10 schrieb Ramakanthreddy Kesireddy > > : > > > > Hi, > > > > Please let me know if there is any support for voice recognition in Qt 5.x? > > None. Depending on what you want to achieve, Simon from KDE may be an option htt

Re: [Interest] Voice recogntion support in Qt5.x

2013-10-15 Thread Lucas Betschart
2013/10/15 Ramakanthreddy Kesireddy < ramakanthreddy.kesire...@techmahindra.com> > > Hi, > > > > Please let me know if there is any support for voice recognition in Qt 5.x? > > > > Check http://cmusphinx.sourceforge.net/ (Open Source). But the easiest way is to use Googles API, if you have interne

Re: [Interest] Wifi support in QT5.2 alpha

2013-10-15 Thread Rutledge Shawn
On 15 Oct 2013, at 10:43 AM, Ramakanthreddy Kesireddy wrote: > Hi, > > Please let me know the Qt Module(in Qt5.2 alpha) which would display list of > WiFi access points and enable connection with access points(WPA/WPA2/WEP/Open > Networks) Bearer Management? http://qt-project.org/doc/qt-5.

Re: [Interest] Wifi support in QT5.2 alpha

2013-10-15 Thread Till Oliver Knoll
Am 15.10.2013 um 10:43 schrieb Ramakanthreddy Kesireddy : > Hi, > > Please let me know the Qt Module(in Qt5.2 alpha) which would display list of > WiFi access points and enable connection with access points(WPA/WPA2/WEP/Open > Networks) None. Cheers, Oliver__

Re: [Interest] Voice recogntion support in Qt5.x

2013-10-15 Thread Till Oliver Knoll
Am 15.10.2013 um 12:10 schrieb Ramakanthreddy Kesireddy : > Hi, > > Please let me know if there is any support for voice recognition in Qt 5.x? None. Cheers, Oliver___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailm

[Interest] Voice recogntion support in Qt5.x

2013-10-15 Thread Ramakanthreddy Kesireddy
Hi, Please let me know if there is any support for voice recognition in Qt 5.x? Thanks and Regards, Ramakanth DISCLAIMER: This email (including any attachments) is intended for the sole use of the intended recipient/s and may contain material that is CONFI

[Interest] QRasterPaintEngine::alphaPenBlt()segment fault

2013-10-15 Thread Nancy Zou
Dear All: I run a qt5 case on the platform directfb with HW acceleration . I find the function void QRasterPaintEngine::alphaPenBlt(const void* src, int bpl, int depth, int rx,int ry,int w,int h) runs a segment fault because of the surface buffer address is old . How can I get the new address h

[Interest] Wifi support in QT5.2 alpha

2013-10-15 Thread Ramakanthreddy Kesireddy
Hi, Please let me know the Qt Module(in Qt5.2 alpha) which would display list of WiFi access points and enable connection with access points(WPA/WPA2/WEP/Open Networks) Thanks and Regards, Ramakanth DISCLAIMER: This email (including any attachments) is in