Re: [Interest] QML standard components for mobile

2014-12-10 Thread Jason H'
+1 this. I want info on the new flat style as well. -- Sent from my Android phone with GMX Mail. Please excuse my brevity."Daniel França" wrote: The just launched Qt5.4 come with a "flat light" style for Qt Quick Controls :D It seems it'll help to achieve what I want, but I can

Re: [Interest] to -fno-exceptions or not ...

2014-12-10 Thread Thiago Macieira
On Wednesday 10 December 2014 20:38:20 René J.V. Bertin wrote: > >Set the flag. I'm not sure if you'll have problems with QtXmlPatterns, but > >I don't think you will. > > That's what I saw after reading up a bit more on the topic. But if > QtXmlPatterns doesn't build without them, I'm stuck with

Re: [Interest] how to debug a Qt Designer plugin

2014-12-10 Thread Tony Rietwyk
Hi Graham, It could be several things: - the plugin has been compiled with debug - it must be release build. - supporting DLLs are not available in your path. - the code in the plugin is relying on initialisation that only occurs in your main exe. Because of the first point, you c

Re: [Interest] Compilation error with QtConcurrent::run

2014-12-10 Thread Constantin Makshin
I don't think the documentation on QtConcurrent::run() needs to be changed because this problem is not related/specific to Qt. On Dec 10, 2014 8:35 PM, "Juan Navarro" wrote: > I did it creating a typedef for the needed method: > > typedef bool (QImage::*QImageSaveFn)(const QString&, const char*,

[Interest] Camera won't capture photos in quick succession

2014-12-10 Thread Jason H
Per http://qt-project.org/doc/qt-5/qml-qtmultimedia-cameracapture.html "It's permissible to call capture() while the camera is active regardless of the ready property value. If camera is not ready to capture image immediately, the capture request is queued with all the related camera settings, an

Re: [Interest] QtCreator crashes...

2014-12-10 Thread Thiago Macieira
On Wednesday 10 December 2014 19:25:17 Igor Mironchik wrote: > On Wed, 10 Dec 2014 19:11:42 +0300, Koehne Kai > > wrote: > >> -Original Message- > >> From: interest-bounces+kai.koehne=theqtcompany@qt-project.org > >> [..] > >> Ok. I figured out that this is a problem of my video card.

Re: [Interest] to -fno-exceptions or not ...

