[Interest] WebGPU integration in Qt 6.x?

2024-04-03 Thread Michael Jackson
We are currently developing a desktop widgets based application that uses VTK as our 3D rendering backend (could not use GPL so that rules out Qt Data Visualization). VTK still relies on OpenGL but apparently is moving towards WebGPU as their backend. I’ve done some looking on Google and cannot

Re: [Interest] App release

2024-03-28 Thread Michael Jackson
For the "Installer" we just package up everything into a standalone package and zip it up. No installer necessary. Not sure of the downsides but seems easier for our users to just right-click and expand the archive and run. — Mike Jackson On Wed, Mar 20, 2024 at 8:44 PM Thiago Macieira wrote:

Re: [Interest] Packaging Qt6 application using conda-build

2024-01-02 Thread Michael Jackson
https://bugreports.qt.io/browse/QTBUG-120487 -- Mike Jackson On Dec 26, 2023 at 9:29:52 AM, Michael Jackson wrote: > Not really sure if this is good place to ask but I'll try anyways. > > I am trying to package up our Qt6 based application using conda-build. The > issue that

[Interest] Packaging Qt6 application using conda-build

2023-12-26 Thread Michael Jackson
Not really sure if this is good place to ask but I'll try anyways. I am trying to package up our Qt6 based application using conda-build. The issue that I think I am running into is this warning message during the conda-build process. ``` WARNING: The install/build script(s) for simplnx deleted

Re: [Interest] QGraphicsView and OpenGL in Qt6

2023-12-08 Thread Michael Jackson
On Dec 4, 2023 at 9:55:26 AM, Volker Hilsheimer via Interest < interest@qt-project.org> wrote: > On 30 Nov 2023, at 12:16, Filippo Rusconi via Interest < > interest@qt-project.org> wrote: > > > I know things change but after that little exercise I am not sure anyone > > > would ever convince me

Re: [Interest] QGraphicsView and OpenGL in Qt6

2023-11-29 Thread Michael Jackson
I’d like to chime in with a real world application that we have been developing. It has a VTK based 3D rendering engine inside a Qt application that is widget based. It did not start out great. We burnt 10 months with 3~4 engineers trying to develop this application as a QML desktop application

[Interest] QFileSystemWatcher: Timing of file changed signal.

2023-10-10 Thread Michael Jackson
I have a question about exactly _when_ the signal for "file changed" is sent. Say we have a file watcher on a 10 Gigabyte file. And we start rewriting that file (not atomically) by streaming data to the file. Does the signal get sent when we get done streaming the data to the file and we close the

[Interest] Qt 6.5.2: QTreeView::isExpanded() not working?

2023-09-12 Thread Michael Jackson
I have some custom painting code for a QTreeView, so I created the VXPipelineModelItemDelegate : public QStyledItemDelegate ``` To do the custom painting. All is generally good. The issue I am facing with Qt 6.5.2 (macOS) is that when try to call m_TreeView (which is the pointer to QTreeView

Re: [Interest] MSVC not-the-latest: are you using it? why?

2023-01-25 Thread Michael Jackson
Actually, on macOS, XCode is specifically tied to a version of macOS. There is a short period of time where a version of Xcode will overlap 2 versions of macOS (usually the current and one version back). So for me, still back on macOS Catalina (out of choice) I use Xcode 12.4 which also works

Re: [Interest] Qt 6.5 Is Irrelevant...

2022-12-19 Thread Michael Jackson
Just some clarifications: Apple used 68K processors from 1984 to 1994. 10 Years of use. Apple Started using PPC in 1994 (Announced in 1992) and their last PPC machine was in 2006. 12 Years of use. Apple started using x86 in 2006 and their last x86 machine was in 2020 (which is still

Re: [Interest] [Development] Qt 6.5 Is Irrelevant for More than 95% of Mac Desktops

2022-12-19 Thread Michael Jackson
ning that I can now assume that all machines running Qt 6.5 natively have it. We had further changes based on this assumption ready to go for 6.5, but they got removed at the last minute due to unexpected side-effects and the feature freeze being too close. On Friday, 16 December 2022 19:44:16 -03

Re: [Interest] [Development] Qt 6.5 Is Irrelevant for More than 95% of Mac Desktops

2022-12-19 Thread Michael Jackson
On 12/18/22, 8:19 AM, "Interest on behalf of Thiago Macieira" wrote: On Sunday, 18 December 2022 06:47:57 -03 Nuno Santos wrote: > Many people are still running their Intel macs. I speak for myself. I had > bought a really powerful quad core Intel mac laptop one year before m1 is

Re: [Interest] [Development] Qt 6.5 Is Irrelevant for More than 95% of Mac Desktops

2022-12-16 Thread Michael Jackson
I agree here. Is Qt 6.5 now using an API or a compiler feature that macOS 10.15 does not support? If that is the case then sure I agree with the change. If you are changing "just to change" then I don't really agree. I sort of get the argument that "Apple stopped supporting 10.15" but what

Re: [Interest] Qt 5.15.7-lts-lgpl compile on M1 Silicon (macOS 10.12 Monterey) Issues

2022-11-06 Thread Michael Jackson
build I ended up using LLVM+Clang 11.0.0 and that allowed everything to work correctly. Sorry for the weekend noise. -- Mike Jackson On Sun, Nov 6, 2022 at 5:07 PM Michael Jackson wrote: > > I have been trying to compile 5.15.7-lts-lgpl on my M1 system running > Monterey. The actual comp

[Interest] Qt 5.15.7-lts-lgpl compile on M1 Silicon (macOS 10.12 Monterey) Issues

2022-11-06 Thread Michael Jackson
I have been trying to compile 5.15.7-lts-lgpl on my M1 system running Monterey. The actual compile seems to go off without a hitch for the parts that I am compiling but when I get to the part of "make docs" then I am getting an error but just not sure how to track this down and Google doesn't seem

Re: [Interest] Small survey on necessary Qt Container size

2022-09-06 Thread Michael Jackson
We write science data processing software (github.com/bluequartzsoftware/dream3d) and there have been more than a few times where we load up past 32 bit signed int number of elements in an array. We are adding out-of-core to our software now which means we are definitely going past signed 32

Re: [Interest] Deploying 5.15.2 on Ubuntu 20.04 (Qt5OpenGL.so)

2022-08-23 Thread Michael Jackson
On 8/22/22, 10:24 AM, "Interest on behalf of Thiago Macieira" wrote: On Monday, 22 August 2022 09:11:29 -03 Michael Jackson wrote: > For our open source program we create self-contained .tar.gz archives for > users to download. Currently we use Qt5.15.2 for those

[Interest] Deploying 5.15.2 on Ubuntu 20.04 (Qt5OpenGL.so)

2022-08-22 Thread Michael Jackson
For our open source program we create self-contained .tar.gz archives for users to download. Currently we use Qt5.15.2 for those archives. After packaging I run a sanity check on my Ubuntu 20.04 fully patched system and the program will launch just fine. It is a GUI based program. Last week 2

Re: [Interest] QMap<> function documentation

2022-05-28 Thread Michael Jackson
Should I put in a bug report on this so that the docs get updated at some point in the future? -- Mike Jackson On 5/25/22, 12:51 PM, "Interest on behalf of Thiago Macieira" wrote: On Wednesday, 25 May 2022 09:19:52 PDT Michael Jackson wrote: > Specifically for the p

[Interest] QMap<> function documentation

2022-05-25 Thread Michael Jackson
I feel like the documentation for QMap<>::value and QMap<>::values is a bit misleading: const T QMap::value(const Key , const T = T()) const Returns the value associated with the key key. If the map contains no item with key key, the function returns defaultValue. If no defaultValue is

Re: [Interest] Change QML Application Style on Runtime

2022-05-25 Thread Michael Jackson
SingletonInstance("NX.interfaces", 1, 0, "Clipboard", ); engine->addImportPath(DREAM3DNX::k_Qml3rdPartyResourceRoot); engine->addImportPath(DREAM3DNX::k_QmlNXResourceRoot); engine->load(QUrl::fromLocalFile(DREAM3DNX::k_QmlApplicationsResourceRoot +

Re: [Interest] QColumnView and QTreeView using same model

2022-05-04 Thread Michael Jackson
Thank you for the tips. Got the checkboxes working. -- Mike Jackson On 5/4/22, 10:06 AM, "Interest on behalf of Tony Rietwyk" wrote: On 4/05/2022 11:43 pm, Michael Jackson wrote: > ... > Now on to figure out how to display checkboxes next to each item. I've tried

Re: [Interest] QColumnView and QTreeView using same model

2022-05-04 Thread Michael Jackson
eate a custom delegate. -- Mike Jackson -- Michael Jackson | Owner, President   BlueQuartz Software [e] mike.jack...@bluequartz.net [w] www.bluequartz.net On 5/3/22, 6:07 PM, "Scott Bloom" <mailto:sc...@towel42.com> wrote: I have found when I use a custom model, most issues u

Re: [Interest] QColumnView and QTreeView using same model

2022-05-03 Thread Michael Jackson
On Behalf Of Michael Jackson Sent: Tuesday, May 3, 2022 12:57 PM To: Qt Interest List Subject: [Interest] QColumnView and QTreeView using same model I have a custom QAbstractItemModel implementation that works correctly when using a QTreeView, i.e., I can open the complete hierarchy of the tree wi

[Interest] QColumnView and QTreeView using same model

2022-05-03 Thread Michael Jackson
I have a custom QAbstractItemModel implementation that works correctly when using a QTreeView, i.e., I can open the complete hierarchy of the tree without any issues. I switched up to the QColumnView due to size constraints and now using the same exact instance of the model I can only navigate

Re: [Interest] debugging on Macintosh

2022-04-29 Thread Michael Jackson
On 4/29/22, 12:20 PM, "j...@wavemetrics.com" wrote: > This happened to a colleague (sort of). He could debug one executable but not any of the other ones. We tried QtCreator 4.x, 6.x and 7.x. What we finally did was move his QtCreator configuration directory to the side and relaunch

Re: [Interest] debugging on Macintosh

2022-04-28 Thread Michael Jackson
This happened to a colleague (sort of). He could debug one executable but not any of the other ones. We tried QtCreator 4.x, 6.x and 7.x. What we finally did was move his QtCreator configuration directory to the side and relaunch QtCreator. That seemed to fix it. Seems like a sledge hammer but

Re: [Interest] Reasons why deleteLater() might not work

2022-04-03 Thread Michael Jackson
ust remove the single parent, call deleteLater() on it and everything finally gets deleted as it should. Thanks everybody for the help. -- Mike Jackson On 4/3/22, 4:25 AM, "Interest on behalf of Nikos Chantziaras" wrote: On 01/04/2022 16:17, Michael Jackson wrote: > I have a bi

Re: [Interest] Reasons why deleteLater() might not work

2022-04-02 Thread Michael Jackson
. (.. to answer some earlier questions). -- Mike Jackson On Fri, Apr 1, 2022 at 11:22 AM Sérgio Martins wrote: > > On 2022-04-01 14:17, Michael Jackson wrote: > > I have a bit of code where in I am removing a QWidget from the UI and > > it needs to be truly cleaned up as its pare

[Interest] Reasons why deleteLater() might not work

2022-04-01 Thread Michael Jackson
I have a bit of code where in I am removing a QWidget from the UI and it needs to be truly cleaned up as its parent QObject is also being cleaned up. I thought I did the appropriate: layout->removeWidget(widget); widget->setParent(nullptr); widget->deleteLater(); I put a "std::cout <<... " in

Re: [Interest] QtCreator and macOS ARM64

2022-03-18 Thread Michael Jackson
On Mar 18, 2022, at 12:03 PM, Michael Jackson wrote: Is there a version of QtCreator where the lldb debugger can launch on macOS ARM64. I’m running macOS Big Sur (11.x) and when I try to debug I get the following error from the debugger: "error: process exited with status -1 (att

[Interest] QtCreator and macOS ARM64

2022-03-18 Thread Michael Jackson
Is there a version of QtCreator where the lldb debugger can launch on macOS ARM64. I’m running macOS Big Sur (11.x) and when I try to debug I get the following error from the debugger: "error: process exited with status -1 (attach failed ((os/kern) invalid argument))"} I am running Qt

Re: [Interest] Is there a good alternative to the QML Controls in Qt6 for native desktop integration purposes?

2022-02-24 Thread Michael Jackson
the licensing should be done, but clearly the current practice _isn't_ well received by the Qt community. I don't think the community is asking for much to have the 5.15.8 released to OSS. Respectfully Michael Jackson Owner, BlueQuartz Software, LLC On 2/24/22, 10:39 AM, "Interest on b

Re: [Interest] Is there a good alternative to the QML Controls in Qt6 for native desktop integration purposes?

2022-02-21 Thread Michael Jackson
“F7” and the app reloads using the QML files from disk. This helps us cycle the theme updates and QML updates instead of having to quit and restart each time. -- Michael Jackson | Owner, President BlueQuartz Software [e] mike.jack...@bluequartz.net [w] www.bluequartz.net On 2

Re: [Interest] Build Issues with QT 6.2.3

2022-02-06 Thread Michael Jackson
cmake -G "Unix Makefiles" -- Mike Jackson On 2/6/22, 10:56 AM, "Interest on behalf of Thorsten Glaser" wrote: On Sun, 6 Feb 2022, BeneschTech LLC wrote: > issues with third party code. Indulge us old guys though. We have reasons Fully agreed! Say, wasn’t there a way

Re: [Interest] [External]Re: How to get QtConcurrent to do what I want?

2022-02-01 Thread Michael Jackson
I've gotten a bit lost in these requirements but having written a large piece of open source data analysis software (including image processing and tiling of data to form and image) there are certain scenarios when processing an image that you can share the entire image with *all* of the

[Interest] QML Application shows white screen during dialog window (macOS)

2021-10-19 Thread Michael Jackson
We are developing a QML desktop application. At one point we show a dialog which on macOS slides down from the top of the main window area. When this happens the main window area becomes all white, i.e., nothing is rendered. The actual dialog box is fine. When the dialog box is dismissed the

Re: [Interest] Conda packaging of macOS App troubles

2021-08-24 Thread Michael Jackson
So to answer my own question after a lot of digging and experimenting we had set the macOS SDK to 10.14 for our builds. What was needed was to build against the 10.13 SDK but use 10.14 for deployment (TBB needed 10.14 minimum). Odd. -- Mike Jackson On 8/20/21, 2:51 PM, "Michael Ja

[Interest] Conda packaging of macOS App troubles

2021-08-20 Thread Michael Jackson
Does anyone on this list have any experience packaging a macOS GUI application .app package as an Anaconda package? We recently added python wrapping to our application and we are trying to create a package for anaconda. For Linux and Windows this all works out just fine. For MacOS we get a

Re: [Interest] Qt 5.15, PySide2, QWidgets not refreshing on Change

2021-06-30 Thread Michael Jackson
oks like the same bug and should be reopened. -- Michael Jackson | Owner, President BlueQuartz Software [e] mike.jack...@bluequartz.net [w] www.bluequartz.net On 6/30/21, 12:05 PM, "Sérgio Martins" wrote: On 2021-06-30 16:43, Michael Jackson wrote: > Replying to my own qu

Re: [Interest] Qt 5.15, PySide2, QWidgets not refreshing on Change

2021-06-30 Thread Michael Jackson
respective system. -- Mike Jackson On 6/28/21, 8:46 AM, "Michael Jackson" wrote: We have developed a small GUI app using Qt 5.15, PySide2, and Widgets. There are a few instances when running the application that QLineEdits or QListViews are not updating after we update the underl

Re: [Interest] [Development] Mac Big Sur - Qt Open-Source Support For

2021-05-07 Thread Michael Jackson
For our application we grabbed the Qt 5.15 build script that Kitware used for universal binary CMake and used that to build Qt 5.15.2 on our M1 mac and have been using that for some beta testers. So far no one has complained about M1 specific issues. We also did *NOT* build all of Qt5, just the

Re: [Interest] the path forward - that 7 year thing - was, willy-nilly

2021-03-26 Thread Michael Jackson
not going to comment on the Fortran thing. It isn't relevant to this conversation. Again, this is *not* an endorsement of the current licensing issues with Qt 5.15 and 6.0. I'm just enough put off to find something else after 15 years of using Qt. -- Michael Jackson | Owner, President

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

2021-03-23 Thread Michael Jackson
out that even C++ undergoes changes where features that people may have used get’s removed. -- Michael Jackson | Owner, President BlueQuartz Software [e] mike.jack...@bluequartz.net [w] www.bluequartz.net From: Interest on behalf of Roland Hughes Date: Tuesday, March 23, 2021

Re: [Interest] Qt Creator is so buggy and so slow...

2021-03-19 Thread Michael Jackson
On 3/19/21, 1:50 AM, "Interest on behalf of Jason H" wrote: ... > > On Thursday, 18 March 2021 10:38:41 PDT Alexander Dyagilev wrote: > > Hello, > > > > Often it just stops to suggest code, syntax highlighted stops w. > > I cannot reproduce your problem of

Re: [Interest] Compiling/Generating the full set of documentation for Qt 5.15.2

2021-01-15 Thread Michael Jackson
```make install_docs``` -- Mike J On 1/15/21, 3:42 PM, "Michael Jackson" wrote: I’m slowly adding in more parts of Qt 5.15.2 so that our developers can have a fuller experience with Qt. One place that I am coming up short in the documentation area though. After I get Qt comp

[Interest] Compiling/Generating the full set of documentation for Qt 5.15.2

2021-01-15 Thread Michael Jackson
\ -nomake examples \ -nomake tests \ -make tools make -j -k make docs make install -- Michael Jackson | Owner, President BlueQuartz Software [e] mike.jack...@bluequartz.net [w] www.bluequartz.net ___ Interest mailing list Interest@qt

Re: [Interest] Compiling Qt5 (any version past 5.99) for Apple Silicon/M1

2021-01-14 Thread Michael Jackson
in Rosetta currently. Last note was that the 13” MacBook Pro compiled this limited version of Qt 5.15 faster than my 2019 top of the line 16” Mac Book Pro and still had 95% of the battery remaining… -- Michael Jackson | Owner, President BlueQuartz Software [e] mike.jack...@bluequartz.net

[Interest] Compiling Qt5 (any version past 5.99) for Apple Silicon/M1

2021-01-13 Thread Michael Jackson
Has anybody successfully compiled any version of Qt5 as a native arm64 set of frameworks on a MacOS M1 machine yet? If so could you share your configure command. Thanks. -- Michael Jackson | Owner, President BlueQuartz Software [e] mike.jack...@bluequartz.net [w

Re: [Interest] Mac debugger always hangs

2021-01-11 Thread Michael Jackson
happy with my build at this point. -- Mike Jackson From: "David M. Cotter" Date: Monday, January 11, 2021 at 11:41 AM To: Michael Jackson Cc: Interest Subject: Re: [Interest] Mac debugger always hangs No, I am on the same exact Xcode. The problem happened when I updated QT cre

Re: [Interest] Mac debugger always hangs

2021-01-11 Thread Michael Jackson
Have you recently updated your version of Xcode? I had this issue after I updated Xcode to 12.3. I ended up having to reconfigure and recompile my project and debugging now seems to work. I also compile my own QtCreator so I’m not really sure which version I am on but it is in the 4.14 range.

Re: [Interest] Qt 5.15 pull out of open source?!

2021-01-07 Thread Michael Jackson
vision on how this will work? -- Michael Jackson | Owner, President BlueQuartz Software [e] mike.jack...@bluequartz.net [w] www.bluequartz.net From: Interest on behalf of Tuukka Turunen Date: Thursday, January 7, 2021 at 4:38 AM To: Giuseppe D'Angelo , "interest@qt-projec

Re: [Interest] Debugging a double dealloc

2020-09-23 Thread Michael Jackson
AddressSanitizer. (Except on macOS it will not find memory leaks) You should be able to find the double free quite quickly. You do NOT Have to rebuild Qt with the address sanitizer flags, just your own codes. We just got done using ASAN on our own code base and it was able to pinpoint the same

Re: [Interest] Qt Creator debugger does not flush "Application Output"on every log call?

2020-09-21 Thread Michael Jackson
Yes to all -- Mike Jackson From: Interest on behalf of "David M. Cotter" Date: Sunday, September 20, 2020 at 4:13 PM To: Qt Interest Subject: [Interest] Qt Creator debugger does not flush "Application Output"on every log call? Do you develop on mac? Do you print stuff to

Re: [Interest] Crashing in qMetaTypeCustomType_unlocked

2020-07-09 Thread Michael Jackson
trace from a core dump. The Qt Libraries are the Release versions so there are no symbols to get values for unfortunately. We have tried moving the plugins/bearer to the side but still get a crash. Any more thoughts? _____ Mike Jackson On Mon, Jun 22, 2

Re: [Interest] Crashing in qMetaTypeCustomType_unlocked

2020-06-22 Thread Michael Jackson
Could this also be a miss-use of QCoreApplication? We create one but don't actually call exec() on it? The source code is at < https://github.com/BlueQuartzSoftware/SIMPL/blob/develop/Source/PipelineRunner/PipelineRunner.cpp> -- Michael Jackson | Owner, President BlueQuartz Softw

Re: [Interest] Crashing in qMetaTypeCustomType_unlocked

2020-06-22 Thread Michael Jackson
On 6/22/20, 1:20 PM, "Interest on behalf of Thiago Macieira" wrote: On Monday, 22 June 2020 09:50:20 PDT Michael Jackson wrote: > We are currently experiencing some intermittent crashing in our program. The > stacktrace is below. The code was compiled i

[Interest] Crashing in qMetaTypeCustomType_unlocked

2020-06-22 Thread Michael Jackson
2.8/5.12.8/gcc_64/lib/libQt5Core.so.5 #19 0x7f5c80d0f6db in start_thread (arg=0x7f5c7dd1f700) at pthread_create.c:463 #20 0x00007f5c821f988f in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:95 -- Michael Jackson | Owner, President BlueQuartz Software [e] mike.jack...@bluequartz.net

Re: [Interest] [Development] Windows 7 support will be dropped in Qt 6

2020-06-11 Thread Michael Jackson
re will keep working (Assuming a perpetual license) but nothing new will be supported. I've had requests to back port our software to CentOS 6 and once you explain the cost to them for us to maintain all the extra development hardware, extra engineering to develop codes that are not supp

Re: [Interest] OSX codesign question

2020-04-09 Thread Michael Jackson
then something went wrong. If you are using CMake by chance then you can try using the “BundleUtilties” to “fix up” the .app package. For our application we ended up doing a combination of BundleUtilities and our own custom shell script. -- Michael Jackson | Owner, President BlueQuartz

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

2020-03-30 Thread Michael Jackson
. There is *no* cross over between the 2 engineering groups. Is this situation allowed by the Qt Commercial license? If it is *not* allowed consider me a lost supporter of Qt anything. -- Michael Jackson | Owner, President BlueQuartz Software [e] mike.jack...@bluequartz.net [w] www.bluequartz.net

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

2020-03-27 Thread Michael Jackson
OK, Here goes the explanations of how to interoperate with Qt Software packages. IANAL. We will start from the easy and work our way towards difficult. QtCreator: QtCreator is free. You, as a developer of software, can use QtCreator as your IDE to develop your own software. The GPL license of

Re: [Interest] Styling Qt Widgets with Qt Quick

2020-01-07 Thread Michael Jackson
You probably want to look into using CSS to style the Widgets. Then create a loading mechanism to load a new CSS into the application thus changing its appearance. This is what we did for our app. There are a lot of subtle interactions with CSS and each particular desktop environment which can

Re: [Interest] Tricks to improve moc performance?

2019-12-10 Thread Michael Jackson
What did you use to collect the sampling data? Our project also experiences long build times (30 minutes on a 12 Core Xeon machine) using Qt5. I would like to be able to zero in on some of the issues instead of guessing at them. -- Mike Jackson From: Interest on behalf of Adam Light

Re: [Interest] Tricks to improve moc performance?

2019-12-06 Thread Michael Jackson
On 12/6/19, 12:52 PM, "Interest on behalf of Thiago Macieira" wrote: On Friday, 6 December 2019 01:16:31 PST Kevin Funk via Interest wrote: > On that note, CMake goes one step further and removes the need to do this > manually. Using CMake's AUTOMOC feature, CMake will

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

2019-06-21 Thread Michael Jackson
From: Interest on behalf of Elvis Stansvik Date: Friday, June 21, 2019 at 7:14 AM To: Kai Köhne Cc: Qt Interest Subject: Re: [Interest] notarizing builds for Mac - enabling hardened runtime Den fre 21 juni 2019 09:13Kai Köhne skrev: > -Original Message- > From: Interest On

Re: [Interest] My first 5 years with Qt and 2 suggestions

2019-05-09 Thread Michael Jackson
Nice to have such a strong supporter in the Qt community, my opinions are in line... On 5/8/19, 8:09 PM, "Interest on behalf of Henry Skoglund" wrote: Hi, 5 years ago I started with Qt, it's been a very nice ride, thank you! Looking forward to the next 5. Got 2 suggestions:

Re: [Interest] Netiquette [was: Feature Request - QtCreator - Multiple right margins]

2019-02-11 Thread Michael Jackson
We all get frustrated at times and sometimes that frustration comes out in posts (hopefully with a short tag..) but Roland’s posts _always_ have put downs for almost every other kind of developer except those in the medical/space community. I consider myself having pretty thick skin and I can

Re: [Interest] 80 column enforcement under Linux

2019-01-18 Thread Michael Jackson
I would think that clang-format should be able to help you out with this. It is part of the LLVM download. -- Michael Jackson | Owner, President BlueQuartz Software [e] mike.jack...@bluequartz.net [w] www.bluequartz.net <http://www.bluequartz.net> On 1/17/19, 11:32 AM, "in

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

2018-10-22 Thread Michael Jackson
Doesn't Xcode come with the "Instruments" application which is designed to do the things that OP is asking about? I have used it in the past for function timing and some memory issues but it has been a few years. -- Michael Jackson | Owner, President BlueQuartz Software [e]

Re: [Interest] Simple device discovery using UDP

2018-10-02 Thread Michael Jackson
What you want is this: https://github.com/nitroshare/qmdnsengine Don't reinvent the wheel if you don't have to. MIT licensed. No relation to the project at all. -- Michael Jackson | Owner, President BlueQuartz Software [e] mike.jack...@bluequartz.net [w] www.bluequartz.net <h

Re: [Interest] Qt 5.11.1 inside of a Docker container

2018-08-23 Thread Michael Jackson
a rant or complaint but as a point of reference in case anyone else is running into the same problems with Qt and Docker (at least with a Ubuntu host) I am open to suggestions (Looking into OpenSUSE) -- Michael Jackson | Owner, President BlueQuartz Software [e] mike.jack.

Re: [Interest] Qt 5.11.1 inside of a Docker container

2018-08-21 Thread Michael Jackson
e --script will not help unless something has changed lately with the Qt5 installers. -- Michael Jackson | Owner, President BlueQuartz Software [e] mike.jack...@bluequartz.net [w] www.bluequartz.net <http://www.bluequartz.net> On 8/21/18, 10:49 AM, "Carel Combrink" wrote: H

[Interest] Qt 5.11.1 inside of a Docker container

2018-08-21 Thread Michael Jackson
that seem to think that they can strip out installer components but those scripts don’t seem to work. Has there been any movement in the ability to install Qt in a truly headless environment without having to build from source? Thanks -- Michael Jackson | Owner, President BlueQuartz

Re: [Interest] Interest Digest, Vol 76, Issue 8

2018-07-30 Thread Michael Jackson
From: Interest on behalf of Roland Hughes Organization: Logikal Solutions Date: Monday, July 30, 2018 at 9:17 AM To: Qt Interest Subject: Re: [Interest] Interest Digest, Vol 76, Issue 8 I would hate to think anyone utilized Eclipse to create QtCreator. I would hope, given KDE's ties to Qt

Re: [Interest] qmlscene install problems (was: Interest, Digest, Vol 82, , Issue 5)

2018-07-30 Thread Michael Jackson
From: Interest on behalf of Roland Hughes Organization: Logikal Solutions Date: Monday, July 30, 2018 at 10:52 AM To: Qt Interest Subject: Re: [Interest] qmlscene install problems (was: Interest, Digest, Vol 82, , Issue 5) When the virus known as QML was unleashed on the world, the "teaser

[Interest] Missing Title bar on macOS 10.11+ for Open File Dialogs

2018-06-28 Thread Michael Jackson
Is anybody else hitting this little gem: https://bugreports.qt.io/browse/QTBUG-59805 (Thanks Apple). And if so what are peoples workarounds for it? There is a patch in the bug report. I would really rather not compile Qt myself if I don’t have to. Thanks -- Michael Jackson | Owner

Re: [Interest] QDatastream, QMap, QImage serialization

2018-05-25 Thread Michael Jackson
On 5/24/18, 4:16 PM, "Interest on behalf of Thiago Macieira" <interest-bounces+mike.jackson=bluequartz@qt-project.org on behalf of thiago.macie...@intel.com> wrote: On Thursday, 24 May 2018 16:57:03 -03 Michael Jackson wrote: > QStandardPaths: XDG_RUNTIME_DIR

Re: [Interest] QDatastream, QMap, QImage serialization

2018-05-24 Thread Michael Jackson
On 5/24/18, 3:53 PM, "Michael Jackson" <mike.jack...@bluequartz.net> wrote: On 5/22/18, 3:18 PM, "Interest on behalf of Thiago Macieira" <interest-bounces+mike.jackson=bluequartz@qt-project.org on behalf of thiago.macie...@intel.com> wrote:

Re: [Interest] QDatastream, QMap, QImage serialization

2018-05-24 Thread Michael Jackson
On 5/22/18, 3:18 PM, "Interest on behalf of Thiago Macieira" <interest-bounces+mike.jackson=bluequartz@qt-project.org on behalf of thiago.macie...@intel.com> wrote: On Tuesday, 22 May 2018 15:38:00 -03 Michael Jackson wrote: > If it is a raster only then _

Re: [Interest] QDatastream, QMap, QImage serialization

2018-05-22 Thread Michael Jackson
-Original Message- From: Interest on behalf of Jason H Date: Tuesday, May 22, 2018 at 10:16 AM To: Thiago Macieira Cc: Subject: Re: [Interest]

[Interest] Removing focus rect on macOS through StyleSheets

2018-05-22 Thread Michael Jackson
) and I am not seeing any exceptions for the focus outline on macOS. Thanks -- Michael Jackson | Owner, President BlueQuartz Software [e] mike.jack...@bluequartz.net [w] www.bluequartz.net <http://www.bluequartz.net> ___ Interest mailing

Re: [Interest] QDatastream, QMap, QImage serialization

2018-05-21 Thread Michael Jackson
-Original Message- From: Interest on behalf of Thiago Macieira Organization: Intel Corporation Date: Monday, May 21, 2018 at 9:49 AM To: Subject: Re: [Interest] QDatastream,

Re: [Interest] QDatastream, QMap, QImage serialization

2018-05-21 Thread Michael Jackson
-Original Message- From: Interest on behalf of Sze Howe Koh Date: Monday, May 21, 2018 at 10:17 AM To: interest Subject: Re: [Interest] QDatastream, QMap, QImage

[Interest] Qt5 CSS StyleSheet Variables

2018-05-21 Thread Michael Jackson
Just to confirm, but does Qt accept CSS variables as describe here: ? I tried and I get the error that the style sheet could not be parsed. I have a style sheet with a LOT of color settings and having to do a bunch of search/replace to change

[Interest] Possible to draw between QWindows

2018-05-01 Thread Michael Jackson
inside the QWindows and NOT outside? And if that is the case I would assume that I then need to rely on "native" code for each platform to perform the drawing? If anybody has a working example of this kind of interaction that would also be much appreciated. Thanks -- Michael Jackson | Own

[Interest] ComboBox and Menu Changes in Qt 5.10 vs Qt 5.9.x

2018-01-04 Thread Michael Jackson
new property with Qt 5.10 that we missed that addresses this? This was on macOS 10.12 "Sierra" using prebuilt Qt from the official download site. Thanks for any help or clarifications. -- Michael Jackson | Owner, President BlueQuartz Software [e] mike.jack...@bluequa

[Interest] Qt5.9 installer's default package selection

2017-12-07 Thread Michael Jackson
ost rather have it install everything versus nothing. We have an IT department that just blindly installs Qt and we have to call them back to instruct them to click some more buttons during the installation. -- Michael Jackson | Owner, President BlueQuartz Software [e] mike.jack...@bluequa

Re: [Interest] minimum macOS runtime version for Qt 5.9+

2017-11-29 Thread Michael Jackson
. I think your interpretation of a "business" is different than mine? Not sure what you mean by your #2 statement? ** Older is completely arbitrary at this point. -- Michael Jackson | Owner, President BlueQuartz Software [e] mike.jack...@bluequartz.net [w] www.bluequa

Re: [Interest] minimum macOS runtime version for Qt 5.9+

2017-11-29 Thread Michael Jackson
at could not be upgraded to macOS Sierra so we turned it into a nice Windows 10 workstation instead. Total Cost $150 for the Windows 10 Pro license. Linux would have worked also. Those "cheese grader" MacPro machines just keep going. Nothing wrong with them. -- Michael Jackson | Owner, P

Re: [Interest] QT 5.9.2 Release schedule

2017-10-05 Thread Michael Jackson
Will the 5.9.2 release have the macOS 10.13 bugs fixed? I have been trying to track through all the bug reports but not sure if I have verified it or not by myself. -- Michael Jackson | Owner, President BlueQuartz Software [e] mike.jack...@bluequartz.net [w] www.bluequartz.net

Re: [Interest] Flickering when animating QWidget resize

2017-08-25 Thread Michael Jackson
stantin Tokarev" <interest-bounces+mike.jackson=bluequartz@qt-project.org on behalf of annu...@yandex.ru> wrote: 25.08.2017, 22:45, "André Pönitz" <apoen...@t-online.de>: > On Fri, Aug 25, 2017 at 10:26:22AM -0700, Thiago Macieira wrote: >> On Friday

[Interest] Flickering when animating QWidget resize

2017-08-25 Thread Michael Jackson
ng perhaps? Thanks for any help. -- Michael Jackson BlueQuartz Software [e] mike.jack...@bluequartz.net [w] www.bluequartz.net ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] Mac: a bit of 10.9 love

2017-08-03 Thread Michael Jackson
I am curious to find out just how many customers of your application there are that are _still_ on macOS 10.9? Even if it is just a few why are you letting just a few customers hold you back from using newer compilers, versions of C++, newer tools. Why are you letting those few customers make

[Interest] Headless Install of Qt using a JavaScript File

2017-07-06 Thread Michael Jackson
I am updating our script file for installing Qt 5.9.1 in an automated fashion. We do this by calling the installer with the --script argument. Generally works great for the default install. I would like to customize the install to remove some of the components. At one point I had code like

Re: [Interest] Debugging in Qt Creator and displaying Qt objects d_ptr members in watch window ?

2015-09-17 Thread Michael Jackson
On Sep 17, 2015, at 11:50 AM, John Weeks wrote: > We use our own build of Qt 5.5, including a debug build. Debugging is often > painfully slow but mostly works. And with a debug build of Qt we can step > into Qt code and (usually) inspect d pointers. > > Be sure that

Re: [Interest] Debugging in Qt Creator and displaying Qt objects d_ptr members in watch window ?

2015-09-17 Thread Michael Jackson
On Sep 17, 2015, at 9:45 AM, Edward Sutton wrote: > I spend too much time adding qDebug() statements because Qt objects d_ptr > members are invisible to the debugger. > > I use Qt 5.5 Enterprise pre-built to debug OS X, Android, iOS, and on Windows > ( MSVC 2013 ).

[Interest] Application at Idle takes 10% of CPU

2015-06-27 Thread Michael Jackson
Our application seems to take more cpu than I think it should while just sitting Idle. My machine is a MacBook Pro 2.6GHz Core i7 with 16GB Ram. Running OS X 10.8.5. Using the Activity Monitor our application takes about 10-12% of my CPU time. Using the Instruments application to get the

Re: [Interest] Application at Idle takes 10% of CPU

2015-06-27 Thread Michael Jackson
Jackson On Jun 27, 2015, at 10:58 AM, Michael Jackson imikejack...@gmail.com wrote: Our application seems to take more cpu than I think it should while just sitting Idle. My machine is a MacBook Pro 2.6GHz Core i7 with 16GB Ram. Running OS X 10.8.5. Using the Activity Monitor our application

Re: [Interest] Application at Idle takes 10% of CPU

2015-06-27 Thread Michael Jackson
, at 11:27 AM, Michael Jackson imikejack...@gmail.com wrote: I have tracked it down to our use of a QSplitter. If I hide our left side then the CPU usage drops to 0~1% while idle. There is a QFrame Derived custom class that is placed into the left side but that custom widget does not do any

  1   2   >