📄 resorgnetaddintoolwindowsctrl.h
字号:
#pragma once
/************************************************************************
*
* Resource ID Organiser Add-In for Visual C++.NET
*
* (c) Copyright 2000-2002 by Anna-Jayne Metcalfe (resorg@annasplace.me.uk)
* All rights reserved.
*
************************************************************************
*
* Filename : ResOrgNETAddInToolWindowsCtrl.h
*
* Description : CResOrgNETAddInToolWindowsCtrl - ResOrg.NET Tool Window
* ActiveX control class
*
* Compiler : Microsoft Visual C++ .NET
*
* Target
* Environment : Windows 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/ResOrgNETAddInToolWindows/ResOrgNETAddInToolWindowsCtrl.h $
* $Revision: 6 $
* $Date: 25/11/02 16:50 $
* $Author: Anna $
*
* $History: ResOrgNETAddInToolWindowsCtrl.h $
*
* ***************** Version 6 *****************
* User: Anna Date: 25/11/02 Time: 16:50
* Updated in $/Projects/AddIns/ResOrg/ResOrgNETAddInToolWindows
* Changed website address in banner
*
* ***************** Version 5 *****************
* User: Anna Date: 22/10/02 Time: 14:45
* Updated in $/Projects/AddIns/ResOrg/ResOrgNETAddInToolWindows
* Changed name/email address (at last!)
*
* ***************** Version 4 *****************
* User: Andy Date: 8/08/02 Time: 20:37
* Updated in $/Projects/AddIns/ResOrg/ResOrgNETAddInToolWindows
* Added CResOrgNETAddInToolWindowsCtrl::PreTranslateMessage() in a vaind
* attempt to find out why the tooltips aren't showing in the Form View
*
* ***************** Version 3 *****************
* User: Andy Date: 6/08/02 Time: 10:34
* Updated in $/Projects/AddIns/ResOrg/ResOrgNETAddInToolWindows
* Removed PROPPAGEIDS macros (this control has no property pages)
*
* ***************** Version 2 *****************
* User: Andy Date: 2/08/02 Time: 17:04
* Updated in $/Projects/AddIns/ResOrg/ResOrgNETAddInToolWindows
* 1. Added file banners
* 2. Tidied up the code a little - removing unused capabilities
*
* $Nokeywords: $
*
************************************************************************/
// ResOrgNETAddInToolWindowsCtrl.h : Declaration of the CResOrgNETAddInToolWindowsCtrl ActiveX Control class.
// See ResOrgNETAddInToolWindowsCtrl.cpp for implementation.
#include "ResOrgNETAddInToolWinFormView.h"
#define CResOrgNETAddInToolWindowsCtrl_BASE COleControl
class CResOrgNETAddInToolWindowsCtrl : public COleControl
{
DECLARE_DYNCREATE(CResOrgNETAddInToolWindowsCtrl)
// Construction/destruction
public:
CResOrgNETAddInToolWindowsCtrl(void);
virtual ~CResOrgNETAddInToolWindowsCtrl(void);
// Data Members
protected:
CComPtr<EnvDTE::_DTE> m_pDTE;
CResOrgNETAddInToolWinFormView m_ctrlMain;
HWND m_hWndResOrg;
// Virtual Overrides
public:
virtual void OnDraw( CDC* pDC,
const CRect& rcBounds,
const CRect& rcInvalid);
virtual void DoPropExchange(CPropExchange* pPX);
virtual void OnResetState(void);
virtual BOOL PreTranslateMessage(MSG* pMsg);
// Implementation
protected:
DECLARE_OLECREATE_EX(CResOrgNETAddInToolWindowsCtrl) // Class factory and guid
DECLARE_OLETYPELIB(CResOrgNETAddInToolWindowsCtrl) // GetTypeInfo
DECLARE_OLECTLTYPE(CResOrgNETAddInToolWindowsCtrl) // Type name and misc status
// IDispatch Interface Handlers
afx_msg BOOL Initialise(LPDISPATCH pApplication, unsigned long ulHWND);
afx_msg void Refresh(void);
// Message Handlers
protected:
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
afx_msg void OnSize(UINT nType, int cx, int cy);
DECLARE_MESSAGE_MAP()
DECLARE_DISPATCH_MAP()
DECLARE_EVENT_MAP()
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -