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 understood more about this:
QIOSInte
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)
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 th
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;
-(void)applicationWillTerminate:(UIAp
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 Net
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 signifi
@implementation QtAppDelegate
+(QtAppDelegate *)sharedQtAppDelegate{
static dispatch_once_t pred;
static QtAppDelegate *shared = nil;
dispatch_once(&pred, ^{
shared = [[super alloc] init];
});
return shared;
}
...
void QtAppDelegateInitial
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 QIOSAppl
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 neede
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
kno
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 ins
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 application. I am trying t
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 rep
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 ?:
http://developer.download.nvidia.com/SDK/10/direct3d/Source/SolidWireframe/Doc/Sol
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
>> >
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
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
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 th
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?
___
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 cha
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
--
Best Regards
Reinhardt Behm, Dipl.-Phys
R&D 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 20
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 widg
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 lan
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@qt-proje
25 matches
Mail list logo