Re: [Interest] List of QT_... defines?

2014-10-31 Thread Sze Howe Koh
On 1 November 2014 05:04, Thiago Macieira wrote: > > On Thursday 30 October 2014 10:35:42 Rainer Wiesenfarth wrote: > > We just came along the question if there is a per-version list of QT_... > > defines that could be used when building applications based on Qt. > > > > I know that in 5.3.2 there

[Interest] [ANNOUNCE] GammaRay 2.2.0

2014-10-31 Thread Allen Winter
GammaRay 2.2.0 has arrived! Highlights of the 2.2.0 Release: == * New translation inspector plug-in. * New signal monitor and object lifetime plotter plug-in. * Support displaying of QQmlListProperty contents. * Expose signal/slot spy callback API to plug-ins. * Improved state

Re: [Interest] QUdpSocket and Binding

2014-10-31 Thread Thiago Macieira
On Thursday 30 October 2014 15:43:23 Jean-Nicolas Artaud wrote: > I've got a trouble I don't understand : the bind on the QUdpSocket doesn't > conplains but I don't receive anything if I put my IP Address in > _bindAddress. So the binding on AnyIPv4 works but not for adresses. > > (the soft I'm wo

Re: [Interest] List of QT_... defines?

2014-10-31 Thread Thiago Macieira
On Thursday 30 October 2014 10:35:42 Rainer Wiesenfarth wrote: > We just came along the question if there is a per-version list of QT_... > defines that could be used when building applications based on Qt. > > I know that in 5.3.2 there is QT_NO_CAST_FROM_ASCII, mentioned in the > QString docs, I

Re: [Interest] How can I block the WindowActivate and FocusIn events when showing window programmatically

2014-10-31 Thread John Weeks
It's the same situation with Move and Resize events. In Qt 4, you could do this: bool myclass::eventFilter(QObject * target, QEvent *event) { static bool moving = false; case QEvent::move: // In Qt 4, the move event comes synchronously, so we know that only our c

Re: [Interest] Android activities navigation.

2014-10-31 Thread Ben Lau
Let's clarify. You can tell Android to start another activity in a Qt Android application. No matter that is an activity for share , asking photo or other local activities within the same application written by Java. I am writing an application which need to ask for taking photo , share the photo

Re: [Interest] How can I block the WindowActivate and FocusIn events when showing window programmatically

2014-10-31 Thread Yili Pan
Hi Bo: Thank you for the reply! I do not want to filter out all the WindowActivate or FocusIn event tough, only these are triggered by calling QWidget::show(). But because the events are processed asynchronously in Qt5, when I catch them in the eventfilter, I don't know whether they are originate

Re: [Interest] Android activities navigation.

2014-10-31 Thread rap
This sounds weird. Could someone please clarify as even using Java each UI Window (= Activity) within your - or any other rogram - is always a single "item", there is no MDI . Does this mean that Qt can not create Intents and/or tell Android to start another Actvity? thanks, Risto -Al

Re: [Interest] How can I block the WindowActivate and FocusIn events when showing window programmatically

2014-10-31 Thread Bo Thorsen
Den 30-10-2014 20:30, Yili Pan skrev: > Hi: > > We want to block the widget's WindowActivate and FocusIn event > triggered by calling its show() function, with Qt4, we used to do > that by setting flag before and after show() and filter out the event > in eventfilter based on the flag. But wit