Re: [Interest] Errors compiling Qt 6.8.1

2025-01-31 Thread Stefan Seefeld
perjantai 31. tammikuuta 2025 10.40 > > To: Stefan Seefeld > > Cc: interestqt-project.org > > Subject: Re: [Interest] Errors compiling Qt 6.8.1 > > > > Hi, > > > > > On 31. Jan 2025, at 02:44, Stefan Seefeld wrote: > > > > > > T

Re: [Interest] Errors compiling Qt 6.8.1

2025-01-30 Thread Stefan Seefeld
can configure qt with -no-sbom > to work around the issue. > > Otherwise I suggest you file a bug report with the details on how you > configure and install qt. > > Cheers. > > > On 30. Jan 2025, at 19:09, Stefan Seefeld wrote: > > > > Hello, > > > > I&#x

[Interest] Errors compiling Qt 6.8.1

2025-01-30 Thread Stefan Seefeld
Hello, I'm trying to compile & package Qt 6.8.1 on Linux (Ubuntu 24.04) for our internal use. And while the build itself appears to complete correctly, I do receive the error ``` Could not find external SBOM document qt6/sbom/qtbase-6.8.1.spdx in any of the document dir paths: ... ``` Any

Re: [Interest] using a C++ class in QML in Qt6

2024-08-31 Thread Stefan Seefeld
Hi Dirk, you may need to add one or more calls to `QQmlApplicationEngine::addImportPath()` ( https://doc.qt.io/qt-6/qqmlengine.html#addImportPath): One to the file system location where you installed your QML module, another to where to find the `main.qml` file. (You may want to use Qt resources t

[Interest] qmltestrunner usage

2024-08-22 Thread Stefan Seefeld
Hello, I'm taking first steps to write QML unit tests to be executed by qmltestrunner. I'm able to run `qmltestrunner` to execute all test cases contained in a given directory. How can I select individual test cases, or even test functions within test cases ? Is there a way to pass custom command-

Re: [Interest] Refusing to generate non-lowercase name "A" for unknown foreign type

2024-08-16 Thread Stefan Seefeld
On Fri, Aug 16, 2024 at 8:07 AM Ulf Hermann wrote: > You can indeed write your .qmltypes files manually and then pass > NO_GENERATE_QMLTYPES to prevent them from getting generated. However, > this is not for the faint of heart (hence the "NO" prefix). > OK. Assuming I'm reckless enough to try, w

Re: [Interest] Refusing to generate non-lowercase name "A" for unknown foreign type

2024-08-16 Thread Stefan Seefeld
Thanks Ulf. But as moc figured out everything it knew about `A` by reading `A.h`, and given that that header is still available, I would assume that it could just repeat the process, even if now `A.h` was only the interface to a "foreign" object... But assuming I really don't get access to that inf

Re: [Interest] Refusing to generate non-lowercase name "A" for unknown foreign type

2024-08-15 Thread Stefan Seefeld
which `qt_extract_metatypes()` falls over with an obscure error. On Wed, Aug 14, 2024 at 1:49 PM Stefan Seefeld wrote: > I'm still trying to generate an QML module from some legacy code. > Consider this layout: > > . > ├── A > │ ├── A.cpp > │ ├── A.h > │ └── CMak

Re: [Interest] creating QML module in a subdirectory of backing target

2024-08-15 Thread Stefan Seefeld
, > as described at https://doc.qt.io/qt-6/qt-generate-foreign-qml-types.html > > But maybe someone from the qml team can offer better advice. > > > On 14. Aug 2024, at 14:04, Stefan Seefeld wrote: > > > > hello, > > > > in a large CMake / Qt project of

[Interest] how to install QML module with cmake

2024-08-14 Thread Stefan Seefeld
Assume I have built my project, including an invocation to `qt_add_qml_module()`, so my build tree now contains a QML module, which is useable once I adjust my QML import path appropriately. What is the right incantation to install that QML module, or, for that matter, package it with the rest of

[Interest] Refusing to generate non-lowercase name "A" for unknown foreign type

2024-08-14 Thread Stefan Seefeld
I'm still trying to generate an QML module from some legacy code. Consider this layout: . ├── A │ ├── A.cpp │ ├── A.h │ └── CMakeLists.txt ├── B │ ├── B.cpp │ ├── B.h │ ├── CMakeLists.txt │ ├── QML.cpp │ └── QML.h └── CMakeLists.txt Subdirectory `A/` generates a DSO `libA.so` cont

Re: [Interest] creating QML module in a subdirectory of backing target

2024-08-14 Thread Stefan Seefeld
related to this... Thanks, On Wed, Aug 14, 2024 at 9:43 AM James DeLisle wrote: > Hi Stefan, > > > > Here’s what works for me in Qt 6.5+: > > > > In A/CMakeLists.txt: > > > > add_subdirectory(qml) > > > > In A/qml

[Interest] creating QML module in a subdirectory of backing target

2024-08-14 Thread Stefan Seefeld
hello, in a large CMake / Qt project of mine, I'm building a (shared) library in some directory `A`. Now I want to add a QML module for that, but due to various constraints want to do that in a subdirectory `A/qml`. That is, I have A/ ├── CMakeLists.txt ├── qml │ ├── CMakeLists.txt where `A/CM

Re: [Interest] problem with type registration during QML module compilation

2024-07-15 Thread Stefan Seefeld
ut it does have the advantage of being able to > leave old code alone. That's one of the main purposes of QML_FOREIGN. > > On Sat, 13 July 2024, 4:38 am Stefan Seefeld, wrote: > >> Hello, >> >> any idea why I'm getting the below error ? What tool is used to gener

Re: [Interest] problem with type registration during QML module compilation

2024-07-12 Thread Stefan Seefeld
Hello, any idea why I'm getting the below error ? What tool is used to generate the *_qmltyperegistrations.cpp file, and how does it figure out to add the line `#include ` instead of `#include ` ? On Fri, Jul 5, 2024 at 10:15 AM Stefan Seefeld wrote: > Hello, > > following up

[Interest] problem with type registration during QML module compilation

2024-07-05 Thread Stefan Seefeld
Hello, following up on an earlier conversation... I'm trying to convert a legacy QML module to use the "new" `qt_add_qml_module` function. This process includes the generation of a ..._qmltyperegistrations.cpp file that contains an invalid reference to a header file My library layout looks like

Re: [Interest] controlling QML singleton lifetime from C++

2024-02-16 Thread Stefan Seefeld
n Fri, Feb 16, 2024 at 2:50 PM Ulf Hermann via Interest < interest@qt-project.org> wrote: > Hi Stefan, > > > > I'd like to be able to replace that singleton instance over the course > > of the application's workflow, but I couldn't find any indication in the

[Interest] controlling QML singleton lifetime from C++

2024-02-16 Thread Stefan Seefeld
Hello, as per the Qt documentation ( https://doc.qt.io/qt-6/qqmlengine.html#QML_SINGLETON), I'm using a static `create()` function to inject an existing C++ object as singleton into the QML runtime. I'd like to be able to replace that singleton instance over the course of the application's workfl

Re: [Interest] qt_add_qml_model() dependency issue

2023-10-29 Thread Stefan Seefeld
ere's still a related issue outstanding: > https://bugreports.qt.io/browse/QTBUG-115166 > > As a workaround, use Ninja instead of Makefiles, since Ninja wasn't > affected by these issues. > > > Regards, > Sze-Howe > > > On Sun, Oct 29, 2023, 06:04 Stefan Seefel

[Interest] qt_add_qml_model() dependency issue

2023-10-28 Thread Stefan Seefeld
Hello, I just started using the `at_add_qml_model()` function, where the "backing target" is a (shared) library. I notice that each time I call `make`, the target is rebuilt. Specifically, the sequence ``` Running moc --collect-json for target XXX Automatic QML type registration for target XXX Co

Re: [Interest] sharing singleton instance between C++ and QML

2023-10-28 Thread Stefan Seefeld
QT_WARNING_POP \ > QT_ANNOTATE_CLASS(qt_qgadget, "") \ > /*end*/ > > /* qmake ignore Q_GADGET */ > #define Q_GADGET Q_GADGET_EXPORT() > > On 10/28/23 00:05, Stefan Seefeld wrote: > > Hi Uli, > > > > thank you for sharing that document, that's indee

Re: [Interest] sharing singleton instance between C++ and QML

2023-10-27 Thread Stefan Seefeld
Hi Uli, thank you for sharing that document, that's indeed very helpful. Following its examples, I was able to set up my singleton such that both runtimes (C++, QML) would share the same instance. Doing that I bumped into what I would consider a bug, probably in the MOC infrastructure: The example

Re: [Interest] sharing singleton instance between C++ and QML

2023-10-26 Thread Stefan Seefeld
On Thu, Oct 26, 2023 at 2:53 AM Ulf Hermann via Interest < interest@qt-project.org> wrote: > The very common misconception I keep reading over and over is that C++ > singletons should be the same as QML singletons. They generally aren't. > You can shoehorn a C++ singleton into a QML one, but if yo

[Interest] sharing singleton instance between C++ and QML

2023-10-25 Thread Stefan Seefeld
Hello, I'm trying to "modernize" a large code base that just migrated from Qt5 to Qt6. Our code is using a few singleton objects that used to be exported into the QML runtime via `qmlRegisterSingletonInstance()`. But as it is now recommended to move away from `qmlRegisterType()` (in favour of lett

Re: [Interest] Problems with qt_add_qml_module

2023-10-24 Thread Stefan Seefeld
I on the right track, or am I still fundamentally misunderstanding how to use QML with Qt6 ? Thanks, On Tue, Oct 24, 2023 at 2:50 PM Stefan Seefeld wrote: > > > On Tue, Oct 24, 2023 at 10:47 AM Ulf Hermann wrote: > >> > In our existing code we call `qmlRegisterType<...>(

Re: [Interest] Problems with qt_add_qml_module

2023-10-24 Thread Stefan Seefeld
which lets me explore the various aspects that are still unclear (e.g. C++ -> QML type name mapping etc.) Thanks, On Tue, Oct 24, 2023 at 11:22 AM Nils Jeisecke wrote: > Hi, > > On Tue, Oct 24, 2023 at 4:35 PM Stefan Seefeld > wrote: > > So it sounds like I s

Re: [Interest] Problems with qt_add_qml_module

2023-10-24 Thread Stefan Seefeld
On Tue, Oct 24, 2023 at 10:47 AM Ulf Hermann wrote: > > In our existing code we call `qmlRegisterType<...>(...)` in our regular > > C++ code (e.g., some shared libraries that the main application links > to). > > I thought that, to be able to use those types in stand-alone QML code, > > I'd need

Re: [Interest] Problems with qt_add_qml_module

2023-10-24 Thread Stefan Seefeld
On Tue, Oct 24, 2023 at 10:11 AM Ulf Hermann wrote: > > Most of the context would be injected into the QML runtime from C++ via > > calls to `setContextProperty()`, as well as by defining additional QML > > modules from C++ (via `qmlRegister...()`). > > This is where your architecture fails. By u

Re: [Interest] Problems with qt_add_qml_module

2023-10-24 Thread Stefan Seefeld
Hi Ulf, thank you for following up ! Yes, it's entirely possible I'm missing something fundamental, trying to approach a problem from the wrong side, so let me give some context: We are developing an application that's written mostly in C++ with a GUI done in QML. The application architecture is

[Interest] Problems with qt_add_qml_module

2023-10-23 Thread Stefan Seefeld
Hello, I'm trying to create a QML extension module using CMake, and I've run into some road blocks. I want to create a QML module including a "plugin", based on my own code rather than an auto-generated plugin stub. I assume I'll have to define my own plugin target and then use `target_include_di

Re: [Interest] running pyqt app event loop in secondary thread, using (Py)Qt6.5

2023-09-22 Thread Stefan Seefeld
Hi Jeremy, thank you very much for following up ! On Fri, Sep 22, 2023 at 6:36 PM Jeremy Katz wrote: > > I went searching for Qt 6 references to QCoreApplication.quit, as this > has changed from Qt 5. Qt 5 makes no promises. > https://doc.qt.io/qt-6/qcoreapplication.html#quit says: > Thread-saf

Re: [Interest] running pyqt app event loop in secondary thread, using (Py)Qt6.5

2023-09-22 Thread Stefan Seefeld
Hi Jeremy, thanks for the quick reply ! On Fri, Sep 22, 2023 at 1:16 PM Jeremy Katz wrote: > > On 9/22/23 09:35, Stefan Seefeld wrote: > > > 1. run the above command, but click the "quit" button immediately. Thus > > results in the error message `QObject::killTime

[Interest] running pyqt app event loop in secondary thread, using (Py)Qt6.5

2023-09-22 Thread Stefan Seefeld
Hello, I'm trying to establish a Python test methodology whereby a QApplication is launched (and its event loop executed) in a secondary thread, while the primary thread performs some "test scenario". Summary: I'm unable to set this up, and it isn't clear why this isn't working. Details: please c

Re: [Interest] running Qt main event loop in secondary thread

2023-03-28 Thread Stefan Seefeld
ports into the function the warning goes away. Does this suggest that PyQt5 itself instantiates a QApplication as a global object ? On Tue, Mar 28, 2023 at 4:16 PM Thiago Macieira wrote: > On Tuesday, 28 March 2023 06:16:52 PDT Stefan Seefeld wrote: > > First I see > > th

Re: [Interest] running Qt main event loop in secondary thread

2023-03-28 Thread Stefan Seefeld
Hi again, It looks like the problem is that pyqt5 creates some hidden Qt objects very early (i.e. upon importing some modules). If I move the imports as well as the `MainWindow` definition into the secondary thread, everything appears to be working fine. On Tue, Mar 28, 2023 at 9:16 AM Stefan

Re: [Interest] running Qt main event loop in secondary thread

2023-03-28 Thread Stefan Seefeld
On Tue, Mar 28, 2023 at 3:04 AM Samuel Gaist wrote: > > Did you consider the use of pytest-qt[0] ? > I did indeed, but it seems its functionality isn't entirely suitable for my needs: I really do need to run the event loop continuously in the background (rather than occasionally running `process

Re: [Interest] running Qt main event loop in secondary thread

2023-03-28 Thread Stefan Seefeld
Thanks all for the quick follow-up ! It's good to hear that what I have in mind *should* work. However, I'm actually struggling a bit with the implementation. I have attached a very simple test-case creating a simple (pyqt5) app. If I call the `main()` function rather than `run_app()` directly, th

[Interest] running Qt main event loop in secondary thread

2023-03-27 Thread Stefan Seefeld
Hello, I'm working on some Python tests that interact with a Qt application. I would like to run the application's event loop in a secondary thread, so the primary thread can perform the test itself. I read in the past that such a use-case wasn't supported by Qt, but I can't find that information

Re: [Interest] synchronous use of Qt state machine

2023-02-08 Thread Stefan Seefeld
Hi Volker, On Wed, Feb 8, 2023 at 11:20 AM Volker Hilsheimer wrote: > > Hi Stefan, > > > Where do you see the advantages of synchronously waiting for a state to be > reached, when instead you can connect to the respective state’s entered() > signal? The former might mak

Re: [Interest] Interest Digest, Vol 137, Issue 4

2023-02-04 Thread Stefan Seefeld
Hi Roland, thanks for your feedback ! I partially agree with your analysis. In particular, I'm not entirely sure why the entire application logic needs to gravitate around a single event loop. For user-input events this of course makes sense, as they are naturally ordered and so conceptually we do

Re: [Interest] synchronous use of Qt state machine

2023-02-02 Thread Stefan Seefeld
Hello, I haven't got any response to my question, but as the answer may really help us simplify our code I'm sending it again. Thanks for any help ! On Tue, Nov 22, 2022 at 9:02 AM Stefan Seefeld wrote: > Hello, > we are using Qt State Machines in a number of places in our a

Re: [Interest] Could NOT find Qt6WebSockets trying to compile Qt 6.2.6 (Ubuntu 22.04)

2023-01-09 Thread Stefan Seefeld
On Mon, Jan 9, 2023 at 7:10 PM Thiago Macieira wrote: The reason is what I stated: the qt-everywhere package is not as > well-tested > as the individual modules that compose it. The modules are tested on a > daily > basis by the CI. The everywhere package is not. > Yes, I understand what you ar

Re: [Interest] Could NOT find Qt6WebSockets trying to compile Qt 6.2.6 (Ubuntu 22.04)

2023-01-09 Thread Stefan Seefeld
ource package. On Mon, Jan 9, 2023 at 3:00 PM Thiago Macieira wrote: > > On Monday, 9 January 2023 09:14:16 CST Stefan Seefeld wrote: > > lrelease error: cannot create > > '/home/user/srcdir/qt-build/build/qtbase/share/qt5/translations/qtwebsockets > > _en.qm'

Re: [Interest] Could NOT find Qt6WebSockets trying to compile Qt 6.2.6 (Ubuntu 22.04)

2023-01-09 Thread Stefan Seefeld
Hi Axel, I don't think I'll need web sockets (for now). Still, I tried configuring with and without "-skip qtwebsockets", and both variants failed the same way. In fact, the configure step (even with using "-skip qtwebsockets" !) yields -- Could NOT find Qt6WebSockets (missing: Qt6WebSockets_DIR

Re: [Interest] Could NOT find Qt6WebSockets trying to compile Qt 6.2.6 (Ubuntu 22.04)

2023-01-09 Thread Stefan Seefeld
anslations/CMakeFiles/updateqm-qtwebsockets_en.ts] Error 1 On Mon, Jan 9, 2023 at 9:51 AM Axel Spoerl via Interest < interest@qt-project.org> wrote: > We're testing Ubuntu 22.04 at present. > Can't confirm a date though. > -- > *Von:* Stefan

Re: [Interest] Could NOT find Qt6WebSockets trying to compile Qt 6.2.6 (Ubuntu 22.04)

2023-01-09 Thread Stefan Seefeld
Thanks. Is there a plan for any other LTS release that will work with Ubuntu 22.04 ? On Mon, Jan 9, 2023 at 9:29 AM Axel Spoerl via Interest < interest@qt-project.org> wrote: > Hi Stefan, > pls note that Ubuntu 20.04 is supported on 6.2. Ubuntu 22.04 is known to > have issues

Re: [Interest] Could NOT find Qt6WebSockets trying to compile Qt 6.2.6 (Ubuntu 22.04)

2023-01-09 Thread Stefan Seefeld
Jan 9, 2023 at 1:02 AM Axel Spoerl via Interest < interest@qt-project.org> wrote: > Good morning Stefan, > provided the build is on Linux, this is a known issue ( > https://bugreports.qt.io/browse/QTBUG-109046), fixed in 6.4.2. > A workaround is downgrading to CMake 3.24 (3.24.2

[Interest] Could NOT find Qt6WebSockets trying to compile Qt 6.2.6 (Ubuntu 22.04)

2023-01-08 Thread Stefan Seefeld
I'm trying to compile Qt 6.2.6 from source (using the qt-everywhere-src-6.2.6.tar.xz source package) following instructions from https://doc.qt.io/qt-6.2/build-sources.html, and I get the following error: -- Could NOT find Qt6WebSockets (missing: Qt6WebSockets_DIR) > CMake Warning at > /home/user/

[Interest] Unknown CMake command "check_for_ulimit" while trying to build Qt 6.2.6 (with cmake 3.25.1)

2023-01-08 Thread Stefan Seefeld
I'm trying to compile Qt 6.2.6 following the instructions in https://doc.qt.io/qt-6.2/build-sources.html, with cmake version 3.25.1 The `configure` step fails with Unknown CMake command "check_for_ulimit". Is this a known issue ? I can get a little further commenting out line 63 in qt-everywhe

[Interest] synchronous use of Qt state machine

2022-11-22 Thread Stefan Seefeld
Hello, we are using Qt State Machines in a number of places in our applications to manage object states for certain types of objects. Occasionally I would like to use and manipulate such objects in a non-event-driven context, i.e. without a running event loop. Short of a StateMachine function that

[Interest] Is it possible to build Qt with PDBs but not QtWebEngine

2020-09-02 Thread Stefan Böhmann
PDBs while turning off PDB generation for QtWebEngine? If not, can anyone give me a hint where to look to patch it myself? Or has anyone some other idea/solution? Best regards, Stefan ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest

Re: [Interest] QQuickImageProvider for PDF rendering

2020-02-11 Thread Neubert Stefan
Hi Shawn and Michal, thank you very much, this is what we´re looking for. Looking at the commit log, it seems our question was just in time. Regards Stefan -Ursprüngliche Nachricht- Von: Shawn Rutledge Gesendet: Dienstag, 11. Februar 2020 15:55 An: Neubert Stefan Cc: interest@qt

[Interest] QQuickImageProvider for PDF rendering

2020-02-11 Thread Neubert Stefan
le. The qt blog about qtpdf in 2017 said something about adding QtQuick support, but there has not been any work on it. Any suggestion on how to properly implement qtpdf in QQuick or how to extend an image provider with additional meta data is welcome. Rega

Re: [Interest] Klocwork errors in Qt

2019-12-16 Thread Stefan Neubert
ct has it´s Roland. Just remeber the discussion on QML. After the first Mails about the Klocwork error, I was wondering, when Roland would drip in.   To share my strategy: When I feel that the goal of an email is to get attention and the author is known to attach more importance to showmanship than to make a contribution, my solution is to   JUST IGNORE IT! Stefan ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest

Re: [Interest] QVideoFrame 32 bit formats byte order

2019-11-14 Thread Stefan Fabian
treat it as an unsigned integer (as one would expect) or with a fixed in-memory order. Von: Jason H Gesendet: Freitag, 15. November 2019 00:42 An: Stefan Fabian Cc: interest@qt-project.org Betreff: Re: [Interest] QVideoFrame 32 bit formats byte order Maybe you shoul

Re: [Interest] QVideoFrame 32 bit formats byte order

2019-11-14 Thread Stefan Fabian
memory is interpreted (consecutive bytes [big-endian] or one 4 byte word per pixel [cpu dependent]). Von: David M. Cotter Gesendet: Donnerstag, 14. November 2019 21:04 An: interest@qt-project.org Cc: Stefan Fabian Betreff: Re: [Interest] QVideoFrame 32 bit formats

[Interest] QVideoFrame 32 bit formats byte order

2019-11-14 Thread Stefan Fabian
endian. Is this a (known) bug in the docs/implementation or am I missing something? Best regards, Stefan Fabian ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest

[Interest] Sharing texture between QOpenGLContext and native OpenGL context doesn't work with MESA driver

2019-03-13 Thread Stefan Fabian
he least performance impact possible (Downloading the texture and uploading it to the native context would come to my mind but that'd be horrible with regards to performance)? Qt Version: 5.5.1 Desktop: NVidia GTX 1080 with OpenGL version 4.6 (GSLS 4.6) Notebook: i7 8550U with OpenGL version

Re: [Interest] Rendering Qt/QML within native OpenGL or to texture

2019-03-10 Thread Stefan Fabian
p) to ~1ms. Thanks for the help and the links to Giuseppe. Best, Stefan ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest

Re: [Interest] Rendering Qt/QML within native OpenGL or to texture

2019-03-08 Thread Stefan Fabian
the OpenGL stuff and I couldn't find a way to create an OGRE Texture from a native OpenGL texture. The alternative might be to create a QOpenGLFramebufferObject on OGRE's underlying OpenGL texture (I can get the GLID) and blit the FBO's but I couldn't see any way of atta

[Interest] Rendering Qt/QML within native OpenGL or to texture

2019-03-07 Thread Stefan Fabian
n't really know how to continue using OGRE's context when rendering Qt/QML). Best regards and thank you for taking your time to read until here, Stefan Texture generation: // Ogre::OverlayManager &overlay_manager

Re: [Interest] QWebView vs. QWebEngine

2018-01-29 Thread Walter Stefan
Okay, thanks. This could have been written more clear on the webpage 😊 From: Jean-Michaël Celerier [mailto:jeanmichael.celer...@gmail.com] Sent: Montag, 29. Jänner 2018 19:57 To: Walter Stefan Cc: Konstantin Tokarev ; interest@qt-project.org Subject: Re: [Interest] QWebView vs. QWebEngine >

Re: [Interest] QWebView vs. QWebEngine

2018-01-29 Thread Walter Stefan
Stefan ; interest@qt-project.org Subject: Re: [Interest] QWebView vs. QWebEngine 29.01.2018, 17:08, "Walter Stefan" : > Thanks for the quick response. > > Is there a web-link that supports this, or where can I seen the licenses to > the Qt modules? https://webkit.org/

Re: [Interest] QWebView vs. QWebEngine

2018-01-29 Thread Walter Stefan
Thanks for the quick response. Is there a web-link that supports this, or where can I seen the licenses to the Qt modules? Best Regards, Stefan -Original Message- From: Konstantin Tokarev [mailto:annu...@yandex.ru] Sent: Montag, 29. Jänner 2018 18:05 To: Walter Stefan ; interest@qt

[Interest] QWebView vs. QWebEngine

2018-01-29 Thread Walter Stefan
e and that would mean I have to use QWebEngine. Is there beside the license other limitations to be aware of? Thanks and Regards, Stefan ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

[Interest] Key Events in an offscreen QQuickWindow

2018-01-03 Thread Stefan Fabian
ed offscreen using a QQuickRenderControl to handle focus by itself? Qt version is 5.5.1 Best, Stefan ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

[Interest] Is the QtOpenGLExtensions module official?

2017-04-03 Thread Stefan Monov
Hi. I need to do something very simple - use OpenGL extensions in my Qt code. For this, I've found this link [1] which says the best way is the QtOpenGLExtensions module. But this module doesn't exist in the documentation. Does anyone know why? TIA, Stefan [1] http://www.kdab.com/open

[Interest] Async QQuickImageResponse

2016-09-16 Thread Neubert Stefan
ructor: "test.pdf:1" destructor: "test.pdf:2" run finished: "test.pdf:2" run finished: "test.pdf:1" bash: line 1: 14884 Segmentation fault DISPLAY=':0.0' QT_QPA_EGLFS_PHYSICAL_HEIGHT='268.11' QT_QPA_EGLFS_PHYSICAL_WIDTH=

[Interest] Raspberry Pi3 cross toolchain linux

2016-06-01 Thread Neubert Stefan
someone knows if there´s already a working toolchain for a linux x86 host supporting armv8-a+crc. Regards Stefan HEKATRON Technik GmbH Bruehlmatten 3a - 9 D-79295 Sulzburg Reg.-Ger. Freiburg HRB 300243 Geschaeftsfuehrer: Michael Roth, Armin Berchtold Telefon +49 7634 500-0 Telefax +49 7634 500-316

[Interest] QJSEngine replacement for QScriptEngine misses newFunction

2016-05-18 Thread Walter Stefan
ay. I can use it then in the script: value = sqrt(4); I actually don't want to map a whole QObject, because that would require a call like this: value = MyMath.sqrt(4); Is there any way to achive in QJSEngine the same result as I do within the QScriptEngine? Best Regards, Stefan

Re: [Interest] Qt unified installer behind proxy with AV

2016-05-13 Thread Neubert Stefan
xe-dir for https QNetworkRequest and CONFIG += openssl-linked Start unified installer with the created user repository. Von: Carel Combrink [mailto:carel.combr...@gmail.com] Gesendet: Freitag, 13. Mai 2016 12:06 An: Neubert Stefan Cc: interest@qt-project.org Betreff: Re: [Interest] Qt unified instal

[Interest] Qt unified installer behind proxy with AV

2016-05-13 Thread Neubert Stefan
Hi everyone, for a long time now I used the online installer to download and update the open source version of qt and creator behind our companies proxy. Lately we got a new proxy and the download of the meta.7z files now causes an icap error because of our antivirus unable to decompress the fi

Re: [Interest] QJSEngine replacement for QScriptEngine misses newFunction

2016-02-23 Thread Walter Stefan
qrt() method without the instance. i.e. sqrt(4); Thanks for your suggestion. Best Regards, Stefan -Original Message- From: Interest [mailto:interest-bounces+stefan.walter=lisec@qt-project.org] On Behalf Of Stephen Bryant Sent: Dienstag, 23. Februar 2016 15:12 To: interest@qt-

[Interest] QJSEngine replacement for QScriptEngine misses newFunction

2016-02-22 Thread Walter Stefan
ay. I can use it then in the script: value = sqrt(4); I actually don't want to map a whole QObject, because that would require a call like this: value = MyMath.sqrt(4); Is there any way to achive in QJSEngine the same result as I do within the QScriptEngine? Best Regards, Stefan

[Interest] Expected Release Date - Qt 5.4.1

2015-02-17 Thread Stefan Walter
Hi, I would like to upgrade to Qt 5.4, but I am thinking to wait as it seems that 5.4.1 is around the corner. Can someone give me an expected release date for 5.4.1? Thanks & Regards, Stefan __ The content of this e-mail is confidential and restricted for the

[Interest] QIcon and multiple themes

2013-10-16 Thread Stefan Böhmann
and friends, but do not see how I can apply it with multiple themes. Or should I write my own QIconEnginePlugin? BTW: Ease of use is more important than ease of implementation. Any tip is appreciated. Thanks, Stefan ___ Interest mailing list Interest

Re: [Interest] How to rebuild a Qt project which linked with a static library?

2013-01-22 Thread Stefan Walter
Hi Vincent, please post also your .pro file content with the PRE_TARGETDEPS specification of yours. Thanks, Stefan >>> Von: Vincent Cai An:Stefan Walter , "interest@qt-project.org" Datum: 23.1.2013 11:31 Betreff: Re: [Interest] How to rebuild a Qt project which link

Re: [Interest] How to rebuild a Qt project which linked with a static library?

2013-01-22 Thread Stefan Walter
The qmake variable PRE_TARGETDEPS might be what you are looking for. By using this variable in your project file, you should be able to specify the dependencies to the static library. >>> Von: Vincent Cai An:Thiago Macieira , "interest@qt-project.org" Datum: 23.1.2013 10:53 Betreff: Re: [In

[Interest] Dependencies of Qt-Creator

2013-01-15 Thread Stefan Walter
Hi, has anyone noticed a change in the project dependencies since Qt-Creator 2.5.0? We are facing the issue that the build system is not building anymore projects which are selected as dependent projects. Any input will be helpfull. Cheers, Stefan

[Interest] Antw: Re: Does Digia plan to ship Qt5.0 64bit library for Windows 64bit OS?

2012-09-12 Thread Stefan Walter
Thanks for this information - you are right. By the way - the x86 is really totaly confusing. >>> Von: An: Datum: 12.9.2012 12:25 Betreff: Re: [Interest] Does Digia plan to ship Qt5.0 64bit library for Windows 64bit OS? > http://origin.releases.qt-project.org/qt5.0/beta1/ > Follow the Beta1

Re: [Interest] Does Digia plan to ship Qt5.0 64bit library for Windows 64bit OS?

2012-09-11 Thread Stefan Walter
Me too, it gets more and more important to use x64 applications. I hope Digia considers this. >>> Von: techabc An: Datum: 12.9.2012 9:56 Betreff: Re: [Interest] Does Digia plan to ship Qt5.0 64bit library for Windows 64bit OS? I also Hope that Digia snapshot give a msvc2012 binary package.

Re: [Interest] Digia to acquire Qt from Nokia

2012-08-09 Thread Stefan Walter
Am 09.08.2012 um 21:49 schrieb "BRM " : >> From: Lorn Potter > >> To: Till Oliver Knoll >> Cc: Qt Project >> Sent: Thursday, August 9, 2012 7:54 AM >> Subject: Re: [Interest] Digia to acquire Qt from Nokia >> >> >> On 09/08/2012, at 6:49 PM, Till Oliver Knoll >> wrote: >> >>> Am 09.08.20

[Interest] Software-Keyboard attached to QLineEdit on Desktop App

2012-07-06 Thread Stefan Walter
i am not lucky at all. I need this in a Windows application. What would be the right approach of implementation in this case? Thanks, Stefan ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] submit policy

2012-06-21 Thread Stefan
ks for any idea Stefan --- Hi Mark, thank you for your response! I have been looking at the QItemDelegate class but am pretty unsure what method to override. Can you point me to the right direction? Thank you in advance Stefan From: Mark Brand To: Stefan Cc: Diego Schulz ; &q

Re: [Interest] Is Nokia officially done with Qt?

2012-06-16 Thread Stefan Walter
people! > > Thank you, > Oliver > ___ > Interest mailing list > Interest@qt-project.org > http://lists.qt-project.org/mailman/listinfo/interest +1, I agree and please appreciate what all the mentioned people have contributed so far and will do further. You all got

Re: [Interest] Is Nokia officially done with Qt?

2012-06-16 Thread Stefan Walter
e the existence of the Qt project. Regards, Stefan Am 16.06.2012 um 12:17 schrieb "Lorn Potter " : > > On 16/06/2012, at 5:37 PM, d3fault wrote: > >> Now that all the Nokia devs live in trash cans, I guess it's up to us to >> further [the?] QThe Project >

Re: [Interest] Application crash with QLocale

2012-06-12 Thread Stefan Walter
QApplication needs to be instantiated before you do any other call to Qt functionalities. Therefore i assume to put it in a subclass of the QMainWindow is the wrong place. Try to move it into your main() function. Stefan On 12.06.2012, at 22:20, "Scott Aron Bloom" wrote: >

Re: [Interest] Is Qt 4.8.1 or 4.8.2 the latest?

2012-06-10 Thread Stefan Walter
On 10.06.2012, at 17:06, "Till Oliver Knoll " wrote: > Am 09.06.12 12:54, schrieb jason.mcdon...@nokia.com: >> ...There is not yet a Qt SDK that includes Qt 4.8.2 (the wiki is wrong and >> I'll attempt to get that corrected). > > Ah well :) I was already trying several times the SDKMaintenance

Re: [Interest] submit policy

2012-06-07 Thread Stefan
Hi Mark, thank you for your response! I have been looking at the QItemDelegate class but am pretty unsure what method to override. Can you point me to the right direction? Thank you in advance Stefan From: Mark Brand To: Stefan Cc: Diego Schulz

Re: [Interest] submit policy

2012-05-23 Thread Stefan
), preferable time delayed for QLineEdits and QComboBoxes. Thank you for your input Stefan From: Diego Schulz To: "interest@qt-project.org" Sent: Thursday, May 24, 2012 12:41 AM Subject: Re: [Interest] submit policy On Mon, May 21, 2012 at 9:15 AM,

[Interest] submit policy

2012-05-21 Thread Stefan
Hello, this question is about the submit policy in QDataWidgetMapper. There is an AutoSubmit, which submits to the itemModel on focus lost. Also, there is a ManualSubmit, submitting only when called programatically. I prefer to use the auto submit policy, since I don't want to have an ok button

Re: [Interest] [Qt-interest] cmake: ui library?

2012-02-13 Thread Stefan Majewsky
ur case, the quick answer should be set(CMAKE_AUTOMOC TRUE) Probably before add_library(). Have not tried it though, see the linked article for details. > So, does anyone know how to setup cmake to churn out a static library from > Qt code? add_library(foobar STATIC ${foobar_SOURCES}) Greet