Re: [Interest] Is moc obsolete?

2015-07-08 Thread Igor Mironchik
Hi, On 08.07.2015 10:12, Dmitry Volosnykh wrote: Igor, there was quite a hot discussion of this project in development mailing list. Follow here: http://lists.qt-project.org/pipermail/development/2015-June/022164.html Interesting, but I didn't find answer to my main question - about Qt

Re: [Interest] Image and Canvas get pixelated on retina iOS devices

2015-07-08 Thread Curtis Mitch
Probably this one: https://bugreports.qt.io/browse/QTBUG-37095 -Original Message- From: interest-bounces+mitch.curtis=theqtcompany@qt-project.org [mailto:interest-bounces+mitch.curtis=theqtcompany@qt-project.org] On Behalf Of jh...@gmx.com Sent: Wednesday, 8 July 2015 2:28

[Interest] Image and Canvas get pixelated on retina iOS devices

2015-07-08 Thread Nuno Santos
Hi, On my app, Images and Canvas gets pixelated on iOS retina devices. Is this a bug? Or do I need to do anything additionally? Images don’t behave this way on high resolution Android devices. Please look the attached screenshot. Nuno Santos Founder / CEO / CTO www.imaginando.pt +351 91 621

Re: [Interest] Is moc obsolete?

2015-07-08 Thread Konstantin Tokarev
08.07.2015, 10:59, André Somers an...@familiesomers.nl: Igor Mironchik schreef op 8-7-2015 om 09:40: Hi, On 08.07.2015 10:12, Dmitry Volosnykh wrote: Igor, there was quite a hot discussion of this project in development mailing list. Follow here: 

Re: [Interest] Image and Canvas get pixelated on retina iOS devices

2015-07-08 Thread Nuno Santos
I have added this to the .plist: keyNSHighResolutionCapable/key true / But it didn’t made any difference… Nuno Santos Founder / CEO / CTO www.imaginando.pt +351 91 621 69 62 On 08 Jul 2015, at 12:32, Daniel França daniel.fra...@gmail.com wrote: Maybe you need to add NSHighResolutionCapable

Re: [Interest] Deploy on Winphone

2015-07-08 Thread Federico Buti
Hi Andrew, uuidgen is correctly in the path BUT I had generated the project before adding it, invalidating the cache file, as you've guessed. Despite I'm used to polish everything when things turn out strange, like in this case, I didn't noticed the files generated in the source tree. My bad!

Re: [Interest] Image and Canvas get pixelated on retina iOS devices

2015-07-08 Thread jhihn
There is already a bug filed. One person reported you could render the canvas at 2x then scale back down to 1x. The canvas does not take into account the devicePixelRatio -Original message- Sent: Wednesday, 08 July 2015 at 13:49:36 From: Nuno Santos nunosan...@imaginando.pt To:

Re: [Interest] On-screen keyboard on Windows desktop

2015-07-08 Thread Curtis Mitch
As a quick workaround, you could remove the plugin (plugins/platforminputcontexts/libqtvirtualkeyboardplugin.so). I just realised that I unchecked the Enterprise Add-ons when I installed Qt, so I’ll try installing them as well and then see if it happens. From:

Re: [Interest] Deploy on Winphone

2015-07-08 Thread Andrew Knight
On 07/08/2015 01:05 PM, Andrew Knight wrote: Hi Federico, On 07/08/2015 12:54 PM, Federico Buti wrote: Hi list, I'm currently working on a mobile app. Android/iOS deploy run smoothy and I'm in the process of deploying also to WinPhone. For the purpose, I installed the winphone_arm Kit on

[Interest] QOpenGLWidget noticeable anti-alising halo around text, bitmaps

