Re: [Interest] Custom-shaped QDialog or similar

2013-05-20 Thread Rutledge Shawn
On 21 May 2013, at 8:20 AM, Rutledge Shawn wrote: > > On 17 May 2013, at 4:19 PM, Sensei wrote: > >> Dear all, >> >> I'd like to try something new for an application: having a custom shaped >> dialog for some options. You can see my desire in the attachment. >> >> Now, what do you suggest to

Re: [Interest] [Development] Nested Mousearea don't pass events

2013-05-20 Thread Rutledge Shawn
On 20 May 2013, at 4:36 PM, Matteo Brichese wrote: > I've solved it in my code with a Timer. It's probably more efficient to go back to using two MouseAreas and propagateComposedEvents as documented in the MouseArea docs. Not being able to distinguish clicked from doubleClicked within one MA i

Re: [Interest] Custom-shaped QDialog or similar

2013-05-20 Thread Rutledge Shawn
On 17 May 2013, at 4:19 PM, Sensei wrote: > Dear all, > > I'd like to try something new for an application: having a custom shaped > dialog for some options. You can see my desire in the attachment. > > Now, what do you suggest to do that? I am lost here! > > Using a QDialog maybe? But how ca

Re: [Interest] QML Window handling focus events

2013-05-20 Thread Daiwei Li
Thanks for the quick response, Alan! appliaction.active works for me for now, but I'm looking forward to onActiveChanged being added to Qt 5.1. Daiwei On Mon, May 20, 2013 at 6:57 PM, Alan Alpert <4163654...@gmail.com> wrote: > On Mon, May 20, 2013 at 5:56 PM, Daiwei Li wrote: > > It looks the

Re: [Interest] QML Window handling focus events

2013-05-20 Thread Alan Alpert
On Mon, May 20, 2013 at 5:56 PM, Daiwei Li wrote: > It looks the QQuickWindow C++ class has focusIn and focusOut event handlers > that you can override, but there's no signal in QML. Am I missing something > or is it intentionally left out of QML? The QML API for QQuickWindow is still young (and

[Interest] QML Window handling focus events

2013-05-20 Thread Daiwei Li
It looks the QQuickWindow C++ class has focusIn and focusOut event handlersthat you can override, but there's no signal in QML. Am I missing something or is it intentionally left out of QML? Thanks, Daiwei __

Re: [Interest] Language codes, etc. (Set of ISO 639 standards)

2013-05-20 Thread Thiago Macieira
On segunda-feira, 20 de maio de 2013 18.19.26, Dmitrii Volosnykh wrote: > Hi, > > does Qt provide any stuff regarding language codes and their names for > use in application multi language applications? See QLocale's documentation, especially this one: http://qt-project.org/doc/qt-4.8/qlo

[Interest] Language codes, etc. (Set of ISO 639 standards)

2013-05-20 Thread Dmitrii Volosnykh
Hi, does Qt provide any stuff regarding language codes and their names for use in application multi language applications? Regards, Dmitrii. ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] [Development] Nested Mousearea don't pass events

2013-05-20 Thread Giuseppe D'Angelo
Hi, Il 20/05/2013 14:36, Matteo Brichese ha scritto: > This is a sample of my code: > > import QtQuick 2.0 > > Rectangle { > width: 1024 > height: 768 > > MouseArea { > anchors.fill: parent; > onClicked: console.log("Click") > } > > MouseArea { >

Re: [Interest] Qt5.1+, custom QQuickItem with text, not using QPainter?

2013-05-20 Thread Unai IRIGOYEN
Hello, I'm also interested in using text in custom QQuickItem derived classes (text is only a part of the whole item view). As both tasks metioned are marked as merged, what is the new status of text in custom QQuickItem derived classes? Is there already a doc explaining the process of adding t