You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
633 B
33 lines
633 B
#ifndef KRUSADERAPP_H
|
|
#define KRUSADERAPP_H
|
|
|
|
#include <tdeapplication.h>
|
|
#include "X11/Xlib.h"
|
|
|
|
// declare a dummy kapplication, just to get the X focusin focusout events
|
|
class KrusaderApp: public TDEApplication {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
KrusaderApp(): TDEApplication() {}
|
|
bool x11EventFilter ( XEvent *e ) {
|
|
switch (e->type) {
|
|
case FocusIn:
|
|
emit windowActive();
|
|
break;
|
|
case FocusOut:
|
|
emit windowInactive();
|
|
break;
|
|
|
|
}
|
|
//return false; // event should be processed normally
|
|
return TDEApplication::x11EventFilter(e);
|
|
}
|
|
signals:
|
|
void windowActive();
|
|
void windowInactive();
|
|
};
|
|
|
|
|
|
#endif // KRUSADERAPP_H
|