Re: [Interest] Prevent QWidgetWindow from appending Window to objectNames

2013-10-30 Thread Bo Thorsen
Den 29-10-2013 18:36, Philipp Kursawe skrev: That is really anyoing. When I set a widgets objectName I expect it to not modify this name. But QWidgetWindow connects itself to the objectNameChanged signal connect(m_widget, QObject::objectNameChanged, this, QWidgetWindow::updateObjectName);

[Interest] Styling QTabWidget

2013-10-30 Thread Graham Labdon
Hi I am trying to style QTabWidget so that the tabs have rounded corners and the background colour of the tab widgets is light blue. The stylesheet I am using is - @ QTabWidget QWidget { background-color: lightblue; } QTabWidget::pane { /* The tab widget frame */ border-top: 2px

Re: [Interest] Prevent QWidgetWindow from appending Window to objectNames

2013-10-30 Thread Philipp Kursawe
I would have to do that for every of my widgets, which sounds like a bug to me. On Wed, Oct 30, 2013 at 8:48 AM, Bo Thorsen bthor...@ics.com wrote: Den 29-10-2013 18:36, Philipp Kursawe skrev: That is really anyoing. When I set a widgets objectName I expect it to not modify this name.

[Interest] Need help in testing a feature on OSX

2013-10-30 Thread Mandeep Sandhu
Hi All, Is there a noble soul out there willing to spend some time in helping me test out a feature on OSX?! :) The noble soul should have a working qt source build setup on OSX. I'm working on small feature for specifying custom DNS server to QDnsLookup (QTBUG-30166). I wanted to test out the

[Interest] Possible to know if QAction was triggered by QKeySequence or click?

2013-10-30 Thread Philipp Kursawe
Any way to find that out? ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] Does Qt5 support multiple touch devices for X Window?

2013-10-30 Thread Rutledge Shawn
On 29 Oct 2013, at 8:09 AM, Leslie Zhai wrote: Hi qt developers users, Does Qt5 support multiple touch devices for X Window? For example, 9 projected capacitive touch screen devices experienced as a super big touch screen, shown as below link:

Re: [Interest] Possible to know if QAction was triggered by QKeySequence or click?

2013-10-30 Thread Bo Thorsen
Den 30-10-2013 10:59, Philipp Kursawe skrev: Any way to find that out? No. Just like you can't know if it's from the menu or toolbar or some other way. An action is triggered, that's the only thing that matters. Maybe you should try and describe what it is you want to achieve with all of

Re: [Interest] Possible to know if QAction was triggered by QKeySequence or click?

2013-10-30 Thread Philipp Kursawe
I want to detect how users usually work with the application. Do they click more or use the shortcuts. This way we can optimize the UI. On Wed, Oct 30, 2013 at 11:09 AM, Bo Thorsen bthor...@ics.com wrote: Den 30-10-2013 10:59, Philipp Kursawe skrev: Any way to find that out? No. Just like

Re: [Interest] Possible to know if QAction was triggered by QKeySequence or click?

2013-10-30 Thread william.croc...@analog.com
On 10/30/2013 06:12 AM, Philipp Kursawe wrote: I want to detect how users usually work with the application. Do they click more or use the shortcuts. This way we can optimize the UI. You can try installing a global event filter on the app. You would then see all events go by, some of which

Re: [Interest] Possible to know if QAction was triggered by QKeySequence or click?

2013-10-30 Thread Bo Thorsen
Den 30-10-2013 11:12, Philipp Kursawe skrev: I want to detect how users usually work with the application. Do they click more or use the shortcuts. This way we can optimize the UI. Thanks for the explanation. There are quite a lot of times on this mailing list, where instead of helping someone

Re: [Interest] Qt 5.1.1 SQLite blocks database

2013-10-30 Thread Mark Brand
Now I am porting to Qt 5.1.1 and also using the bundeled SQLite (Version 3.7.17). The program runs without flaws, but as I start a second client it can not make any changes to the database getting the error “database is locked Unable to fetch row. It seems to me, that the first program using

Re: [Interest] Qt 5.1.1 SQLite blocks database

2013-10-30 Thread Konstantin Tokarev
30.10.2013, 11:46, Martin free...@rakor-net.de: Hi there! I have a project written in Qt4.8 using the bundeled SQLite (Version 3.7.14.1). This program is running on multiple machines sharing the same sqlite-database. The program is for informational purposes and therefore with very few

[Interest] Qt5.2 Beta for cross compilation

2013-10-30 Thread Ramakanthreddy Kesireddy
Hi, Can I use the Qt5.2 beta Dailysnapshots http://download.qt-project.org/snapshots/qt/5.2/5.2.0-beta1/2013-10-30_118/single/ to cross compile for target board as I want to make sure modules like qtserialport,qtconnectivity,qtwebkit work fine? Is there any dependency to missing

[Interest] Webcam recording

2013-10-30 Thread BOUCARD Olivier
Hi guys, I'm browsing the Web for two days looking for a solution to record video from a webcam. I try to find a cross-platform solution compatible with Qt. I know there is OpenCV but it seems like using bazooka for a fly. And I can't control the webcam settings. Maybe libvidcap can be good.

Re: [Interest] Qt5.2 Beta for cross compilation

2013-10-30 Thread Rutledge Shawn
On 30 Oct 2013, at 1:53 PM, Ramakanthreddy Kesireddy wrote: Hi, Can I use the Qt5.2 beta Dailysnapshots http://download.qt-project.org/snapshots/qt/5.2/5.2.0-beta1/2013-10-30_118/single/ to cross compile for target board as I want to make sure modules like

Re: [Interest] Need help in testing a feature on OSX

2013-10-30 Thread Holappa Teemu
Hi Mandeep, Unfortunately it seems to fail: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolch ain/usr/bin/clang++ -c -Xclang -include-pch -Xclang .pch/debug-shared/QtNetwork_debug/c++.pch -pipe -g -gdwarf-2 -isysroot

Re: [Interest] Qt 5.1.1 SQLite blocks database

2013-10-30 Thread Martin
Hi, Konstantin Tokarev annu...@yandex.ru hat am 30. Oktober 2013 um 13:51 geschrieben: You can use SQLite directly instead of relying on QtSql with SQLite plugin. Shure, but I like the way QtSql handels all this stuff for me. Also I don't want to rewrite the whole program

Re: [Interest] Webcam recording

2013-10-30 Thread Lopes Yoann
Hi, Well QtMultimedia is a cross-platform API which has camera features ;) Video recording is currently supported on Mac, Linux, and mobile platforms, but not on Windows... (will be added in a future release) Otherwise maybe you can have a look at libVLC, it has support for camera as well.

Re: [Interest] Possible to know if QAction was triggered by QKeySequence or click?

2013-10-30 Thread Philipp Kursawe
Thanks for the explanation. There are quite a lot of times on this mailing list, where instead of helping someone to achieve what they want, the proper solution is to stop them from doing it. We see that over and over again. This is a good example of a problem that smelled this way, but

Re: [Interest] Possible to know if QAction was triggered by QKeySequence or click?

2013-10-30 Thread alexander golks
Am Wed, 30 Oct 2013 15:43:44 +0100 schrieb Philipp Kursawe phil.kurs...@gmail.com: I cannot see an event for shortcuts, but I'll check the keypress events. you may want to look for QEvent::ShortcutOverride, too. -- /* * printk(KERN_ERR ide: huh? queue was plugged!\n); *

Re: [Interest] Qt5.2 Beta for cross compilation

2013-10-30 Thread Thiago Macieira
On quarta-feira, 30 de outubro de 2013 12:53:48, Ramakanthreddy Kesireddy wrote: Hi, Can I use the Qt5.2 beta Dailysnapshots http://download.qt-project.org/snapshots/qt/5.2/5.2.0-beta1/2013-10-30_118/ single/ to cross compile for target board as I want to make sure modules like

Re: [Interest] Webcam recording

2013-10-30 Thread BOUCARD Olivier
Sorry, I've just realize that I was sending only to you instead of the ML. Here the output of gst-inspect: Factory Details:   Long name:    Video (video4linux2) Source   Class:    Source/Video   Description:    Reads frames from a Video4Linux2 device   Author(s):    Edgard Lima

Re: [Interest] Webcam recording

2013-10-30 Thread Lopes Yoann
Actually, it's the 'camerabin2' element that is needed. Can you check if you have that one? If you don't, install the gst-plugins-bad package. Yoann Lopes Senior Software Engineer - Digia, Qt Visit us on: http://qt.digia.com ___ Interest mailing list

Re: [Interest] Webcam recording

2013-10-30 Thread BOUCARD Olivier
OK... But I don't have camerabin2 in my distro gst-plugins-bad. I have to figure out a way to install it. Olivier Le Mercredi 30 octobre 2013 17h48, Lopes Yoann yoann.lo...@digia.com a écrit : Actually, it's the 'camerabin2' element that is needed. Can you check if you have that one? If

Re: [Interest] Webcam recording

2013-10-30 Thread Lopes Yoann
On Oct 30, 2013, at 5:50 PM, BOUCARD Olivier wrote: OK... But I don't have camerabin2 in my distro gst-plugins-bad. I have to figure out a way to install it. You can compile gst-plugins-bad from git (RELEASE-0.10.23 tag) or from

[Interest] QML Profiler questions

2013-10-30 Thread VStevenP
I have 2 QML Profiler questions.  I am profiling a simple Knob widget which is made out of an Image and a MouseArea, with some Javscript to control the rotation property of the Image. When I profile the Knob in QML Profiler, I see that the Knob is efficient, in that there are no Paint events.  

[Interest] FOSDEM 2014 Desktops DevRoom Call for Talks

2013-10-30 Thread Pau Garcia i Quiles
Hello, As usual, it's time to submit your talk proposal for FOSDEM --8--- FOSDEM is one of the largest gatherings of Free Software contributors in the world and happens each February in Brussels (Belgium). One of the tracks will be the Desktops DevRoom (formerly known as CrossDesktop DevRoom),

Re: [Interest] QDataStream::version() -- safe to assume 8-bit?

2013-10-30 Thread Alex Malyushytskyy
Typically it is a not magic number, it is a magic string, which solves most problems. I would recommend to keep it this way. If you want to use number there, write it to string first. then write the string. Alex On Sat, Oct 26, 2013 at 6:49 PM, Constantin Makshin cmaks...@gmail.comwrote:

Re: [Interest] [ANN] ODB C++ ORM 2.3.0 released, adds schema evolution support

2013-10-30 Thread Christian Gagneraud
On 31/10/13 00:36, Boris Kolpackov wrote: I am pleased to announce the release of ODB 2.3.0. How does that compare to QDjango[1]? Why should I use ODB in a Qt project? Chris [1] http://code.google.com/p/qdjango/ ODB is an open source object-relational mapping (ORM) system for C++. It