Re: [Interest] The willy-nilly deletion of convenience,, methods

2021-03-24 Thread Andy
Do you think everyone can take a moment and realize that this mailing list has dozens of people on it. Every email we receive takes some non-zero amount of time to deal with. Please consider this before clicking "send". --- Andy Maloney // https://asmaloney.com twitter ~ @asmalo

Re: [Interest] Faster way of rendering QOpenGLFramebufferObject to image

2021-07-14 Thread Andy
es to a temp dir and then processing them using ffmpeg. I use QtConcurrent::run() to do image processing (e.g. adding an overlay) & writing so it doesn't affect the main thread doing the capturing. --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmal

[Interest] [Qt3D] Combining multiple QGeometry classes?

2016-01-22 Thread Andy
dance appreciated. The goal is to create a new mesh that is constructed using the primitive geometries instead of re-implementing them. Thanks! - Andy ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

[Interest] [Qt3D] Cylinder Mesh Mod Problem

2016-01-24 Thread Andy
rom 21 Jan (SHA 44c743c90cf51eddbf5b0bb3cf957c58fa0ef94f). Any ideas what I'm doing wrong or suggestions on how to figure it out? Thank you for any help/suggestions! - Andy ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

[Interest] [Qt3D] Cylinder Mesh Mod Problem

2016-01-25 Thread Andy
t; > I am using the latest Qt 5.6 git from 22 Jan (SHA 1fcdb6cafcf7621fdea84e28a95934a4a04ea1b7) which uses Qt3D from 21 Jan (SHA 44c743c90cf51eddbf5b0bb3cf957c58fa0ef94f). > > Any ideas what I'm doing wrong or suggestions on how to figure it out? > > Thank you for any hel

Re: [Interest] [Qt3D] Cylinder Mesh Mod Problem

2016-01-25 Thread Andy
Yes - I'll do it as soon as I get a chance to setup and relearn the gerrit workflow. Thanks! - Andy On Mon, Jan 25, 2016 at 1:40 PM, Sean Harmer wrote: > Hi, > > thanks for finding that. Are you able to push a fix to Qt's gerrit code > review system please so that

Re: [Interest] [Qt3D] Cylinder Mesh Mod Problem

2016-01-26 Thread Andy
sed around. I have a bunch of fields used in my calculations, so the number of arguments and amount of duplication was getting large...) --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney> On Mon, Jan 25, 2016 at 1:40 PM, Sean Harmer wrote:

[Interest] [Qt3D] QLayerFilters

2016-01-30 Thread Andy
) P.S. Any chance we'll see more Qt3D docs soon? Spelunking the code is good, but would be nice to have some high-level info about these classes. - Andy ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

[Interest] [Qt3D] Several Problems w/Examples

2016-02-01 Thread Andy
orted one: https://bugreports.qt.io/browse/QTBUG-50692 But I haven't been told what other info is needed, so it seems to be stuck in "Need More Info". Is anyone else having similar problems with any of these examples? Thanks! - Andy

Re: [Interest] How to display custom data entry form on QLineEdit click ?

2016-02-01 Thread Andy
Edward: "Is the “[=]()” a place holder?" He's using C++11 lambdas. There are a couple of good explanations here: https://stackoverflow.com/questions/7627098/what-is-a-lambda-expression-in-c11 --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twi

[Interest] [Qt3D] Get OpenGL Information

2016-02-05 Thread Andy
subclassed QWindow's QOpenGLContext using Qt3D? I see a QOpenGLInformationService class that I think provides the info I want, but it's private. Thanks! --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney> _

Re: [Interest] Qt Charts

2016-03-08 Thread Andy
Scott: I believe Qt Charts is scheduled to be included in Qt 5.7: https://wiki.qt.io/New_Features_in_Qt_5.7 http://blog.qt.io/blog/2016/02/22/qt-roadmap-for-2016/ - Andy On Tue, Mar 8, 2016 at 11:00 PM, Scott Aron Bloom wrote: > I have downloaded the latest 5.6.0rc from >

[Interest] [Qt3D] assimp lib update?

2016-03-21 Thread Andy
Is there a plan to update the assimp lib included with Qt3D from 3.1.1 (12 Jun 2014) to 3.2 (3 Nov 2015)? Maybe for 5.7? --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney> ___ Interest mailing list In

[Interest] [Qt3D] Use a QImage as a QTextureImage

2016-04-05 Thread Andy
o set this source? Or is there another path I'm missing to accomplish this? I'm also going to want to render text as a billboard - is this the right way to do it too? (Generate into a QImage with QPainter and use textures on a QPlaneMesh?) (C++, not QML) Thanks! --- Andy Mal

[Interest] [Qt3D] Camera controllers

2016-04-05 Thread Andy
these. (Also, the names should probably be consistent - *Control vs *Controller.) --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney> ___ Interest mailing list Interest@qt-project.org http://lists.qt-proje

Re: [Interest] [Qt3D] Use a QImage as a QTextureImage

2016-04-07 Thread Andy
[bump] Does anyone have any suggestions on how to use an in-memory QImage as a QTextureImage? Or any other way to create a QNormalDiffuseMapAlphaMaterial from an in-memory QImage? I must be missing something obvious. --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <ht

[Interest] [Qt3D] Render to video

2016-04-17 Thread Andy
t approach? (I'm using straight C++ - no QML.) Thanks! --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney> ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] [Qt3D] Render to video

2016-04-18 Thread Andy
On Mon, Apr 18, 2016 at 2:51 AM, Bo Thorsen wrote: > Den 18-04-2016 kl. 05:46 skrev Andy: > >> Goal: generate video with a user-specified resolution, frame rate, & >> container/codec format from an animation in my Qt3D window >> >> (Disclaimer: I'

Re: [Interest] [Qt3D] Render to video

2016-04-18 Thread Andy
On Mon, Apr 18, 2016 at 3:26 AM, Harald Vistnes wrote: > Hi Andy, > > An alternative is to use the FFMPEG encoding library instead of the > command line tools. Then you can pass each frame to the video encoder as > you generate it without writing them all to disk first. >

Re: [Interest] [Qt3D] Render to video

2016-04-18 Thread Andy
east on the Mac - Windows...). > Best, Michael. > > > ___ > Interest mailing list > Interest@qt-project.org > http://lists.qt-project.org/mailman/listinfo/interest > --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney>

Re: [Interest] [Qt3D] Render to video

2016-04-18 Thread Andy
; I think that can be made to work. > nvenc looks like it would be a big win for those with NVIDIA cards, and I see AMD has the analogous VCE. Thanks everyone for helping me get a better sense of the problem I'm trying to solve! > > Cheers, > > Sean > > On Monday 18 Apri

Re: [Interest] [Qt3D] Render to video

2016-04-18 Thread Andy
ion) and pipe the data directly to ffmpeg (Michael's suggestion) which would avoid all that I/O. Hardware encoding would also be nice, but first things first! > > *Sent:* Sunday, April 17, 2016 at 11:46 PM > *From:* Andy > *To:* "Qt Project" > *Subject:* [Intere

Re: [Interest] Example for: QTreeView + QAbstractItemModel + external data

2016-04-30 Thread Andy
; fetchMore() and canFetchMore(). If the reimplementation of fetchMore() > > adds rows to the model, beginInsertRows() and endInsertRows() must be > > called. > > > ___ > Interest mailing list > Interest@qt-project.org > http://lists.qt-project.org/mailman/listinfo/interest > --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney> ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] Divining the opengl versions available

2016-05-17 Thread Andy
ons QFlags(), depthBufferSize 24, redBufferSize 8, greenBufferSize 8, blueBufferSize 8, alphaBufferSize -1, stencilBufferSize 8, samples 4, swapBehavior 2, swapInterval 1, profile 1) (Note: This only gives me a 3.0 context on VMware Fusion 8.1 running Windows 7 - should support 3.3 - so maybe I'

Re: [Interest] Use Qt to zip / unzip files on iOS, Android, OS X, & Windows ?

2016-08-18 Thread Andy
e a more fleshed-out version somewhere. If it's of interest I can try to find it and dust of the decaying bits :-) --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney> On Thu, Aug 18, 2016 at 4:52 PM, Edward Sutton wrote: > Is there a

[Interest] [Qt5.x] QComboBox-related crash

2016-08-19 Thread Andy
mboBox have any ideas what might be going on here? Thank you for your time. --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney> ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] [Qt5.x] QComboBox-related crash

2016-08-22 Thread Andy
mall example to repro it and file a bug. --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney> On Mon, Aug 22, 2016 at 4:18 AM, Viktor Engelmann wrote: > could be related to one of these: > > https://bugreports.qt.io/browse/QTBUG-55134 >

Re: [Interest] Memory Leak when instantiating QWidget based windows

2016-09-08 Thread Andy
tool to Memcheck, and click the start button (little green arrow) After it runs your application (slowly), it will spit out a bunch of info about memory leaks that make it pretty easy to track down the problems. --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://

Re: [Interest] Memory Leak when instantiating QWidget based windows

2016-09-08 Thread Andy
check,... --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney> On Thu, Sep 8, 2016 at 9:13 AM, Edward Sutton wrote: > Hi Andy, > > Could you please elaborate on step #3? > > I cannot find a Memcheck option under Preferences > Debu

Re: [Interest] Memory Leak when instantiating QWidget based windows

2016-09-08 Thread Andy
info there. Are you running on the debug or release version of your application? Or could it be related this?: https://bugreports.qt.io/browse/QTCREATORBUG-10163 --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney> On Thu, Sep 8, 2016 at 9:37 A

Re: [Interest] Memory Leak when instantiating QWidget based windows

2016-09-10 Thread Andy
hing related to ImageLoaderMachO. I have changed my Valigrind setting in the preferences, but I haven't set any suppression files. Were you ever able to get it working within Creator? It would be worth the effort since it parses all the results and makes it easy to jump to the code in question.

Re: [Interest] setting a widget style for a particular widget class only?

2016-09-10 Thread Andy
René: I think you can just use QWidget::setStyle(). Haven't tried it for QTabBar, but I use it on QButtons. QStyle *style = QStyleFactory::create( "fusion" ); QPushButton *button = new QPushButton( "foo", this ); button->setStyle( style ); --- Andy Malone

Re: [Interest] setting a widget style for a particular widget class only?

2016-09-10 Thread Andy
The docs do not specify who owns the pointer, but it looks like the object doesn't have a parent so I would assume the caller does. That code was not actual code from my application but, yes, I would recommend only creating and storing the style once and releasing it appropriately. ---

Re: [Interest] setting a widget style for a particular widget class only?

2016-09-11 Thread Andy
which create things) I like to document who owns the resulting pointer so there's no question who's going to manage the memory. --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney> On Sun, Sep 11, 2016 at 1:35 PM, Lorenz Haas wrote:

[Interest] QObject::dumpObjectTree() & const

2016-10-02 Thread Andy
each time. Obviously not a huge deal, just curious if anyone knows why that decision was made. Thanks! --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney> ___ Interest mailing list Interest@qt-

Re: [Interest] Advise on setting up documentation for a project (Qt Help Framework or not)

2016-10-13 Thread Andy
ch includes proper pagination and formatting for printing/PDF. (FWIW I work in a very niche market. I might choose to do something different if I were writing something for mass consumption or had a lot more resources.) Good luck! --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney &

Re: [Interest] Advise on setting up documentation for a project (Qt Help Framework or not)

2016-10-13 Thread Andy
On Thu, Oct 13, 2016 at 10:16 AM, Elvis Stansvik wrote: > Hi Andy, and thanks for sharing. > > 2016-10-13 15:16 GMT+02:00 Andy : > > Elvis: > > > > I write my manual & tutorials in HTML using a text editor - I use Atom or > > TextWrangler - depends what I

[Interest] QGamepad on Mac OS X

2016-11-20 Thread Andy
input. QGamepadManager doesn't recognize it though. connectedGamepads() returns an empty list. I would expect that if the driver is properly installed, and the device is plugged in, then QGamepadManager would recognize it. What am I missing? Thanks! --- Andy Maloney // https://asm

Re: [Interest] QGamepad on Mac OS X

2016-11-23 Thread Andy
Maybe I'll try a more general question: Has anyone been successful at getting an xbox controller to work on any version of Mac OS X with any version of Qt? Thank you for your time. --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney> On

Re: [Interest] License regarding question

2016-11-29 Thread Andy
it exists somewhere and can be found/looked at/integrated by someone in the future. Thanks Alexander! --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney> On Tue, Nov 29, 2016 at 6:57 AM, Konstantin Tokarev wrote: > > > 29.11.2016, 14:57, &

Re: [Interest] Qt3D Framegraphs

2018-08-21 Thread Andy
disabling the RenderTargetSelector? Thanks again for your help. I finally feel like I'm in danger of understanding something here! On Mon, Aug 20, 2018 at 1:20 AM Paul Lemire wrote: > Hi Andy, > > Please see my reply below > > On 08/15/2018 02:59 PM, Andy wrote: &

Re: [Interest] Qt3D Framegraphs

2018-08-24 Thread Andy
stuff just for defining my framegraph(s). I may continue down that road. Have there been any thoughts/discussions on providing a non-QML way to declare these? Could be useful for tooling (Qt Creator plugin for defining them visually?) as well. Thanks again for taking the time to go through this. -

Re: [Interest] Qt3D Framegraphs

2018-08-31 Thread Andy
x the aspect ratio of the offscreen image (assuming I want the final image to be 512x512)? Do I need to give it its own camera and adjust its aspect ratio somehow? Thanks for any guidance! --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney> On

Re: [Interest] Qt3D Framegraphs

2018-08-31 Thread Andy
On Fri, Aug 31, 2018 at 10:30 AM Paul Lemire wrote: > Hi Andy, > Some ideas below :) > Thanks a lot Paul - answers inline. > On 08/31/2018 02:03 PM, Andy wrote: > > The contours/silhouetting proved a bit of a leap right now so I backed off > to look at the offscreen side

Re: [Interest] Qt3D Framegraphs

2018-09-03 Thread Andy
race that when switching GL_DRAW_FRAMEBUFFER to 0 (onscreen), glUseProgram(1) is called. This is not called when switching GL_DRAW_FRAMEBUFFER to 1 (offscreen). Is the program supposed to persist or does it need to be called again when switching framebuffers? (apitrace is super-cool. Thanks for the p

Re: [Interest] Qt3D Framegraphs

2018-09-04 Thread Andy
On Mon, Sep 3, 2018 at 9:25 AM Paul Lemire wrote: > Glad to hear that, hopefully things are starting to make more sense now. > Getting there - thank you! On 09/03/2018 02:54 PM, Andy wrote: > > Progress! Here's my current framegraph: > > [snip] > > Question: >

[Interest] Building 5.12 on macOS 10.12.6

2018-09-12 Thread Andy
Qt directly linked to OpenSSL no OpenSSL 1.1 no Anyone else having this issue? --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney> ___ Interest mailing list Int

[Interest] {macOS} Qt Installer insists on installing 5.11.2 snapshot

2018-09-12 Thread Andy
qt.io/topic/94409/qt-installation-failed-with-unresolved-dependencies --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney> ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] Building 5.12 on macOS 10.12.6

2018-09-12 Thread Andy
get 10.12 As far as I know this is the latest "everything" I can install on 10.12.6. --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney> On Wed, Sep 12, 2018 at 7:45 PM Thiago Macieira wrote: > On Wednesday, 12 September

Re: [Interest] Building 5.12 on macOS 10.12.6

2018-09-13 Thread Andy
Thanks Tony. The commit says "Also changes the resolution of the desktop to 1280x800x32, timezone to GMT..." Is that a side effect of the changes in the commit or is something missing? (I've never looked at the coin stuff.) --- Andy Maloney // https://asmaloney.com twitter ~ @a

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

2018-09-13 Thread Andy
I've never used QSceneLoader, but don't you have to check for a status of Qt3DRender::QSceneLoader::Ready and then use QSceneLoader::entity() to access the entity that was read in? Maybe take a look at tests/manual/assimp-cpp for inspiration? --- Andy Maloney // https://asmaloney.c

Re: [Interest] {macOS} Qt Installer insists on installing 5.11.2 snapshot

2018-09-14 Thread Andy
No response here either, so bug filed at: https://bugreports.qt.io/browse/QTIFW-1188 --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney> On Wed, Sep 12, 2018 at 1:50 PM Andy wrote: > (Posted in the forum - no response - but thought I&

[Interest] OpenGL: Setting samples on default QSurfaceFormat

2018-09-17 Thread Andy
Any ideas? --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney> ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] OpenGL: Setting samples on default QSurfaceFormat

2018-09-19 Thread Andy
8, 8 ), samples 0, swapBehavior 2, swapInterval 1) I would have expected the first case to return "0" samples like the second one - it properly adjusts everything else like the buffer sizes and swap behaviour. --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <ht

Re: [Interest] OpenGL: Setting samples on default QSurfaceFormat

2018-09-19 Thread Andy
macOS if I request 16 samples, and it can only do 8, I get 8. Thanks Giuseppe! --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney> On Wed, Sep 19, 2018 at 8:49 AM Giuseppe D'Angelo via Interest < interest@qt-project.org> wrote: >

[Interest] lists.qt-project.org down/unreachable

2018-09-21 Thread Andy
lists.qt-project.org has been down/unreachable for a couple of days - not sure who to contact to let them know... https://lists.qt-project.org/pipermail/releasing/ --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmalo

Re: [Interest] Building 5.12 on macOS 10.12.6

2018-09-30 Thread Andy
If anyone else was having this problem, it's been fixed by Timur: https://bugreports.qt.io/browse/QTBUG-70757 https://codereview.qt-project.org/#/c/241268/ --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney> On Thu, Sep 13, 2018 at 9

Re: [Interest] Qt Install Framework - Becoming a Microsoft Known Publisher

2018-10-09 Thread Andy
While we're on the subject... I've been trying to find out if one can use the Apple dev cert to sign Windows desktop apps as well - does anyone know if this is possible? Two birds/one stone? Thanks! --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.

[Interest] Qt 5.12 Official packages for MinGW 64 bit?

2018-10-15 Thread Andy
ne be included? --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney> ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] Qt 5.12 Official packages for MinGW 64 bit?

2018-10-16 Thread Andy
Yes - that's exactly why I was asking. I switched to MSVC specifically because I need WebEngine but would much rather use MinGW or Clang. I have users who don't have admin privileges, so packaging MSVC-built applications is a big headache. --- Andy Maloney // https://asmaloney.c

Re: [Interest] Qt 5.12 Official packages for MinGW 64 bit?

2018-10-16 Thread Andy
Yes - that's what I'm doing. I have > 40 extra DLLs in there. I hope they're the right ones and I hope it works on all systems. With MinGW it was straightforward and I didn't have to try it and hope for the best. --- Andy Maloney // https://asmaloney.com twit

Re: [Interest] Qt 5.12 Official packages for MinGW 64 bit?

2018-10-17 Thread Andy
Thanks for the info Kai. That helps clarify the current state. I'm now regretting using WebEngine. :-) --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney> On Wed, Oct 17, 2018 at 8:28 AM Kai Koehne wrote: > > -Original Mess

Re: [Interest] How to inspect a Qt Application memory usage?

2018-10-22 Thread Andy
ry easy to add and it has found a few issues for me: CONFIG += sanitizer sanitize_address sanitize_undefined I have also used "Instruments" to do some profiling with some success, but I really miss having everything integrated into Creator. --- Andy Maloney // https://asmaloney.com

[Interest] lists.qt-project.org SSL problem

2018-10-24 Thread Andy
Chrome. --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney> ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] lists.qt-project.org SSL problem

2018-10-24 Thread Andy
Were you using https? https://lists.qt-project.org This was the full URL: https://lists.qt-project.org/pipermail/releasing/2018-October/thread.html It doesn't work on any browser I have. --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmalone

Re: [Interest] lists.qt-project.org SSL problem

2018-10-24 Thread Andy
Strange. This is new as of today. I've been using https for months/years. --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney> On Wed, Oct 24, 2018 at 10:49 AM Marian Beermann wrote: > That's because the server is configured

[Interest] Calling QMainWindow::close() vs. clicking on close button in title bar

2018-10-30 Thread Andy
other window which uses a QGraphicsView set up exactly the same way and it works fine, so maybe Qt3D is doing something I'm not expecting based on a CloseWithSpontaneousEvent? Thanks for any ideas/suggestions. --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https:/

Re: [Interest] Calling QMainWindow::close() vs. clicking on close button in title bar

2018-10-30 Thread Andy
which calls QWindow::destroy() This is not what I would expect. Is this by design? The QWidget::createWindowContainer docs don't mention this as a limitation. I haven't yet found a way around it, so suggestions appreciated. --- Andy Maloney // https://asmaloney.com twitter ~ @asmalo

[Interest] Qt6?

2018-10-30 Thread Andy
Following on from Jason's question about the Qt API... Is there any info available about Qt6? Maybe a timeline, roadmap, or plan somewhere? --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney> _

[Interest] Suggestion for docs team: default values

2018-10-31 Thread Andy
/qt-5/qt3drender-qraycaster.html#direction-prop This would save a lot of time instead of having to go to the source code. Is there any way to get this instituted as a "best practice" for documenting code? (or is it already?) --- Andy Maloney // https://asmaloney.com twitter ~ @a

Re: [Interest] Calling QMainWindow::close() vs. clicking on close button in title bar

2018-10-31 Thread Andy
Thanks Giuseppe. Reported with example code here: https://bugreports.qt.io/browse/QTBUG-71519 I wasn't sure what to use for Components, but my main issue is with Qt3D not working properly in this context. --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twi

Re: [Interest] tr() a string while ignoring context?

2018-11-09 Thread Andy
some_global_function example here: https://doc.qt.io/qt-5/i18n-source-translation.html#using-qcoreapplication-translate Also of interest might be "Translating Non-Qt Classes": https://doc.qt.io/qt-5/i18n-source-translation.html#translating-non-qt-classes --- Andy Maloney // https://asmaloney.c

Re: [Interest] QDir("~").absoluteFilePath(".mozilla")

2018-11-16 Thread Andy
"~" is a shell variable (bash/sh/etc), so that won't work here. What you probably want is QStandardPaths::HomeLocation. https://doc.qt.io/qt-5/qstandardpaths.html --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney> On Fri, Nov

[Interest] Releasing archive (again)

2019-01-14 Thread Andy
ar about 5.12.1?) https://lists.qt-project.org/pipermail/releasing/ --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney> ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest

Re: [Interest] What are you using for continuous integration?

2019-02-13 Thread Andy
k all CIs are fiddly to set up, so you aren't going to avoid that. The GitLab one is no exception and took me a few tries to get what I want. The nice thing about CIs is that you (probably) don't have to touch them a lot, yet they provide a huge benefit to a project. Good luck! --- Andy

[Interest] Mailing list archives

2019-02-25 Thread Andy
0 CET" - did it happen? --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney> ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest

Re: [Interest] Detemine Run into VM

2019-03-27 Thread Andy
For VMWare, I wrote this up a while ago: https://asmaloney.com/2018/09/code/how-to-tell-if-your-windows-application-is-running-inside-vmware/ Maybe something similar could be used for VirtualBox? --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmalo

[Interest] QPluginLoader and IID

2019-04-01 Thread Andy
ailable directly from the plugin loader through the C++ API, but I can get it through metaData(). I want a unique ID for a plugin and thought this would be a good candidate rather than adding my own. Good idea? Bad idea? Thanks. --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <h

Re: [Interest] Stack trace on Windows

2019-04-02 Thread Andy
g-macos-with-qt/ Code available on GitHub (fixes/updates welcome!): https://github.com/asmaloney/asmCrashReport It might work with MSVC, but probably needs some modifications. I haven't tried it. --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asma

Re: [Interest] QWebEngine, custom URL schemes and content-types

2019-04-08 Thread Andy
est->reply( cMIMEType.name().toLatin1(), buffer ); (where "data" is the contents of a file) --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney> On Mon, Apr 8, 2019 at 7:40 AM Steve Atkins wrote: > I'm using a custom URL

Re: [Interest] Multiple Qt3DExtras::Qt3DWindow instances in one application doesn't work

2019-04-09 Thread Andy
en these classes and having actual documentation & working examples for Qt3D, I'd take the docs & examples. Also - if you're using a CI like Travis, Linux distros don't seem to build & include Qt3DExtras, so you have to build it yourself during the CI process. --- Andy M

Re: [Interest] New Maintenance Tool regressions/bugs

2019-04-12 Thread Andy
I reported (1) and (2) here: {UX} Default window size not usable https://bugreports.qt.io/browse/QTIFW-1319 I started writing one for (3) until I saw the "Refresh" button, but I found it confusing/odd as well. --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https:

[Interest] Maintenance tool force reinstall?

2019-05-30 Thread Andy
to install it. I'm left without a working IDE. --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney> ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest

Re: [Interest] notarizing builds for Mac - enabling hardened runtime

2019-07-10 Thread Andy
It sounds like not signing at all is still an option? "Mac apps, installer packages, and kernel extensions *that are signed with Developer ID* must also be notarized by Apple in order to run on macOS Catalina." Apple has made this way too complicated to be useful IMHO. --- An

Re: [Interest] Receive key presses when hovering over a specific widget

2019-07-11 Thread Andy
setAttribute( Qt::WA_ShowWithoutActivating ); setAttribute( Qt::WA_TransparentForMouseEvents ); I found it pretty tricky to get working (and I still have a couple of things I'm not happy with) but it's very close (shippable!). Good luck! --- Andy Maloney // https://asmaloney.co

Re: [Interest] Q_NAMESPACE is not portable?

2019-08-26 Thread Andy
Not trying to start a "thing", but I am curious where "f.i." comes from. Is this a new thing? I've honestly never seen it before. --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney> On Mon, Aug 26, 2019 at 12:07 PM

Re: [Interest] Code coverage with QtCreator

2019-09-03 Thread Andy
Not sure if it's quite what you're looking for, but I wrote up a tutorial on using gcov & lcov with Qt5 & Qt Creator: "Code Coverage Of Unit Tests Using Qt 5 On macOS" https://asmaloney.com/2017/01/code/code-coverage-of-unit-tests-using-qt-5-on-macos/ Might give you s

Re: [Interest] No 5.12.5 for OSX?

2019-10-10 Thread Andy
I have - but I'm not sure when. I don't recall having any issues. --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney> On Thu, Oct 10, 2019 at 2:48 PM Jason H wrote: > Has any Mac user updated via the Maintenance tool to use 5.12

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

2020-03-27 Thread Andy
f that question. I also don't understand why the Qt Company continues to confuse things and alienate Open Source developers. --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney> On Fri, Mar 27, 2020 at 9:48 AM Tuukka Turunen wrote: >

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

2020-03-27 Thread Andy
velopers who don't use Qt libraries in any way, use Qt Creator IDE for editing and debugging?" The answer is yes. --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney> On Fri, Mar 27, 2020 at 11:23 AM Tuukka Turunen wrote: > > Hi,

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

2020-03-30 Thread Andy
. You have fewer people using Qt and Qt-based things because of this. --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney> On Mon, Mar 30, 2020 at 1:43 PM Tuukka Turunen wrote: > > > Hi, > > > > That is not the question t

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

2020-03-31 Thread Andy
tion - what then? What if an internal tool uses some code or a library from proprietary application? What if... Even a solo developer needs to hire a lawyer before touching anything Qt-related. Once you start trying to codify all the different scenarios in your licensing, it becomes toxic and pe

Re: [Interest] OSX codesign question

2020-04-06 Thread Andy
ign --verify --deep --strict --verbose=2 "${APP_PATH}" Note that you can sign DMGs and ZIP files as well. Good luck! --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney> On Mon, Apr 6, 2020 at 6:39 AM Nuno Santos wrote: > Alex

[Interest] Strange Reply

2020-04-06 Thread Andy
ator/2020-April/008466.html Just a heads-up and another data point. If anyone at the Qt Company cares to investigate, email me and I'll send you the details. --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney> __

Re: [Interest] OSX codesign question

2020-04-08 Thread Andy
d "Developer ID Application" to do what you want. --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney> On Wed, Apr 8, 2020 at 4:08 AM Alexander Carôt wrote: > Hi Andy and Nuno, > > > > thanks for your answers - looks l

Re: [Interest] OSX codesign question

2020-04-09 Thread Andy
with macdeployqt as far as I know. https://developer.apple.com/library/archive/documentation/Miscellaneous/Reference/EntitlementKeyReference/Chapters/AboutEntitlements.html --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney> On Thu, Apr 9, 2020

[Interest] CMake AUTOMOC & Windows linking

2020-05-15 Thread Andy
static data member not allowed 1) This setup was working before I added a class with Q_OBJECT & signals to "A" 2) It looks like I'm getting Foo's static meta object compiled into both "A" and "B". Is this what should be happening? I feel like I

Re: [Interest] CMake AUTOMOC & Windows linking

2020-05-15 Thread Andy
" - ${filename}" ) endforeach() This produces a list of B's headers - nothing related to A. According to the AUTOMOC docs, that's what it should be using to moc, correct? --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney <https://twitter.com/asmaloney>

Re: [Interest] CMake AUTOMOC & Windows linking

2020-05-15 Thread Andy
sources( libA PRIVATE ... The PRIVATE vs. PUBLIC on target_sources() didn't make sense to me before, but with this concrete example I think I understand it better. :-) Thanks for pointing me in the right direction Thiago! --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney

Re: [Interest] Bug in QCodoaWindow?

2020-08-27 Thread Andy
Bitwise "&" has precedence over logical "&&", so I think this is alright. https://en.cppreference.com/w/cpp/language/operator_precedence (Regardless I would always use parens in cases like this to make it easier for humans reading the code.) --- Andy Maloney /

  1   2   3   >