Re: [Interest] [Development] Qt Marketplace

2020-01-10 Thread Alexander Ivash
n existing project. The product is built inside the > project using one kit to avoid unnecessary builds for targets, not needed. > > This is what we have planned to during the next five months. > -- > Tino Pyssysalo > > > On 10.1.2020, 12.56, "Development on behalf of

Re: [Interest] Qt 5.14 & android: application doesn't start

2020-01-07 Thread Alexander Ivash
e \ >android-oldqt/gradle/wrapper/gradle-wrapper.jar \ > android-oldqt/gradle/wrapper/gradle-wrapper.properties \ >android-oldqt/gradlew \ >android-oldqt/gradlew.bat \ >android-oldqt/res/values/libs.xml > ANDROID_PACKAGE_SOURCE_DIR = $$PWD/androi

[Interest] Qt 5.14 & android: application doesn't start

2020-01-06 Thread Alexander Ivash
Is it just me or this is known issue? Is there known workaround? W ResourceType: No package identifier when getting name for resource number 0x W ResourceType: No package identifier when getting name for resource number 0x W ResourceType: Invalid package identifier when getting b

Re: [Interest] QtWebView: how to ignore ssl errors?

2019-10-25 Thread Alexander Ivash
ay, 24 October 2019 16:42:05 PDT Alexander Ivash wrote: > >> I understand all the theory behind, but still need to ignore errors > >> for test purposes. If it is possible, where can I read how to achieve > >> it? My understanding QtWebView uses native things for Andr

Re: [Interest] QtWebView: how to ignore ssl errors?

2019-10-24 Thread Alexander Ivash
g to ignore SSL errors, what I'm missing? пт, 25 окт. 2019 г. в 02:34, Thiago Macieira : > > On Thursday, 24 October 2019 16:07:22 PDT Alexander Ivash wrote: > > Is it possible at all? > > Yes, but you shouldn't. They happened because they are errors. Fix them >

[Interest] QtWebView: how to ignore ssl errors?

2019-10-24 Thread Alexander Ivash
Is it possible at all? ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest

[Interest] Customizing / extending platform plugins best practices

2019-10-06 Thread Alexander Ivash
Is it possible to extend android platform plugin (in particular I'm interested in QAndroidInputContext) without complete re-implementation? If yes, then what are the best practices / right workflow? Just copy and modify 'Src\qtbase\src\plugins\platforms\android' and include 'android.pro' as subdi

Re: [Interest] QML and sensitive data

2019-09-10 Thread Alexander Ivash
Right, the whole approach is not something I'm really proud of. And of course it has its limitations, but: >> The string may get copied internally in many places Under what conditions? I mentioned that Quick Controls 2 is a must to make behaviour more deterministic. Unless I'm missing something j

Re: [Interest] QML and sensitive data

2019-09-09 Thread Alexander Ivash
ент. 2019 г. в 19:07, Konstantin Tokarev : > > > > 05.09.2019, 19:02, "Jason H" : > >> On Wednesday, 4 September 2019 16:20:44 PDT Alexander Ivash wrote: > >> > Thank you for fast response, but my question is purely about QML. On > >> > C++ side I have a l

Re: [Interest] QML and sensitive data

2019-09-05 Thread Alexander Ivash
required at the moment) on closing this screen - that's what I'm trying to achieve. чт, 5 сент. 2019 г. в 18:25, Thiago Macieira : > > On Wednesday, 4 September 2019 16:20:44 PDT Alexander Ivash wrote: > > Thank you for fast response, but my question is purely about QML. On > &

Re: [Interest] QML and sensitive data

2019-09-05 Thread Alexander Ivash
Thanks Jason, making custom component which would be able to present data from password chunks stored in different locations sounds like a bit less painful than other options. I'll keep it in mind. чт, 5 сент. 2019 г. в 16:30, Jason H : > > > Is there any mechanism for cleanup sensitive data like

Re: [Interest] QML and sensitive data

2019-09-05 Thread Alexander Ivash
just making sure > it was not overlook. Login/password are bad in an application in the first > place. But some application still need those. Ignore if not applicable to you. > > -Original Message- > From: Interest On Behalf Of Jason H > Sent: September 5, 2019 9:31 AM &g

Re: [Interest] QML and sensitive data

2019-09-05 Thread Alexander Ivash
n(int argc, char *argv[]) >> { >> QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling); >> >> QGuiApplication app(argc, argv); >> >> Backend backend; >> QQmlApplicationEngine engine; >> const QUrl url(QStringLiteral

Re: [Interest] QML and sensitive data

2019-09-04 Thread Alexander Ivash
&app, [url](QObject *obj, const QUrl &objUrl) { if (!obj && url == objUrl) QCoreApplication::exit(-1); }, Qt::QueuedConnection); engine.rootContext()->setContextProperty("backend", &backend); engine.load(url); return app.

[Interest] QML and sensitive data

2019-09-04 Thread Alexander Ivash
Is there any mechanism for cleanup sensitive data like passwords etc from QML? This issue is that gc() doesn't seem to even nullify memory (at least in release on Windows) so all the sensitive information stays in memory. What I tried so far is to pass js-created string to C++ into cleanup functio

[Interest] Qt 5.13: how to properly enable gstreamer for Windows?

2019-08-05 Thread Alexander Ivash
I followed the instructions for Qt blog post and compiled gstreamer plugin but now can't make Qt to use gstreamer backend. I put putenv("QT_DEBUG_PLUGINS=1"); putenv("QT_MULTIMEDIA_PREFERRED_PLUGINS=gst"); at the beginning of main.cpp but seems like Qt still using directshow. What is wr

Re: [Interest] How to prevent Drawer from mouse events propagation

2019-07-01 Thread Alexander Ivash
ve) > basically it make impossible to use SwipeDelegate, for example, inside Drawer > > > On Sun, Jun 30, 2019 at 11:41 AM Alexander Ivash wrote: >> >> I have a Drawer with a ListView inside and draggable item (via >> DragHandler / PinchHandler) below the Drawer. The is

[Interest] How to prevent Drawer from mouse events propagation

2019-06-30 Thread Alexander Ivash
I have a Drawer with a ListView inside and draggable item (via DragHandler / PinchHandler) below the Drawer. The issue is that when I drag Drawer draggable item also gets dragged. I understand that I can play with grabPermissions on the DragHandler's level inside my draggable item, but I would like

Re: [Interest] QtCreator & ABI is incompatible for armeabi-v7a

2019-05-22 Thread Alexander Ivash
f it doesn't prevent debugging / apk uploading. The issue is that QtCreator seems to be more strict than android studio and just leaves me no choice. > ср, 22 мая 2019 г. в 02:27, Christian Gagneraud : > > > > On Wed, 22 May 2019 at 10:16, Alexander Ivash wrote: > > > >

[Interest] QtCreator & ABI is incompatible for armeabi-v7a

2019-05-21 Thread Alexander Ivash
I've got a weird issue: QtCreator disallows to upload apk or debug it due to 'ABI is incompatible error'. It definitely used to work in the past (yes, my device is really armeabi-v7a and armeabi-v7a is really what I select in QtCreator) and stopped working after updating android sdk or after rootin

Re: [Interest] QML preprocessing

2019-04-29 Thread Alexander Ivash
On Apr 29 2019, at 1:13 pm, Giuseppe D'Angelo via Interest wrote: > Hi, > > On 24/04/2019 21:23, Alexander Ivash wrote: > > Yeah, it could work in theory, but in practice there already a lot of > > places which would require such a modification. This solution just &g

Re: [Interest] QML preprocessing

2019-04-25 Thread Alexander Ivash
command before > make, more info can be found over here: > https://doc.qt.io/qt-5/qmake-advanced-usage.html > > -Original Message- > From: Interest On Behalf Of Konstantin > Tokarev > Sent: April 24, 2019 3:09 PM > To: Alexander Ivash ; interestqt-p

Re: [Interest] QML preprocessing

2019-04-24 Thread Alexander Ivash
would require such a modification. This solution just doesn't scale. Moreover, resulting binary will contain string 'console.debug('password: ', someFunctionWhichReturnsPasswordFromProtectedStorage());' (well, maybe not if qml compiler was enabled). ср, 2

Re: [Interest] QML preprocessing

2019-04-24 Thread Alexander Ivash
ср, 24 апр. 2019 г. в 22:08, Konstantin Tokarev : > > > > 24.04.2019, 22:01, "Alexander Ivash" : > > What I really need is some 'plugin' to qmake which would allow to > > modify qml files on the fly before placing it into resources (but not > > t

Re: [Interest] QML preprocessing

2019-04-24 Thread Alexander Ivash
What I really need is some 'plugin' to qmake which would allow to modify qml files on the fly before placing it into resources (but not touching them on filesystem!). In ideal world, yeah. ср, 24 апр. 2019 г. в 21:51, Alexander Ivash : > > 2Jerome: > > The issue is that even

Re: [Interest] QML preprocessing

2019-04-24 Thread Alexander Ivash
cannot glue all this together, but maybe > something into that direction could be done before you start loading the main > qml file. This is far fetched by might work but it seem overcomplicated to me. > > -----Original Message- > From: Interest On Behalf Of Alexander Iva

[Interest] QML preprocessing

2019-04-24 Thread Alexander Ivash
I understand that this topic was raised a lot of times and that this is not QML-way. But, what options do I have in case of requirements to eliminate all the logging for release builds? Is there any hidden magic in qmake, like 'QMAKE_SUBSTITUTES' but more flexible to substitute all the 'console.de

[Interest] qmlimportscannder doesn't add WebView used in static lib

2019-04-10 Thread Alexander Ivash
Any workarounds? I understand that I can import WebView from main.qml but is there more clean way?___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest

[Interest] android deployment is painfully slow (Windows 10, Qt Creator 4.8.2)

2019-03-29 Thread Alexander Ivash
...ooops, previous email got truncated, not sure why Maybe there is something wrong with my environment, not sure, but it takes several minutes to even start debugging! In android studio it happens much much faster... Is there any tricks to speedup this process (besides dropping Windows as develo

[Interest] android deployment is painfully slow (Windows 10, Qt Creator 4.8.2)

2019-03-29 Thread Alexander Ivash
Maybe there is something wrong with my environment, not sure, but it takes several minutes to even start debugging! In android studio it happens much much faster... Is there any tricks to speedup this process (besides dropping Windows as development platform, because it is not that bad on linux)?

[Interest] PinchHandler weirdness

2019-03-07 Thread Alexander Ivash
I have an issue which is reproducible only on android, but not on desktop. And looks like PinchHandler is the root cause (at least commenting it out changes behaviour). What is interesting, is that the issue happens without any interaction with pinch handler from my side. Just its presence under an

[Interest] Getting desktop winId without widgets dependency?

2019-03-04 Thread Alexander Ivash
I don't see such an API.. What I'm missing? ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest

Re: [Interest] Fwd: vs. Flutter

2019-02-27 Thread Alexander Ivash
+2 (if it does matter) Sent from Mailspring (https://link.getmailspring.com/link/6fa2ac51-f627-413f-8df1-fe1a8f21c...@getmailspring.com/0?redirect=https%3A%2F%2Fgetmailspring.com%2F&recipient=aW50ZXJlc3RAcXQtcHJvamVjdC5vcmc%3D), the best free email app for work On Feb 27 2019, at 11:23 pm, Nelso

[Interest] QML Input Handlers issues: any ideas on how to workaround https://bugreports.qt.io/browse/QTBUG-65795

2018-10-17 Thread Alexander Ivash
I haven't introduce that bug, but most likely I'm experiencing the same behavior and would appreciate any ideas on workaround-ing it. p.s. Especially from Shawn Rutledge ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailma

[Interest] qmllive with android target

2018-10-01 Thread Alexander Ivash
Have anybody succeed in configuring such an environment? I'm a bit stuck with figuring out what to specify as 'workspacePath'. Regards, Alexander ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] QML Pointer Handlers: how to use 'GrabPermissions'

2018-09-18 Thread Alexander Ivash
re can I check it. Taking into account 5.12 is going to finalize input handlers and provide for mass adoption, I feel like it might result a lot of questions like mine which could be eliminated by good example. Regards, Alexander вт, 11 сент. 2018 г. в 20:08, Alexander Ivash : > > Hi Sha

Re: [Interest] Best practices on pinch-zoomable item container with non-zoomable item attached

2018-09-13 Thread Alexander Ivash
nchors.centerIn: parent What I meant is rather anchors.centerIn: child (so that child would free-zoom relatively center, and parent would center itself relatively center of the child) чт, 13 сент. 2018 г. в 16:15, Shawn Rutledge : > > > > On 13 Sep 2018, at 14:41, Alexander Ivash wrote: &g

[Interest] Best practices on pinch-zoomable item container with non-zoomable item attached

2018-09-13 Thread Alexander Ivash
I need pinch-zoomable item container with non-zoomable item container attached to the bottom. Like this: Item { id: item Item { id: zoomable } Item { id: nonzoomable } } (anchoring, geometry omitted for simplicity) I see at least the following solutions: 1. Change 'sc

[Interest] Is it possible to define and inherit component in the same QML file?

2018-09-12 Thread Alexander Ivash
Like this: property Component baseDelegate: Item { } property Component textDelegate: baseDelegate { } property Component imageDelegate: baseDelegate { } . Currently it doesn't work, but maybe there are some tricks to achieve behaviour like this without moving baseDelegate to 'BaseDelegate.

Re: [Interest] QML Pointer Handlers: how to use 'GrabPermissions'

2018-09-11 Thread Alexander Ivash
not related to the current issue) I noticed weird behaviour of PinchHandler while was trying to implement 'zoomable scrollview' so had to revert back to PinchArea. Hope this is just a bug which is going to be fixed in 5.12. Other than that, I really like new way of handling events! пн, 10 се

[Interest] QML Pointer Handlers: how to use 'GrabPermissions'

2018-09-02 Thread Alexander Ivash
Is there any example of usage 'GrabPermissions' from QML ? I've tried to do this: TapHandler { grabPermissions: GrabPermissions.CanTakeOverFromHandlersOfSameType | GrabPermissions.CanTakeOverFromItems | GrabPermissions.CanTakeOverFromHandlersOfDifferentType | GrabPermissions.ApprovesTakeOverByAny

[Interest] How to disable flicking in Quick Controls 2 ScrollView *without* disabling scroll view?

2018-08-16 Thread Alexander Ivash
Use-case: I have draggable item inside scrollview and want drag to work while item selected. If not selected - scrollview should be flickable ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

[Interest] Makefile => pro file converter?

2018-07-18 Thread Alexander Ivash
Is anyone aware of such a tool? ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

[Interest] determining who is bound

2018-04-12 Thread Alexander Ivash
Is it possible to determine what object is bound to the target object's property? Do I understand correctly that bound object should be one of subscribers for property's notify signal? Q: Why do you need it? A: Primarily for debug purposes, but also as the temp solution during redesign Regards,

Re: [Interest] How to determine whether QML item is anchored?

2018-04-06 Thread Alexander Ivash
ertyChanges { > target: myRect > color: "green" > } > }, > State { > name: "not-anchored" > > AnchorChanges { > target: myRect > anchors.top: undefined > anchors.bottom: undefined > } > > PropertyChanges { > target: myRect > color

Re: [Interest] How to determine whether QML item is anchored?

2018-04-06 Thread Alexander Ivash
getmailspring.com%2F&recipient=aW50ZXJlc3RAcXQtcHJvamVjdC5vcmc%3D), the best free email app for work On Apr 6 2018, at 2:20 pm, Mitch Curtis wrote: > > What are you trying to do? > > From: Interest [mailto:interest-bounces+mitch.curtis=qt...@qt-project.org] On > Behalf Of Alexa

[Interest] How to determine whether QML item is anchored?

2018-04-06 Thread Alexander Ivash
What I'm missing? It seems like even not anchored item has anchors.right/left/top/bottom set, so it is not possible to compare with 'undefined' or something. Of course introducing change handler allows to track moment of anchoring (although still no way to track un-anchoring), but this is a bit

[Interest] assertion inside QQmlNotifierEndpoint::connect

2018-02-09 Thread Alexander Ivash
Hi, There is a code like the following: QVariant objectNameVariant = item->property( "objectName" ); QString objectNameString = objectNameVariant.toString(); qDebug () << "objectNameString: "

[Interest] Dragging across the path

2018-01-18 Thread Alexander Ivash
Hi, What is the best way to implement it? At the moment I have at least these two options: 1. Use normal QML mechanism for dragging (MouseArea's drag) but on x/y changes of draggable item do Qt.callLater to adjust x/y manually. 2. Implement dragging manually using MouseArea and PathInterpolator

Re: [Interest] Enumerating context properties from QML

2017-12-21 Thread Alexander Ivash
de ce message > ou son agent, ou si ce message vous a été adressé par erreur, s’il vous > plaît avertir immédiatement l'expéditeur par courriel de réponse, puis > supprimer ce message et les pièces jointes. Si vous n'êtes pas le > destinataire prévu, vous êtes par la pré

Re: [Interest] Enumerating context properties from QML

2017-12-20 Thread Alexander Ivash
t; contre toute divulgation. Si vous n'êtes pas le destinataire de ce message > ou son agent, ou si ce message vous a été adressé par erreur, s’il vous > plaît avertir immédiatement l'expéditeur par courriel de réponse, puis > supprimer ce message et les pièces jointes. Si vous n

[Interest] Enumerating context properties from QML

2017-12-19 Thread Alexander Ivash
Let's say I exposed 'property1' to QML from C++ using setContextProperty. How can I enumerate all the context properties exposed from QML side? I've tried enumerating properties of 'Qt' object but obviously it didn't work. ___ Interest mailing list Intere

[Interest] how to change color of placeholderText in Quick Controls 2 TextField ?

2017-12-09 Thread Alexander Ivash
Do I understand correctly that the only way to achieve it - is to create new style and specify it in config? I ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] ASSERT: "m_engines.contains(engine)" in file qqmlenginedebugservice.cpp, line 802 qqmlenginedebugservice.cpp: 802

2017-12-08 Thread Alexander Ivash
Just in case if anyone care, creation QQmlEngine in UI thread and then moving to background thread resolved the issue. Moreover QML debugger works with both threads! 2017-12-08 14:43 GMT+03:00 Alexander Ivash : > Well, as I said it seems to be working, at least in very simple > scenarios

Re: [Interest] ASSERT: "m_engines.contains(engine)" in file qqmlenginedebugservice.cpp, line 802 qqmlenginedebugservice.cpp: 802

2017-12-08 Thread Alexander Ivash
Well, as I said it seems to be working, at least in very simple scenarios, like reading file & doing JSON.parse from separate thread. So, if this is artificial limitation of QML Debugger, then would be great to get it fixed. Can I at least silence that assert by somehow excluding QQmlEngine in thre

[Interest] ASSERT: "m_engines.contains(engine)" in file qqmlenginedebugservice.cpp, line 802 qqmlenginedebugservice.cpp: 802

2017-12-08 Thread Alexander Ivash
I'm playing with https://github.com/qyvlik/QmlThread project which allows to create QQmlEngine per thread to execute QML/Js in background and it mostly seems to be working just fine. But on attempt to debug QML I'm getting assertion. I might be completely wrong, but from the first look it seems li

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

2017-11-08 Thread Alexander Ivash
For some reasons I interpreted 'because it goes without saying' as 'Qt project development goes without saying it is open-governance-driven' and not as 'this is so obvious that there is no need to even say it'. Thank you for clarification and I beg pardon for the confusion caused by my confusion :

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

2017-11-08 Thread Alexander Ivash
This is really confusing. From one side, >> What you **don't** say is, that you "genuinely wish to treat the Qt >> Project as an Open Governance project and that external contributions >> are welcomed and valued." >> >> There must be a reason not to write this sentence. > > Because it goes withou

Re: [Interest] QML debugger doesn't work for big cmake-based project

2017-08-11 Thread alexander ivash
, Alexander Ivash wrote: I'm experiencing issues with enabling QML debugger for huge cmake-based project. I've added add_definitions(-DQT_QML_DEBUG) and enabled checkbox in Qt Creator but breakpoints never triggered. On launching debugger I see 'QML debugging is enabled. Only use this in a s

Re: [Interest] QML debugger doesn't work for big cmake-based project

2017-08-11 Thread Alexander Ivash
ach it to QML engine manually? 2017-08-11 18:07 GMT+03:00 Ulf Hermann : > On 08/11/2017 05:01 PM, Alexander Ivash wrote: >> But then way don't I see 'waiting for connection... ' ? > > Because it only starts waiting for connections once a QML engine exists. > Before that

Re: [Interest] QML debugger doesn't work for big cmake-based project

2017-08-11 Thread Alexander Ivash
But then way don't I see 'waiting for connection... ' ? Also, If what you say is true, then is it possible to increase this timeout ? 2017-08-11 17:54 GMT+03:00 Ulf Hermann : > On 08/11/2017 04:48 PM, Alexander Ivash wrote: >> On launching debugger I see 'QML debugg

[Interest] QML debugger doesn't work for big cmake-based project

2017-08-11 Thread Alexander Ivash
I'm experiencing issues with enabling QML debugger for huge cmake-based project. I've added add_definitions(-DQT_QML_DEBUG) and enabled checkbox in Qt Creator but breakpoints never triggered. On launching debugger I see 'QML debugging is enabled. Only use this in a safe environment.' but don't see

Re: [Interest] Qt for Windows & openssl

2017-07-13 Thread Alexander Ivash
Got it, thank you for the quick response. 2017-07-13 15:48 GMT+03:00 Samuel Gaist : > >> On 13 Jul 2017, at 14:44, Alexander Ivash wrote: >> >> Is there are reasons for not including openssl libraries into Qt >> binary packages? >> __

[Interest] Qt for Windows & openssl

2017-07-13 Thread Alexander Ivash
Is there are reasons for not including openssl libraries into Qt binary packages? ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] QML version of QRubberBand

2016-04-13 Thread Alexander Ivash
Unfortunately this seems to be https://bugreports.qt.io/browse/QTBUG-52494 . 2016-04-13 17:34 GMT+03:00 Jason H : > >> If in my example I specify 'color: "transparent"' instead 'opacity: >> 0.2', then I'm getting black background (no transparencty/full >> opacity) on Win7. If I use 'opacity: 0.2'

Re: [Interest] QML version of QRubberBand

2016-04-13 Thread Alexander Ivash
>> On 12 Apr 2016, at 22:36, Alexander Ivash wrote: >> >> I've made some experiments and got basic rubber band working using >> additional QML Window. But the issue I confronted is that >> transparency/opacity on Windows 7 (and Windows 10) seems to be broke

Re: [Interest] QML version of QRubberBand

2016-04-12 Thread Alexander Ivash
elected(marker.x, marker.y, marker.width, marker.height) } } Rectangle { id: marker width: 0 height: 0 color: 'green' } } } } 2016-04-12 20:06 GMT+03:00 Alexander

Re: [Interest] QML version of QRubberBand

2016-04-12 Thread Alexander Ivash
se > location minus, the y and x. > I've not one a "rubberband" per se, just a background swipe gesture, but it > should work the same. > > >> Sent: Tuesday, April 12, 2016 at 5:57 AM >> From: "Alexander Ivash" >> To: "interest@qt-

[Interest] QML version of QRubberBand

2016-04-12 Thread Alexander Ivash
Is it possible to implement QML version of QRubberBand ? I mean fully QML, without any widgets dependency? I understand it is trivial to make draggable area inside QML window. But what about draggable area over the whole screen? Should I create separate invisible QML window with the geometry of th

Re: [Interest] What tool is responsible for 'auto-detected' kits in QtCreator ?

2016-03-31 Thread alexander ivash
Is it possible to force re-detection? I'm asking because I managed somehow to get a lot of duplicated/broken kits which are not even removable (because auto-detected). From the other side I can't get VS 2015-based kit to work. Would be nice if I could just delete all QtCreator's settings and

[Interest] What tool is responsible for 'auto-detected' kits in QtCreator ?

2016-03-30 Thread Alexander Ivash
Is it possible to force re-detection? I'm asking because I managed somehow to get a lot of duplicated/broken kits which are not even removable (because auto-detected). From the other side I can't get VS 2015-based kit to work. Would be nice if I could just delete all QtCreator's settings and ask it

Re: [Interest] Qt 5.5 for ios: frameworks support seems to be broken

2015-07-09 Thread Alexander Ivash
... 2015-07-09 23:00 GMT+03:00 Nuno Santos : > I have the same problem. My projects don’t compile. > > > > On 09/07/2015, at 20:59, Alexander Ivash wrote: > > > > After switching to Qt 5.5 I can't even compile sample project which uses > frameworks. The same proje

[Interest] Qt 5.5 for ios: frameworks support seems to be broken

2015-07-09 Thread Alexander Ivash
After switching to Qt 5.5 I can't even compile sample project which uses frameworks. The same project compiles fine with Qt 5.4. Is it known issue with known workarounds? ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailma

Re: [Interest] cross-platform CI for mobile Qt-based projects (iOS / android)

2015-06-02 Thread Alexander Ivash
/sci+subversion/websvn changesets and test the fix in the release > build. > > took me quite a time to get it running, but now it's very smooth ;) > > alex > > Am Tue, 2 Jun 2015 15:54:56 +0300 > schrieb Alexander Ivash : > > > Thank you, I will take a look! But d

Re: [Interest] cross-platform CI for mobile Qt-based projects (iOS / android)

2015-06-02 Thread Alexander Ivash
e build output is ready > for iTunes Connect. > > -Ed > > > > > On Jun 2, 2015, at 5:59 AM, Alexander Ivash wrote: > > Does such a thing exist at the moment? If no, I'd appreciate any hints > on implementing

[Interest] cross-platform CI for mobile Qt-based projects (iOS / android)

2015-06-02 Thread Alexander Ivash
Does such a thing exist at the moment? If no, I'd appreciate any hints on implementing this (At the moment I'm looking at the 'builbot', but not sure if this is the best option). ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.or

[Interest] QML component or QtLocation backend for Yandex Maps (maps.yandex.ru)

2015-05-13 Thread Alexander Ivash
Is there any QML component or QtLocation backend wrapping yandex maps? It is planned to be used on IOS/Android/WP ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] how to change thickness of text stroke in QML ?

2015-03-05 Thread Alexander Ivash
Thank you, this looks like a good workaround! 2015-03-05 11:01 GMT+03:00 Gunnar Sletta : > > > On 05 Mar 2015, at 08:43, Alexander Ivash wrote: > > > > Thank you, but unfortunately such approach disallows changing stroke > thickness independently of font itself. I

Re: [Interest] how to change thickness of text stroke in QML ?

2015-03-04 Thread Alexander Ivash
>: > font.weight > > -- > *Von:* interest-bounces+alessandro.portale=theqtcompany@qt-project.org > im > Auftrag von Alexander Ivash > *Gesendet:* Dienstag, 3. März 2015 19:45 > *An:* interest@qt-project.org > *Betreff:* [Interest] how to ch

[Interest] how to change thickness of text stroke in QML ?

2015-03-03 Thread Alexander Ivash
subj ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

[Interest] QML live coding & partial 'clearComponentCache'

2015-03-02 Thread Alexander Ivash
Is there any way to make partial 'clearComponentCache', for example remove only one particular component? Would be nice to have such a feature as it would allow to implement live-coding environment with incremental updates. ___ Interest mailing list Inter

Re: [Interest] Qt Quick UI Forms & item views: best practices

2015-01-21 Thread Alexander Ivash
avascript functions are not allowed, but signals are a bit different from my prospective. From the other side if ListView would have 'itemClicked' signal out-of-box, this would solve this particular case. 2015-01-21 13:10 GMT+03:00 Ola Røer Thorsen : > Den 2015-01-21 09:24, skrev A

Re: [Interest] Qt Quick UI Forms & item views: best practices

2015-01-21 Thread Alexander Ivash
GMT+03:00 Kristoffersen, Even (NO14) < even.kristoffer...@honeywell.com>: > > From: Alexander Ivash > > Sent: 20. januar 2015 19:32 > > To: interest@qt-project.org > > Subject: [Interest] Qt Quick UI Forms & item views: best practices > > > MouseArea

[Interest] Qt Quick UI Forms & item views: best practices

2015-01-20 Thread Alexander Ivash
I was trying to apply new feature (Qt Quick UI Forms) to like to create a custom ListView with a custom delegate, but quickly found that I'm not sure how to propagate signal from delegate to ListView to expose it as the part of custom ListView's API. Probably I'm missing something, but what is the

Re: [Interest] QML TableView style & Windows Phone

2015-01-03 Thread Alexander Ivash
return true; } return false; }) control.horizontalScrollBarPolicy = Qt.ScrollBarAlwaysOff; control.verticalScrollBarPolicy = Qt.ScrollBarAlwaysOff; } } } 2015-01-03 13:25 GMT+03:00 Alexander Ivash : > Is it possible to apply different s

[Interest] QML TableView style & Windows Phone

