![]() |
Home · All Namespaces · All Classes |
#include <eventeater.h>


Signals | |
| void | inputEventReceived () |
Public Member Functions | |
| EventEater () | |
| virtual void | mousePressEvent (QMouseEvent *event) |
| virtual void | mouseReleaseEvent (QMouseEvent *event) |
Protected Member Functions | |
| virtual void | showEvent (QShowEvent *event) |
Definition at line 27 of file eventeater.h.
| EventEater::EventEater | ( | ) |
Definition at line 24 of file eventeater.cpp.
| void EventEater::inputEventReceived | ( | ) | [signal] |
| void EventEater::mousePressEvent | ( | QMouseEvent * | event | ) | [virtual] |
Definition at line 34 of file eventeater.cpp.
00035 { 00036 emit inputEventReceived(); 00037 }

| void EventEater::mouseReleaseEvent | ( | QMouseEvent * | event | ) | [virtual] |
Definition at line 39 of file eventeater.cpp.
00040 { 00041 emit inputEventReceived(); 00042 }

| void EventEater::showEvent | ( | QShowEvent * | event | ) | [protected, virtual] |
Sets the _MEEGO_STACKING_LAYER window property to 6.
Definition at line 44 of file eventeater.cpp.
00045 { 00046 QWidget::showEvent(event); 00047 00048 // Set the stacking layer 00049 Display *display = QX11Info::display(); 00050 Atom stackingLayerAtom = X11Wrapper::XInternAtom(display, "_MEEGO_STACKING_LAYER", False); 00051 if (stackingLayerAtom != None) { 00052 long layer = 6; 00053 X11Wrapper::XChangeProperty(display, internalWinId(), stackingLayerAtom, XA_CARDINAL, 32, PropModeReplace, (unsigned char*) &layer, 1); 00054 } 00055 }

| Copyright © 2010 Nokia Corporation | Generated on Wed Nov 10 16:05:05 2010 Doxygen 1.6.1 |
MeeGo Touch |