Re: [Interest] Qt Installer Framework 2.0.0 [ OS X ] - How to launch my.app on finish?

2015-04-07 Thread Kalinowski Maurice
> Subject: [Interest] Qt Installer Framework 2.0.0 [ OS X ] - How to launch > my.app on finish? > > "Open ReadMe Example” opens a README.TXT file on finish using script > command: > > QDesktopServices.openUrl("file:///" + installer.value("TargetDir") + > "/README.txt”); > > S

Re: [Interest] SpaceNavigator 3D input device support

2015-04-07 Thread Christian Gagneraud
On 07/04/15 19:44, Boudewijn Rempt wrote: > On Tue, 7 Apr 2015, Christian Gagneraud wrote: > >> Hi there, >> >> Is anyone aware of a Qt based lib that would provide support for devices >> like the SpaceNavigator? [1] >> >> I'm aware of at least one Qt based app (FreeCAD [2]) that works on >> Linux,

Re: [Interest] QOpenGLWidget and text

2015-04-07 Thread Matthew Woehlke
On 2015-04-06 16:19, Till Oliver Knoll wrote: > Am 06.04.2015 um 17:15 schrieb Matthew Woehlke: >> Please don't be overly pedantic. The point isn't whether the ability is >> particularly a member of QOpenGLWidget, but whether it is available *at >> all* (in a non-deprecated class, anyway) without t

[Interest] Qt Installer Framework 2.0.0 [ OS X ] - How to launch my.app on finish?

2015-04-07 Thread Eddie Sutton
"Open ReadMe Example” opens a README.TXT file on finish using script command: QDesktopServices.openUrl("file:///" + installer.value("TargetDir") + "/README.txt”); See: http://doc.qt.io/qtinstallerframework/qt-installer-framework-openreadme-example.html Is there a way to

[Interest] Qt Installer Framework 2.0.0 [ OS X ] - How to install my.app to /Applications folder ?

2015-04-07 Thread Eddie Sutton
I want to deploy my,app to the /Applications folder. This is the standard method of deploying an OS X applications. If I set the config.xml to @ApplicationsDir@ the user receives error message warning “You have selected an existing, non-empty folder for installation”. Qt Installer Framework

Re: [Interest] [Android] QMainWindow::closeEvent not raised when user terminates with swipe?

2015-04-07 Thread Eddie Sutton
[Solved] Thank you Robert! I hope it works on iOS as well as I expect it will have similar problems. int main(int argc, char *argv[]) { QApplication application(argc, argv); cms::MainWindow mainWindow; QObject::connect(&application, SIGNAL(applicationStateChanged(Qt::ApplicationStat

Re: [Interest] How to force scroll bars always visible on Mac

2015-04-07 Thread John Weeks
Whether you agree with the design or not, that's the way it is. Presumably, if you hover where the scroll bars *should* be, they should show up if they are needed. As a 25-year Macintosh user I hate it! The behavior is controlled by the user via the General control panel. There are three radio

Re: [Interest] [Android] QMainWindow::closeEvent not raised when user terminates with swipe?

2015-04-07 Thread Robert Iakobashvili
On Tue, Apr 7, 2015 at 6:05 PM, Eddie Sutton wrote: > Currently I save QSettings in closeEvent. > > On Android this event is not raised when user presses that Android square > icon, then swipes app window to close. > > How do I handle saving work user may have been editing? > > -Ed Hi Ed, Look a

Re: [Interest] Problem with QCameraImageCapture

2015-04-07 Thread Lopes Yoann
Hi, Capturing to buffer is not currently supported on Windows, that’s why the signal is never emitted. — Yoann > On 06 Apr 2015, at 18:30, Igor Mironchik wrote: > > Hi, Bob. > > Thank you. > > On Mon, 06 Apr 2015 18:21:38 +0300, Bob Hood wrote: > >> Hi, Igor. >> >> I tested your example

[Interest] [Android] QMainWindow::closeEvent not raised when user terminates with swipe?

2015-04-07 Thread Eddie Sutton
Currently I save QSettings in closeEvent. On Android this event is not raised when user presses that Android square icon, then swipes app window to close. How do I handle saving work user may have been editing? -Ed ___ Interest mailing list Intere

[Interest] How to force scroll bars always visible on Mac

2015-04-07 Thread Calogero Mauceri
Hi all, I have a tricky problem on Mac OS X 10.10 related to scrolling content on a QGraphicsView. I have a QGraphicsView where I reimplemented the wheelEvent to zoom in/out the content of the view. The only way I have for scrolling the content is clicking and dragging the scroll bars. Actuall

[Interest] QtQuickCompiler very "crash happy" on Android 5.x?

2015-04-07 Thread Jason H
I have been working on a project on Android 4.x for several months. It has never crashed. Now that I am targeting a 5.x device (Nexus 6) the application seems to crash immediately in libc on startup. Some days it works reliably, other days it crashes constantly, with the same message "Fatal sign

Re: [Interest] QOpenGLWidget and text

2015-04-07 Thread Allan Sandfeld Jensen
On Monday 06 April 2015, Matthew Woehlke wrote: > On 2015-04-06 12:40, Allan Sandfeld Jensen wrote: > > On Monday 06 April 2015, Matthew Woehlke wrote: > >> On 2015-04-04 05:57, Till Oliver Knoll wrote: > >>> I've never used this method myself, but from what I gather you specify > >>> the text coor

Re: [Interest] QJSEngine and error line

2015-04-07 Thread Joerg Bornemann
On 07-Apr-15 09:59, Dominique Fober wrote: > I'm using the new QJSEngine and I'm trying to get the error line number (in > case of error of course). > Currently I'm handling errors as documented: > > if (result.isError()) result.toString().toUtf8() ... > > but actually, the string is very p

[Interest] QJSEngine and error line

2015-04-07 Thread Dominique Fober
Hi, I'm using the new QJSEngine and I'm trying to get the error line number (in case of error of course). Currently I'm handling errors as documented: if (result.isError()) result.toString().toUtf8() ... but actually, the string is very poor: e.g. "SyntaxError: Syntax error" I would lik

Re: [Interest] SpaceNavigator 3D input device support

2015-04-07 Thread Boudewijn Rempt
On Tue, 7 Apr 2015, Christian Gagneraud wrote: > Hi there, > > Is anyone aware of a Qt based lib that would provide support for devices > like the SpaceNavigator? [1] > > I'm aware of at least one Qt based app (FreeCAD [2]) that works on > Linux, OS X and Windows and which has support for this dev