Re: [Interest] crash when using multiple setSectionResizeMode() calls in QTableView

2018-08-13 Thread Frank Rueter | OHUfx
Thanks for testing Marian, much appreciated! Interesting it won't crash for you. I will try it in a different IDE (using WingIDE normally) and a different machine in case there is something wrong with my install. Cheers, frank On 13/08/18 10:10 PM, Marian Beermann wrote: I tried your setSect

Re: [Interest] [Qt3D] Windows Deployment. Path to models?

2018-08-13 Thread Oleg Evseev
My bad. Windows Deployment nothing to do with my issue. In fact this was in release mode even in qt creator due to my mistake with #ifdef QT_DEBUG and not adding entities to QLayerFilter %) Sorry for bothering. 2018-08-13 20:08 GMT+03:00 Oleg Evseev : > Build app without models and its size redu

Re: [Interest] [Qt3D] Windows Deployment. Path to models?

2018-08-13 Thread Oleg Evseev
Build app without models and its size reduced by size of models. So they are the part of exe as other resources, right? But not displayed :( 2018-08-13 19:46 GMT+03:00 Oleg Evseev : > Hello! > > Trying to deploy windows desktop application with qt3d. Application runs > but sceneloaders don't load

[Interest] [Qt3D] Windows Deployment. Path to models?

2018-08-13 Thread Oleg Evseev
Hello! Trying to deploy windows desktop application with qt3d. Application runs but sceneloaders don't load qgltf models added through assest QT3D_MODELS. In code models are loaded from resources: setSceneLoaderSource(QString("qrc:/models/helicopter.qgltf")); In qt creator everything loads fine.

Re: [Interest] Platform integrations

2018-08-13 Thread Furkan Üzümcü
I’ve been using Qt for mobile and desktop development for a while now and even though I am satisfied with the results, the platform specific features, as you say, have not been great. But consider yourself lucky because Qt is more robust on iOS than Android. Especially with the new dynamic navig

[Interest] Platform integrations

2018-08-13 Thread Jason H
This past week I worked with some devs who had a Xamarin (C#) app for iOS. Qt was woefully behind. I had to muck about with Objective-C, (with Apple's site now defaulting to Swift code examples). Simple things like setting screen brightness and status bar visibility were as simple as setting a

Re: [Interest] windeployqt from win7 to win10

2018-08-13 Thread jagernicolas
thx, good to know 11 août 2018 03:17 "Nikos Chantziaras" a écrit: > On 10/08/18 19:39, jagernico...@legtux.org wrote: > >> I built a project on win7 and I have to deploy this application on a > win10 >> computer over >> internet. Is it possible to run windeployqt.exe for > an application built

[Interest] Qt AVRCP Implementation

2018-08-13 Thread Akın Gümüşkavak
Hello, I'm trying to implement AVRCP to Qt Bluetooth. Is there any example or resource that can help me to figure it out? Thanks -- *Akın Gümüşkavak* ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interes

Re: [Interest] crash when using multiple setSectionResizeMode() calls in QTableView

2018-08-13 Thread Marian Beermann
I tried your setSectionResizeMode snippet on a table model whose headerData() is the same as yours and it doesn't cause a crash for me. I don't think the other roles are required (at least to not have a crash). On 13.08.2018 11:30, Frank Rueter | OHUfx wrote: > Thanks. My header data simply looks

Re: [Interest] crash when using multiple setSectionResizeMode() calls in QTableView

2018-08-13 Thread Frank Rueter | OHUfx
Thanks. My header data simply looks like this: |def headerData(self, section, orientation, role): if orientation == QtCore.Qt.Horizontal: if role == QtCore.Qt.DisplayRole: return self.header_labels[section] | where: self.header_labels just contains a list of strings. I guess I need to implem

Re: [Interest] crash when using multiple setSectionResizeMode() calls in QTableView

2018-08-13 Thread Marian Beermann
Must be something in your code; I'd start by double-checking everything related to the header data in your model. -Marian On 13.08.2018 05:17, Frank Rueter | OHUfx wrote: > Hi all, > > using PySide2 I am trying to set different resize modes for each of my > columns in a table view, but as soon a