Ignore:
Timestamp:
Aug 5, 2009, 3:19:05 AM (16 years ago)
Author:
Dmitry A. Kuminov
Message:

gui: Implemented widget creation/destruction functions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/gui/kernel/qwidget_p.h

    r95 r99  
    6767#endif // Q_WS_WIN
    6868
     69#ifdef Q_WS_PM
     70#include "QtCore/qt_os2.h"
     71#endif
     72
    6973#ifdef Q_WS_X11
    7074#include "QtGui/qx11info_x11.h"
     
    150154    HICON winIconSmall; // internal small Windows icon
    151155#endif
     156#if defined(Q_WS_PM)
     157    HWND fId;
     158#endif
    152159    QRect normalGeometry; // used by showMin/maximized/FullScreen
    153160    QWindowSurface *windowSurface;
     
    460467
    461468    QInputContext *inputContext() const;
     469
     470#if defined(Q_WS_PM)
     471    HWND frameWinId() const
     472    { return maybeTopData() && maybeTopData()->fId != NULLHANDLE ?
     473             maybeTopData()->fId : data.winid; }
     474#endif
    462475
    463476#if defined(Q_WS_QWS)
Note: See TracChangeset for help on using the changeset viewer.