Re: [Interest] Qt app for Tizen-based Samsung TV

2015-01-12 Thread Tomasz Olszak
Nothing in Qt prevents that. I think those TVs run X11, so it should be easy to run Qt there. Right - there are no technical obstacles for running Qt on Tizen TV. ___ Interest mailing list Interest@qt-project.org

Re: [Interest] Qt 5.3 vs Qt 5.4 (etc)

2015-01-12 Thread Andreas Pakulat
Hi Rene, On Sun, Jan 11, 2015 at 10:55 PM, René J.V. rjvber...@gmail.com wrote: On Sunday January 11 2015 22:24:37 Andreas Pakulat wrote: Hi Andreas, If this principle was in place for Qt 5.2 too, I can thus upgrade my Linux box's Qt 5.2 (Ubuntu 14.04) to Qt 5.3.2 (backported from

Re: [Interest] QML: onLoaded signal for QQuickWindow or QQmlApplicationEngine

2015-01-12 Thread Dmitry Volosnykh
Then you may try to expose some C++ class which has some slot (See Integrating QML and C++ http://doc.qt.io/qt-5/qtqml-cppintegration-topic.html). This slot can be called from Component.onCompleted. On Mon, Jan 12, 2015 at 9:32 AM, Dmitry Volosnykh dmitry.volosn...@gmail.com wrote: Try to do

Re: [Interest] Bluetooth Low Energy on Windows: Options and feasabilty of implementing own backend

2015-01-12 Thread Blasche Alexander
How do you define a custom BLE peripheral (aka what BLE devices work and which don't) on Win 8.1? Is it one that is not defined by some well known service or characteristic UUID? -- Alex From: Axel Jäger axeljae...@googlemail.com Sent: Sunday, January 11,

Re: [Interest] Qt app for Tizen-based Samsung TV

2015-01-12 Thread Thiago Macieira
On Monday 05 January 2015 11:13:53 Bely, Yury wrote: Hi folks Is it possible create Qt app for Tizen-based Samsung TV ? Nothing in Qt prevents that. I think those TVs run X11, so it should be easy to run Qt there. -- Thiago Macieira - thiago.macieira (AT) intel.com Software Architect -

Re: [Interest] QMAKE_FRAMEWORKPATH in qmake -query output

2015-01-12 Thread Koehne Kai
-Original Message- From: interest-bounces+kai.koehne=theqtcompany@qt-project.org [mailto:interest-bounces+kai.koehne=theqtcompany@qt-project.org] On Behalf Of Rene J.V. Bertin Sent: Sunday, January 11, 2015 9:01 PM To: interest@qt-project.org Subject: Re: [Interest]

Re: [Interest] Bluetooth Low Energy on Windows: Options and feasabilty of implementing own backend

2015-01-12 Thread Denis Shienkov
Hi all, So far, I was not able to communicate with a custom BLE peripheral using either Windows Phone 8.1 or Windows 8.1 on a desktop. Hmm, it is strange. Can you please describe your steps and your env? Maybe your custom BLE peripheral chip has wrong firmware. I'm too faced earlier with a

[Interest] qt 5.4 build failure to replace existing qt5.3 in the same place

2015-01-12 Thread René J . V . Bertin
On Monday January 12 2015 13:59:14 René J.V. Bertin wrote: I do have Qt5.3.2 installed configured with the same install locations, and indeed it would seem that at least the 1st error is due to the installed header being included instead of one from the build tree. Regarding that

Re: [Interest] QML ScrollView, programmatic scroll?

2015-01-12 Thread Dmitry Volosnykh
Did you try flickable.contentY = 0? On Mon, Jan 12, 2015 at 5:06 PM, Harri Pasanen ha...@mpaja.com wrote: Hi, Is the a way to set the ScrollView scroll amount? Actually, for me going to beginning would suffice at this point. I have something like below ScrollView { id:

Re: [Interest] QML ScrollView, programmatic scroll?

2015-01-12 Thread Harri Pasanen
Trying now, I get: Error: Cannot assign to non-existent property contentY On 12/01/2015 15:08, Dmitry Volosnykh wrote: Did you try flickable.contentY = 0? On Mon, Jan 12, 2015 at 5:06 PM, Harri Pasanen ha...@mpaja.com mailto:ha...@mpaja.com wrote: Hi, Is the a way to set the

[Interest] QML ScrollView, programmatic scroll?

2015-01-12 Thread Harri Pasanen
Hi, Is the a way to set the ScrollView scroll amount? Actually, for me going to beginning would suffice at this point. I have something like below ScrollView { id: flickable anchors.fill: parent Text { id: webView text: html

Re: [Interest] QML ScrollView, programmatic scroll?

2015-01-12 Thread Harri Pasanen
But this works for my example below: flickable.flickableItem.contentY = 0 Thanks! Harri On 12/01/2015 15:14, Harri Pasanen wrote: Trying now, I get: Error: Cannot assign to non-existent property contentY On 12/01/2015 15:08, Dmitry Volosnykh wrote: Did you try flickable.contentY = 0?

Re: [Interest] [Qt5.3+] font issue and questions on OS X

2015-01-12 Thread Rutledge Shawn
You should probably report bugs about those issues. ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] Qt 5.3 vs Qt 5.4 (etc)

2015-01-12 Thread René J . V . Bertin
On Monday January 12 2015 14:10:12 Andreas Pakulat wrote: Hi, not sure wether it was intentional to reply only to me, but I'm replying in private too just in case. No, it wasn't, so I'm replying publicly. I must say I haven't yet tried to build all the Qt5 packages, so I cannot even be

Re: [Interest] Qt 5.3 vs Qt 5.4 (etc)

2015-01-12 Thread Alejandro Exojo
El Saturday 10 January 2015, René J.V. Bertin escribió: On Saturday January 10 2015 11:44:37 Tomasz Olszak wrote: Thanks again, And here is interesting article about it: https://techbase.kde.org/Policies/Binary_Compatibility_Issues_With_C++ Yes, I knew that one, and that it mentions

[Interest] build questions?

2015-01-12 Thread René J . V . Bertin
Hi, Is this the proper list to ask questions about Qt5 building (and build failures)? Also, is it possible to open (import) an already configured Qt project in Qt Creator, e.g. Qt5 configured for an out-of-tree build, without running the whole configure step again? Thanks, R.

Re: [Interest] build questions?

2015-01-12 Thread Koehne Kai
-Original Message- From: interest-bounces+kai.koehne=theqtcompany@qt-project.org [mailto:interest-bounces+kai.koehne=theqtcompany@qt-project.org] On Behalf Of Rene J.V. Bertin Sent: Monday, January 12, 2015 1:07 PM To: 'interest@qt-project.org' Subject: [Interest] build

Re: [Interest] qt 5.4 build failure to replace existing qt5.3 in the same place

2015-01-12 Thread Thiago Macieira
On Monday 12 January 2015 14:38:20 René J.V. Bertin wrote: Concerning the error show at https://paste.kde.org/p2vtxcfcs , it turns out that it indeed went away after I moved aside /opt/local/include/qt5 . That is the place the headers should go after installation, NOT where they should be

Re: [Interest] Qt 5.3 vs Qt 5.4 (etc)

2015-01-12 Thread André Pönitz
On Mon, Jan 12, 2015 at 10:56:56AM +0100, Alejandro Exojo wrote: El Saturday 10 January 2015, René J.V. Bertin escribió: On Saturday January 10 2015 11:44:37 Tomasz Olszak wrote: Thanks again, And here is interesting article about it:

Re: [Interest] Bluetooth Low Energy on Windows: Options and feasabilty of implementing own backend

2015-01-12 Thread Axel Jäger
Hello Denis, Hello Alex, thank you for your help, here is a description of my setup: Bluetooth peripheral: I use a BLE112-Bluetooth-Module from bluegiga. It is programmed with a demo firmware that implements a Heart Rate service. I added one line to the initalisation of the firmware:

[Interest] How can I use QPointer as an argument?

2015-01-12 Thread Guenther Boelter
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Sorrry, I have a 'small' problem and my timeline is running so fast ... How can I use QPointer as an argument? A simple void myFunction( QPointer *myPointer ) { // do something } myFunction( myPointer ); returns 'error: ‘QPointer’ is not a

Re: [Interest] How can I use QPointer as an argument?

2015-01-12 Thread Constantin Makshin
QPointer is a template class and therefore can't be used by itself, i.e. without specifying the template parameter. In your case you should either: 1) specify a particular QObject-related class in the declaration/definition of myFunction(), e.g. void myFunction (QPointerQWidget* myPointer)

[Interest] Qt support for WebSocket Subprotocol

2015-01-12 Thread Juergen Bocklage-Ryannel
Hi All, I try to implement the wamp.ws (http://wamp.ws) websocket protocol, which would allow instances of Qt to talk to any WAMP backend. For this Qt websockets ideally would support the subprotocol non-normative standard (https://tools.ietf.org/html/rfc6455#page-12), which is currently not

Re: [Interest] Run Qt Widget program with minimal Xorg installation on Linux

2015-01-12 Thread Rutledge Shawn
On 10 Jan 2015, at 06:10, ruslan rus...@khvmntk.ru wrote: Finally I've solved the problem. Some packages of the list below were missed: apt-get install libxcb1 libxcb1-dev libx11-xcb1 libx11-xcb-dev libxcb-keysyms1 libxcb-keysyms1-dev libxcb-image0 libxcb-image0-dev libxcb-shm0

Re: [Interest] qt 5.4 build failure to replace existing qt5.3 in the same place

2015-01-12 Thread René J . V . Bertin
On Monday January 12 2015 08:20:03 Thiago Macieira wrote: On Monday 12 January 2015 14:38:20 René J.V. Bertin wrote: Yes. But make sure it came from the -headerdir switch. It might have come from something else, such as a dependent package's pkg-config output. A dependent package? I can

[Interest] building qt5.4: getting *_PRIVATE_INCLUDE_DIRS into cmake files

2015-01-12 Thread René J . V . Bertin
Hello, Another build question... After building qt 5.4.0, I find myself with *Config.cmake files that contain include(${CMAKE_CURRENT_LIST_DIR}/ExtraSourceIncludes.cmake OPTIONAL) instead of for instance set(Qt5Widgets_PRIVATE_INCLUDE_DIRS

Re: [Interest] qt 5.4 build failure to replace existing qt5.3 in the same place

2015-01-12 Thread René J . V . Bertin
On Monday January 12 2015 11:48:01 Ryan Schmidt wrote: Can that be considered a bug? Can I safely do a search and remove of -I/opt/local/include/qt5 in the generated makefiles (or wherever that option is stored) before starting the build? Yes, incorrect -I flags would be a bug that you