[Interest] set a border on QWidget

2012-05-03 Thread Sujan Dasmahapatra
I want to set a black color border on the QWidget. How can I do that Please give some suggestions. QWidget *widget = new QWidget(this); widget-setGeometry(0,0,600,400); widget-show(); My widget is showing but I want a border visible. Any help would be appreciated, thanks Sujan

Re: [Interest] set a border on QWidget

2012-05-03 Thread Giuseppe D'Angelo
On 3 May 2012 07:35, Sujan Dasmahapatra s...@lmwindpower.com wrote: I want to set a black color border on the QWidget. How can I do that Please give some suggestions. QWidget *widget = new QWidget(this); widget-setGeometry(0,0,600,400); widget-show(); My widget is showing but I want

Re: [Interest] qt vs web-runtime

2012-05-03 Thread Harri Pasanen
On 05/03/2012 01:17 AM, Stephen Bryant wrote: Hi, On Wednesday 02 May 2012 21:41:33 Harri Pasanen wrote: [...] Binary compatibility with phones/tablets is more than just CPU. As soon as you start accessing Camera, GPS, etc. you typically need to test on device. Screen resolution,

Re: [Interest] Where configure options have gone ?

2012-05-03 Thread Jordi Pujol
Thanks for the hints !! Obviously, a dirty qt5 build was the guilty. Starting from a clean qt5 download works like a charm. Just for the records ( on a linux box ) : git clone git://gitorious.org/qt/qt5.git qt5 cd qt5 perl init-repository --codereview-username My Jira/Gerrit username unset QTDIR

Re: [Interest] qt vs web-runtime

2012-05-03 Thread Kate Alhola
On May 2, 2012, at 8:37 PM, ext Nicola De Filippo wrote: Hi, Hi, However, you must expect binary compatibility problems in the future. Intel is looking to grab a share of the market, and remember also that MIPS got themselves Android certified before Intel did. There may also be

Re: [Interest] screen number problem on windows...

2012-05-03 Thread Alban Pellet
Thanks Andrea for responses. As i can’t clone qt git, it’s quite difficult to find who made this #ifdef and why. So that’s difficult to provide a patch and mainly in QWidget.cpp, foundation of a lot of classes ! Will see if our company has an account to digia. We use Qt as LGPL since 4.5, but i

[Interest] Drawing grid with Qt::DashLine in QGraphicsView

2012-05-03 Thread Jeremy
painter-setPen( Qt::DashLine ); I'm wanting to use a dashed line pen when drawing a grid in a subclass of QGraphicsView. My grid code draws the grid fine, however, it appears that the dashed line is probably drawn in sort of a line space, as opposed to sort of a global space(for lack of a better

[Interest] QML QDeclarativeView

2012-05-03 Thread Jeremy
Suppose you have a custom built UI, with forms and c++ and such. Within certain panes/tabs/etc of this custom view, you want to display qml driven content. Is it possible for the same QML data to drive the output in multiple QDeclarativeView ? For example: I'm writing a combination tile map