Source Code (Use browser search to find items of interest.)
Class Index
kdevelop'KGuiCmdApp (./kdevelop/kdevelop/kwrite/kguicommand.h:374)
class KGuiCmdApp : public KApplication {
public:
KGuiCmdApp(int &argc, char *argv[]) : KApplication(argc, argv, "kdevelop") {}
KGuiCmdApp(int &argc, char *argv[], const QCString &rAppname)
: KApplication(argc, argv, rAppname) {}
virtual bool x11EventFilter(XEvent *e);
// int getModifiers() {return modifiers;}
// protected:
// int modifiers;
};
#if 0
class KGuiCmdKWMModuleApp : public KWMModuleApplication {
public:
KGuiCmdKWMModuleApp(int &argc, char *argv[])
: KWMModuleApplication(argc, argv, "kdevelop" ) {}
KGuiCmdKWMModuleApp(int &argc, char *argv[], const QCString &rAppname)
: KWMModuleApplication(argc, argv, rAppname) {}
virtual bool x11EventFilter(XEvent *e);
};
#endif
kdevelop'KGuiCmdApp::x11EventFilter() (./kdevelop/kdevelop/kwrite/kguicommand.cpp:1306)
bool KGuiCmdApp::x11EventFilter(XEvent *e) {
setGlobalModifiers(e);
return KApplication::x11EventFilter(e);
}