📄 _notmgr.h
字号:
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// Use of this source code is subject to the terms of the Microsoft shared
// source or premium shared source license agreement under which you licensed
// this source code. If you did not accept the terms of the license agreement,
// you are not authorized to use this source code. For the terms of the license,
// please see the license agreement between you and Microsoft or, if applicable,
// see the SOURCE.RTF on your install media or the root of your tools installation.
// THE SOURCE CODE IS PROVIDED "AS IS", WITH NO WARRANTIES.
//
/*
* _NOTMGR.H
*
* Purpose:
* Notification Manager declarations
*
* Author:
* AlexGo 6/5/95
*/
#ifndef _NOTMGR_H_
#define _NOTMGR_H_
// forward declaration
class CNotifyMgr;
// Set cp to this to signal that the control has converted from rich to plain.
const DWORD CONVERT_TO_PLAIN = 0xFFFFFFFE;
/*
* ITxNotify
*
* Purpose:
* a notification sink for events happening to the backing store,
* used by the Notification Manager
*/
class ITxNotify
{
public:
virtual void OnPreReplaceRange( DWORD cp, DWORD cchDel, DWORD cchNew,
DWORD cpFormatMin, DWORD cpFormatMax ) = 0;
virtual void OnPostReplaceRange( DWORD cp, DWORD cchDel, DWORD cchNew,
DWORD cpFormatMin, DWORD cpFormatMax ) = 0;
virtual void Zombie() = 0;
private:
ITxNotify * _pnext;
friend class CNotifyMgr; // so it can manipulate _pnext
};
/*
* CNotifyMgr
*
* Purpose:
* the general notification manager; keeps track of all interested
* notification sinks
*/
class CNotifyMgr
{
public:
void Add( ITxNotify *pITN );
void Remove( ITxNotify *pITN );
void NotifyPreReplaceRange( ITxNotify *pITNignore, DWORD cp, DWORD cchDel,
DWORD cchNew, DWORD cpFormatMin, DWORD cpFormatMax );
void NotifyPostReplaceRange( ITxNotify *pITNignore, DWORD cp, DWORD cchDel,
DWORD cchNew, DWORD cpFormatMin, DWORD cpFormatMax );
CNotifyMgr();
~CNotifyMgr();
private:
ITxNotify * _pitnlist;
};
#endif //_NOTMGR_H_
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -