[Interest] Configuring git checkout/build to skip modules

2024-12-03 Thread Adam Light
slations depends on qttools. qttools depends on qtbase and recommends qtdeclarative and qtactiveqt. It seems to me that adding -skip qtactiveqt -skip qtdeclarative in my command should skip those recommended but not required modules, but that's not what is happening. Is it not possible to skip optional dependencies like this? Thanks Adam ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest

Re: [Interest] Removing fonts from qrc in webassembly

2024-02-12 Thread Adam
switch imo :) cheers, Adam On 10/02/2024 14:48, Adam wrote: Hi, I'm continuing our quest to reduce the wasm file size. I found, that there are 3 fonts packaged together with qt: :/fonts/DejaVuSans.ttf"  size:  739 kb :/fonts/DejaVuSansMono.ttf"  size:  232 kb :/fonts/Vera.ttf"

[Interest] Removing fonts from qrc in webassembly

2024-02-10 Thread Adam
g them as we package our own font in addition. How can we remove them? We are using Qt6.6 and CMake. thanks, Adam ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest

Re: [Interest] unnecessary files in qrc system in webassembly

2024-02-07 Thread Adam
Cool, thanks! I've replaced it with a custom colour chooser from git already :) cheers, Adam On 07/02/2024 02:09, Mike Trahearn wrote: Aha – you nailed it! Yes, presently the Qt Quick Dialogs do not style in the same way as the compile time styles do for the rest of Qt Quick Con

Re: [Interest] unnecessary files in qrc system in webassembly

2024-02-06 Thread Adam
sing, that adding a colour dialogue adds 6mb on your wasm file. should i report it as a bug? thanks for the answer, it helped understanding the issue :) cheers, Adam On 04/02/2024 17:35, Adam wrote: Hi, I'm using Qt 6.6.1 and cmake. I have imports like this: import QtQuick import QtQuick

Re: [Interest] unnecessary files in qrc system in webassembly

2024-02-04 Thread Adam
ols alone. i'm linking in CMakeLists.txt via: target_link_libraries(alpineapp PUBLIC nucleus gl_engine Qt::Quick Qt::QuickControls2 Qt::Charts) // Charts removed on my other workstation with no change. this is the CMakeLists.txt i'm using (along with the rest of the project: h

[Interest] unnecessary files in qrc system in webassembly

2024-02-02 Thread Adam
not using them, and they increase the binary (wasm) size. Is there any way to remove them? Thanks, Adam ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest

Re: [Interest] QtQuick app fatal DCOM errors (Microsoft Store app)

2023-09-21 Thread Cristian Adam via Interest
On 21-Sep-23 13:44, Paul Masri-Stone wrote: Hi, I'm trying to get a Qt6/CMake app packaged for the Microsoft Store (for Windows 10/11 PCs). Cristian Adam showed me how this can be done for a QtWidgets app on Qt 6.5.2, using the Qt Affine example project. I have tested this locally a

[Interest] OpenGL with Qt6 on Windows

2023-07-27 Thread Adam Light
5.12, which also has "-opengl desktop" in the configure command. FWIW our application is a widgets based application that uses QOpenGLWidget and related classes. Thanks for any insight you might have Adam ___ Interest mailing list Interest@q

Re: [Interest] slower compilation with Qt6

2023-07-24 Thread Cristian Adam via Interest
The compilation time degradation is being tracked at [QTBUG-97601] Compilation speed decrease with Qt 6.2 compared to Qt 5.15.2 - Qt Bug Tracker For Qt Creator I use https://ccache.dev/ (yes, it works with MSVC) so that even if it takes longer to com

Re: [Interest] QtCreator - CMAKE_PREFIX_PATH with multiple paths

2023-02-09 Thread Cristian Adam via Interest
On 02/09/2023 16:58, Nuno Santos wrote: Cristian, Are you able to do this in the QtCreator build settings? Because for me it gets red and it And then it does not work at all: CMake Error at CMakeLists.txt:16 (find_package):   By not providing "FindQt6.cmake" in CMAKE_MODULE_PATH this projec

Re: [Interest] QtCreator - CMAKE_PREFIX_PATH with multiple paths

2023-02-09 Thread Cristian Adam via Interest
On 02/09/2023 16:29, Nuno Santos wrote: Hi, Is anyone able to tell me if QtCreator is able to have a CMAKE var defined with multiple values? The default value for a project is %{Qt:QT_INSTALL_PREFIX}, is it possible to append more paths? How? Thanks! Nuno I have for Qt Creator itself th

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

2023-01-25 Thread Adam Light
think MS wants people to buy their subscriptions, not perpetual licenses. Our product's release cycle is around 3 years, and we use the same version of Visual Studio and Qt for that period, so the subscription doesn't pay off for us. Adam ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest

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

2023-01-24 Thread Adam Light
a reseller, and we haven't been able to find a reseller willing/able to sell us perpetual copies (I'm not sure how hard our purchasing pers. With that said, we have upgraded to VS 2022 and find it much better than 2017 (we skipped 2019), a

Re: [Interest] What is the right way of creating a static lib that has qml resources with cmake?

2023-01-23 Thread Cristian Adam via Interest
>> Yes, there is. There's -Wl,--whole-archive for the Unix linkers. This should >> solve the problem for everyone except MSVC users. > That option is not very attractive because: > a, as you state yourself, it doesn't work on MSVC. MSVC also has a /wholearchive

Re: [Interest] Qt 6 and Windows with MSVC 2019

2022-12-29 Thread Cristian Adam via Interest
Hi Nuno, The error message says that there is no CMAKE_CXX_COMPILER specified. Your CMake command has only -S and -B parameters. This means that you already have configured the project with an invalid CMAKE_CXX_COMPILER parameter. Delete your build directory and try again or click on "Re-co

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

2022-12-19 Thread Cristian Adam via Interest
Hi, See qt-creator/plugin-telemetry.git - A plugin that collects usage data from Qt Creator users. This data is used to improve the Qt user experience and is one information source for product decisions. Cheers, Cristian

Re: [Interest] Android: debugger not working

2022-12-08 Thread Cristian Adam via Interest
Hi, Welcome to the world of native Android development! In this world you need to really pay attention on which NDK you are using. Things can break on minor versions. Not every combination of host OS, NDK and Qt is guaranteed to work. sdk_definitions.json\android\qtcreator\share - qt-creator/

Re: [Interest] Official linuxdeployqt ?

2022-08-05 Thread Cristian Adam
Hi, CMake has since version 3.16 an extension for its file command, namely GET_RUNTIME_DEPENDENCIES. I used it for Qt Creator to deploy all dependencies on Windows, Linux, macOS from CMake. As it turns out Qt Creat

[Interest] Using AddressSanitizer with Qt on Windows

2022-02-21 Thread Adam Light
output in Creator's application output window, so it's not clear to me whether these are legitimate bugs or if something else is going on. Thanks for any advice Adam ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest

Re: [Interest] License for Qt6 QtMultimedia module (LGPL?)

2022-02-15 Thread Adam Light
On Tue, Feb 15, 2022 at 10:20 AM Alexey Edelev wrote: > Shadertools module provides an executable that is used by multimedia at > build time only. So there is no runtime dependencies between qtmultimedia > and shadertools, so that's the key, I guess. > OK, that makes sen

[Interest] License for Qt6 QtMultimedia module (LGPL?)

2022-02-15 Thread Adam Light
ation currently uses Qt 5 under the LGPL license and unless I'm misunderstanding it seems that we would not be able to use Qt 6 under the LGPL license unless we get rid of qtmultimedia. Thanks for any clarification Adam ___ Interest mailing list Int

Re: [Interest] can't debug 64bit intel windows app on ARM CPU

2022-01-26 Thread Cristian Adam
On 25/01/2022 19:49, Cristian Adam wrote: Hi, If you don't have an x64 debugger then I would assume it's a problem with the debugger installation. As it turns out Microsoft doesn't install the x64 cdb.exe with the /"Windows Software Development Kit - Windows 10.0.2200

Re: [Interest] can't debug 64bit intel windows app on ARM CPU

2022-01-25 Thread Cristian Adam
Hi, Please open a bug report at https://bugreports.qt.io/ Which Windows version are you using? Only Windows 11 has support for x64 virtualization for Arm64 machines. Qt Creator 6.0.2 is only delivered as x64 app, so if you can run it I assume you have Windows 11. And being a x64 application

Re: [Interest] Please let us choose Qt Creator version in the online installer

2021-12-30 Thread Cristian Adam
On 30/12/2021 07:50, Alexander Dyagilev wrote: So, I end up with ruined Qt installation. Maintanance tool stopped working. Now reinstalling Qt from scratch. So, as I said before, there is no easy way to install Qt Creator. I have Qt Creator from Qt SDK installed at c:\Qt\Tools\QtCreator. Th

Re: [Interest] Please let us choose Qt Creator version in the online installer

2021-12-26 Thread Cristian Adam
On 26/12/2021 13:58, André Pönitz wrote: On Sun, Dec 26, 2021 at 09:01:08AM +0100, Cristian Adam wrote: Besides all this, if I am not mistaken, the problem can also be worked around without changing the 6.0.0 or 6.0.1 binaries by setting QTC_USE_QPROCESS=1 in the environent before starting

Re: [Interest] Please let us choose Qt Creator version in the online installer

2021-12-26 Thread Cristian Adam
On 25/12/2021 13:59, Alexander Dyagilev wrote: Hello, Guys, please let us. I've updated to 6.0.1 and now I'm suffering from a lot of bugs. For me, it's now nearly to unusable. Yes, I know that it's possible to manually download old versions from archive. But as far as I know one will then

Re: [Interest] Qt6–QtMultimedia – MinGW Support

2021-11-15 Thread Cristian Adam
On 15/11/2021 14:11, Cristian Adam wrote: On 15/11/2021 13:48, Alexander Carôt wrote: Hello all, when I compile my app on Windows unsing the MinGW Compiler I get this error when after launching the correctly-build app: "QtMultimedia is currently not supported on this platform"

Re: [Interest] Qt6–QtMultimedia – MinGW Support

2021-11-15 Thread Cristian Adam
On 15/11/2021 13:48, Alexander Carôt wrote: Hello all, when I compile my app on Windows unsing the MinGW Compiler I get this error when after launching the correctly-build app: "QtMultimedia is currently not supported on this platform" Using Qt6 with MinGW without QtMultmedia works fine. Do

Re: [Interest] win: can't trap WM_ENTER/EXITMENULOOP?

2021-10-25 Thread Adam Light
if you use QCoreApplication::installNativeEventFilter ( https://doc.qt.io/qt-6/qcoreapplication.html#installNativeEventFilter). Adam ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest

Re: [Interest] bulding Qt from git

2021-10-24 Thread Cristian Adam
On 24/10/2021 15:21, Alexander Carôt wrote: Instead of ./configure -prefix ./qt6-build please do a: ./configure -prefix ./qt6-build > configure.log 2>&1 Then upload the configure.log contents to pastebin.com. Ah – so you basically the whole console output of the configuation process – now I

Re: [Interest] bulding Qt from git

2021-10-24 Thread Cristian Adam
On 24/10/2021 13:57, Alexander Carôt wrote: Hej Christian, thanks for the response ! Just in case I completely deleted the sources and went through the steps again. Please find the output of CMakeError.log here: https://pastebin.com/QZpW95rg and the output of CMakeOutput.log here: https://

Re: [Interest] bulding Qt from git

2021-10-23 Thread Cristian Adam
On 23/10/2021 22:34, Alexander Carôt wrote: Known issue. It's not all good. Please search up for the error. Thanks – just checked the CMakeError.log: Checking whether the ASM compiler is GNU using "--version" did not match "(GNU assembler)|(GCC)|(Free Software Foundation)": Apple cla

Re: [Interest] How to delete kits from QtCreator when the remove option is disabled?

2021-10-20 Thread Cristian Adam
On 10/20/2021 4:38 PM, Nuno Santos wrote: David, Thanks for your reply. It is never possible to delete a kit that was auto-detected. Best regards, Nuno Hi, You'll have to manually delete them from the profiles.xml file, or change the true value to false for the: true entries. See https

Re: [Interest] Installation Sizes for Applications using Qt

2021-08-30 Thread Cristian Adam
On 8/28/2021 3:02 AM, Ben Cottrell wrote: Yes, I've tried configure with these command line arguments: ./configure -opensource -confirm-license -platform linux-g++ -prefix /opt/6.1.2-linux-g++-static -static I got lots of errors after running configure, about missing XCB libraries, so fo

Re: [Interest] Security message when I download Qt Creator?

2021-02-24 Thread Adam Light
as a choice to go > ahead anyway. > > For what it's worth, I have reported this at https://bugreports.qt.io/browse/QTWEBSITE-972. Adam ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest

Re: [Interest] QML app macOS dedicated graphic card issue

2021-02-24 Thread Adam Light
; was to advertise that the discrete GPU is OK in your > application's info.plist. > For anyone interested, I foound https://developer.apple.com/library/archive/qa/qa1734/_index.html which supports what Giuseppe said. Adam ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest

Re: [Interest] QtCreator annoying message

2021-02-16 Thread Adam Light
pplication is not open source. If there is any sort of debugging mode I can enable that might shed more light on what is happening I'm happy to help there. Adam ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest

Re: [Interest] Generate pdb for qmake.exe on Windows

2020-12-15 Thread Adam Light
On Fri, Dec 11, 2020 at 9:19 AM Joerg Bornemann wrote: > On 12/11/20 5:15 PM, Adam Light wrote: > > > > Is it possible to build Qt in such a way that debugging symbols > for > > > qmake itself are generated? > > > > Not out of the box. Edit

Re: [Interest] Generate pdb for qmake.exe on Windows

2020-12-11 Thread Adam Light
On Fri, Dec 11, 2020 at 7:46 AM Joerg Bornemann wrote: > On 12/11/20 4:40 PM, Adam Light wrote: > > > Is it possible to build Qt in such a way that debugging symbols for > > qmake itself are generated? > > Not out of the box. Edit qmake/Makefile in your build dire

[Interest] Generate pdb for qmake.exe on Windows

2020-12-11 Thread Adam Light
e disabled. Is it possible to build Qt in such a way that debugging symbols for qmake itself are generated? Thanks Adam ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest

Re: [Interest] Three-file modules vs. moc

2020-08-27 Thread Adam Light
see. Has something like that been done before, is there code I could > reuse? > This is for a rather different use case but attached to https://bugreports.qt.io/browse/QTBUG-81348 you can find two (very similar) examples of how to write a custom feature that runs moc in

Re: [Interest] Tracking down a macOS drawing bug

2020-06-19 Thread Adam Light
On Tue, Jun 16, 2020 at 4:07 PM Adam Light wrote: > We recently discovered a bug in our application that uses Qt 5.12.8 and > we're having a hard time figuring out what might be going wrong. This is in > a subclass of QPlainTextEdit. > > For what it's worth, Qt 5.12.9

[Interest] Tracking down a macOS drawing bug

2020-06-16 Thread Adam Light
5 SDK versus the 10.14 SDK? The only relevant test I can see for this is in qnsview_drawing.mm (layerEnabledByMacOS()) but that test treats Mojave and Catalina the same. Does this sound familiar to anyone? Thanks for any ideas Adam ___ Interest maili

Re: [Interest] how to get 3 pixel focus ring?

2020-06-10 Thread Adam Light
happens that I was working on a custom widget today and wanted it to have a focus ring, and it's not drawn properly on Macintosh if I build with Qt 5.12, but is drawn properly with Qt 5.9. I tracked this down to the same problem described in the bug. Adam ___

Re: [Interest] how to get 3 pixel focus ring?

2020-06-09 Thread Adam Light
t when you double click on one of the cells in the table widget? These are all very different problems so it's important to define the problem you are trying to solve first. Adam ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest

Re: [Interest] how to get 3 pixel focus ring?

2020-06-08 Thread Adam Light
s using persistent editors in itemviews sometimes, and I think we also sometimes see this when certain widgets are in splitters. Adam ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest

Re: [Interest] Qt Creator Application Output window

2020-04-30 Thread Adam Light
l this down to a minimum working example. We run into lots of problems with Creator that are reasonably attributable to the size, complexity, or possibly the poor organization of our project, but it's very tricky to turn these problems into actionable information for the Creator developers. Ad

[Interest] [Qt3D] Get OpenGL texture data / Send preprocessor instructions to shaders

2020-02-25 Thread Léo Adam
Hi, I am new to Qt3D and there's a few things I was wondering how to achieve: - I need to read and write an opengl texture from C++. For example, I am rendering a scene into a texture during a first render pass, and then performing some postprocess effect before rendering that texture in a fullsc

[Interest] [Qt3D] Transform feedback

2020-02-20 Thread Léo Adam
e Qt3D API. Thank you, Léo Adam. ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest

Re: [Interest] Tricks to improve moc performance?

2020-01-14 Thread Adam Light
On Mon, Dec 23, 2019 at 2:26 PM Adam Light wrote: > > One idea I had was to combine all files in HEADERS into a single giant .h > file, and then call moc.exe once on that file. The single call to moc.exe > would be executed in a single thread, but it would avoid the need to > re

Re: [Interest] Tricks to improve moc performance?

2019-12-23 Thread Adam Light
On Thu, Dec 5, 2019 at 5:09 PM Adam Light wrote: > > We have almost 600 classes that use Q_OBJECT, so there are a lot of calls > to moc. We probably don't strictly need the Q_OBJECT macro in some of those > classes, but I would prefer not to start removing Q_OBJECT unless

Re: [Interest] Tricks to improve moc performance?

2019-12-10 Thread Adam Light
ke.exe itself, so I've been unable to analyze why qmake takes longer to run than it seems to me it should. If anyone knows how to force generation of PDB files for qmake, that would be really helpful. Adam ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest

Re: [Interest] Tricks to improve moc performance?

2019-12-09 Thread Adam Light
On Thu, Dec 5, 2019 at 5:09 PM Adam Light wrote: > > Does anyone else have any ideas of how we could change our build to > improve moc performance when Windows decides to be "slow"? Like, for > example, is there any way to have the moc calls run with only a few moc >

Re: [Interest] Tricks to improve moc performance?

2019-12-09 Thread Adam Light
On Fri, Dec 6, 2019 at 6:08 PM Thiago Macieira wrote: > On Friday, 6 December 2019 15:10:41 PST Adam Light wrote: > > > Yes: > https://github.com/qt/qtbase/blob/dev/util/includemocs/includemocs.pl > > > > Thanks. That saved a lot of time. > > > > For wha

Re: [Interest] Tricks to improve moc performance?

2019-12-06 Thread Adam Light
On Fri, Dec 6, 2019 at 9:57 AM Thiago Macieira wrote: > On Friday, 6 December 2019 06:30:36 PST Adam Light wrote: > > Yes, that's definitely on my TODO list, though I don't think it's going > to > > do much to address the current situation in which moc itself is

Re: [Interest] Tricks to improve moc performance?

2019-12-06 Thread Adam Light
On Fri, Dec 6, 2019 at 12:42 AM Uwe Rathmann wrote: > On 12/6/19 2:09 AM, Adam Light wrote: > > > Does anyone else have any ideas of how we could change our build to > > improve moc performance when Windows decides to be "slow"? > > Something you can try is to

[Interest] Tricks to improve moc performance?

2019-12-05 Thread Adam Light
m happy to share the details behind why I think they are involved here. Thanks for any ideas Adam ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest

Re: [Interest] Qt free software policy

2019-08-21 Thread Adam Light
ose to an order of magnitude more than the value of the support we would get (again, this was years ago, so perhaps things have changed). Adam ___ 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 Adam Light
On Wed, Jul 10, 2019 at 9:17 AM coroberti . wrote: > Adam, > Could you please provide more details about notarization without runtime > hardening by using SDK 10.13? > Specifically, which Xcode version was used and at which Mac OS? > Thanks, > > See https://developer.ap

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

2019-07-10 Thread Adam Light
ol whether the notarization check happens, so what I said in the paragraph above may change. Adam ___ 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-09 Thread Adam Light
https://bugreports.qt.io/browse/QTBUG-73398?focusedCommentId=468111&page=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel#comment-468111 for some links that are particularly helpful in describing all of the complexities involved in notarization and hardened runtime. Adam __

Re: [Interest] QTabWidget scroll buttons

2019-04-03 Thread Adam Light
ue for the System Preferences->General->Show scroll bars setting. In our application, we work around this by using the suggestion in the comment of https://bugreports.qt.io/browse/QTBUG-50172. Adam ___ 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 Adam Light
learning Python as I was setting up the system. Adam ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest

Re: [Interest] Weird sizing in Qt Designer 5.12.0 with hi-res screen

2019-01-23 Thread Adam Light
n a system with multiple displays that have different scale factors or on a mixed DPI environment (eg. one regular DPI, one high DPI). The situation here has improved since Qt first started supporting high DPI displays. Adam ___ Interest mailing l

Re: [Interest] Struggling with moveEvent()

2018-10-04 Thread Adam Light
ha value is not fully opaque. To be clear, that's the paintEvent for the tool button itself. The QWidget that's used by the QWidgetAction is just a container for other widgets in a layout and doesn't have any need to reimplement paintEvent. Adam ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

[Interest] Using NSTitlebarAccessoryViewController in a Qt window

2018-09-04 Thread Adam Light
e macOS version, or something else. Does anyone have any experience getting such a thing to work in a Qt application? Thanks Adam ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

[Interest] Metal-accelerated QPainter on macOS with MoltenGL?

2018-08-24 Thread Adam Twardoch (Lists)
red Qt widget rendering on the Apple platforms. But is this easily possible? Regards, Adam ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] minimum macOS runtime version for Qt 5.9+ (Jake Petroules)

2017-12-02 Thread Adam Light
s not quite feature parity between the two frameworks so we still use QTKit for some things. Adam ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

[Interest] Using QAbstractScrollArea scrollBarWidget and cornerWidget on Macintosh

2017-10-23 Thread Adam Light
bars visible. But I haven't been able to find a way to test the value of that system setting. Thanks for any ideas Adam ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] Compiling a 32-bit application on Macintosh with Qt 5.9 fails

2017-07-28 Thread Adam Light
On Fri, Jul 28, 2017 at 8:36 AM, Thiago Macieira wrote: > On Friday, 28 July 2017 06:42:26 PDT Adam Light wrote: > > So if this is a valid reason, what's the trick to getting a 32-bit > > application to compile? Or is this just a bug? > > Sounds like just a bug bec

Re: [Interest] Compiling a 32-bit application on Macintosh with Qt 5.9 fails

2017-07-28 Thread Adam Light
On Thu, Jul 27, 2017 at 12:43 PM, Thiago Macieira wrote: > On Thursday, 27 July 2017 11:28:28 PDT Adam Light wrote: > > Our application can load plugins that are written by users. Our > application > > has only had a 64-bit Macintosh version available for 366 days, so most >

Re: [Interest] Compiling a 32-bit application on Macintosh with Qt 5.9 fails

2017-07-27 Thread Adam Light
On Thu, Jul 27, 2017 at 9:13 AM, Thiago Macieira wrote: > On quinta-feira, 27 de julho de 2017 09:00:38 PDT Adam Light wrote: > > I'm not able to successfully compile a project (even an essentially empty > > project created with the Qt Creator wizard) for 32-bit on Macintos

[Interest] Compiling a 32-bit application on Macintosh with Qt 5.9 fails

2017-07-27 Thread Adam Light
t's appropriate. I'm using Xcode 8.3.3 on Sierra. Thanks Adam ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] Optimizing performance with hundreds of widgets

2017-02-25 Thread Adam Light
n the image you shared, I'd guess that most of the values that are changing might be better displayed within QLineEdit widgets. You might find that QLineEdit has better performance because I suspect there is less to do in terms of laying out the text and such. Adam ___

Re: [Interest] How to be notified when widget is moved to another screen?

2016-10-21 Thread Adam Light
le(); if (!theWindow) { QWidget* winWidget = window(); if (winWidget) { winWidget->winId(); theWindow = window()->windowHandle(); } else { // Should never get here. Q_ASSERT(0); } } Q_ASSERT(theWindow); // Should never fail. if (theWindow) { connect(theWindow, &QWindo

Re: [Interest] FUD around licensing (From What don't you like about Qt?)

2016-10-10 Thread Adam Light
reator open source download" to get to the page where I could easily download creator, but that page is no longer a result (at least nowhere near the top). Instead, the top result is now https://www.qt.io/download/, which as others have said makes it quite easy to come to the conclusion that

[Interest] Prevent tabbing of Qt application on macOS Sierra

2016-09-26 Thread Adam Light
y understanding of Cocoa/Objective-C is minimal, and I have no idea where I would make such a call. Thanks Adam ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] Depth-first filtering for QAbstractProxyModel

2016-09-12 Thread Thompson, Adam B.
Stephen, Thanks for the response. I didn't realize there was a case open and work being done to implement this feature. I'll take a look. Thanks, Adam From: Interest [mailto:interest-bounces+thompsonab=ornl@qt-project.org] On Behalf Of Stephen Kelly via Interest Sent: Thursday,

Re: [Interest] QPlainTextEdit insert spaces vs tabs

2016-09-10 Thread Thompson, Adam B.
a grain of salt. I hope that helps. Adam Thompson Computer Scientist, Nuclear Engineering Oak Ridge National Laboratory +1.865.241.8062 From: Interest on behalf of Scott Aron Bloom Date: Friday, September 9, 2016 at 12:11 PM To: "interest@qt-project.org" Subject: [Interest] QPla

Re: [Interest] Depth-first filtering for QAbstractProxyModel

2016-09-08 Thread Thompson, Adam B.
er higher priority tasks and the tree is currently functional, just not performant with larger models. Thanks, Adam From: Interest [mailto:interest-bounces+thompsonab=ornl@qt-project.org] On Behalf Of André Somers Sent: Thursday, September 8, 2016 3:32 AM To: interest@qt-project.org

Re: [Interest] Depth-first filtering for QAbstractProxyModel

2016-09-07 Thread Adam Light
On Tue, Sep 6, 2016 at 12:20 PM, Thompson, Adam B. wrote: > > My question: can anyone provide some tips on how to properly subclass > QAbstractProxyModel so I can provide some custom depth-first filtering > capabilities? (Sorting isn’t really necessary at the moment, really just

Re: [Interest] Depth-first filtering for QAbstractProxyModel

2016-09-07 Thread Thompson, Adam B.
is a proxy to the source model, so that would be in line with your reasoning to implement this data processing logic in a separate class from the data model, if I understand you correctly. Thanks, Adam -Original Message- From: Konstantin Tokarev [mailto:annu...@yandex.ru] Sent: Wedn

Re: [Interest] Depth-first filtering for QAbstractProxyModel

2016-09-07 Thread Thompson, Adam B.
uld end up with. That's really why we need a filtering capability in the first place. Thanks, Adam From: Interest [mailto:interest-bounces+thompsonab=ornl@qt-project.org] On Behalf Of André Somers Sent: Wednesday, September 7, 2016 2:56 AM To: interest@qt-project.org Subject: Re: [

[Interest] Depth-first filtering for QAbstractProxyModel

2016-09-06 Thread Thompson, Adam B.
really doesn’t properly mitigate the performance issue. My question: can anyone provide some tips on how to properly subclass QAbstractProxyModel so I can provide some custom depth-first filtering capabilities? (Sorting isn’t really necessary at the moment, really just filtering.) Thanks, Adam

Re: [Interest] [QtCharts] Logarithmic QDateTimeAxis

2016-07-13 Thread Thompson, Adam B.
ate(Time) representation. I don’t see a simple way of extending the other axis types to do this, particularly since their actual implementation is dependent on private classes (QLogValueAxisPrivate and QDateTimeAxisPrivate) that are not accessible to developers for extending. If you see somet

Re: [Interest] [QtCharts] Logarithmic QDateTimeAxis

2016-07-13 Thread Thompson, Adam B.
On 7/13/16, 7:38 AM, "Elvis Stansvik" wrote: > Hi Adam, > 2016-06-27 21:55 GMT+02:00 Thompson, Adam B. : > > The software package I co-develop at work is dependent on Qt 4.8, but we > > plan to move to Qt 5 when we have time/funding. We currently depend on a > >

Re: [Interest] [QtCharts] Logarithmic QDateTimeAxis

2016-07-13 Thread Thompson, Adam B.
our data sets in a logarithmic time scale. Any assistance would be appreciated. Adam Thompson Computer Scientist, Nuclear Engineering Oak Ridge National Laboratory +1.865.241.8062 From: Interest on behalf of Till Oliver Knoll Date: Wednesday, July 13, 2016 at 5:56 AM To: Qt Project Subject

[Interest] [QtCharts] Logarithmic QDateTimeAxis

2016-07-12 Thread Thompson, Adam B.
s, or QAbstractAxis) to provide a logarithmic time scale as I've described? Adam Thompson Computer Scientist, Nuclear Engineering Oak Ridge National Laboratory +1.865.241.8062 ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.o

[Interest] [QtCharts] Logarithmic QDateTimeAxis

2016-07-11 Thread Thompson, Adam B.
s, or QAbstractAxis) to provide a logarithmic time scale as I've described? Adam Thompson Computer Scientist, Nuclear Engineering Oak Ridge National Laboratory +1.865.241.8062 ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.o

Re: [Interest] widget rendering (alignment, sizing) issues on OS X

2016-06-06 Thread Adam Light
On Tue, May 31, 2016 at 1:06 AM, René J.V. wrote: > On Monday May 30 2016 15:22:50 Adam Light wrote: > > Hi, > > >To address this in our application, we use a QProxyStyle subclass in which > >we reimplement layoutSpacing on Macintosh like so: > > >

Re: [Interest] widget rendering (alignment, sizing) issues on OS X

2016-05-30 Thread Adam Light
r to use an analogy: KDE's new default style is called Breeze to suggest > a > fresh new wind ... the native Mac style could be called Draughty in that > mindset > :)) > To address this in our application, we use a QProxyStyle subclass in which we reimplement layoutSpacing on Macin

Re: [Interest] widget rendering (alignment, sizing) issues on OS X

2016-05-25 Thread Adam Light
e/derive from QMacStyle on Macintosh. So one solution might be not using QWidget::setStyleSheet. But that may not be sufficient to remove the need for the WA_LayoutUsesWidgetRect attribute. Adam ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

[Interest] Qt 5.6.0 online installer does not provide VS runtime libraries

2016-05-16 Thread Adam Light
wouldn't expect others to. Adam ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

[Interest] Closing Jira bug reports

2016-03-31 Thread Adam Light
to do so. Sometimes leaving a comment will prompt someone with the right permissions to close it, but that doesn't always work. Thanks Adam ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

[Interest] Creating a QCursor from a pixmap

2016-03-21 Thread Adam Light
ne to another). Cursors created using the QCursor(Qt::CursorShape shape) overload do look good on both standard and high DPI displays, but unfortunately our application needs custom cursors as well. Thanks Adam ___ Interest mailing list Interest@qt-projec

[Interest] Crashes related to QAccessibleWidget on OSX

2016-01-03 Thread Adam Light
r what I can do to figure out what is causing the crash? Thanks Adam ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] qmake.exe -query gets stuck

2015-12-18 Thread Adam Light
was using. >>> >> >> That did indeed fix it. Thanks for the hint! >> > > What virus scanner do you use? > Maybe we can fix the issue. :) > AVAST. I'm not sure what version it was. Adam ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] qmake.exe -query gets stuck

2015-12-17 Thread Adam Light
howed it running. Eventually we figured out that disabling his virus scanner fixed the problem. I don't remember which virus scanner he was using. Adam ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] Changes in Qt 5.6 on Windows HiDPI

2015-11-16 Thread Adam Light
On Thu, Nov 12, 2015 at 3:49 PM, Adam Light wrote: > We've just started testing our application using Qt 5.6 (self built from > Nov. 10 git checkout). > > It appears that the behavior of QDesktopWidget::logicalDpiX (and Y) has > changed since Qt 5.5. > > We bought a De

  1   2   >