- Timestamp:
- Jun 30, 2011, 8:18:02 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gui/kernel/qwidget_p.h
r846 r878 385 385 ~QWidgetPrivate(); 386 386 387 QWExtra *extraData() const; 388 QTLWExtra *topData() const; 389 QTLWExtra *maybeTopData() const; 390 QPainter *sharedPainter() const; 391 void setSharedPainter(QPainter *painter); 392 QWidgetBackingStore *maybeBackingStore() const; 387 inline QWExtra *extraData() const; 388 inline QTLWExtra *topData() const; 389 inline QTLWExtra *maybeTopData() const; 390 inline QPainter *sharedPainter() const; 391 inline bool pointInsideRectAndMask(const QPoint &) const; 392 inline void setSharedPainter(QPainter *painter); 393 inline QWidgetBackingStore *maybeBackingStore() const; 394 393 395 void init(QWidget *desktopWidget, Qt::WindowFlags f); 394 396 void create_sys(WId window, bool initializeWindow, bool destroyOldWindow); … … 556 558 bool setMaximumSize_helper(int &maxw, int &maxh); 557 559 void setConstraints_sys(); 558 bool pointInsideRectAndMask(const QPoint &) const;559 560 QWidget *childAt_helper(const QPoint &, bool) const; 560 561 QWidget *childAtRecursiveHelper(const QPoint &p, bool, bool includeFrame = false) const; … … 781 782 uint noPaintOnScreen : 1; // see qwidget_pm.cpp ::paintEngine() 782 783 783 HWND frameWinId() const784 inline HWND frameWinId() const 784 785 { return maybeTopData() && maybeTopData()->fId != NULLHANDLE ? 785 786 maybeTopData()->fId : data.winid; }
Note:
See TracChangeset
for help on using the changeset viewer.