Re: [Interest] To QML or not to QML...

2012-03-05 Thread Preet
On Mon, Mar 5, 2012 at 12:54 PM, Jason H wrote: > It is my understanding that the major differences between 4 and 5 are that 5 > assumes (and requires) a hardware GL implementation (scenegraph), where 4 > does not. I was under the impression that the legacy QtQuick 1 stuff would be available in Q

Re: [Interest] QWebview signals with dynamic web pages

2012-03-05 Thread Kevin McGuire
I have worked with many things like this before. I want to offer some of my solution only as hopefully to help you. Your problem is really simple so do not give up, in case you still end up with problems. I think your solution to just keep reparsing the code every 10-ms is quite adequate! And, very

Re: [Interest] To QML or not to QML...

2012-03-05 Thread Jason H
It is my understanding that the major differences between 4 and 5 are that 5 assumes (and requires) a hardware GL implementation (scenegraph), where 4 does not. In terms of your coding, his largely comes down to the import statements that are used. From: B

[Interest] To QML or not to QML...

2012-03-05 Thread BRM
I'm working on an application that presently uses Qt 4.7 for a front-end to a larger system. One of its main tasks is to display data in the system which requires rendering up to around a thousand or so points and overlaying a template of the ideal against the actual. Presently it does all the w

Re: [Interest] About model/view sorting and headers

2012-03-05 Thread Yves Bailly
Le 05/03/2012 15:58, Jason H a écrit : > It would seem as your row header isn't header, but data? Not sure about this... I fill my headers with code like this, in the loop which appends rows: // in the following, "this" is a subclass of QStandardItemModel QList row; // ...filling row items... thi

Re: [Interest] About model/view sorting and headers

2012-03-05 Thread Jason H
It would seem as your row header isn't header, but data? From: Yves Bailly To: "interest@qt-project.org" Sent: Monday, March 5, 2012 8:31 AM Subject: [Interest] About model/view sorting and headers Greetings all, Here's something it seems I can't understa

Re: [Interest] QWebview signals with dynamic web pages

2012-03-05 Thread Murphy, Sean M.
> > I'm trying to read an 8-channel temperature sensor device that outputs its > > data via a web interface.  Viewing the device's web page via a normal web > > browser, or via QWebView::load(), I can see the temperatures correctly.  The > > temperature values are "live" in that they automatically

[Interest] Interactive Qheader width resizing with mouse

2012-03-05 Thread Frédéric RASPAIL
Hello, In a Qheader from a QTableView, is there a way to make the width of lines headers resizable with the mouse? Or do I have to use the first column to do this? Yec'han ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/m

Re: [Interest] Eclipse-like docking window?

2012-03-05 Thread Andreas Pakulat
On 05.03.12 12:37:10, jaume dominguez faus wrote: > Thanks Andreas. > > No, I don't want to dock views into an editor. That already works as > desired (it tabs the dragged view). The problem is that the main area of > the window is never occupied. It remains empty and since this is the > area t

[Interest] About model/view sorting and headers

2012-03-05 Thread Yves Bailly
Greetings all, Here's something it seems I can't understand. Let's say I have a model, a subclass from QStandardItemModel, filled with a table-like set of data, creating as much QStandardItem as needed and calling QStandardItemModel::appendRow(). This model contains both an horizontal header (th

Re: [Interest] QPushButton Background Colour

2012-03-05 Thread Lucas.Betschart
Thank you. This works Von: Diego Iastrubni [mailto:diegoi...@gmail.com] Gesendet: Montag, 5. März 2012 13:46 An: Betschart Lucas Cc: interest@qt-project.org Betreff: Re: [Interest] QPushButton Background Colour On Mon, Mar 5, 2012 at 2:37 PM, mailto:lucas.betsch

Re: [Interest] QPushButton Background Colour

2012-03-05 Thread Diego Iastrubni
On Mon, Mar 5, 2012 at 2:37 PM, wrote: > Hello, > > I made some QPushButton with only a icon. I'd like to have them flat (like > the left one in picture 1&2) & with no text. > But when I click on such a flat QPushButton some background colour > appears. How can I turn this off? > Please see: ht

[Interest] QPushButton Background Colour

2012-03-05 Thread Lucas.Betschart
Hello, I made some QPushButton with only a icon. I'd like to have them flat (like the left one in picture 1&2) & with no text. But when I click on such a flat QPushButton some background colour appears. How can I turn this off? Normal: After clicked: I hope adding pictures to this mail wo

Re: [Interest] Eclipse-like docking window?

2012-03-05 Thread jaume dominguez faus
Thanks Andreas. No, I don't want to dock views into an editor. That already works as desired (it tabs the dragged view). The problem is that the main area of the window is never occupied. It remains empty and since this is the area that takes the space gained or lost when the whole window is r

[Interest] Re : does "qt5/directfbegl" gfxdriver work with the qt-4.8.0?

2012-03-05 Thread BOUCARD Olivier
Hi, If it is a Qt Platform Abstraction (QPA) plugin it might work. But you need to have the source to recompile it for Qt 4.8. Olivier. > > De : haithem rahmani >À : interest@qt-project.org >Envoyé le : Lundi 5 mars 2012 11h50 >Objet : Re: [Interest] does "qt

Re: [Interest] does "qt5/directfbegl" gfxdriver work with the qt-4.8.0?

2012-03-05 Thread Bo Thorsen
Hi Haithem, It doesn't look like a stupid question, but there might not be anyone reading the list that knows it. This is a free forum, after all. You might have to search other places for the answer. Bo. Den 05-03-2012 11:50, haithem rahmani skrev: > Hi, > > was this question so stupid, that

Re: [Interest] does "qt5/directfbegl" gfxdriver work with the qt-4.8.0?

2012-03-05 Thread haithem rahmani
Hi, was this question so stupid, that no one wants to answer it? if yes please say it :). regards. Haithem. On Fri, Mar 2, 2012 at 2:32 PM, haithem rahmani wrote: > > Hi, > > I'm working on STMicroelectronics SoC that contains a mali400 GPU, > the SoC contains also a HW blitter to do simple 2

Re: [Interest] mouse events: how to handle left and right button pressed?

2012-03-05 Thread Stephen Kelly
On Monday, March 05, 2012 13:39:37 Lincoln Ramsay wrote: > On 03/05/2012 12:51 PM, ext Joseph Crowell wrote: > > Also, I think your error is related to a missing include. Are you doing > > #include? > > No, the error is because C++ does not recognize (Qt::LeftButton | > Qt::RightButton) as a const

Re: [Interest] Eclipse-like docking window?

2012-03-05 Thread Andreas Pakulat
On 05.03.12 09:17:29, jaume dominguez faus wrote: > Hi list. > > I have been playing around with the QDockWidget and QMainWindow. I can > easily dock and undock widgets on the borders of the main window. But > I'm interested in having an environment where you can freely add, move, > remove inte

[Interest] Eclipse-like docking window?

2012-03-05 Thread jaume dominguez faus
Hi list. I have been playing around with the QDockWidget and QMainWindow. I can easily dock and undock widgets on the borders of the main window. But I'm interested in having an environment where you can freely add, move, remove internal views anywhere. Exactly something like Eclipse does. Ecl