Re: [Interest] Masked widget glitch

2014-01-17 Thread Sensei
So... no one is experiencing the weird behavior I've posted about? Why is this happening, in your opinion? Cheers! ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] QtMWidgets

2014-01-17 Thread Sze Howe Koh
On 18 January 2014 00:41, Igor Mironchik wrote: > > Hi. > > I'm developing QtMWidgets library now. > > QtMWidgets is a set of Qt widgets for mobile development. But this widgets > can be used in desktop apps too. > > May be anybody want to do code review or test widgets that was implemented? > >

Re: [Interest] [OS X] How to enable ARC for *.mm files (which qmake var)?

2014-01-17 Thread Thiago Macieira
On sexta-feira, 17 de janeiro de 2014 21:20:29, Till Oliver Knoll wrote: > Am 17.01.14 00:55, schrieb Thiago Macieira: > > On sexta-feira, 17 de janeiro de 2014 00:07:07, Till Oliver Knoll > > > > wrote: > >> QMAKE_CXXFLAGS += -fobjc-arc QMAKE_CFLAGS_DEBUG += -fobjc-arc > >> QMAKE_CFLAGS_RELEASE +

Re: [Interest] [OS X] How to enable ARC for *.mm files (which qmake var)?

2014-01-17 Thread Till Oliver Knoll
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Am 17.01.14 00:55, schrieb Thiago Macieira: > On sexta-feira, 17 de janeiro de 2014 00:07:07, Till Oliver Knoll > wrote: >> QMAKE_CXXFLAGS += -fobjc-arc QMAKE_CFLAGS_DEBUG += -fobjc-arc >> QMAKE_CFLAGS_RELEASE += -fobjc-arc >> > >> That is, the expe

[Interest] QInputMethodEvent

2014-01-17 Thread John Weeks
Does anyone know of a more-or-less comprehensive discussion of QInputMethodEvent? I need to implement handling in existing text editing code in our application and I prefer few surprises when our customers start to use it! Thanks, -John Weeks ___ Int

Re: [Interest] QML and video

2014-01-17 Thread Jeff Lancaster
Embedded Linux using GStreamer as multimedia backend, correct. It's a TI DM8148 processor, very similar to their OMAP processors with the SGX GPU. In Qt 4.8, it was pretty straight forward using video through QML, it lent itself to using the EGL through QPainterVideoSurface. I am thinking tha

Re: [Interest] QtMWidgets

2014-01-17 Thread Igor Mironchik
Hi. Hello, Very nice! Are you working on more widgets? I have plans for more widgets. And they will be implemented soon. On Fri, Jan 17, 2014 at 5:41 PM, Igor Mironchik mailto:igor.mironc...@gmail.com>> wrote: Hi. I'm developing QtMWidgets library now. QtMWidgets is a s

Re: [Interest] QtMWidgets

2014-01-17 Thread Pau Garcia i Quiles
Hello, Very nice! Are you working on more widgets? On Fri, Jan 17, 2014 at 5:41 PM, Igor Mironchik wrote: > Hi. > > I'm developing QtMWidgets library now. > > QtMWidgets is a set of Qt widgets for mobile development. But this widgets > can be used in desktop apps too. > > May be anybody want

Re: [Interest] Qt Quick 2.0 demo failing

2014-01-17 Thread Bob Hood
On 1/17/2014 7:16 AM, 见良 wrote: > Maybe you should look at this: https://codereview.qt-project.org/#change,75485 Wow, just caught. Ok, thanks. :) ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] libQt5designer.so not found

2014-01-17 Thread Joerg Bornemann
On 17.01.2014 07:46, nus1998 wrote: > when I use qt5.0.2, I use commands: > /../qtbase/bin/qmake > make > make install/ > in directory qttools\src\designer, I can find the libQt5Designer.so in > qttools\lib, however, for qt 5.2.0, I can only find libQt5Designer.la > which is a text file, and all t

Re: [Interest] QML and video

2014-01-17 Thread Ola Røer Thorsen
Not directly answering your question Jeff, but anyway, I recommend looking into using bc-cat on the SGX if possible. http://processors.wiki.ti.com/index.php/OpenGLES_Texture_Streaming_-_bc-cat_User_Guide You will have to write your own video render item for Qt Quick, because you need a special te

Re: [Interest] QML and video

2014-01-17 Thread Lopes Yoann
On which platform are you? Embedded Linux using GStreamer as multimedia backend? Yoann Lopes Senior Software Engineer - Digia, Qt Visit us on: http://qt.digia.com ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/lis

Re: [Interest] Unable to receive mouse move events by a QGraphicsItem.

2014-01-17 Thread Dmitrii Volosnykh
The problem solved by setting flag QGraphicsItem::ItemIsMovable on each PointItem created. No need for explicit enabling of mouse tracking for QGraphicsView. 2014/1/17 Dmitrii Volosnykh > I enabled mouse tracking for QGraphicsView: > > [code] > ui->graphicsView->setMouseTracking(true); >

Re: [Interest] Unable to receive mouse move events by a QGraphicsItem.

2014-01-17 Thread Dmitrii Volosnykh
I enabled mouse tracking for QGraphicsView: [code] ui->graphicsView->setMouseTracking(true); qDebug() << "mouse tracking:" << ui->graphicsView->hasMouseTracking(); [/code] but that does not help. 2014/1/17 Dmitrii Volosnykh > Hi, > > basically, I am trying to implement edition of poly

[Interest] Unable to receive mouse move events by a QGraphicsItem.

2014-01-17 Thread Dmitrii Volosnykh
Hi, basically, I am trying to implement edition of polyline. I construct it by a set of QGraphicsEllipseItem's connected with QGraphicsLineItem's. All of them are descendants of PolylineItem inherited from QGraphicsItem. In order to make vertices moveable I need to intercept mouse move events in