Re: [Interest] Poor mirror performance for the online Qt SDK

2013-12-20 Thread Sze Howe Koh
On 20 December 2013 16:05, Jenssen Tim wrote: > In the past it was very easy to set a different url on the server: > >> To set a different repository on the installer: just go to "Settings" after >> you started the >> installer then click on tab "Repositories". There you can disable the >> defau

Re: [Interest] How can I change a designer for base class?

2013-12-20 Thread Igor Mironchik
Hi. Just select Widget template in the startup dialog of the Designer. I have created a UI form which will inherit into a pre-built widget. When I add a new designer form with the Qt wizard, it creates the form with a base class of QDialog. How can I change the form base class to a QWidget?

[Interest] How can I change a designer for base class?

2013-12-20 Thread Robert Steckroth
I have created a UI form which will inherit into a pre-built widget. When I add a new designer form with the Qt wizard, it creates the form with a base class of QDialog. How can I change the form base class to a QWidget? The xml file cannot be changed in the editor, so I assume it is not wise to do

Re: [Interest] Poor mirror performance for the online Qt SDK

2013-12-20 Thread Turunen Tuukka
Hi, We do not yet have a Qt Project mirror 'down under': http://download.qt-project.org/static/mirrorlist/ If you can ask your local mirror providers to mirror Qt, great! Instructions on how to become a mirror are found at: http://qt-project.org/wiki/mirror_howto Yours, Tuukka From: "Brett

Re: [Interest] qt in namespace

2013-12-20 Thread Tim Blechmann
On 20/12/13 10:41, Tim Blechmann wrote: > hi all, > > i'm having some troubles to compile qt into a separate namespace. > configuring via: > > mkdir bla > cd bla > ../configure -developer-build -nomake examples -nomake tests > -qtnamespace TestQtNamespace > > gives me the following compile error

[Interest] Qml modal dialog

2013-12-20 Thread Sadika Sumanapala
Is it possible to create modal dialog in qml which use qtquick controls? ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] Rich text in item views

2013-12-20 Thread André Somers
Philippe schreef op 20-12-2013 12:04: > I was not searching for a way to avoid delegates, but for a way of > painting. It seems I have found some hints now... > > http://qt-project.org/faq/answer/how_can_i_have_richtext_in_my_qtableview Ah, sorry, I misunderstood. I also wrote a richtextdelegate i

Re: [Interest] Rich text in item views

2013-12-20 Thread Philippe
I was not searching for a way to avoid delegates, but for a way of painting. It seems I have found some hints now... http://qt-project.org/faq/answer/how_can_i_have_richtext_in_my_qtableview Philippe On Fri, 20 Dec 2013 12:00:18 +0100 André Somers wrote: > Philippe schreef op 20-12-2013 10:07:

Re: [Interest] Rich text in item views

2013-12-20 Thread André Somers
Philippe schreef op 20-12-2013 10:07: > I would like to paint rich text in item view cells. I am aware of all > the delegate stuff to paint custom item cells, etc. but I am not aware > of any public Qt class that could paint rich text. > > Any hint? That delegate stuff is really your only way. Ther

[Interest] qt in namespace

2013-12-20 Thread Tim Blechmann
hi all, i'm having some troubles to compile qt into a separate namespace. configuring via: mkdir bla cd bla ../configure -developer-build -nomake examples -nomake tests -qtnamespace TestQtNamespace gives me the following compile error: /Users/tim/dev/qt-everywhere-opensource-src-5.2.0/qtdeclara

[Interest] Rich text in item views

2013-12-20 Thread Philippe
I would like to paint rich text in item view cells. I am aware of all the delegate stuff to paint custom item cells, etc. but I am not aware of any public Qt class that could paint rich text. Any hint? Philippe ___ Interest mailing list Interest@qt-pro