Filippo Cucchetto
Filippo Cucchetto
@ShalokShalom i'm not going to remove the defer until ORC/ARC becomes the default gc. Since it's not we will reconsider this in Nim v2 version
Yes, i've to decide if to put this functionality in the DOtherSide (for simplicity of the implementation) or to put it in a different QML module (better) that a user...
Yes, basically something like QtQuickControls (so a shared library to put in your import path) ``` import DOtherSide.Extra 1.0 Window { SystemTrayIcon { visible: true menu: Menu { ... }...
yes correct 2015-12-24 12:41 GMT+01:00 Moritz Maxeiner [email protected]: > Hm, I assume Qt takes care of loading the shared library dynamically (from > where ever the module lies)? > >...
Hi you need to install all Qt dev modules required by dotherside not only qtbase. In particular you need to install at least QtDeclarative that should install QQml and Quick....
No if you use the Qt installer you don’t need to compile qt from source!! Simply make cmake point to the correct cmake files inside the directory where you installed...
@grd it seems you don't know how to use cmake. Better to steak with your distrubution packages. Since linux mint is based on ubuntu you need to install https://launchpad.net/ubuntu/kinetic/+package/qt6-declarative-dev
@arnetheduck what's the rationale for accessing the QMetaObject from different threads? Usually QObject are created inside a thread and MUST be deleted from the same thread
ok but still we don't quite handle the moveToThread stuff in QObject. We can obviously add that support later on. The same global problem is in LambdaInvoker where we keeped...
@arnetheduck i wonder if using the shared_ptr approach could be better for this use cases. In particular to the LambdaInvoker