[Interest] Empty QML ListView after filtering QSortFilterProxyModel

2021-04-12 Thread Roman Wüger
Hello all, I use the setFilterRole(), setFilterFixedString() function and so on. The application is a QML application where the business logic is written in C++. After setting the filter, I run in a for loop over the Model and Print the items for debugging purpose, which works fine. The

[Interest] Empty QML ListView after filtering QSortFilterProxyModel

2021-04-12 Thread Roman Wüger
Hello all, I use the setFilterRole(), setFilterFixedString() function and so on. The application is a QML application where the business logic is written in C++. After setting the filter, I run in a for loop over the Model and Print the items for debugging purpose, which works fine. The

Re: [Interest] Wrong position QStyleOptionProgressBar on macOS

2020-03-21 Thread Roman Wüger
it. > > I have filed bugs against some of these problems, and gotten very little > attention. > > -John Weeks > >> On Mar 20, 2020, at 12:02 PM, Roman Wüger wrote: >> >> Hello, >> >> I use QStyleOptionProgressBar on macOS Catalina with Qt 5.14

[Interest] Wrong position QStyleOptionProgressBar on macOS

2020-03-20 Thread Roman Wüger
Hello, I use QStyleOptionProgressBar on macOS Catalina with Qt 5.14.1 and tried versions back to 5.11.3. In a Table the progressbar is always displayed in row 0 and column 0 which is wrong even the current row is 6 or something like that and column is 1 or similar. Any hints on this issue?

Re: [Interest] Removing files/folders in /Applications under macOS

2019-11-28 Thread Roman Wüger
ary/archive/documentation/Miscellaneous/Reference/EntitlementKeyReference/Chapters/AboutEntitlements.html > > > >> On Nov 27, 2019, at 7:07 AM, Roman Wüger wrote: >> >> Hello Thiago, >> >> At first, thanks for the quick reply. >> >> when I ru

Re: [Interest] windeployqt

2019-11-27 Thread Roman Wüger
Hello, try running windeployqt with the -qml or -qmldir option. Works for me. You must pass the qml directory to the Option like %QTDIR%\qml Regards Roman > Am 27.11.2019 um 19:58 schrieb Jason H : > > I tried to use windeployqt to create a QML application directory structure > to run on a

Re: [Interest] Removing files/folders in /Applications under macOS

2019-11-27 Thread Roman Wüger
appears to enter the administrator. Regards Roman > Am 27.11.2019 um 15:05 schrieb Thiago Macieira : > > On Wednesday, 27 November 2019 04:56:02 PST Roman Wüger wrote: >> I’m not able to remove files/dies in /Applications programmatically. > > Why not? What was the er

[Interest] Removing files/folders in /Applications under macOS

2019-11-27 Thread Roman Wüger
Hello, I already tried it with QDir and removeRecursively() but it won’t work under macOS. I’m not able to remove files/dies in /Applications programmatically. Any hints about that? Thanks in advance Regards Roman ___ Interest mailing list

[Interest] Automatic darkmode on iOS with Qt15.3.0

2019-10-04 Thread Roman Wüger
Hi all, Is there a way to automatically switch to dark/light mode when the system changes the theme on iOS13.x? I use the material style with QuickControls 2 and there is already a system state, but this doesn‘t seem to work. Best Regards Roman

Re: [Interest] App crashes on iOS when geocode or reverseGecode is used

2019-04-12 Thread Roman Wüger
t.org Betreff: Re: [Interest] App crashes on iOS when geocode or reverseGecode is used Hi, is the reply finished? do you get it from the finished signal of the manager? Or are you trying to use what the method returns you immediately? On Thu, 11 Apr 2019 22:42:36 +0200 Roman Wüger < &

[Interest] App crashes on iOS when geocode or reverseGecode is used

2019-04-11 Thread Roman Wüger
Hello, I try to get the city and country from coordinates. For this I use the functions geocode/reverseGecode. The pointer is valid but if the function is accessed with valid coordinates from the GeoPositionInfoSource signal, I get a EXC_BAD_ACCESS I use “osm” as the geo service provider.

[Interest] Android menu button QWidget app

