Re: [Interest] QObjectListModel approach with Qt5 and QML crashes sometimes

2015-02-03 Thread Railway Coder
repository is also updated. Best Regards, railwaycoder 2015-02-03 6:55 GMT+01:00 Railway Coder railwayco...@gmail.com: Hi, I'm currently writing an application using Qt5 (C++ and QML). It will get a big data backend in C++ which will get updated by different hardware in realtime. To get

[Interest] QObjectListModel approach with Qt5 and QML crashes sometimes

2015-02-02 Thread Railway Coder
Hi, I'm currently writing an application using Qt5 (C++ and QML). It will get a big data backend in C++ which will get updated by different hardware in realtime. To get this data displayed in QtQuick. I found the QObjectListModel approach which was presented on QtDD12:

[Interest] Problems with debugging using QtCreator, QBS and BareMetal Plugin

2014-10-25 Thread Railway Coder
Hi, I'm using Qt Creator with QBS for debugging embedded targets with the BareMetal plugin. This works fine until build process gets a bit more complex. In old qbs file product type was *type: [application]* in that case, everything works fine. Build output is *linking

Re: [Interest] QML Signal to C++ Slot with QVariant is not working with Qt5.3

2014-06-30 Thread Railway Coder
Hi, I've created a bugreport for this: https://bugreports.qt-project.org/browse/QTBUG-39971 I have found out that QVariant Signal is working in Qt5.3 if I change the QML Signal from: signal qmlSignal2(var anObject) to: signal qmlSignal4(variant anObject) Best Regards, railwaycoder

Re: [Interest] QML Signal to C++ Slot with QVariant is not working with Qt5.3

2014-06-26 Thread Railway Coder
the same results, I will start a bugreport for this. My system runs Ubuntu 13.10 64 bit with actual Qt from online Installer. Thanks in advance and Best Regards, railwaycoder 2014-06-24 21:46 GMT+02:00 Railway Coder railwayco...@gmail.com: Hello together, are there some changes between Qt5.2

[Interest] QML Signal to C++ Slot with QVariant is not working with Qt5.3

2014-06-24 Thread Railway Coder
Hello together, are there some changes between Qt5.2 and Qt5.3 regarding to signal and slots behaviour? I've tried to switch to Qt5.3 but my Signals and Slots with QVariant are not working between QML and C++. I've written a small example that is working fine with Qt5.2 but not with Qt5.3. I

[Interest] Qt5.3 RC - Bluetooth LE - support

2014-05-08 Thread Railway Coder
Hi, Features sounds great :-) Will Bluetooth LE be supported? Best regards, Railwaycoder Am 08.05.2014 13:31 schrieb List for announcements regarding Qt releases and development annou...@qt-project.org: Hi, The Qt5.3 is RC now released, see

Re: [Interest] custom qtquick c++ component text rendering

2014-02-20 Thread Railway Coder
elements. That's the way I do and it works pretty well. Best regards. -- Unai IRIGOYEN Le mercredi 19 février 2014 21:51:06, Railway Coder a écrit : Hello, I've made my own QtQuick component by sub classing QtQuickItem. Rendering lines, rectangles and so on with QSGNode works fine

[Interest] custom qtquick c++ component text rendering

2014-02-19 Thread Railway Coder
Hello, I've made my own QtQuick component by sub classing QtQuickItem. Rendering lines, rectangles and so on with QSGNode works fine. Now, I want to add some text rendering. I don't want to use qpainteditem for that. I think there must be a new QSG related way to do this. Any ideas? I've