FocusAboutToChange event to be send before focus changes
[profile/ivi/qtbase.git] / src / widgets / kernel / qwidget_p.h
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/
5 **
6 ** This file is part of the QtGui module of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** GNU Lesser General Public License Usage
10 ** This file may be used under the terms of the GNU Lesser General Public
11 ** License version 2.1 as published by the Free Software Foundation and
12 ** appearing in the file LICENSE.LGPL included in the packaging of this
13 ** file. Please review the following information to ensure the GNU Lesser
14 ** General Public License version 2.1 requirements will be met:
15 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
16 **
17 ** In addition, as a special exception, Nokia gives you certain additional
18 ** rights. These rights are described in the Nokia Qt LGPL Exception
19 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
20 **
21 ** GNU General Public License Usage
22 ** Alternatively, this file may be used under the terms of the GNU General
23 ** Public License version 3.0 as published by the Free Software Foundation
24 ** and appearing in the file LICENSE.GPL included in the packaging of this
25 ** file. Please review the following information to ensure the GNU General
26 ** Public License version 3.0 requirements will be met:
27 ** http://www.gnu.org/copyleft/gpl.html.
28 **
29 ** Other Usage
30 ** Alternatively, this file may be used in accordance with the terms and
31 ** conditions contained in a signed written agreement between you and Nokia.
32 **
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #ifndef QWIDGET_P_H
43 #define QWIDGET_P_H
44
45 //
46 //  W A R N I N G
47 //  -------------
48 //
49 // This file is not part of the Qt API.  It exists for the convenience
50 // of qapplication_*.cpp, qwidget*.cpp and qfiledialog.cpp.  This header
51 // file may change from version to version without notice, or even be removed.
52 //
53 // We mean it.
54 //
55
56 #include "QtWidgets/qwidget.h"
57 #include "private/qobject_p.h"
58 #include "QtCore/qrect.h"
59 #include "QtCore/qlocale.h"
60 #include "QtCore/qset.h"
61 #include "QtGui/qregion.h"
62 #include "QtGui/qinputmethod.h"
63 #include "QtWidgets/qsizepolicy.h"
64 #include "QtWidgets/qstyle.h"
65 #include "QtWidgets/qapplication.h"
66 #include <private/qgraphicseffect_p.h>
67 #include "QtWidgets/qgraphicsproxywidget.h"
68 #include "QtWidgets/qgraphicsscene.h"
69 #include "QtWidgets/qgraphicsview.h"
70 #include <private/qgesture_p.h>
71
72 QT_BEGIN_NAMESPACE
73
74 // Extra QWidget data
75 //  - to minimize memory usage for members that are seldom used.
76 //  - top-level widgets have extra extra data to reduce cost further
77 class QWidgetWindow;
78 class QPaintEngine;
79 class QPixmap;
80 class QWidgetBackingStore;
81 class QGraphicsProxyWidget;
82 class QWidgetItemV2;
83
84 class QStyle;
85
86 class QUnifiedToolbarSurface;
87
88 // implemented in qshortcut.cpp
89 bool qWidgetShortcutContextMatcher(QObject *object, Qt::ShortcutContext context);
90
91
92 class Q_AUTOTEST_EXPORT QWidgetBackingStoreTracker
93 {
94
95 public:
96     QWidgetBackingStoreTracker();
97     ~QWidgetBackingStoreTracker();
98
99     void create(QWidget *tlw);
100     void destroy();
101
102     void registerWidget(QWidget *w);
103     void unregisterWidget(QWidget *w);
104     void unregisterWidgetSubtree(QWidget *w);
105
106     inline QWidgetBackingStore* data()
107     {
108         return m_ptr;
109     }
110
111     inline QWidgetBackingStore* operator->()
112     {
113         return m_ptr;
114     }
115
116     inline QWidgetBackingStore& operator*()
117     {
118         return *m_ptr;
119     }
120
121     inline operator bool() const
122     {
123         return (0 != m_ptr);
124     }
125
126 private:
127     Q_DISABLE_COPY(QWidgetBackingStoreTracker)
128
129 private:
130     QWidgetBackingStore* m_ptr;
131     QSet<QWidget *> m_widgets;
132 };
133
134 struct QTLWExtra {
135     // *************************** Cross-platform variables *****************************
136
137     // Regular pointers (keep them together to avoid gaps on 64 bits architectures).
138     QIcon *icon; // widget icon
139     QPixmap *iconPixmap;
140     QWidgetBackingStoreTracker backingStoreTracker;
141     QBackingStore *backingStore;
142     QPainter *sharedPainter;
143
144     // Implicit pointers (shared_null).
145     QString caption; // widget caption
146     QString iconText; // widget icon text
147     QString role; // widget role
148     QString filePath; // widget file path
149
150     // Other variables.
151     short incw, inch; // size increments
152     short basew, baseh; // base sizes
153      // frame strut, don't use these directly, use QWidgetPrivate::frameStrut() instead.
154     QRect frameStrut;
155     QRect normalGeometry; // used by showMin/maximized/FullScreen
156     Qt::WindowFlags savedFlags; // Save widget flags while showing fullscreen
157
158     // *************************** Cross-platform bit fields ****************************
159     uint opacity : 8;
160     uint posFromMove : 1;
161     uint sizeAdjusted : 1;
162     uint inTopLevelResize : 1;
163     uint inRepaint : 1;
164     uint embedded : 1;
165
166     // *************************** Platform specific values (bit fields first) **********
167 #if defined(Q_WS_X11) // <----------------------------------------------------------- X11
168     uint spont_unmapped: 1; // window was spontaneously unmapped
169     uint dnd : 1; // DND properties installed
170     uint validWMState : 1; // is WM_STATE valid?
171     uint waitingForMapNotify : 1; // show() has been called, haven't got the MapNotify yet
172     WId parentWinId; // parent window Id (valid after reparenting)
173     WId userTimeWindow; // window id that contains user-time timestamp when WM supports a _NET_WM_USER_TIME_WINDOW atom
174     QPoint fullScreenOffset;
175 #ifndef QT_NO_XSYNC
176     WId syncUpdateCounter;
177     ulong syncRequestTimestamp;
178     qint32 newCounterValueHi;
179     quint32 newCounterValueLo;
180 #endif
181 #elif defined(Q_WS_WIN) // <--------------------------------------------------------- WIN
182     uint hotkeyRegistered: 1; // Hot key from the STARTUPINFO has been registered.
183     HICON winIconBig; // internal big Windows icon
184     HICON winIconSmall; // internal small Windows icon
185 #elif defined(Q_WS_MAC) // <--------------------------------------------------------- MAC
186     uint resizer : 4;
187     uint isSetGeometry : 1;
188     uint isMove : 1;
189     quint32 wattr;
190     quint32 wclass;
191     WindowGroupRef group;
192     IconRef windowIcon; // the current window icon, if set with setWindowIcon_sys.
193     quint32 savedWindowAttributesFromMaximized; // Saved attributes from when the calling updateMaximizeButton_sys()
194     // This value is just to make sure we maximize and restore to the right location, yet we allow apps to be maximized and
195     // manually resized.
196     // The name is misleading, since this is set when maximizing the window. It is a hint to saveGeometry(..) to record the
197     // starting position as 0,0 instead of the normal starting position.
198     bool wasMaximized;
199 #endif
200     QWidgetWindow *window;
201     quint32 screenIndex; // index in qplatformscreenlist
202 };
203
204 struct QWExtra {
205     // *************************** Cross-platform variables *****************************
206
207     // Regular pointers (keep them together to avoid gaps on 64 bits architectures).
208     void *glContext; // if the widget is hijacked by QGLWindowSurface
209     QTLWExtra *topextra; // only useful for TLWs
210 #ifndef QT_NO_GRAPHICSVIEW
211     QGraphicsProxyWidget *proxyWidget; // if the widget is embedded
212 #endif
213 #ifndef QT_NO_CURSOR
214     QCursor *curs;
215 #endif
216     QPointer<QStyle> style;
217     QPointer<QWidget> focus_proxy;
218
219     // Implicit pointers (shared_empty/shared_null).
220     QRegion mask; // widget mask
221     QString styleSheet;
222
223     // Other variables.
224     qint32 minw;
225     qint32 minh; // minimum size
226     qint32 maxw;
227     qint32 maxh; // maximum size
228     quint16 customDpiX;
229     quint16 customDpiY;
230     QSize staticContentsSize;
231
232     // *************************** Cross-platform bit fields ****************************
233     uint explicitMinSize : 2;
234     uint explicitMaxSize : 2;
235     uint autoFillBackground : 1;
236     uint nativeChildrenForced : 1;
237     uint inRenderWithPainter : 1;
238     uint hasMask : 1;
239
240     // *************************** Platform specific values (bit fields first) **********
241 #if defined(Q_WS_WIN) // <----------------------------------------------------------- WIN
242 #ifndef QT_NO_DRAGANDDROP
243     QOleDropTarget *dropTarget; // drop target
244     QList<QPointer<QWidget> > oleDropWidgets;
245 #endif
246 #elif defined(Q_WS_X11) // <--------------------------------------------------------- X11
247     uint compress_events : 1;
248     WId xDndProxy; // XDND forwarding to embedded windows
249 #elif defined(Q_WS_MAC) // <------------------------------------------------------ MAC
250     // Cocoa Mask stuff
251     QImage maskBits;
252     CGImageRef imageMask;
253 #endif
254 };
255
256 /*!
257     \internal
258
259     Returns true if \a p or any of its parents enable the
260     Qt::BypassGraphicsProxyWidget window flag. Used in QWidget::show() and
261     QWidget::setParent() to determine whether it's necessary to embed the
262     widget into a QGraphicsProxyWidget or not.
263 */
264 static inline bool bypassGraphicsProxyWidget(const QWidget *p)
265 {
266     while (p) {
267         if (p->windowFlags() & Qt::BypassGraphicsProxyWidget)
268             return true;
269         p = p->parentWidget();
270     }
271     return false;
272 }
273
274 class Q_WIDGETS_EXPORT QWidgetPrivate : public QObjectPrivate
275 {
276     Q_DECLARE_PUBLIC(QWidget)
277
278 public:
279     // *************************** Cross-platform ***************************************
280     enum DrawWidgetFlags {
281         DrawAsRoot = 0x01,
282         DrawPaintOnScreen = 0x02,
283         DrawRecursive = 0x04,
284         DrawInvisible = 0x08,
285         DontSubtractOpaqueChildren = 0x10,
286         DontDrawOpaqueChildren = 0x20,
287         DontDrawNativeChildren = 0x40
288     };
289
290     enum CloseMode {
291         CloseNoEvent,
292         CloseWithEvent,
293         CloseWithSpontaneousEvent
294     };
295
296     enum Direction {
297         DirectionNorth = 0x01,
298         DirectionEast = 0x10,
299         DirectionSouth = 0x02,
300         DirectionWest = 0x20
301     };
302
303     // Functions.
304     explicit QWidgetPrivate(int version = QObjectPrivateVersion);
305     ~QWidgetPrivate();
306
307     QWExtra *extraData() const;
308     QTLWExtra *topData() const;
309     QTLWExtra *maybeTopData() const;
310     QPainter *sharedPainter() const;
311     void setSharedPainter(QPainter *painter);
312     QWidgetBackingStore *maybeBackingStore() const;
313     void init(QWidget *desktopWidget, Qt::WindowFlags f);
314     void create_sys(WId window, bool initializeWindow, bool destroyOldWindow);
315     void createRecursively();
316     void createWinId(WId id = 0);
317
318     void createTLExtra();
319     void createExtra();
320     void deleteExtra();
321     void createSysExtra();
322     void deleteSysExtra();
323     void createTLSysExtra();
324     void deleteTLSysExtra();
325     void updateSystemBackground();
326     void propagatePaletteChange();
327
328     void setPalette_helper(const QPalette &);
329     void resolvePalette();
330     QPalette naturalWidgetPalette(uint inheritedMask) const;
331
332     void setMask_sys(const QRegion &);
333
334     void raise_sys();
335     void lower_sys();
336     void stackUnder_sys(QWidget *);
337
338     void setFocus_sys();
339     void updateFocusChild();
340
341     void updateFont(const QFont &);
342     inline void setFont_helper(const QFont &font) {
343         if (data.fnt == font && data.fnt.resolve() == font.resolve())
344             return;
345         updateFont(font);
346     }
347     void resolveFont();
348     QFont naturalWidgetFont(uint inheritedMask) const;
349
350     void setLayoutDirection_helper(Qt::LayoutDirection);
351     void resolveLayoutDirection();
352
353     void setLocale_helper(const QLocale &l, bool forceUpdate = false);
354     void resolveLocale();
355
356     void setStyle_helper(QStyle *newStyle, bool propagate, bool metalHack = false);
357     void inheritStyle();
358
359     void setUpdatesEnabled_helper(bool );
360
361     void paintBackground(QPainter *, const QRegion &, int flags = DrawAsRoot) const;
362     bool isAboutToShow() const;
363     QRegion prepareToRender(const QRegion &region, QWidget::RenderFlags renderFlags);
364     void render_helper(QPainter *painter, const QPoint &targetOffset, const QRegion &sourceRegion,
365                        QWidget::RenderFlags renderFlags);
366     void render(QPaintDevice *target, const QPoint &targetOffset, const QRegion &sourceRegion,
367                 QWidget::RenderFlags renderFlags, bool readyToRender);
368     void drawWidget(QPaintDevice *pdev, const QRegion &rgn, const QPoint &offset, int flags,
369                     QPainter *sharedPainter = 0, QWidgetBackingStore *backingStore = 0);
370
371
372     void paintSiblingsRecursive(QPaintDevice *pdev, const QObjectList& children, int index,
373                                 const QRegion &rgn, const QPoint &offset, int flags,
374                                 QPainter *sharedPainter, QWidgetBackingStore *backingStore);
375
376
377     QPainter *beginSharedPainter();
378     bool endSharedPainter();
379 #ifndef QT_NO_GRAPHICSVIEW
380     static QGraphicsProxyWidget * nearestGraphicsProxyWidget(const QWidget *origin);
381 #endif
382     void repaint_sys(const QRegion &rgn);
383
384     QRect clipRect() const;
385     QRegion clipRegion() const;
386     void subtractOpaqueChildren(QRegion &rgn, const QRect &clipRect) const;
387     void subtractOpaqueSiblings(QRegion &source, bool *hasDirtySiblingsAbove = 0,
388                                 bool alsoNonOpaque = false) const;
389     void clipToEffectiveMask(QRegion &region) const;
390     void updateIsOpaque();
391     void setOpaque(bool opaque);
392     void updateIsTranslucent();
393     bool paintOnScreen() const;
394 #ifndef QT_NO_GRAPHICSEFFECT
395     void invalidateGraphicsEffectsRecursively();
396 #endif //QT_NO_GRAPHICSEFFECT
397
398     const QRegion &getOpaqueChildren() const;
399     void setDirtyOpaqueRegion();
400
401     bool close_helper(CloseMode mode);
402
403     void setWindowIcon_helper();
404     void setWindowIcon_sys(bool forceReset = false);
405     void setWindowOpacity_sys(qreal opacity);
406     void adjustQuitOnCloseAttribute();
407
408     void scrollChildren(int dx, int dy);
409     void moveRect(const QRect &, int dx, int dy);
410     void scrollRect(const QRect &, int dx, int dy);
411     void invalidateBuffer_resizeHelper(const QPoint &oldPos, const QSize &oldSize);
412     // ### Qt 4.6: Merge into a template function (after MSVC isn't supported anymore).
413     void invalidateBuffer(const QRegion &);
414     void invalidateBuffer(const QRect &);
415     bool isOverlapped(const QRect&) const;
416     void syncBackingStore();
417     void syncBackingStore(const QRegion &region);
418
419     // tells the input method about the widgets transform
420     void updateWidgetTransform();
421
422     void reparentFocusWidgets(QWidget *oldtlw);
423
424     static int pointToRect(const QPoint &p, const QRect &r);
425
426     void setWinId(WId);
427     void showChildren(bool spontaneous);
428     void hideChildren(bool spontaneous);
429     void setParent_sys(QWidget *parent, Qt::WindowFlags);
430     void scroll_sys(int dx, int dy);
431     void scroll_sys(int dx, int dy, const QRect &r);
432     void deactivateWidgetCleanup();
433     void setGeometry_sys(int, int, int, int, bool);
434     void sendPendingMoveAndResizeEvents(bool recursive = false, bool disableUpdates = false);
435     void activateChildLayoutsRecursively();
436     void show_recursive();
437     void show_helper();
438     void show_sys();
439     void hide_sys();
440     void hide_helper();
441     void _q_showIfNotHidden();
442
443     void setEnabled_helper(bool);
444     void registerDropSite(bool);
445     static void adjustFlags(Qt::WindowFlags &flags, QWidget *w = 0);
446
447     void updateFrameStrut();
448     QRect frameStrut() const;
449
450 #ifdef QT_KEYPAD_NAVIGATION
451     static bool navigateToDirection(Direction direction);
452     static QWidget *widgetInNavigationDirection(Direction direction);
453     static bool canKeypadNavigate(Qt::Orientation orientation);
454     static bool inTabWidget(QWidget *widget);
455 #endif
456
457     void setWindowIconText_sys(const QString &cap);
458     void setWindowIconText_helper(const QString &cap);
459     void setWindowTitle_sys(const QString &cap);
460
461 #ifndef QT_NO_CURSOR
462     void setCursor_sys(const QCursor &cursor);
463     void unsetCursor_sys();
464 #endif
465
466     void setWindowTitle_helper(const QString &cap);
467     void setWindowFilePath_helper(const QString &filePath);
468
469     bool setMinimumSize_helper(int &minw, int &minh);
470     bool setMaximumSize_helper(int &maxw, int &maxh);
471     void setConstraints_sys();
472     bool pointInsideRectAndMask(const QPoint &) const;
473     QWidget *childAt_helper(const QPoint &, bool) const;
474     QWidget *childAtRecursiveHelper(const QPoint &p, bool, bool includeFrame = false) const;
475     void updateGeometry_helper(bool forceUpdate);
476
477     void getLayoutItemMargins(int *left, int *top, int *right, int *bottom) const;
478     void setLayoutItemMargins(int left, int top, int right, int bottom);
479     void setLayoutItemMargins(QStyle::SubElement element, const QStyleOption *opt = 0);
480
481     // aboutToDestroy() is called just before the contents of
482     // QWidget::destroy() is executed. It's used to signal QWidget
483     // sub-classes that their internals are about to be released.
484     virtual void aboutToDestroy() {}
485
486     inline QWidget *effectiveFocusWidget() {
487         QWidget *w = q_func();
488         while (w->focusProxy())
489             w = w->focusProxy();
490         return w;
491     }
492
493     void setModal_sys();
494
495     // This is an helper function that return the available geometry for
496     // a widget and takes care is this one is in QGraphicsView.
497     // If the widget is not embed in a scene then the geometry available is
498     // null, we let QDesktopWidget decide for us.
499     static QRect screenGeometry(const QWidget *widget)
500     {
501         QRect screen;
502 #ifndef QT_NO_GRAPHICSVIEW
503         QGraphicsProxyWidget *ancestorProxy = widget->d_func()->nearestGraphicsProxyWidget(widget);
504         //It's embedded if it has an ancestor
505         if (ancestorProxy) {
506             if (!bypassGraphicsProxyWidget(widget) && ancestorProxy->scene() != 0) {
507                 // One view, let be smart and return the viewport rect then the popup is aligned
508                 if (ancestorProxy->scene()->views().size() == 1) {
509                     QGraphicsView *view = ancestorProxy->scene()->views().at(0);
510                     screen = view->mapToScene(view->viewport()->rect()).boundingRect().toRect();
511                 } else {
512                     screen = ancestorProxy->scene()->sceneRect().toRect();
513                 }
514             }
515         }
516 #endif
517         return screen;
518     }
519
520     inline void setRedirected(QPaintDevice *replacement, const QPoint &offset)
521     {
522         Q_ASSERT(q_func()->testAttribute(Qt::WA_WState_InPaintEvent));
523         redirectDev = replacement;
524         redirectOffset = offset;
525     }
526
527     inline QPaintDevice *redirected(QPoint *offset) const
528     {
529         if (offset)
530             *offset = redirectDev ? redirectOffset : QPoint();
531         return redirectDev;
532     }
533
534     inline void restoreRedirected()
535     { redirectDev = 0; }
536
537     inline void enforceNativeChildren()
538     {
539         if (!extra)
540             createExtra();
541
542         if (extra->nativeChildrenForced)
543             return;
544         extra->nativeChildrenForced = 1;
545
546         for (int i = 0; i < children.size(); ++i) {
547             if (QWidget *child = qobject_cast<QWidget *>(children.at(i)))
548                 child->setAttribute(Qt::WA_NativeWindow);
549         }
550     }
551
552     inline bool nativeChildrenForced() const
553     {
554         return extra ? extra->nativeChildrenForced : false;
555     }
556
557     inline QRect effectiveRectFor(const QRect &rect) const
558     {
559 #ifndef QT_NO_GRAPHICSEFFECT
560         if (graphicsEffect && graphicsEffect->isEnabled())
561             return graphicsEffect->boundingRectFor(rect).toAlignedRect();
562 #endif //QT_NO_GRAPHICSEFFECT
563         return rect;
564     }
565
566     QSize adjustedSize() const;
567
568     inline void handleSoftwareInputPanel(Qt::MouseButton button, bool clickCausedFocus)
569     {
570         Q_Q(QWidget);
571         if (button == Qt::LeftButton && qApp->autoSipEnabled()) {
572             QStyle::RequestSoftwareInputPanel behavior = QStyle::RequestSoftwareInputPanel(
573                     q->style()->styleHint(QStyle::SH_RequestSoftwareInputPanel));
574             if (!clickCausedFocus || behavior == QStyle::RSIP_OnMouseClick) {
575                 qApp->inputMethod()->show();
576             }
577         }
578     }
579
580     void setWSGeometry(bool dontShow=false, const QRect &oldRect = QRect());
581
582     inline QPoint mapToWS(const QPoint &p) const
583     { return p - data.wrect.topLeft(); }
584
585     inline QPoint mapFromWS(const QPoint &p) const
586     { return p + data.wrect.topLeft(); }
587
588     inline QRect mapToWS(const QRect &r) const
589     { QRect rr(r); rr.translate(-data.wrect.topLeft()); return rr; }
590
591     inline QRect mapFromWS(const QRect &r) const
592     { QRect rr(r); rr.translate(data.wrect.topLeft()); return rr; }
593
594     // Variables.
595     // Regular pointers (keep them together to avoid gaps on 64 bit architectures).
596     QWExtra *extra;
597     QWidget *focus_next;
598     QWidget *focus_prev;
599     QWidget *focus_child;
600     QLayout *layout;
601     QRegion *needsFlush;
602     QPaintDevice *redirectDev;
603     QWidgetItemV2 *widgetItem;
604     QPaintEngine *extraPaintEngine;
605     mutable const QMetaObject *polished;
606     QGraphicsEffect *graphicsEffect;
607     // All widgets are added into the allWidgets set. Once
608     // they receive a window id they are also added to the mapper.
609     // This should just ensure that all widgets are deleted by QApplication
610     static QWidgetMapper *mapper;
611     static QWidgetSet *allWidgets;
612 #if !defined(QT_NO_IM)
613     Qt::InputMethodHints imHints;
614 #endif
615 #ifdef QT_KEYPAD_NAVIGATION
616     static QPointer<QWidget> editingWidget;
617 #endif
618
619     // Implicit pointers (shared_null/shared_empty).
620     QRegion opaqueChildren;
621     QRegion dirty;
622 #ifndef QT_NO_TOOLTIP
623     QString toolTip;
624 #endif
625 #ifndef QT_NO_STATUSTIP
626     QString statusTip;
627 #endif
628 #ifndef QT_NO_WHATSTHIS
629     QString whatsThis;
630 #endif
631 #ifndef QT_NO_ACCESSIBILITY
632     QString accessibleName;
633     QString accessibleDescription;
634 #endif
635
636     // Other variables.
637     uint inheritedFontResolveMask;
638     uint inheritedPaletteResolveMask;
639     short leftmargin;
640     short topmargin;
641     short rightmargin;
642     short bottommargin;
643     signed char leftLayoutItemMargin;
644     signed char topLayoutItemMargin;
645     signed char rightLayoutItemMargin;
646     signed char bottomLayoutItemMargin;
647     static int instanceCounter; // Current number of widget instances
648     static int maxInstances; // Maximum number of widget instances
649     Qt::HANDLE hd;
650     QWidgetData data;
651     QSizePolicy size_policy;
652     QLocale locale;
653     QPoint redirectOffset;
654 #ifndef QT_NO_ACTION
655     QList<QAction*> actions;
656 #endif
657 #ifndef QT_NO_GESTURES
658     QMap<Qt::GestureType, Qt::GestureFlags> gestureContext;
659 #endif
660
661     // Bit fields.
662     uint high_attributes[4]; // the low ones are in QWidget::widget_attributes
663     QPalette::ColorRole fg_role : 8;
664     QPalette::ColorRole bg_role : 8;
665     uint dirtyOpaqueChildren : 1;
666     uint isOpaque : 1;
667     uint inDirtyList : 1;
668     uint isScrolled : 1;
669     uint isMoved : 1;
670     uint isGLWidget : 1;
671     uint usesDoubleBufferedGLContext : 1;
672 #ifndef QT_NO_IM
673     uint inheritsInputMethodHints : 1;
674 #endif
675     uint inSetParent : 1;
676
677     // *************************** Platform specific ************************************
678 #if defined(Q_WS_X11) // <----------------------------------------------------------- X11
679     Qt::HANDLE picture;
680     static QWidget *mouseGrabber;
681     static QWidget *keyboardGrabber;
682
683     void setWindowRole();
684     void sendStartupMessage(const char *message) const;
685     void setNetWmWindowTypes();
686     void x11UpdateIsOpaque();
687     bool isBackgroundInherited() const;
688     void updateX11AcceptFocus();
689     QPoint mapToGlobal(const QPoint &pos) const;
690     QPoint mapFromGlobal(const QPoint &pos) const;
691 #elif defined(Q_WS_WIN) // <--------------------------------------------------------- WIN
692     uint noPaintOnScreen : 1; // see qwidget_win.cpp ::paintEngine()
693 #ifndef QT_NO_GESTURES
694     uint nativeGesturePanEnabled : 1;
695 #endif
696     bool shouldShowMaximizeButton();
697     void winUpdateIsOpaque();
698     void reparentChildren();
699 #ifndef QT_NO_DRAGANDDROP
700     QOleDropTarget *registerOleDnd(QWidget *widget);
701     void unregisterOleDnd(QWidget *widget, QOleDropTarget *target);
702 #endif
703     void grabMouseWhileInWindow();
704     void registerTouchWindow();
705     void winSetupGestures();
706 #elif defined(Q_WS_MAC) // <--------------------------------------------------------- MAC
707     // This is new stuff
708     uint needWindowChange : 1;
709
710     // Each wiget keeps a list of all its child and grandchild OpenGL widgets.
711     // This list is used to update the gl context whenever a parent and a granparent
712     // moves, and also to check for intersections with gl widgets within the window
713     // when a widget moves.
714     struct GlWidgetInfo
715     {
716         GlWidgetInfo(QWidget *widget) : widget(widget), lastUpdateWidget(0) { }
717         bool operator==(const GlWidgetInfo &other) const { return (widget == other.widget); }
718         QWidget * widget;
719         QWidget * lastUpdateWidget;
720     };
721
722     // dirtyOnWidget contains the areas in the widget that needs to be repained,
723     // in the same way as dirtyOnScreen does for the window. Areas are added in
724     // dirtyWidget_sys and cleared in the paint event. In scroll_sys we then use
725     // this information repaint invalid areas when widgets are scrolled.
726     QRegion dirtyOnWidget;
727     EventHandlerRef window_event;
728     QList<GlWidgetInfo> glWidgets;
729
730     //these are here just for code compat (HIViews)
731     Qt::HANDLE qd_hd;
732
733     void macUpdateSizeAttribute();
734     void macUpdateHideOnSuspend();
735     void macUpdateOpaqueSizeGrip();
736     void macUpdateIgnoreMouseEvents();
737     void macUpdateMetalAttribute();
738     void macUpdateIsOpaque();
739     void macSetNeedsDisplay(QRegion region);
740     void setEnabled_helper_sys(bool enable);
741     bool isRealWindow() const;
742     void adjustWithinMaxAndMinSize(int &w, int &h);
743     void applyMaxAndMinSizeOnWindow();
744     void update_sys(const QRect &rect);
745     void update_sys(const QRegion &rgn);
746     void setGeometry_sys_helper(int, int, int, int, bool);
747     void setWindowModified_sys(bool b);
748     void updateMaximizeButton_sys();
749     void setWindowFilePath_sys(const QString &filePath);
750     void createWindow_sys();
751     void recreateMacWindow();
752     void setSubWindowStacking(bool set);
753     void setWindowLevel();
754     void finishCreateWindow_sys_Cocoa(void * /*NSWindow * */ windowRef);
755     void syncCocoaMask();
756     void finishCocoaMaskSetup();
757     void syncUnifiedMode();
758     // Did we add the drawRectOriginal method?
759     bool drawRectOriginalAdded;
760     // Is the original drawRect method available?
761     bool originalDrawMethod;
762     // Do we need to change the methods?
763     bool changeMethods;
764
765     // Unified toolbar variables
766     bool isInUnifiedToolbar;
767     QUnifiedToolbarSurface *unifiedSurface;
768     QPoint toolbar_offset;
769     QWidget *toolbar_ancestor;
770     bool flushRequested;
771     bool touchEventsEnabled;
772     void determineWindowClass();
773     void transferChildren();
774     bool qt_mac_dnd_event(uint, DragRef);
775     void toggleDrawers(bool);
776     //mac event functions
777     static bool qt_create_root_win();
778     static void qt_clean_root_win();
779     static bool qt_mac_update_sizer(QWidget *, int up = 0);
780     static OSStatus qt_window_event(EventHandlerCallRef er, EventRef event, void *);
781     static OSStatus qt_widget_event(EventHandlerCallRef er, EventRef event, void *);
782     static bool qt_widget_rgn(QWidget *, short, RgnHandle, bool);
783     void registerTouchWindow(bool enable = true);
784 #endif
785     void setMaxWindowState_helper();
786     void setFullScreenSize_helper();
787     bool stealKeyboardGrab(bool grab);
788     bool stealMouseGrab(bool grab);
789 };
790
791 struct QWidgetPaintContext
792 {
793     inline QWidgetPaintContext(QPaintDevice *d, const QRegion &r, const QPoint &o, int f,
794                                QPainter *p, QWidgetBackingStore *b)
795         : pdev(d), rgn(r), offset(o), flags(f), sharedPainter(p), backingStore(b), painter(0) {}
796
797     QPaintDevice *pdev;
798     QRegion rgn;
799     QPoint offset;
800     int flags;
801     QPainter *sharedPainter;
802     QWidgetBackingStore *backingStore;
803     QPainter *painter;
804 };
805
806 #ifndef QT_NO_GRAPHICSEFFECT
807 class QWidgetEffectSourcePrivate : public QGraphicsEffectSourcePrivate
808 {
809 public:
810     QWidgetEffectSourcePrivate(QWidget *widget)
811         : QGraphicsEffectSourcePrivate(), m_widget(widget), context(0), updateDueToGraphicsEffect(false)
812     {}
813
814     inline void detach()
815     { m_widget->d_func()->graphicsEffect = 0; }
816
817     inline const QGraphicsItem *graphicsItem() const
818     { return 0; }
819
820     inline const QWidget *widget() const
821     { return m_widget; }
822
823     inline void update()
824     {
825         updateDueToGraphicsEffect = true;
826         m_widget->update();
827         updateDueToGraphicsEffect = false;
828     }
829
830     inline bool isPixmap() const
831     { return false; }
832
833     inline void effectBoundingRectChanged()
834     {
835         // ### This function should take a rect parameter; then we can avoid
836         // updating too much on the parent widget.
837         if (QWidget *parent = m_widget->parentWidget())
838             parent->update();
839         else
840             update();
841     }
842
843     inline const QStyleOption *styleOption() const
844     { return 0; }
845
846     inline QRect deviceRect() const
847     { return m_widget->window()->rect(); }
848
849     QRectF boundingRect(Qt::CoordinateSystem system) const;
850     void draw(QPainter *p);
851     QPixmap pixmap(Qt::CoordinateSystem system, QPoint *offset,
852                    QGraphicsEffect::PixmapPadMode mode) const;
853
854     QWidget *m_widget;
855     QWidgetPaintContext *context;
856     QTransform lastEffectTransform;
857     bool updateDueToGraphicsEffect;
858 };
859 #endif //QT_NO_GRAPHICSEFFECT
860
861 inline QWExtra *QWidgetPrivate::extraData() const
862 {
863     return extra;
864 }
865
866 inline QTLWExtra *QWidgetPrivate::topData() const
867 {
868     const_cast<QWidgetPrivate *>(this)->createTLExtra();
869     return extra->topextra;
870 }
871
872 inline QTLWExtra *QWidgetPrivate::maybeTopData() const
873 {
874     return extra ? extra->topextra : 0;
875 }
876
877 inline QPainter *QWidgetPrivate::sharedPainter() const
878 {
879     Q_Q(const QWidget);
880     QTLWExtra *x = q->window()->d_func()->maybeTopData();
881     return x ? x->sharedPainter : 0;
882 }
883
884 inline void QWidgetPrivate::setSharedPainter(QPainter *painter)
885 {
886     Q_Q(QWidget);
887     QTLWExtra *x = q->window()->d_func()->topData();
888     x->sharedPainter = painter;
889 }
890
891 inline bool QWidgetPrivate::pointInsideRectAndMask(const QPoint &p) const
892 {
893     Q_Q(const QWidget);
894     return q->rect().contains(p) && (!extra || !extra->hasMask || q->testAttribute(Qt::WA_MouseNoMask)
895                                      || extra->mask.contains(p));
896 }
897
898 inline QWidgetBackingStore *QWidgetPrivate::maybeBackingStore() const
899 {
900     Q_Q(const QWidget);
901     QTLWExtra *x = q->window()->d_func()->maybeTopData();
902     return x ? x->backingStoreTracker.data() : 0;
903 }
904
905 QT_END_NAMESPACE
906
907 #endif // QWIDGET_P_H