#include <qevent.h>
Inheritance diagram for QWindowStateChangeEvent:


Definition at line 657 of file qevent.h.
Public Member Functions | |
| QWindowStateChangeEvent (Qt::WindowStates aOldState) | |
| QWindowStateChangeEvent (Qt::WindowStates aOldState, bool isOverride) | |
| ~QWindowStateChangeEvent () | |
| Qt::WindowStates | oldState () const |
| bool | isOverride () const |
Private Attributes | |
| Qt::WindowStates | ostate |
| QWindowStateChangeEvent::QWindowStateChangeEvent | ( | Qt::WindowStates | aOldState | ) |
Definition at line 3193 of file qevent.cpp.
03194 : QEvent(WindowStateChange), ostate(s) 03195 { 03196 }
| QWindowStateChangeEvent::QWindowStateChangeEvent | ( | Qt::WindowStates | aOldState, | |
| bool | isOverride | |||
| ) |
Definition at line 3200 of file qevent.cpp.
References QEvent::d.
03201 : QEvent(WindowStateChange), ostate(s) 03202 { 03203 if (isOverride) 03204 d = (QEventPrivate*)(this); 03205 }
| QWindowStateChangeEvent::~QWindowStateChangeEvent | ( | ) |
| Qt::WindowStates QWindowStateChangeEvent::oldState | ( | ) | const [inline] |
| bool QWindowStateChangeEvent::isOverride | ( | ) | const |
Definition at line 3209 of file qevent.cpp.
References QEvent::d.
03210 { 03211 return (d != 0); 03212 }
Qt::WindowStates QWindowStateChangeEvent::ostate [private] |
1.5.1