| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- #ifndef MAINFRAME_H
- #define MAINFRAME_H
- #include "editor.h"
- #include "htmlhelp.h"
- #include "tabber.h"
- class MainFrame : public CFrameWnd,public HelpListener,EditorListener,TabberListener{
- public:
- MainFrame();
- Editor *getEditor();
- void setTitle( const string &s );
- DECLARE_DYNAMIC( MainFrame )
- DECLARE_MESSAGE_MAP()
- afx_msg int OnCreate( LPCREATESTRUCT lpCreateStruct );
- afx_msg void OnClose();
- afx_msg void OnDestroy();
- afx_msg BOOL OnEraseBkgnd( CDC *dc );
- afx_msg void OnSize( UINT type,int w,int h );
- afx_msg void quick_Help();
- afx_msg void fileNew();
- afx_msg void fileOpen();
- afx_msg void fileClose();
- afx_msg void fileCloseAll();
- afx_msg void fileSave();
- afx_msg void fileSaveAs();
- afx_msg void fileSaveAll();
- afx_msg void filePrint();
- afx_msg void fileExit();
- afx_msg void fileRecent( UINT id );
- afx_msg void editCut();
- afx_msg void editCopy();
- afx_msg void editPaste();
- afx_msg void editSelectAll();
- afx_msg void editFind();
- afx_msg void editFindNext();
- afx_msg void editReplace();
- afx_msg void programExecute();
- afx_msg void programReExecute();
- afx_msg void programCompile();
- afx_msg void programPublish();
- afx_msg void programCommandLine();
- afx_msg void programDebug();
- afx_msg void helpHome();
- afx_msg void helpAutodoc();
- afx_msg void helpBack();
- afx_msg void helpForward();
- afx_msg void helpSupport();
- afx_msg void helpAbout();
- afx_msg void logSyn();
- afx_msg void logIR();
- afx_msg void logASM();
- afx_msg void logMsgs();
- afx_msg void noExecute();
- afx_msg void updateCmdUI( CCmdUI *ui );
- afx_msg void updateCmdUIRange( CCmdUI *ui );
- afx_msg void ctrlTab();
- afx_msg void ctrlShiftTab();
- afx_msg void escape();
- afx_msg void OnActivate( UINT state,CWnd *other,BOOL min );
- private:
- Tabber tabber;
- CToolBar toolBar;
- CStatusBar statusBar;
- map<CWnd*,Editor*> editors;
- map<CWnd*,HtmlHelp*> helps;
- string last_quick_help;
- HtmlHelp *getHelp();
- HtmlHelp *getHelp( int index );
- HtmlHelp *findHelp();
- Editor *getEditor( int index );
- bool exit_flag;
- void insertRecent( const string &f );
- void newed( const string &t );
- bool open( const string &f );
- bool close( int n );
- bool save( int n );
- void compile( const string &cmd );
- void build( bool exec,bool publish );
- //editorlistener
- void cursorMoved( Editor *editor );
- //tabberlistener
- void currentSet( Tabber *tabber,int index );
- //htmlhelplistener
- void helpOpen( HtmlHelp *help,const string &file );
- void helpTitleChange( HtmlHelp *help,const string &title );
- };
- #endif
|