?? mainframe.h
字號:
#if !defined(__MainFrame_H__)
#define __MainFrame_H__
/************************************************************************
*
* Resource ID Organiser Application
*
* (c) Copyright 2000-2001 by Andy Metcalfe (andy.metcalfe@lineone.net)
* All rights reserved.
*
************************************************************************
*
* Filename : MainFrame.h
*
* Description : CMainFrame - MDI main frame class
*
* Compiler : Microsoft Visual C++ 6.0, Service Pack 3 or 4
*
* Target
* Environment : Windows 98/NT
*
* NOTE:
*
* This software is provided "as is" free for personal use. All
* title and copyrights in and to the software, including but not
* limited to any images, text, etc. incorporated into it, are
* owned by Andy Metcalfe, except where acknowledged otherwise.
*
* Your may freely to use this code in your own products, PROVIDED
* this notice is not removed or modified.
*
*
* Visit http://www.resorg.co.uk for latest updates
*
************************************************************************
*
* MODIFICATION HISTORY:
*
* This is a controlled document. See project configuration
* control tool for latest version and full version history.
*
* $Archive: /Projects/AddIns/ResOrg/ResOrgApp/MainFrame.h $
* $Revision: 8 $
* $Date: 22/06/01 9:30 $
* $Author: Andy $
*
* $History: MainFrame.h $
*
* ***************** Version 8 *****************
* User: Andy Date: 22/06/01 Time: 9:30
* Updated in $/Projects/AddIns/ResOrg/ResOrgApp
* Made class declaration "Rose friendly"
*
* ***************** Version 7 *****************
* User: Andy Date: 2/06/01 Time: 16:51
* Updated in $/Projects/AddIns/ResOrg/ResOrgApp
* Moved common functionality to a new class (CResOrgMDIFrameWnd) in
* ResOrgUtils
*
* ***************** Version 6 *****************
* User: Andy Date: 22/05/01 Time: 6:50
* Updated in $/Projects/AddIns/ResOrg/ResOrgApp
* OnCmdMsg() now routes messages to the "Options" helper
*
* ***************** Version 5 *****************
* User: Andy Date: 21/04/01 Time: 7:31
* Updated in $/Projects/AddIns/ResOrg/ResOrgApp
* Added CMainFrame::ShowWorkspace()
*
* ***************** Version 4 *****************
* User: Andy Date: 5/03/01 Time: 19:14
* Updated in $/Projects/AddIns/ResOrg/ResOrgApp
* 1. Corrected File|Close and File|Save/Save As command handlers
* 2. Moved workspace open/close related code to the application class
*
* ***************** Version 3 *****************
* User: Andy Date: 2/03/01 Time: 17:18
* Updated in $/Projects/AddIns/ResOrg/ResOrgApp
* 1. Added symbol count indicators to the status bar
* 2. Added basic workspace functionality
*
* ***************** Version 2 *****************
* User: Andy Date: 29/11/00 Time: 18:37
* Updated in $/Projects/AddIns/ResOrg/ResOrgApp
* 1. Moved Office2KDlg code to its own DLL
* 2. Added file banners
*
* $Nokeywords: $
*
************************************************************************/
// MainFrame.h : interface of the CMainFrame class
//
/////////////////////////////////////////////////////////////////////////////
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CResOrgAppProjectsDoc;
#define CMainFrame_BASE CResOrgMDIFrameWnd
class CMainFrame : public CResOrgMDIFrameWnd
{
DECLARE_DYNAMIC(CMainFrame)
public:
CMainFrame(void);
virtual ~CMainFrame(void);
// Attributes
protected:
CImageList m_TabImages;
// Control bar embedded members
CCJTabCtrlBar m_wndWorkspace;
// Operations
public:
void ShowWorkspace(BOOL bShow);
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CMainFrame)
public:
//}}AFX_VIRTUAL
// Implementation
public:
#ifdef _DEBUG
virtual void AssertValid(void) const;
virtual void Dump(CDumpContext& dc) const;
#endif
// Generated message map functions
protected:
//{{AFX_MSG(CMainFrame)
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(__MainFrame_H__)
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -