Hello together,
I just discovered, that the keybinder plugin implements the wxApp::FilterEvent methode.
I want to do that too in the plugin which I am currently trying to write.
Keybinder implements a derived class from wxApp:
class wxBinderApp : public wxApp
{
(...)
public:
wxBinderApp() { m_pGlobalHdl = NULL; m_pGlobalBinder = NULL; }
virtual ~wxBinderApp() {}
//! The core of wxBinderApp.
int FilterEvent(wxEvent &ev);
(...)
};//wxBinderApp
But I can not find the place, where an instance of the class is created and where it is used as the base class for the app.
How is it done?
Thanks!
Nathan