Re: [Interest] Location when the App is Killed/Terminated/Suspended

2016-08-22 Thread Jason H
See also: https://bugreports.qt.io/browse/QTBUG-38184     Sent: Monday, August 22, 2016 at 11:04 PM From: "Jason H" To: "Nuno Santos" Cc: interest@qt-project.org Subject: Re: [Interest] Location when the App is Killed/Terminated/Suspended I wish I

Re: [Interest] Location when the App is Killed/Terminated/Suspended

2016-08-22 Thread Jason H
I wish I understood more about this:   QIOSIntegration::QIOSIntegration()     : m_fontDatabase(new QCoreTextFontDatabase)     , m_clipboard(new QIOSClipboard)     , m_inputContext(0)     , m_platformServices(new QIOSServices)     , m_accessibility(0)     , m_debugWindowManagement(false)

Re: [Interest] Location when the App is Killed/Terminated/Suspended

2016-08-22 Thread Jason H
  The problem AFAIK, is the delegate is not set when the app is launched.    A real main looks like: int main(int argc, char *argv[]) { int retVal = UIApplicationMain(argc, argv, nil, @"HelloViewAppDelegate"); }   But our main()s instantiate a QApplication. Only after that do we set

Re: [Interest] Location when the App is Killed/Terminated/Suspended

2016-08-22 Thread Nuno Santos
I think didFinishLaunchingWithOptions will only get called when the app is first loaded. Have you tried the following ones? - (void)applicationWillResignActive:(UIApplication *)application; - (void)applicationDidEnterBackground:(UIApplication *)application;

Re: [Interest] Location when the App is Killed/Terminated/Suspended

2016-08-22 Thread Jason H
Oh, as far as I know, you can't unfortunately. You need your main() to be invoked so you can set the delegate, but the OS will use a non-derived delegate. I'd love to know how to do this for iOS. In theory, it should be possible. > Sent: Monday, August 22, 2016 at 6:19 PM > From: "Manoel

Re: [Interest] Location when the App is Killed/Terminated/Suspended

2016-08-22 Thread Manoel Neto
Hi Jason, thanks for your reply. My problem is not how to build AppDelegate (I did this and it is ok when the app is active or in background.). The question is: how to call didFinishLaunchingWithOptions "when the ap is Killed, suspended or terminated." ? Apple says that if an app uses "The

Re: [Interest] Location when the App is Killed/Terminated/Suspended

2016-08-22 Thread Jason H
@implementation QtAppDelegate +(QtAppDelegate *)sharedQtAppDelegate{ static dispatch_once_t pred; static QtAppDelegate *shared = nil; dispatch_once(, ^{ shared = [[super alloc] init]; }); return shared; } ... void

[Interest] Location when the App is Killed/Terminated/Suspended

2016-08-22 Thread Manoel Neto
Hi , I'm building an APP using QT/QML for IOS / Android and need to use location when the APP is Killed, suspended or terminated. For IOS i did an Objective C implementation and used startMonitoringSignificantLocationChanges method from CLLocationManager class. Briefly, I extended the

Re: [Interest] Myanmar-QWERTY crashes OS X application

2016-08-22 Thread Timothy W. Grove
I don't think you are doing anything wrong; perhaps even doing something right! My development and testing has been on Mavericks where I am seeing the problems, but when I try the same things on El Capitan (in a Parallels Virtual Machine) there don't seem to be any issues. More testing is

[Interest] [Qt3D] LogicalDevice with mouse wheel

2016-08-22 Thread Catalin Moldovan
Hi, does anyone know if it is possible to use a LogicalDevice with mouse wheel events. I would have expected the OrbitCameraController from Qt3D.Extras to support zooming using the mouse wheel. I tried enhancing it but the documentation is vague at the moment and I couldn't find any examples. I

[Interest] Problem using qml-material in qt project