2019-04-09 Thread Roman Wüger
Hello, I use a QWidget app on Android. I noticed that a menu button (button with 3 white lines on it) is created without my knowledge. How can I hide/remove this menu button? Because when I tip with my finger on this button then the application crash. Thanks in advance Regards Roman

[Interest] 3DTouch under iOS

2019-03-25 Thread Roman Wüger
Hi, Regarding the document https://developer.apple.com/documentation/uikit/peek_and_pop/add_home_screen_quick_actions I only need to add a list in the Info.plist for a static 3D Touch menu But how can I respond to triggered quick actions from a Qt application. Any hints? Regards

Re: [Interest] Problems getting QGeoPositionInfoSource working under iOS

2019-03-21 Thread Roman Wüger
ns link line. Last but not least ensure > that your application's project file specifically mentions positioning as > dependency. > > -- > Alex > > > From: Roman Wüger > Sent: Wednesday, 20 March 2019 10:07:52 AM > To: Alex Bl

Re: [Interest] How to show always a done button

2019-03-20 Thread Roman Wüger
Hi Pierre, I also have no done button if the keyboard is text only. So maybe this function doesn‘t work at all on iOS? Regards Roman Am 20.03.2019 um 10:57 schrieb Pierre-Yves Siret : >> Hi, >> >> I try to always show a done or similar button on top of the onscreen >> keyboard. >> >> To do

Re: [Interest] Problems getting QGeoPositionInfoSource working under iOS

2019-03-20 Thread Roman Wüger
Hello Alex, I use the prebuilt binaries from the online Installer. Regards Roman > Am 20.03.2019 um 08:51 schrieb Alex Blasche : > > Hi, > >> From: Interest on behalf of Roman Wüger >> > >> I try to get QGeoPositionInfoSource::createDefaultSource(th

[Interest] Problems getting QGeoPositionInfoSource working under iOS

2019-03-20 Thread Roman Wüger
Hi, I try to get QGeoPositionInfoSource::createDefaultSource(this); working under iOS 12.1.2 with Qt 5.11.x. But the function returns always a null pointer. Do i need to initialize the plugin first? Maybe with Q_IMPORT_PLUGIN? But if so, what do I need to enter? Thanks in advance Regards

[Interest] How to show always a done button

2019-03-20 Thread Roman Wüger
Hi, I try to always show a done or similar button on top of the onscreen keyboard. To do this I tried the following as an example for a Textfield: inputMethodHints: Qt.ImhDigitsOnly EnterKey.type: Qt.EnterKeyDone but there is no done key shown. Any hints? Regards Roman

Re: [Interest] Problems with layouting with QML Control 2 Qt 5.12

2019-03-06 Thread Roman Wüger
How would you layout correctly ~10 labels with their TextFields? Regards Roman > Am 01.02.2019 um 12:39 schrieb Federico Ferri : > > >> On 1 February 2019 at 11:14:01, Roman Wüger (roman.wue...@gmx.at) wrote: >> Hello, >> >> i noticed this in every

[Interest] Problems getting Qml camera to work under iOS

2019-02-10 Thread Roman Wüger
Hello, I use CMake with Qt >= 5.11.1 and have troubles to get my camera working under iOS 12.1. I set the required key/value (NSCameraUsageDescription) in the Info.plist file and link against the required libraries: target_link_libraries(${PROJECT_NAME} Qt5::AVFServicePlugin) # imported

[Interest] Problems with layouting with QML Control 2 Qt 5.12

2019-02-01 Thread Roman Wüger
Hello, i noticed this in every ui file I „design“ in Qt Creator. To simplify the problem: I have a lot of labels and text input fields next to the labels. Under Windows in Qt Creator, everything looks perfect, but then when I start the app on a device (iOS or Android driven) then the layout

Re: [Interest] Problem with font size on Android and High DPI

2018-11-14 Thread Roman Wüger
ke each other compare to screen > size. It's maybe not what yo are looking for but might give you some idea to > achieve what you are looking for. > > -Original Message- > From: Interest On Behalf > Of Roman Wüger > Sent: November 14, 2018 11:30 AM > To: ekke >

Re: [Interest] Problem with font size on Android and High DPI

2018-11-14 Thread Roman Wüger
No, it is a QWidget application with Qt 5.12. I can’t switch to QtQuick because customer wants existing application to be ported to android tablet. Regards Roman > Am 14.11.2018 um 17:15 schrieb ekke : > >> Am 14.11.18 um 17:11 schrieb Roman Wüger: >> Hello everyone, >>

[Interest] Problem with font size on Android and High DPI

2018-11-14 Thread Roman Wüger
Hello everyone, I enabled the High DPI option on an android tablet. However, the fonts are not resized at all and looks a way too small. I tried the other environment variables too, but the result is not as expected. Does anyone have a hint or how is that done normally? Regards Roman

Re: [Interest] Connection problems with QNerworkAccessManager

2018-11-14 Thread Roman Wüger
No one? > Am 09.10.2018 um 14:54 schrieb Roman Wüger : > > I tried to copy the script outside of the htaccess restricted are, and it > seems to work. Maybe it has todo with the combination of ssl and htaccess? > > Regards > >> Am 09.10.2018 um 14:50 schrieb

Re: [Interest] Problems with QCamera/QML Camera when trying to porting a desktop application to android tablet

2018-11-13 Thread Roman Wüger
Hello everyone, I tried it also with the last 5.12 Version without any positive changes. Does anyone else have an idea? Regards > Am 11.09.2018 um 23:47 schrieb Roman Wüger : > > Hi tony, > > Sorry for the delayed answer, but I was on vacation. > The same dialog works a e

Re: [Interest] Detect connected Bluetooth keyboard under Android

2018-11-03 Thread Roman Wüger
ily monitored. > > -Original Message- > From: Interest On Behalf > Of Roman Wüger > Sent: November 1, 2018 5:58 AM > To: Alex Blasche > Cc: Qt Project MailingList > Subject: Re: [Interest] Detect connected Bluetooth keyboard under Android > > Hi Alex, > than

Re: [Interest] Detect connected Bluetooth keyboard under Android

2018-11-01 Thread Roman Wüger
e I am assuming the platform does > not expose such devices via the usual discovery mechanisms either. You have > to write your own Java/JNI code to interact with the class. > > -- > Alex > > ____ > From: Interest on > behalf

[Interest] Detect connected Bluetooth keyboard under Android

2018-10-29 Thread Roman Wüger
Hi @all, i played with the QBluetoothLocalDevice and QBluetoothDiscoveryAgent to detected if a Bluetooth keyboard is connected to an android tablet. However, I can’t find out the correct way. I tried to read the majordeviceclass and minordeviceclass but it doesn‘t work, I only get 31,0 but

Re: [Interest] Connection problems with QNerworkAccessManager

2018-10-09 Thread Roman Wüger
I tried to copy the script outside of the htaccess restricted are, and it seems to work. Maybe it has todo with the combination of ssl and htaccess? Regards > Am 09.10.2018 um 14:50 schrieb Roman Wüger : > > Hello, > > i tried it with 5.11.x versions. > The log fro

Re: [Interest] Connection problems with QNerworkAccessManager

2018-10-09 Thread Roman Wüger
calls my authenticationRequired() slot. Regards > Am 08.10.2018 um 13:30 schrieb ekke : > > have you tried 5.11.2, 5.12 Beta or 5.10.1 ? > >> Am 08.10.18 um 12:35 schrieb Roman Wüger: >> Hi, >> >> i use Qt 5.11.1 at the moment and have some connection pro

[Interest] Connection problems with QNerworkAccessManager

2018-10-08 Thread Roman Wüger
Hi, i use Qt 5.11.1 at the moment and have some connection problems with QNetworkAccessManager. There are no error, sslerror or finished signals emitted, but I see the traffic in Wireshark. The problem occurs on Windows, Mac and iOS. When I enter the url in the browser, then it is working

Re: [Interest] Qt installer from console

2018-09-15 Thread Roman Wüger
t; and just run the installer on your > server with the GUI on your computer then that's probably your easiest > option. I'd wish for a complete set of command line options in the installer > so that the gui could be bypassed completely. > > Cheers, > Ola > > > 2018

[Interest] Qt installer from console

2018-09-15 Thread Roman Wüger
Hi, I have Ubuntu server 18.04 Installed and wanted to install Qt with the online installer. Is this somehow possible. I thought it was possible in the past if I remember correctly. Thanks in advance Regards Roman___ Interest mailing list

Re: [Interest] Problems with QCamera/QML Camera when trying to porting a desktop application to android tablet

2018-09-11 Thread Roman Wüger
Hi tony, Sorry for the delayed answer, but I was on vacation. The same dialog works a expected on Windows and on Linux. So I think it must something be to do with android Regards Roman > Am 22.08.2018 um 11:45 schrieb Tony Rietwyk : > > Hi Roman, > Why did you need to use

Re: [Interest] Problems with QCamera/QML Camera when trying to porting a desktop application to android tablet

2018-08-20 Thread Roman Wüger
No one? > Am 09.08.2018 um 13:05 schrieb Roman Wüger : > > Ok it seems to work with Qt 5.11.1 but the preview video is shown in the top > left corner instead of the complete widget. > > Any hints? > > Thanks in advance > >> Am 31.07.2018 um 17:18 schrieb

Re: [Interest] Problems with QCamera/QML Camera when trying to porting a desktop application to android tablet

2018-08-09 Thread Roman Wüger
Ok it seems to work with Qt 5.11.1 but the preview video is shown in the top left corner instead of the complete widget. Any hints? Thanks in advance > Am 31.07.2018 um 17:18 schrieb Roman Wüger > : > > Hello guys, > > I try to port a desktop application to an android tab

[Interest] Problems with QCamera/QML Camera when trying to porting a desktop application to android tablet

2018-07-31 Thread Roman Wüger
Hello guys, I try to port a desktop application to an android tablet. At the moment everthing seems to work smoothly except the camera stuff. Previously QCamera with QCamerViewfinder was used but does not work on android, because I read that Qt Multimedia isn’t available on android and so I

Re: [Interest] Installer and MSVC2010 64-bit pre-builts

2017-07-22 Thread Roman Wüger
Anyway, I thought for Qt prior 5.6, because the 32-bit version of MSVC2010 is there for Qt 5.0.2 to Qt 5.5. Regards Roman > Am 22.07.2017 um 19:17 schrieb Roman Wüger <roman.wue...@gmx.at>: > > Thank you for the answer. > > At the moment I use Qt 5.9.1. > I was on

Re: [Interest] Installer and MSVC2010 64-bit pre-builts

2017-07-22 Thread Roman Wüger
Thank you for the answer. At the moment I use Qt 5.9.1. I was only wondering if I missed something. Thanks anyway Regards Roman > Am 22.07.2017 um 19:14 schrieb Thiago Macieira <thiago.macie...@intel.com>: > >> On Saturday, 22 July 2017 06:42:33 PDT Roman Wüger wrote: >&

[Interest] Installer and MSVC2010 64-bit pre-builts

2017-07-22 Thread Roman Wüger
Hello, I know there are packages in the past, but it seems they are removed now. Is there a reason for that? Regards Roman ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

[Interest] Problems with windows app store

2016-10-26 Thread Roman Wüger
Hello, Is there a way/trick/hint to get a Qt app into the windows app store? I tried to build an app but it is denied (windows app certification kit) because of the Qt stuff. Regards Roman ___ Interest mailing list Interest@qt-project.org

[Interest] [qml][qtchart] Color per range in a CategoryAxis

2016-08-02 Thread Roman Wüger
Hello, Is it somehow possible to defines a background color per range in a CategoryAxis and if so how? Thanks Regards Roman ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

[Interest] QML Chart + LineSeries in C++

2016-07-25 Thread Roman Wüger
Hello, what is the preferred way to assign a C++ Model or some data from that from C++ to a QML Chart? Thanks Roman ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] [cmake-developers] Empty ERROR_VARIABLE in execute_process

2016-05-23 Thread Roman Wüger
hat the error pipe isn’t read correctly, because _errVar is empty. And hints? Regards Roman > Am 23.05.2016 um 19:33 schrieb Brad King <brad.k...@kitware.com>: > >> On 05/23/2016 11:34 AM, Roman Wüger wrote: >> I tried it with CMake 3.5.1 and 3.5.2 and now with the master wi

[Interest] Qt iOS without QML?

2015-10-27 Thread Roman Wüger via Interest
Hello, Is it at the moment possible to develop iOS apps only with Qt Widgets and without any QML? Thanks in advance ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest