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
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
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
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
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
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
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
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
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