2016-08-22 Thread Kapil Gupta
Hi, I am using qml-material to create the GUI for my application. I am trying to use the Bible project mentioned in the qml-material project as the basis for my GUI. I am having this error : ``` QQmlApplicationEngine failed to load component qrc:/main.qml:3 module "Material.ListItems" is not

Re: [Interest] (no subject)

2016-08-22 Thread Jason H
Kapil, you have sent multiple messages with no subject line. Please use a subject line.    Sent: Monday, August 22, 2016 at 2:26 AM From: "Kapil Gupta" To: interest@qt-project.org Subject: [Interest] (no subject) Hi,   I am using qml-material to create the GUI for my

Re: [Interest] [Qt5.x] QComboBox-related crash

2016-08-22 Thread Andy
Thanks Viktor. Possibly related, thanks for something else to look into. FWIW I'm not using WebEngine nor do I have it installed. Just straight old C++ Qt widgets. I have not made any progress on this though, so if there aren't any other suggestions/input I'll try to make a small example to

[Interest] [Qt3D] Info about the robust wireframe shader

2016-08-22 Thread Catalin Moldovan
Hi, is there a way to find out more information about the wireframe shading technique used in the Qt3D wireframe example (robustwireframe). Is there a paper this technique is based on? (Maybe this one from Nvidia ?:

Re: [Interest] QHttp post with headers

2016-08-22 Thread Viktor Engelmann
We are currently working on that for WebEngine. See https://codereview.qt-project.org/#/c/167422/ On 13.07.2016 09:27, Reinhardt Behm wrote: > On Friday 20 May 2016 15:27:27 Eric Laffoon wrote: >> > Hi all, >> > >> > It's a little emberassing but I'm still using some Qt3 software. Kommander >>

[Interest] Touch Handling Problem : QT or Driver : I'm not sure

2016-08-22 Thread Rob Martens
Problem Summary Driver: FocalTech ft5x06 TouchScreen driver. ft5x06_ts.c QT Code: qevdevtouchhandler.cpp, within libQt5EglDeviceIntegration.so.5.5.0 Configuration: type A processing (or not B type) single touch is true Description of problem: When QEvdevTouchScreenData::processInputEvent

[Interest] GPL violator

2016-08-22 Thread Dave Villae
Hello, Does Qt have a contact for reporting GPL violators to? Dave ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

[Interest] Fwd: Google Play warning: Your app is using an incorrect implementation of in-app billing

2016-08-22 Thread Imaginando
I have just received the email below from Google Play. Has anyone had the same report? Since I use QtPurchasing to handle my purchases, I was wondering if this something I need to add, or something that needs to be added to the lib itself. Nuno > Hello Google Play Developer, > > We detected

[Interest] Replacement for QAbstractFileEngine

2016-08-22 Thread Ilya Kotov
According Qt5 documentation QAbstractFileEngine was removed from public API. I'm looking for replacement. Of course, I can implement it by myself or use third-party implementation. But I don't know how to integrate QFile, QDir, QFileInfo with third-party VFS implementation. Is it possible?

[Interest] Qt Data Visualization Azimuth System

2016-08-22 Thread Andreas Beeck via Interest
Hello everybody, i use the Qt Data Visualization module to render some plots in the polar coordinate system (with the setPolar function of the Q3DSurface class). As i mentioned the module renders the data in the azimuth system (left handed system). For me as engineer it would be very gainful to

[Interest] Qt Turkish Localization

2016-08-22 Thread ßouЯock™ ღ
Hello, I am offical translator of some applications. And these are using Qt libraries. Qt library has no turkish source files now. Especially after version 5.5. So applications partially in english which I offically translated. I want to translate Qt language files to turkish completely. I think

Re: [Interest] QHttp post with headers

2016-08-22 Thread Reinhardt Behm
-- Best Regards Reinhardt Behm, Dipl.-Phys R Director mailto:rb...@becker.com.tw skype: reinhardt.behm Tel: +886 (0)3 471 0992 -16 Fax: +886 (0)3 471 6437 http://www.becker.com.tw Becker Electronics Taiwan Ltd. No.32, Lane 30,Long Yuan Rd., Long-Tan, Taoyuan 32544, Taiwan On Friday 20 May

Re: [Interest] [Qt5.x] QComboBox-related crash

2016-08-22 Thread Viktor Engelmann
could be related to one of these: https://bugreports.qt.io/browse/QTBUG-55134 https://bugreports.qt.io/browse/QTBUG-55135 https://bugreports.qt.io/browse/QTBUG-55158 On 20.08.2016 00:09, Andy wrote: > This has me stumped. > > Problem: > > I have an app with plugins. Each plugin has a form

Re: [Interest] Myanmar-QWERTY crashes OS X application

2016-08-22 Thread Alexandru Croitor
Hi, I tried reproducing your issue, and wasn't successful, no crash happens. I have OSX 10.11.5, Official Qt 5.7.0, only two languages installed, British and Myanmar-QWERTY, and I'm using the auto-generated Qt-Creator QMainWindow example. After launching the application, I try to switch the

[Interest] QML Map & MapQuest

2016-08-22 Thread Igor Mironchik
Hi, Since July 11, 2016 MapQuest disabled direct tile access. So QML Map doesn't support MapQuest anymore. So my question when MapQuest support will be implemented again? -- Best Regards, Igor Mironchik. ___ Interest mailing list

[Interest] (no subject)

2016-08-22 Thread Kapil Gupta
Hi, I am using qml-material to create the GUI for my application. I am trying to use the Bible project mentioned in the qml-material project as the basis for my GUI. I am having this error : ``` QQmlApplicationEngine failed to load component qrc:/main.qml:3 module "Material.ListItems" is not