2015-07-08 Thread Pavel Koshevoy
Hi, I am porting existing Qt4-based code to Qt5 (5.5.0), switching from QGLWidget to QOpenGLWidget. In my app I render a bunch of text and bitmaps into a transparent QImage. The QImage is then alpha-blended in OpenGL on top of video frame (rendered with OpenGL with texture buffer

[Interest] Deploy on Winphone

2015-07-08 Thread Federico Buti
Hi list, I'm currently working on a mobile app. Android/iOS deploy run smoothy and I'm in the process of deploying also to WinPhone. For the purpose, I installed the winphone_arm Kit on my system; Qt Creator correctly recognised the toolchain and created the corresponding kit. After that I have

Re: [Interest] Qt 5.5 on VS2013 no longer able to debug Qt code

2015-07-08 Thread Koehne Kai
-Original Message- From: interest-bounces+kai.koehne=theqtcompany@qt-project.org [mailto:interest-bounces+kai.koehne=theqtcompany@qt-project.org] On Behalf Of Thomas Sevaldrud Sent: Wednesday, July 08, 2015 12:22 PM To: Interest@qt-project.org Subject: [Interest] Qt 5.5 on

Re: [Interest] Is moc obsolete?

2015-07-08 Thread Igor Mironchik
On 08.07.2015 10:58, André Somers wrote: Igor Mironchik schreef op 8-7-2015 om 09:40: Hi, On 08.07.2015 10:12, Dmitry Volosnykh wrote: Igor, there was quite a hot discussion of this project in development mailing list. Follow here:

Re: [Interest] Is moc obsolete?

2015-07-08 Thread André Somers
Igor Mironchik schreef op 8-7-2015 om 09:40: Hi, On 08.07.2015 10:12, Dmitry Volosnykh wrote: Igor, there was quite a hot discussion of this project in development mailing list. Follow here: http://lists.qt-project.org/pipermail/development/2015-June/022164.html Interesting, but I didn't

[Interest] Qt 5 on EPD (Electronic Paper Display)

2015-07-08 Thread ajithpv
Hi all, I would like to know whether anyone worked in Qt with EPD (Electronic Paper Display)? Does the control and display are different for EPD from normal LCD screen when we using Qt 5.0? Any specific routines are required for performing Qt tasks such as drawing, displaying, input

[Interest] Screen capture in fullscreen under Windows

2015-07-08 Thread Jérôme Godbout
Hi, I'm trying to capture some video for demo and training purpose, but I cannot get the screen capture for any third party apps to work while my application is in fullscreen (under Windows 7). We use a QMainWindow with QQuickView inside it. I end up with the first frame captured and if like

Re: [Interest] Screen capture in fullscreen under Windows

2015-07-08 Thread Jérôme Godbout
Another interesting fact, printscreen too doesn't work while application is in fullscreen. On Wed, Jul 8, 2015 at 11:07 AM, Jérôme Godbout jer...@bodycad.com wrote: Hi, I'm trying to capture some video for demo and training purpose, but I cannot get the screen capture for any third party apps

Re: [Interest] Screen capture in fullscreen under Windows

2015-07-08 Thread Jérôme Godbout
I managed to find a solution for the focus and taskbar problems, you need to give the following flags to make it work properly (which avoid keyboard focus problems and keep the window into the taskbar): | Qt::FramelessWindowHint | Qt::WindowSystemMenuHint | Qt::WindowMinMaxButtonsHint The

Re: [Interest] Deploy on Winphone

2015-07-08 Thread Andrew Knight
Hi Federico, On 07/08/2015 12:54 PM, Federico Buti wrote: Hi list, I'm currently working on a mobile app. Android/iOS deploy run smoothy and I'm in the process of deploying also to WinPhone. For the purpose, I installed the winphone_arm Kit on my system; Qt Creator correctly recognised the

[Interest] Failed to start Assistant, Designer...

2015-07-08 Thread Igor Mironchik
Hi guys, I freshly install Qt 5.5.0 with online installer on Kubuntu 15.04 in the release day. But today I needed to launch Assistant, and it crashes... Here is the output of Assistant: Konsole output igor@gmi:~/Qt/5.5/gcc_64/bin$ ./assistant kf5.kiconthemes: Theme tree: (Breeze) Cannot mix

Re: [Interest] Is moc obsolete?

2015-07-08 Thread Philippe
What's wrong with moc? :) Seriously, while in the very beginning I was doubtful about an additional build step that messes around with my source moc never got into my way. Even with Visual Studio 6 and the corresponding Qt VS Addon back in the days one hardly noticed the presence of moc.

Re: [Interest] Is moc obsolete?

2015-07-08 Thread Elvis Stansvik
2015-07-08 22:21 GMT+02:00 Till Oliver Knoll till.oliver.kn...@gmail.com: Am 08.07.15 um 20:56 schrieb Konstantin Tokarev: 08.07.2015, 21:26, Till Oliver Knoll till.oliver.kn...@gmail.com: Am 08.07.2015 um 08:57 schrieb Igor Mironchik igor.mironc...@gmail.com: Hi, Does

Re: [Interest] Is moc obsolete?

2015-07-08 Thread Igor Mironchik
On 08.07.2015 22:19, Konstantin Tokarev wrote: 08.07.2015, 22:08, Igor Mironchik igor.mironc...@gmail.com: Hi. On 08.07.2015 21:26, Till Oliver Knoll wrote: Am 08.07.2015 um 08:57 schrieb Igor Mironchik igor.mironc...@gmail.com: Hi, Does anybody know if Qt plans to remove moc in

Re: [Interest] Is moc obsolete?

2015-07-08 Thread Till Oliver Knoll
Am 08.07.15 um 20:56 schrieb Konstantin Tokarev: 08.07.2015, 21:26, Till Oliver Knoll till.oliver.kn...@gmail.com: Am 08.07.2015 um 08:57 schrieb Igor Mironchik igor.mironc...@gmail.com: Hi, Does anybody know if Qt plans to remove moc in the future releases, let's say in Qt 6?

[Interest] Is moc obsolete?

2015-07-08 Thread Igor Mironchik
Hi, Does anybody know if Qt plans to remove moc in the future releases, let's say in Qt 6? I found CopperSpice http://www.copperspice.com/ it's C++ library derived from the existing Qt 4.8 framework. And here some thoughts from Woboq about this topic

[Interest] Qt 5 on EPD (Electronic Paper Display)

2015-07-08 Thread ajithpv
Hi all, I would like to know whether anyone worked in Qt with EPD (Electronic Paper Display)? Does the control and display are different for EPD from normal LCD screen when we using Qt 5.0? Any specific routines are required for performing Qt tasks such as drawing, displaying, input

Re: [Interest] Is moc obsolete?

2015-07-08 Thread Dmitry Volosnykh
Igor, there was quite a hot discussion of this project in development mailing list. Follow here: http://lists.qt-project.org/pipermail/development/2015-June/022164.html On Wed, Jul 8, 2015 at 9:57 AM, Igor Mironchik igor.mironc...@gmail.com wrote: Hi, Does anybody know if Qt plans to remove

Re: [Interest] Indie Mobil Program terminated?

2015-07-08 Thread Nuno Santos
Agree… Nuno Santos Founder / CEO / CTO www.imaginando.pt +351 91 621 69 62 On 07 Jul 2015, at 21:14, m...@rpzdesign.com wrote: What a perfect example given below by Jason H. Go ahead and search for a QT competitor product that emphasizes that you talk to your lawyer.

Re: [Interest] Failed to start Assistant, Designer...

2015-07-08 Thread Igor Mironchik
On 08.07.2015 22:09, Koehne Kai wrote: Please make sure no environment variable QT_PLUGIN_PATH is set in your shell. See also https://bugs.kde.org/show_bug.cgi?id=349371 https://bugs.kde.org/show_bug.cgi?id=349371 igor@gmi:~/Qt/5.5/gcc_64/bin$ echo $QT_PLUGIN_PATH

Re: [Interest] Is moc obsolete?

2015-07-08 Thread Thiago Macieira
On Wednesday 08 July 2015 21:56:42 Konstantin Tokarev wrote: It does not support many C++ features: http://www.copperspice.com/docs/cs_overview/moc_limits.html However, in clang-based moc it would be possible to support all of this stuff No, it wouldn't. Not if you're thinking of a code

Re: [Interest] Is moc obsolete?

2015-07-08 Thread André Somers
Elvis Stansvik schreef op 8-7-2015 om 22:51: Perhaps not related to the question discussed here, but what I've actually missed sometimes is to be able to make a class template that is also a QObject (including Q_OBJECT macro). I'm not sure moc can handle that, at least not fully. If moc

Re: [Interest] Failed to start Assistant, Designer...

2015-07-08 Thread Thiago Macieira
On Wednesday 08 July 2015 21:48:41 Igor Mironchik wrote: Hi guys, I freshly install Qt 5.5.0 with online installer on Kubuntu 15.04 in the release day. But today I needed to launch Assistant, and it crashes... Here is the output of Assistant: Konsole output

Re: [Interest] Is moc obsolete?

2015-07-08 Thread Jason H
Those of us not able to be on the LG compilers would value the presence of moc in the not-bleeding-edge compilers. Source compatibility cannot be overstated. In fact, the original post on http://woboq.com/ is asking the question, if it is possible, not that moc has outlived it's usefulness or

Re: [Interest] Failed to start Assistant, Designer...

2015-07-08 Thread Koehne Kai
Hi guys, I freshly install Qt 5.5.0 with online installer on Kubuntu 15.04 in the release day. But today I needed to launch Assistant, and it crashes... Here is the output of Assistant: igor@gmi:~/Qt/5.5/gcc_64/bin$mailto:igor@gmi:~/Qt/5.5/gcc_64/bin$ ./assistant kf5.kiconthemes: Theme tree:

Re: [Interest] Failed to start Assistant, Designer...

2015-07-08 Thread Bob Hood
On 7/8/2015 12:48 PM, Igor Mironchik wrote: Hi guys, I freshly install Qt 5.5.0 with online installer on Kubuntu 15.04 in the release day. But today I needed to launch Assistant, and it crashes... Here is the output of Assistant: Konsole output igor@gmi:~/Qt/5.5/gcc_64/bin$ ./assistant

Re: [Interest] Is moc obsolete?

2015-07-08 Thread Konstantin Tokarev
08.07.2015, 21:26, Till Oliver Knoll till.oliver.kn...@gmail.com:  Am 08.07.2015 um 08:57 schrieb Igor Mironchik igor.mironc...@gmail.com:  Hi,  Does anybody know if Qt plans to remove moc in the future releases, let's say in Qt 6? What's wrong with moc? :) Seriously, while in the

