// MainFrm.h : interface of the CMainFrame class // ///////////////////////////////////////////////////////////////////////////// #ifndef ___MAINFRM_H #define ___MAINFRM_H #include "screen.h" class CMainFrame : public CFrameWnd { protected: // create from serialization only CMainFrame(); DECLARE_DYNCREATE(CMainFrame) // Attributes public: // Operations public: // Overrides // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CMainFrame) public: virtual BOOL PreCreateWindow(CREATESTRUCT& cs); virtual BOOL PreTranslateMessage(MSG* pMsg); protected: virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext); //}}AFX_VIRTUAL // Implementation public: virtual ~CMainFrame(); #ifdef _DEBUG virtual void AssertValid() const; virtual void Dump(CDumpContext& dc) const; #endif protected: // control bar embedded members CStatusBar m_wndStatusBar; CToolBar m_wndToolBar; CSplitterWnd m_wndSplitter; int activeWindowRow; enum tagActiveWindowRows { AWR_FLOWTREE, AWR_SCREENEDIT, AWR_LAST_AWR }; // Generated message map functions protected: //{{AFX_MSG(CMainFrame) afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct); afx_msg void OnActivate(UINT nState, CWnd* pWndOther, BOOL bMinimized); afx_msg void OnSetFocus(CWnd* pOldWnd); afx_msg void OnLButtonDown(UINT nFlags, CPoint point); afx_msg void OnOptionsChoosedefaultfont(); afx_msg void OnOptionsViewLanguageEnglish(); afx_msg void OnOptionsViewLanguageFrench(); afx_msg void OnOptionsViewLanguageGerman(); afx_msg void OnOptionsViewLanguagePigLatin(); afx_msg void OnOptionsViewLanguageSwahili(); afx_msg void OnOptionsViewLanguageSanskrit(); afx_msg void OnMove(int x, int y); afx_msg void OnSize(UINT nType, int cx, int cy); //}}AFX_MSG DECLARE_MESSAGE_MAP() }; ///////////////////////////////////////////////////////////////////////////// extern unsigned long languageToView; #endif //___MAINFRM_H