[Interest] QML and application fonts

2014-11-09 Thread Harri Pasanen
Hi, I've been playing with the font support in Qt. In C++ I'm able to define and select a custom application font with font.setFamily("MyCoolFont"), but on the QML side something like Text { anchors.centerIn: parent text: "Test font" font.family: "MyCoolFont" } seemingly does not

Re: [Interest] Opening Qt/Qml window inside host app

2014-11-09 Thread Nuno Santos
Hi Maurice, I have tried to create a pthread (I have tried on a Mac) but when the plugin is opened, the app hang and crashes. So far I have managed to simply instantiate a QtApplication inside the plugin app without calling exec and the window opens and the ui reacts to changes. I have the the

Re: [Interest] Opening Qt/Qml window inside host app

2014-11-09 Thread Kalinowski Maurice
Hi, there was a discussion about using Qt5 as a plugin in the past on this mailing list. Just check the archive. In general, for VST2 your implementation of AEffEditor::open() should create the thread creating the application object and invoking exec(). That is the latest point you can use bef

[Interest] Regarding Internet Radio using QtQuick 2.x

2014-11-09 Thread Jha Sonakumar
Hi All, Could you please guide me to create Internet radio App using QtQuick 2.x. As my system has not Radio Tuner h/w,that's why i need to develop the Internet Radio app. Best Regards SonaKumar

[Interest] Strange behaviour on aliased Date object

2014-11-09 Thread Dmitrii Volosnykh
Hi, I have encountered troubles when trying to declare readonly property alias to an internal var (which actually is a Date object). Here is an example which reproduces it on my laptop: import QtQuick 2.0 Rectangle { width: 100 height: 62 color: time.getTime() === internal.time.getTi

[Interest] Strange behaviour of QByteArray reserve/reallocation mechansim

2014-11-09 Thread Bernhard
Hi there! I just experienced a strange behavior of QByteArray regarding its internal reallocation behavior. Actually that behavior stops me from using capacity()/reserve() to optimize the allocation behavior and its seem to me that under current conditions reserve() is more or less useless. Using