Hi, on Windows I implemented QWidget::winEvent() and process the power events (suspend, standby, resume; using WM_POWERBROADCAST) there. This works quite well.
Now I need to implement the same functionality under linux. I looked at QWidget::X11Event(), but it seems that XEvent does not handle power events like standby or resume.

Did I overlook something? Or is there another way to catch power events on linux?

Ginsengelf