Re: [Interest] Failed to start Assistant, Designer...

2015-07-08 Thread Igor Mironchik
On 08.07.2015 21:53, Koehne Kai wrote: **Hi guys, I freshly install Qt 5.5.0 with online installer on Kubuntu 15.04 in the release day. But today I needed to launch Assistant, and it crashes... Here is the output of Assistant: igor@gmi:~/Qt/5.5/gcc_64/bin$ ./assistant kf5.kiconthemes:

Re: [Interest] Is moc obsolete?

2015-07-08 Thread Igor Mironchik
Hi. On 08.07.2015 21:26, Till Oliver Knoll wrote: Am 08.07.2015 um 08:57 schrieb Igor Mironchik igor.mironc...@gmail.com: Hi, Does anybody know if Qt plans to remove moc in the future releases, let's say in Qt 6? What's wrong with moc? :) Seriously, while in the very beginning I was

Re: [Interest] Failed to start Assistant, Designer...

2015-07-08 Thread Koehne Kai
Please make sure no environment variable QT_PLUGIN_PATH is set in your shell. See also https://bugs.kde.org/show_bug.cgi?id=349371 igor@gmi:~/Qt/5.5/gcc_64/bin$mailto:igor@gmi:~/Qt/5.5/gcc_64/bin$ echo $QT_PLUGIN_PATH /usr/lib/x86_64-linux-gnu/qt5/plugins:/lib/kde5/plugins/ Right. Unset

Re: [Interest] Is moc obsolete?

2015-07-08 Thread Konstantin Tokarev
08.07.2015, 22:08, Igor Mironchik igor.mironc...@gmail.com: Hi. On 08.07.2015 21:26, Till Oliver Knoll wrote:  Am 08.07.2015 um 08:57 schrieb Igor Mironchik igor.mironc...@gmail.com:  Hi,  Does anybody know if Qt plans to remove moc in the future releases, let's say in Qt 6?  What's