www.pudn.com > TurboPadSource.tar.gz > app.h


/** 
*    \class App 
*    Main Application Class 
* 
*    Derived version of wxApp, allowing creation of the application. 
* 
*    Misc Todo Stuff 
*    \todo Fix the loading of paths, version, website info from config file/registry. See next. 
*    \todo Create a Locale/Language class to handle all strings used in the editor. 
*    \todo Create an Options class. 
*    \todo Project Implementation class to handle popping up project dialogs, 
*       creating project windows, etc. 
*    \todo Update class for updating the editor (??) 
*    \todo Create a Style class to handles styles/syntax coloring. 
*    \todo Better error checking. 
*/ 
 
#ifndef App_H 
#define App_H 
 
#include  
#include  
#include "parent.h" 
 
class App : public wxApp 
{ 
    public: 
        App() {}; 
 
        virtual bool OnInit(); 
        inline void ParseCommandLine(int argc, char** argv, PPtr frame); 
}; 
 
#endif