/** * Miscellaneous Program-specific definitions */ #ifndef DEFINITIONS_H #define DEFINITIONS_H const wxString TYRO_FILE_OPEN_WILDCARDS = _T("Bash (*.sh, *.bsh) |*.sh;*.bsh|") _T("Batch (*.bat, *.cmd, *.nt)|*.bat;*.cmd,*.nt|") _T("C/C++ (*.c,*.cpp,*.h)| *.c;*.cc;*.cpp;*.cxx;*.cs;*.h;*.hh;*.hpp;*.hxx;*.sma;*.cp |") _T("CSS (*.css)|*.css|") _T("Fortran (*.f9*, *.f, *.for)|*.f9*;*.f,*.for|") _T("HTML/XHTML (*.html, *.htm)|*.htm*|") _T("Java (*.java)|*.java|") _T("JavaScript(*.js)|*.js|") _T("Makefile |Makefile;makefile.*;MAKEFILE;configure.*;*.mak|") _T("Pascal (*.pas, *.inc, *.pp)|*.pas;*.inc;*.pp|") _T("Perl (*.pl, *.cgi)|*.pl;*.pm;*.cgi;*.pod|") _T("PHP (*.php)|*.php|") _T("Ruby (*.rb)|*.rb|") _T("SQL (*.sql)|*.sql|") _T("TCL (*.tcl)|*.tcl|") _T("Text (*.txt)|*.txt") _T("All files (*.*)|*.*|"); const wxString TYRO_FILE_SAVE_WILDCARDS = _T("HTML/XHTML (*.html)|*.html|") _T("CSS (*.css)|*.css|") _T("JavaScript(*.js)|*.js|") _T("SQL (*.sql)|*.sql|") _T("Perl (*.pl, *.cgi)|*.pl;*.cgi|") _T("PHP (*.php)|*.php|") _T("Java (*.java)|*.java|") _T("Fortran (*.f9*, *.f, *.for)|*.f9*;*.f,*.for|") _T("Pascal (*.pas, *.inc, *.pp)|*.pas;*.inc;*.pp|") _T("C/C++ (*.c,*.cpp,*.h)| *.c;*.cc;*.cpp;*.cxx;*.cs;*.h;*.hh;*.hpp;*.hxx;*.sma;*.cp |") _T("Makefile |Makefile|") _T("Ruby (*.rb)|*.rb|") _T("Blitz Basic files (*.bb)|*.bb|") _T("TCL (*.tcl)|*.tcl|") _T("Bash (*.sh) |*.sh|") _T("Batch (*.bat)|*.bat|") _T("Text (*.txt)|*.txt|") _T("Other (*.*)|*.*"); #endif /* DEFINITIONS_H */