2015-01-03 Thread Alexander Ivash
Is it possible to apply different style (for example android's) to TableView ? Not sure why, but on Windows Phone it looks like on desktop platforms: has desktop-like scrollbars and scrolling is possible only via scrollbars. What I need - is behaviour like on android platform: no scrollbars visible

[Interest] Qt application <=> android service communication

2014-10-27 Thread Alexander Ivash
>> There is a demo on in-app purchases before Qt InApp purchase API was >> available that illustrates data passage between Android and Qt. >> Not sure if this was you want though. Give a look at the source code. >> http://blog.qt.digia.com/blog/2013/12/12/implementing-in-app-purchase-on-android/

[Interest] Qt application <=> android service communication

2014-10-24 Thread Alexander Ivash
I know that at the moment it is not possible to create android services in Qt, but what about communication between Qt-based application and Java-based android service? Is there any samples? ___ Interest mailing list Interest@qt-project.org http://lists.q

Re: [Interest] Windows Phone & landscape orientation

2014-08-17 Thread Alexander Ivash
/Display_portrait_qml_application_in_landscape ), like Calendar, dialogs, dropdown lists of comboboxes etc. Probably I'm missing something, but is there way to implement this rotation logic in a single place? 2014-08-17 18:44 GMT+03:00 Knight Andrew : > Alexander Ivash wrote: > > How to spe

[Interest] Windows Phone & landscape orientation

2014-08-16 Thread Alexander Ivash
How to specify landscape orientation for Windows Phone app? As I understand this can be done by modifying AppxManifest.xml, but I don't see such a file inside release folder. ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/ma

[Interest] making 'hole' in the rectangle

2014-07-24 Thread Alexander Ivash
Is it possible to implement a 'hole' component which would make color of its parent control transparent? For example: Rectangle { width: 100 height: 100 color: 'blue' Rectangle { width: 50 height: 50 color: 'green' Hole { anchors.fill:

[Interest] Qt-based android app: StartApp's exit banners are not shown

2014-06-02 Thread Alexander Ivash
I'm trying to integrate StartApp's exit banners (startapp.com) into Qt-based android application but I can't get them working properly - they are not shown on exiting from application using 'back' button (although they work as expected on pressing 'home' button). The issue seems to be Qt-specific,

[Interest] Is there any way to find QML object by id?

2014-05-22 Thread Alexander Ivash
>> Alexander, do you have another use case in mind? It might clarify your>> >> requirement. (I haven't played with QML yet but I thought all QObject >> info>> is exposed to javascript and the components anyway - isn't that how >> the>> linkage is achieved?) The only use-case I have in mind is

[Interest] Is there any way to find QML object by id?

2014-05-22 Thread Alexander Ivash
>>* Thats exactly what I would also do if it would be my component, but *>>* unfortunately I don't have an access to TextInput { id: input } which is *>>* inside the ComboBox. * > But you are able to assign the ID or is it built-in? I don't get the> > problem, although I have not used the ComboBox

[Interest] Is there any way to find QML object by id?

2014-05-21 Thread Alexander Ivash
Use-case: Let's say I want to customize ComboBox's TextInput control which is not exposed via ComboBox API. ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

[Interest] a few questions about QML Components

2014-05-19 Thread Alexander Ivash
I was trying to use QML components in simple android application but confronted several issues: 1. I couldn't find any API allowing to adjust widths of columns in TableView based on the content. Do I understand right that the only way to achieve this is to go through all the entries in model manua

[Interest] xcb_conn.c:186: write_vec: Assertion `!c->out.queue_len' failed.

2014-04-07 Thread Alexander Ivash
Did anybody ever confront such an issue? It started happening after I created two instances of QtQuick2ApplicationViewer (to debug network communication between two 'instances' of my app). After some google-ing I found that 'QSG_RENDER_LOOP=BASIC' could help and tried this as well - no luck so far.

Re: [Interest] automatic UI updates as the result of QML file modifications

2014-01-25 Thread Alexander Ivash
e. I really > recommend it. > > > On Jan 24, 2014, at 9:57 AM, Alexander Ivash wrote: > > > Did anybody implement such functionality? Is is possible at all? Having > this would be extremely helpful for fine-tuning UI. > > ___ &

[Interest] automatic UI updates as the result of QML file modifications

2014-01-24 Thread Alexander Ivash
Did anybody implement such functionality? Is is possible at all? Having this would be extremely helpful for fine-tuning UI. ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] How to change QFont::StyleStrategy from QML?

2014-01-20 Thread Alexander Ivash
2014/1/20 Bo Thorsen > Den 19-01-2014 14:49, ElderOrb skrev: > > I have a font which is unfortunately rendered incorrectly unless > > QFont::StyleStrategy set to QFont::NoFontMerging. This font is being > > loaded via QML Loader and used by many QML controls. Unfortunately > > 'QFont::NoFontMergi

  1   2   >