2014-12-10 Thread Thiago Macieira
On Wednesday 10 December 2014 14:24:03 René J.V. Bertin wrote: > Hello, > > After configuring Qt 4.8.6 without any specific options, a message is > printed suggesting that one may want to re-run the process passing > -fno-exceptions to the compiler, in order to reduce memory usage (and I > suppose

Re: [Interest] Compilation error with QtConcurrent::run

2014-12-10 Thread Juan Navarro
I did it creating a typedef for the needed method: typedef bool (QImage::*QImageSaveFn)(const QString&, const char*, int) const; And then issuing just like the sample given in the wiki: static QImage image = IPROJECT.getOutputCompositionImage(); const QString fileName = "/tmp/w1.png"; const char

Re: [Interest] Qml Combo box and model changed

2014-12-10 Thread Jérôme Godbout
Here's an ugly workaround I did on my CustomComboBox ComboBox { ... // Ugly workaround model change reset current index selection property int __lastValidIndex: 0 onCurrentIndexChanged: { if(model.length > 0 && currentIndex > 0 && currentIndex != __lastValidIndex) __lastValidInde

[Interest] how to debug a Qt Designer plugin

2014-12-10 Thread Graham Labdon
Hi I have developed some designer plugins that are working nicely. Now I have created another but cannot get it to work. Within designer I see the following when I do Help->about Plugins - Failed Plugins C:\Qt\Qt5.3.0\5.3\msvc2012_opengl\plugins\designer\QtDesignerWidgets.dll Cannot lo

Re: [Interest] QtCreator crashes...

2014-12-10 Thread Igor Mironchik
On Wed, 10 Dec 2014 19:11:42 +0300, Koehne Kai wrote: > > >> -Original Message- >> From: interest-bounces+kai.koehne=theqtcompany@qt-project.org >> [..] >> Ok. I figured out that this is a problem of my video card. DirectX and >> driver was up to date. >> >> So I can say that Intel

[Interest] Compilation error with QtConcurrent::run

2014-12-10 Thread Juan Navarro
I'm following this: http://qt-project.org/doc/qt-4.8/qtconcurrentrun.html But the given example for calling member functions doesn't work for at least one Qt class / method: bool QImage::save(const QString &fileName, const char* format=0, int quality=-1) const; The compiler cannot decide which of

[Interest] Qml Combo box and model changed

2014-12-10 Thread Jérôme Godbout
Hi, I'm having some problem with i18n along with the ComboBox controls. Here's something I'm doing with it: ComboBox { model: [ qsTr("Choice A") + I18n.revaluate, qsTr("Choice B") + I18n.revaluate ] currentIndex: 1 } I used the i18n revaluation on a singleton to select current

Re: [Interest] QtCreator crashes...

2014-12-10 Thread Koehne Kai
> -Original Message- > From: interest-bounces+kai.koehne=theqtcompany@qt-project.org >[..] > Ok. I figured out that this is a problem of my video card. DirectX and > driver was up to date. > > So I can say that Intel GMA 3150 is not more supported by QtCreator. > > I have NVIDIA ION

Re: [Interest] QtCreator crashes...

2014-12-10 Thread Igor Mironchik
On Wed, 10 Dec 2014 17:44:44 +0300, Koehne Kai wrote: > > > - Launch Qt Creator with clean settings (you can do this temporarily by > starting it from the command line with '-settingspath C:\tmp' argument, > where C:\tmp should obviously be some existing directory) > - Launch Qt Creator wit

Re: [Interest] QtCreator crashes...

2014-12-10 Thread Igor Mironchik
On Wed, 10 Dec 2014 17:44:44 +0300, Koehne Kai wrote: > > > - Launch Qt Creator with clean settings (you can do this temporarily by > starting it from the command line with '-settingspath C:\tmp' argument, > where C:\tmp should obviously be some existing directory) > - Launch Qt Creator wit

Re: [Interest] QtCreator crashes...

2014-12-10 Thread Igor Mironchik
On Wed, 10 Dec 2014 17:44:44 +0300, Koehne Kai wrote: > > - Launch Qt Creator with clean settings (you can do this temporarily by > starting it from the command line with '-settingspath C:\tmp' argument, > where C:\tmp should obviously be some existing directory) > - Launch Qt Creator with

Re: [Interest] QtCreator crashes...

2014-12-10 Thread Igor Mironchik
On Wed, 10 Dec 2014 17:44:44 +0300, Koehne Kai wrote: > > >> -Original Message- >> From: interest-bounces+kai.koehne=theqtcompany@qt-project.org >> [mailto:interest-bounces+kai.koehne=theqtcompany@qt-project.org] >> On Behalf Of Igor Mironchik >> Sent: Wednesday, December 10, 20

Re: [Interest] Multiplatform solution for systray

2014-12-10 Thread Alejandro Exojo
El Wednesday 10 December 2014, Daniel França escribió: > I'm doing a QML/C++ application that I want to be able to run on > Linux/Mac/Windows/Android/IOS. > > I'm doing the development on a Ubuntu 14.10 and I wanted to show a timer > for the desktop versions on system tray, that means a system tra

Re: [Interest] QtCreator crashes...

2014-12-10 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 Igor Mironchik > Sent: Wednesday, December 10, 2014 3:28 PM > To: interest@qt-project.org > Subject: [Interest] Qt

[Interest] QtCreator crashes...

2014-12-10 Thread Igor Mironchik
Hi. I've just installed Qt 5.4.0 and QtCreator 3.3.0 with Qt online installer on Windows 7 machine. And what I saw?! First of all, "Welcome" page in QtCreator is empty (just white space) while something is clickable on it. I see that cursor changes shape in some places and when I click the

[Interest] Plugging my Qt app into MS Word.

2014-12-10 Thread Bill Crocker
Hello: This is somewhat off topic, but I figured you could all use a break from the non-stop QML channel. :-) I have an app written with Qt which creates images. I want to import these images into MS Word and then be able to click on them in Word and have my app appear to edit the image. Then, wh

Re: [Interest] QML standard components for mobile

2014-12-10 Thread Daniel França
The just launched Qt5.4 come with a "flat light" style for Qt Quick Controls :D It seems it'll help to achieve what I want, but I can't find any documentation about those pre-defined styles. Every time I search for something related I end up here: http://doc.qt.io/qt-5/qtquick-controls-styles-qmlm

Re: [Interest] Multiplatform solution for systray

2014-12-10 Thread Damian Ivanov
Hey Daniel, On Linux you should follow statusNotifier spec, it's the closest to come to a spec for all desktops. May some of this would be useful to you as an example: https://github.com/damianatorrpm/qmlpanel/blob/master/qml/IndicatorTray.qml Cheers, Damian 2014-12-10 10:07 GMT+01:00 René J.V.

Re: [Interest] Multiplatform solution for systray

2014-12-10 Thread Daniel França
Not really, I don't like KDE much... Anyway I would like my app runs full-featured on Ubuntu, as it's one of most popular distros :) Em Wed Dec 10 2014 at 10:06:25 AM, René J.V. escreveu: > On Wednesday December 10 2014 08:42:49 Daniel França wrote: > > > The first problem I got is: Ubuntu seems

Re: [Interest] Multiplatform solution for systray

2014-12-10 Thread René J . V . Bertin
On Wednesday December 10 2014 08:42:49 Daniel França wrote: > The first problem I got is: Ubuntu seems to have banned applications to > show on system tray, only a white list of apps are allowed, they want you > to use the lib notify, but it doesn't seems to work for what I intend to do. Not real

Re: [Interest] setting up qtchooser

2014-12-10 Thread René J . V . Bertin
On Tuesday December 09 2014 18:51:27 Thiago Macieira wrote: > On Wednesday 10 December 2014 00:43:53 René J.V. Bertin wrote: > > is this compatible with how qtchooser can be set up? > > Yes. It only needs bindir and libdir anyway. Great, thanks! :) R.

[Interest] Multiplatform solution for systray

2014-12-10 Thread Daniel França
Hi guys, I'm doing a QML/C++ application that I want to be able to run on Linux/Mac/Windows/Android/IOS. I'm doing the development on a Ubuntu 14.10 and I wanted to show a timer for the desktop versions on system tray, that means a system tray icon that changes dynamically. The first problem I go