⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 resorgcoreapp.h

📁 ResOrg 图形化管理Vc项目的资源ID的工具的源代码。 ResOrg - Manage and Renumber Resource Symbol IDs Introduction The
💻 H
字号:
/************************************************************************
 *
 *                 Resource ID Organiser Core Library
 *
 * (c) Copyright 2000-2003 by Anna-Jayne Metcalfe (resorg@annasplace.me.uk)
 *                         All rights reserved.
 *
 ************************************************************************
 *                                                                       
 *  Filename    : ResOrgCoreApp.h
 *
 *  Description : CResOrgCoreApp - application base class to avoid
 *                duplication between the application classes in the ResOrgCoreApp,
 *                ResOrgAddIn and ResOrgNETAddIn modules
 *
 *  Compiler    : Microsoft Visual C++ 6.0, Service Pack 3 or later
 *                Microsoft Visual C++ .NET 2002
 *                                                                       
 *                                                                       
 *  Target                                                               
 *  Environment : Windows 98/NT/2000/XP
 *
 *  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 Anna-Jayne 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.annasplace.me.uk/resorg 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/ResOrgCore/ResOrgCoreApp.h $
 *   $Revision: 5 $
 *       $Date: 15/04/03 20:37 $
 *     $Author: Anna $
 *
 *    $History: ResOrgCoreApp.h $
 * 
 * *****************  Version 5  *****************
 * User: Anna         Date: 15/04/03   Time: 20:37
 * Updated in $/Projects/AddIns/ResOrg/ResOrgCore
 * 1.  Removed unnecessary file guards (#pragma once works well enough)
 * 2.  Updated file banners
 * 
 * *****************  Version 4  *****************
 * User: Anna         Date: 26/03/03   Time: 14:09
 * Updated in $/Projects/AddIns/ResOrg/ResOrgCore
 * Added CResOrgSymbolsDocMultiFile::GetDisplayTitle() to choose the title
 * displayed for a multi-file Symbols Display
 * 
 * *****************  Version 3  *****************
 * User: Anna         Date: 15/02/03   Time: 20:53
 * Updated in $/Projects/AddIns/ResOrg/ResOrgCore
 * Commenting changes only
 * 
 * *****************  Version 2  *****************
 * User: Anna         Date: 30/01/03   Time: 21:05
 * Updated in $/Projects/AddIns/ResOrg/ResOrgCore
 * Moved common application class functionality to CResOrgCoreApp
 * 
 * *****************  Version 1  *****************
 * User: Anna         Date: 30/01/03   Time: 19:51
 * Created in $/Projects/AddIns/ResOrg/ResOrgCore
 * 
 * $Nokeywords: $
 *
 ************************************************************************/

#pragma once


#ifndef __AFXWIN_H__
	#error include 'stdafx.h' before including this file for PCH
#endif


#include "ResOrgCore_Res.h"


class CResOrgSplashWnd;

/////////////////////////////////////////////////////////////////////////////
// CResOrgCoreApp

#define CResOrgCoreApp_BASE		CWinApp


/// CResOrgCoreApp is a common base class for the application classes
/// in the ResOrgApp, ResOrgAddIn and ResOrgNETAddin modules.
class RESORGCORE_EXT_CLASS CResOrgCoreApp : public	CWinApp
{
public:
			CResOrgCoreApp(void);

	virtual	~CResOrgCoreApp(void);


	// Data Members
protected:
			/// Document template for multi-file Symbols Displays
			CMultiDocTemplate*		m_pMultiSymbolFileTemplate;	

			/// Document template for HTML Displays
			CMultiDocTemplate*		m_pHtmlDocTemplate;

			/// ResOrg splash screen window
			CResOrgSplashWnd*		m_pwndSplash;

			/// The time (in milliseconds) for which the splash screen should be shown
			DWORD					m_dwSplashTime;

			/// Flag to determine whether the a warning prompt should be issued if
			/// the "Next Symbol" values of a file being opened are in use by Symbols
			BOOL					m_bCheckNextSymbolValues;




// Operations
public:

			BOOL					CheckNextSymbolValues(BOOL bCheck)
										{ m_bCheckNextSymbolValues = bCheck; return TRUE; }

			BOOL					CheckNextSymbolValues(void) const
										{ return m_bCheckNextSymbolValues; }

			/// Prompt the user to ask whether all open windows should be closed
			int						DoCloseAllWindowsQuery(void);

			/// Show the ResOrg splash screen
			void					ShowSplashScreen(void);

			/// Hide the ResOrg splash screen
			void					KillSplashScreen(void);

									/// Open a multi-file Symbols Display
	virtual	void					OpenMultiFileSymbolsView(	const CStringArray& arraySymbolFilePathNames,
																const CString& sTitle  = _T("") );

									/// Open an HTML view with the specified title and URL
	virtual	void					OpenHtmlView(				const CString& sTitle,
																const CString& sURL);

									/// Open all open documents
	virtual	bool					CloseOpenDocuments(void);

									/// Open all open documents belonging to the specified document template
			bool					CloseOpenDocuments(CMultiDocTemplate* pTemplate);

// Virtual Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CResOrgCoreApp)
	public:
	virtual CDocument*				OpenDocumentFile(LPCTSTR lpszFileName);
	//}}AFX_VIRTUAL

// Implementation
protected:


	//{{AFX_MSG(CResOrgCoreApp)
	afx_msg	void					OnCmdOptions(void);
	afx_msg void					OnCmdWindowCloseAll(void);
	afx_msg void					OnUpdateWindowCloseAll(CCmdUI* pCmdUI);
	afx_msg	void					OnCmdResOrgWebsite(void);
	afx_msg	void					OnCmdResOrgFAQ(void);
	afx_msg	void					OnUpdateResOrgFAQ(CCmdUI* pCmdUI);
	afx_msg	void					OnCmdResOrgDiscussionBoard(void);
	afx_msg	void					OnUpdateResOrgDiscussionBoard(CCmdUI* pCmdUI);
	afx_msg	void					OnCmdResOrgKnownBugs(void);
	afx_msg	void					OnUpdateResOrgKnownBugs(CCmdUI* pCmdUI);
	afx_msg	void					OnCmdResOrgMailingList(void);
	afx_msg	void					OnUpdateResOrgMailingList(CCmdUI* pCmdUI);
	//}}AFX_MSG


	DECLARE_MESSAGE_MAP()
};


/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -