[Interest] How to disable "Semantic Issue" marker in qtcreator ?

2020-11-23 Thread Martin Koller
Hi, I'm using qtcreator only for debugging. I always get "Semantic issue" markers beside the source code line numbers, which interferes with the breakpoint markers. See attached screenshot. One can not easily see what is a breakpoint. I want to get rid of the display of the "Semantic issue" marke

Re: [Interest] How to load 3D scene with QSceneLoader

2018-09-13 Thread Martin Koller
On Freitag, 14. September 2018 05:15:53 CEST dns.bot...@gmail.com wrote: > Hi, > > This was it. I thought QUrl would default to local path. Now I seem to > remember to have made this assumption in the past as well and then be > suprised. Is should start to learn. :) Alternatively use QUrl::fromL

Re: [Interest] Qt-3D scene file formats

2018-03-16 Thread Martin Koller
On Freitag, 16. März 2018 13:43:53 CET Mike Krus wrote: > Hi > > > On 16 Mar 2018, at 08:04, Martin Koller wrote: > > > > What are the possible file formats the QSceneLoader can load (Qt 5.10, > > Linux openSuse 42.3) ? > > Is blender among them ? > Scene

[Interest] Qt-3D scene file formats

2018-03-16 Thread Martin Koller
What are the possible file formats the QSceneLoader can load (Qt 5.10, Linux openSuse 42.3) ? Is blender among them ? -- Best regards/Schöne Grüße Martin A: Because it breaks the logical sequence of discussion Q: Why is top posting bad? () ascii ribbon campaign - against html e-mail /\

Re: [Interest] Qt5 C++ Widgets and Animated ListView

2016-05-24 Thread Martin Koller
On Tuesday 17 May 2016 21:21:14 Simone wrote: > You mean that with QListView i have natively the scrolling by finger with > deceleration and bouncing effect? I need exactly the same result as the QML > ListView component. > > If yes it seems wonderful to me.. > Do you know some examples on the w

Re: [Interest] qDebug under Windows

2015-08-10 Thread Martin Koller
On Monday 10 August 2015 14:40:58 Jérôme Godbout wrote: > Hi, > I have some problem under Windows to redirect the qDebug() default output, > it seem to go to the Windows "debugger" output and I would like it to be > sent to stdcerr instead. How/where can I change that for Windows (work > normally u

[Interest] How to use QtPositioning on Android

2014-08-12 Thread Martin Koller
I'm trying to use QGeoPositionInfoSource on Android with Qt5.3.1 built on a Linux Box using Ministro. When I do this with a simple test program using qtcreator, QGeoPositionInfoSource::availableSources() shows "android", which is fine. However, testing with our large application, it gives an empty

Re: [Interest] Q_ENUMS with foreign enum ?

2014-07-15 Thread Martin Koller
On Monday 14 July 2014 21:47:00 Konstantin Tokarev wrote: > > 14.07.2014, 13:39, "Martin Koller" : > > On Monday 14 July 2014 09:11:06 Rutledge Shawn wrote: > >> On 12 Jul 2014, at 10:03 AM, Martin Koller wrote: > >>> Hi, > >>> > >>

Re: [Interest] Q_ENUMS with foreign enum ?

2014-07-14 Thread Martin Koller
On Monday 14 July 2014 09:11:06 Rutledge Shawn wrote: > > On 12 Jul 2014, at 10:03 AM, Martin Koller wrote: > > > Hi, > > > > is there any possibility to use an enum in the Q_ENUMS macro when the enum > > is not > > defined in a QObject derived class ?

[Interest] Q_ENUMS with foreign enum ?

2014-07-12 Thread Martin Koller
Hi, is there any possibility to use an enum in the Q_ENUMS macro when the enum is not defined in a QObject derived class ? (Specifically I'm trying to do that with QSslError::SslError) -- Best regards/Schöne Grüße Martin A: Because it breaks the logical sequence of discussion Q: Why is top pos

Re: [Interest] STILL LOOKING for a QPA

2014-05-24 Thread Martin Koller
On Tuesday 20 May 2014 09:30:23 Thiago Macieira wrote: > > Though I would ask how unstable is it 18 months in? > > It's stable. sorry, no. it isn't. I'm wringin a QPA plugin and the same source does not compile with 5.2.1 and 5.3.0 ... And for the part: "the docs is in the code" To be honest -

Re: [Interest] Best practice for properties, QAbstractListModel with a QList and a Quick2 view

2013-12-19 Thread Martin Koller
On Thursday 19 December 2013 16:53:31 Jan Kundrát wrote: > On Thursday, 19 December 2013 16:34:01 CEST, Martin Koller wrote: > > beginRemoveRows(... row1, row1); > > beginRemoveRows(... row17, row17); > > ... > > endRemoveRows(); > > endRemoveRows(); > > Y

Re: [Interest] Best practice for properties, QAbstractListModel with a QList and a Quick2 view

2013-12-19 Thread Martin Koller
On Wednesday 18 December 2013 14:58:17 Jan Kundrát wrote: > On Wednesday, 18 December 2013 11:59:15 CEST, Ola Røer Thorsen wrote: > > However I get problems when I delete objects from the list model. The > > delegates are deleted later than the actual objects, so I get warnings > from > > QML on t

Re: [Interest] Gestures

2013-12-18 Thread Martin Koller
On Wednesday 18 December 2013 14:31:26 Igor Mironchik wrote: > Hi. > > Can anybody explain me the difference between QPanGesture and QSwipeGesture. > > I understand difference in the classe's interfaces but I can't > understand the difference in the user's actions to trigger them. I think "pann

Re: [Interest] QPA plugin and crash in effectiveWinId()

2013-09-29 Thread Martin Koller
On Sunday 29 September 2013 15:20:09 Martin Koller wrote: > Hi, > > I'm currently implementing a QPA plugin for Qt-4.8.4. > What I now see is a crash (ASSERT) in QWidget::effectiveWinId() as > nativeParentWidget() returns 0. > This is happening when I send mouse move event

[Interest] QPA plugin and crash in effectiveWinId()

2013-09-29 Thread Martin Koller
Hi, I'm currently implementing a QPA plugin for Qt-4.8.4. What I now see is a crash (ASSERT) in QWidget::effectiveWinId() as nativeParentWidget() returns 0. This is happening when I send mouse move events to Qt and the cursors leaves a widget: #5 0x76541555 in qt_assert (assertion=0x7f

Re: [Interest] Qt::Alignment and MetaObject System

2013-08-29 Thread Martin Koller
On Thursday 29 August 2013 19:09:52 Giuseppe D'Angelo wrote: > Il 29/08/2013 17:11, Martin Koller ha scritto: > > However how can I do the same with this Qt::AlignmentFlag enum which is not > > defined inside a QObject ? > > There's a trick in place in qnamespac

[Interest] Qt::Alignment and MetaObject System

2013-08-29 Thread Martin Koller
Hi, I'd like to programmatically get the enum values for Qt::Alignment (Qt::AlignmentFlag) as strings. I do this in my code already for e.g. SizePolicy like that: int idx = QSizePolicy::staticMetaObject.indexOfEnumerator("Policy"); QMetaEnum metaEnum = QSizePolicy::staticMetaObject.enum