Re: [Interest] Save / load file contents on android

2021-10-03 Thread mail
Hi, I am hitting a brick wall: I need to write to an external location (e.g. download or documents folder) in Android. As "requestLegacyExternalStorage" is no longer possible, I cannot publish my otherwise finished App, it needs the possibility to export its data. (How) did you guys solve the

[Interest] Installer Error with maintenance tool

2021-02-07 Thread mail
Hi, I am trying to update to 5.15.2 (from 15.0) on a Win10-64 machine. Maintenance tool gives me an installation error: @ Execution failed (Unexpected exit code 2): "C:\Qt\/Tools/QtCreator\bin\sdktool.exe addKit --id qt.qt5.5152.win64_mingw81_kit --name Desktop Qt % {Qt:Version} MinGW 64-bit

Re: [Interest] List on moderation

2020-07-17 Thread mail
Hi, sorry to write again about this. I wanted to not respond to anything about this after my mail from 19/02/08. But to see the whole list go on moderation because one individual member is not capable or not willing to change his trolling behaviour, seems odd to me. Am 17.07.2020 um 00:22

Re: [Interest] QGraphicsItem constructor access to scene

2020-06-09 Thread mail
Hi, I usually solve these kind of problems by having a very light constructor, accepting the need to call a MyClass::initialize(...) later. Is that unthinkable in your case? You can pass the scene item on construction, store its address as a member and use it later, when your scene is

Re: [Interest] Qt Creator licensing for companies with Qt Commercial developers

2020-03-27 Thread mail
Hi. Tuuka clearly stated, that you wouldn't violate GPL of the (OS-) QtCreator, **but** you'd violate your commercial contract with Qt. If the commercial contract says, you are not allowed to have a cat in the house and you've signed that contract - then youd better get rid of Garfield. It

Re: [Interest] Binding based on typeof doesn't work any more

2019-10-17 Thread mail
Hi again, I've found a better (JavaScript-) workaround without a dummy property: @ text: { return ((Controller === "undefined" || !Controller) ? "" : Controller.triedSteps) } @ But still: Why has the behavior been (apparently) changed at all in the first place? Or is it a bug after all? BR

[Interest] Binding based on typeof doesn't work any more

2019-10-17 Thread mail
Hi, I have a simple Label that has to show a property of a rootProperty, the latter not yet being created when the qml is loaded/created. Quite frequently I use this construct and it did work perfectly in older Qt versions (something before 12.1 - that's the earliest I have installed now): @

Re: [Interest] Odd behaviour when organizing .qml files into folders

2019-02-22 Thread mail
Thanks everyone for time, attention and effort! Am 18.02.2019 um 09:29 schrieb Christian Kandeler: > I suggest the opposite: Don't have a qrc file at all, but let qmake > auto-generate it by adding the qml files directly to RESOURCES. Wow, that's interesting! I've tried that out for starters.

[Interest] Odd behaviour when organizing .qml files into folders

2019-02-17 Thread mail
Hi, in order to keep a big project organized I understand that it is good practice to have a structure of folders, each containing a bunch of code files that belong  together. There must be a proper name for that, maybe "project tree" or "code hierarchy" - I don't know (I am almost totally

Re: [Interest] Netiquette [was: Feature Request - QtCreator - Multiple right margins]

2019-02-08 Thread mail
"All", somebody who calls a whole platform "idiot" lacks any respect for those who work in that field. Doing so repetetively whenever mentioning "phones", is not a slip of the keyboard but is done intentional - which puts the author in the very vincinity of his own vocabulary. I don't want to

[Interest] Android will require 64bit soon

2019-02-01 Thread mail
Hi, I have just been informed by Google that > *Starting August 1, 2019:* > > * All new apps and app updates are required to provide 64-bit > versions of any 32-bit native code they provide.[...] > > *Starting August 1, 2021: * > > * Google Play will stop serving apps without 64-bit

[Interest] Building for Android: armeabi-v7a and x86

2019-01-01 Thread mail
s (Nokia 8, Nexus 10...). Second thought: how's that possible, does it bring considerable disadvantages, in speed, size or safety? Is it still advisable - to have to different kits and provide two different APKs in order to deliver for both architectures? [I have sent an almost identical mail

[Interest] FileDialog: errors and crashes, especially in debug mode

2018-04-13 Thread mail
Hi, I still have the problem mentioned in the attached mail from a few days ago. I've found out, that this behaviour is linked to QML's FileDialog that I use in this way: FileDialog{ //MessageDialog{ id:csvFileDialog //fileMode:FileDialog.SaveFile folder:(myFolder) onAccepted

Re: [Interest] Qt 5.10.1 TextField backgound inconsistency or regression

2018-04-08 Thread mail
Update: could this be related to https://bugreports.qt.io/browse/QTBUG-67446? That bug's workaround (setting an id in background) works here, too. Am 08.04.2018 um 13:14 schrieb m...@herrdiel.de: Hi again, in order to find out more about the QML errors mentioned in my previous post, I

[Interest] Qt 5.10.1 TextField backgound inconsistency or regression

2018-04-08 Thread mail
Hi again, in order to find out more about the QML errors mentioned in my previous post, I have tried using Qt 5.10.1. (MinGw5.3, Windows Version 10.0.16299 Build 16299, 64 bit) While upgrading doesn't help there, it brought an inconsistency/regression between the versions to my attention:

[Interest] QML errors, only in debug mode!

2018-04-07 Thread mail
Hi, I am experiencing problems while debugging my QML-based app. All the following error messages do **not** appear when I just run (Ctrl+r), they only do so in debug mode (F5). [Symptom A] When the Program window comes to front, I get:

Re: [Interest] Custom SQLite and linking woes

2018-02-01 Thread mail
Hi, the QtCipherSqlitePlugin seems to be targeted also for fruit OSs. Works very well with Windows, fwiw. Perhaps looking into it might happen to help you in some way. Sebastian Am 01.02.2018 um 14:18 schrieb René Hansen: Hi list, I've run into a bit of a problem with the way, that I'd

Re: [Interest] How to make the QString "10" behind "9" in QMap's key order

2018-01-07 Thread mail
Hi, you need a "lessThan"-function, tailored for your needs. An example from me is this: boolPerson::lessThanFamilyFirst(QSharedPointerp1,QSharedPointerp2) { return(QString::localeAwareCompare(p1->familyName(),p2->familyName())<0) ||((p1->familyName()==p2->familyName())

Re: [Interest] Future of Qt [was: Future of Qt3d]

2017-11-07 Thread mail
Hi Tuukka, thank you for answering here. But isn't there something missing in your email? What I have read about this: --> KDAB  says, they "have temporarily withdrawn our contributions until senior management at The Qt Company makes it clear that they genuinely wish to treat the Qt

[Interest] QDateTime: time part is "00:00:00" in "Locals & Expressions"

2017-07-20 Thread mail
Hi, variables of QDateTime type are apparently not displayed correctly in "Locals & Expressions", the time information is missing. While the date part is shown correctly, the time is always 00:00:00. The same variable prints just right with qDebug(). QtCreator (rather: gdb?) shows:

Re: [Interest] 5.8.0: "Could not find feature posix_fallocate" in sqlite.pri on Windows

2017-02-12 Thread mail
Am 08.02.2017 um 05:30 schrieb Thiago Macieira: Find another copy of the Sqlite library and thus write your own qmake files. You can copy sqlite.pri from Qt and modify it as necessary for your purposes. But you can't depend on the one that comes with Qt, since we make absolutely no attempt to

Re: [Interest] 5.8.0: "Could not find feature posix_fallocate" in sqlite.pri on Windows

2017-02-07 Thread mail
Smack dab in the middle... Am 06.02.2017 um 22:39 schrieb Thiago Macieira: [...] Not so for Sqlite. The plugin should have come with your binary installation. So you should not need to recompile. The fact that you were trying was quite surprising. BTW, why? As far as I understand, the (or one)

Re: [Interest] 5.8.0: "Could not find feature posix_fallocate" in sqlite.pri on Windows

2017-02-06 Thread mail
Am 05.02.2017 um 19:33 schrieb Thiago Macieira: [...] I was assuming that you tried to compile everything and it succeeded up until the point in the build that it tries to compile sqlite. Is that not the case? No, not at all - I've used the Qt installer. I've never dared to compile Qt myself.

Re: [Interest] 5.8.0: "Could not find feature posix_fallocate" in sqlite.pri on Windows

2017-02-05 Thread mail
Hi, Am 04.02.2017 um 00:58 schrieb Thiago Macieira: It's a problem on your system. Please rerun configure, after removing config.cache. Thank you for your time & effort! I'd love to try that - but for the life of me, I cannot find any file nor folder by the name config.cache on my build

[Interest] 5.8.0: "Could not find feature posix_fallocate" in sqlite.pri on Windows

2017-02-03 Thread mail
Hi, with 5.7.1 my app compiles fine, but with the Qt 5.8.0 kit, I recieve an error, compilation stops with: % C:/Qt/5.8/mingw53_32/bin/qmake.exe -o Makefile ../../entitymanager/src/src.pro -spec win32-g++ CONFIG+=debug CONFIG+=qml_debug Project ERROR: Could not find feature

Re: [Interest] QFileIconProvider - icon resolutions only 16x16 and 32x32 on Windows

2016-12-28 Thread mail
Hi, Am 27.12.2016 um 16:25 schrieb m...@herrdiel.de: I want to access file icons of the OS, I need them in "good quality", but the available sizes are apparently only available in 16x16 and 32x32 px. [...] I would have expected higher icon resolutions (64x64 and more) to be present. Is

[Interest] QFileIconProvider - icon resolutions only 16x16 and 32x32 on Windows

2016-12-27 Thread mail
Hi, I want to access file icons of the OS, I need them in "good quality", but the available sizes are apparently only available in 16x16 and 32x32 px. My system is Windows 10 64bit, Qt 5.7.1, MinGw 5.3.0 Please find a minimal compileable example attached. FYC the relevant part is pasted

[Interest] Behaviour change of QMetaProperty::write with QSharedPointer

2016-09-06 Thread mail
Hi, it seems, that from Qt 5.5.1 to 5.6 (and ever since) we have a change in the behaviour of QMetaProperty::write when QSharedPointer is involved. In 5.5.1 it was possible to use @ QVariant var; var.setValue(value); QMetaProperty::write(object, var) @ to write an Object of

[Interest] QQuickView dialog hidden behind QML ApplicationWindow on Android

2016-08-20 Thread mail
Hi, opening a QQuickView as a modal dialog works fine on Windows. On Android, though, the QQuickView is hidden behind the main window (which is of QML type "ApplicationWindow"). This leaves the app appear like frozen (the hidden dialog is modal). With swapping around between active Apps on

Re: [Interest] Force QPainter color draw for SVG files?

2012-04-17 Thread mat //common mail
Another solution (without resource files): #ifndef SVGICONS_H #define SVGICONS_H #include QObject #include QPixmap #include QIcon #include QtSvg class SvgIcons { private: static QString GeneralSvgPart(); static QPixmap GeneratePixmap(int width, int height, QString *lastSvgPart); public:

[Interest] QT4.8.0, Win7: QTextEdit (insertHtml) working too slowly.

2012-03-12 Thread mat //common mail
Hi, *OS: Windows 7, 64 bit* *SDK: Qt_SDK_Win_offline_v1_2_en* *Qt 4.8.0 * *mingw* *My experiment:* void MainWindow::*SlotInsertLat*() // for insertLatBtn { QTime timer; timer.start(); *InsertText*( QString(Text text text text text text text text text text text text.br) ); // Latin text