📄 resourcesymbolfilebasevaluespage.h
字号:
/************************************************************************
*
* Resource ID Organiser Core Library
*
* (c) Copyright 2000-2005 by Riverblade Limited (UK). All rights reserved.
*
************************************************************************
*
* Description : CResourceSymbolFileBaseValuesPage - "Base Values" page
* for resource symbol file properties
*
* Compiler : Microsoft Visual C++ 6.0, Service Pack 3 or later
* Microsoft Visual C++ .NET 2003
*
* Target
* Environment : Windows 98/NT/2000/XP
*
* NOTE:
*
* This software is provided "as is". All title and copyrights in and
* to the software, including but not limited to any images, text etc.
* etc. incorporated into it, are the property of Anna-Jayne Metcalfe
* and Riverblade Limited, except where acknowledged otherwise.
*
* Your may freely use this code in your own products, PROVIDED
* this notice is not removed or modified.
*
* Please visit http://www.riverblade.co.uk/products/resorg
* or email support@riverblade.co.uk for latest updates and product support
*
************************************************************************
*
* MODIFICATION HISTORY:
*
* This is a controlled document. See project configuration
* control tool for latest version and full version history.
*
* $Archive: /Projects/AddIns/ResOrg/ResOrgCore/ResourceSymbolFileBaseValuesPage.h $
* $Revision: 5 $
* $Date: 31/12/04 16:26 $
* $Author: Anna $
*
* $History: ResourceSymbolFileBaseValuesPage.h $
*
* ***************** Version 5 *****************
* User: Anna Date: 31/12/04 Time: 16:26
* Updated in $/Projects/AddIns/ResOrg/ResOrgCore
* 1. Added IDP_WARN_CONFIG_LOAD_FAILED and IDP_WARN_CONFIG_SAVE_FAILED
* string table prompts for use when loading/saving config files (debug
* builds only)
* 2. Updated file banners
*
* ***************** Version 4 *****************
* User: Anna Date: 21/08/04 Time: 19:02
* Updated in $/Projects/AddIns/ResOrg/ResOrgCore
* CResourceSymbolFileBaseValuesPage::OnOK() now makes an
* UpdateAllViews(SYM_REFRESH) call on the Document if the base values
* have been changed. This ensures that any Symbols Displays are updated
* correctly.
*
* ***************** Version 3 *****************
* User: Anna Date: 1/07/03 Time: 21:02
* Updated in $/Projects/AddIns/ResOrg/ResOrgCore
* Fixed selection bugs with multi-file symbols displays
*
* ***************** Version 2 *****************
* User: Anna Date: 26/06/03 Time: 20:22
* Updated in $/Projects/AddIns/ResOrg/ResOrgCore
* 1. Added resizing support
* 2. Changed the look of the page - it's now a lot easier to use, and
* uses text colouring in the same way as
* CResourceSymbolFileNextValuesPage
*
* ***************** Version 1 *****************
* User: Anna Date: 15/04/03 Time: 19:18
* Created in $/Projects/AddIns/ResOrg/ResOrgCore
*
*
* $Nokeywords: $
*
************************************************************************/
#pragma once
#include "ResOrgCore_Res.h"
#include "ResourceSymbolFilePropertyPage.h"
class CResourceSymbolManager;
/////////////////////////////////////////////////////////////////////////////
// CResourceSymbolFileBaseValuesPage dialog
#define CResourceSymbolFileBaseValuesPage_BASE CResourceSymbolFilePropertyPage
/// The "Base Values" page of the resource symbol file properties dialog
///
class RESORGCORE_EXT_CLASS CResourceSymbolFileBaseValuesPage : public CResourceSymbolFilePropertyPage
{
DECLARE_DYNAMIC(CResourceSymbolFileBaseValuesPage)
// Construction
public:
CResourceSymbolFileBaseValuesPage(void); // standard constructor
// Dialog Data
protected:
enum { IDD = IDD_SYM_FILE_BASE_VALUES_PAGE };
CString m_sBaseResourceCaption;
UINT m_uBaseResourceValue;
CString m_sResources;
CString m_sBaseControlCaption;
UINT m_uBaseControlValue;
CString m_sControls;
CString m_sBaseCommandCaption;
UINT m_uBaseCommandValue;
CString m_sCommands;
CStatic m_ctrlInfoIcon;
CNGHtmlStaticCtrl m_ctrlInfo;
CString m_sInfoText;
// Operations
public:
// Overrides
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
virtual BOOL OnInitDialog(void);
virtual BOOL OnSetActive(void);
virtual void OnOK(void);
public:
virtual bool SetSymbolManager(CResourceSymbolManager* pSymbols);
// Implementation
protected:
void SetInfoMessage(LPCTSTR pszIconID, const CString& sText);
void SetAvailableControls(void);
// Message handlers
afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
afx_msg void OnClickedRecalculateAllValues(void);
DECLARE_MESSAGE_MAP()
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -