oncmdmsg和pretranslate同比和环比的区别别

2286人阅读
MFC大杂烩(15)
一个是WM_INITMENUPOPUP或wm_initmenu产生后由mfc框架调用以便用来控制菜单项的外观的... 一个是点击菜单后产生的..
命令更新机制
MFC框架结构中,可以用ON_UPDATE_COMMAND_UI( id, memberFxn )宏指定菜单或工具条按钮等对应的状态设置函数在memberFxn中通过传入的CCmdUI对象指针就可以设置菜单项,工具钮的使用、禁用、标记等属性。所有在memberFxn中指定条件的变化,都将实时的反映到界面上去。其实现机理如下一 工具条按钮的更新由于工具条一直可见,故要实时更新,就得不断调用memberFxn检查更新条件这是通过在CWinApp::OnIdle(),以及WM_IDLEUPDATECMDUI消息实现的.①在程序空闲时,OnIdle将被调用在其基类CWinThread 中的OnIdle() 将调用主窗口的消息处理函数处理WM_IDLEUPDATECMDUI消息,同时给所有下级窗口发送WM_IDLEUPDATECMDUI消息。②框架窗口相应WM_IDLEUPDATECMDUI消息void CMDIFrameWnd::OnIdleUpdateCmdUI()void CFrameWnd::OnIdleUpdateCmdUI()需要时,将调用OnUpdateFrameMenu,更新菜单各项③各控制条,对话框接收到WM_IDLEUPDATECMDUI消息调用CControlBar::OnIdleUpdateCmdUI()进行相应在其中调用CControlBar::OnUpdateCmdUI进行更新④OnUpdateCmdUI是控制条类的虚函数,对不同的控制条将有不同实现方式以工具条为例:将针对其上各个按钮调用特定窗口的命令处理函数首先看是否有对反射消息的处理另外也支持自己处理一般情况下将调用DoUpdate进行更新。DoUpdate 将调用宿主窗口的OnCmdMsg进行处理OnCmdMsg(m_nID, CN_UPDATE_COMMAND_UI, this, NULL);其nCode参数为CN_UPDATE_COMMAND_UI,表示是界面更新,将调用ON_UPDATE_COMMAND_UI所制定的成员,同时工具条的信息通过CmdUI传给处理函数。最后工具条将调用UpdateDialogControls以更新其上的其他控制。
二 菜单的更新①再空闲时OnUpdateFrameMenu被调用,用来更新菜单。过程大致与工具条更新类似。②将菜单被打开时,也作更新。CFrameWnd::OnInitMenuPopup()中其间将调用窗口的OnCmdMsg(m_nID, CN_UPDATE_COMMAND_UI, this, NULL);对各菜单项进行更新。三 其他在窗口接到命令时,将试探性的调用命令的更新函数,测试命令是否被禁止了。若该命令为激活状态,将交由OnCmdMsg处理。
&&相关文章推荐
* 以上用户言论只代表其个人观点,不代表CSDN网站的观点或立场
访问:72354次
积分:1133
积分:1133
排名:千里之外
原创:52篇
评论:13条当前位置: &
& 查看源码
t:源码内容
:Base&MFCBIBLE.HLP
1&Chapter&1:&Windows&Programming
2&Windows&Programming=Chapter_1_Windows_Programming
2&Graphical&User&Interface=Graphical_User_Interface
2&Resources=Resources
2&Controls=Controls
2&Messages=Messages
2&Windows&95&and&Windows&NT=Windows_95_and_Windows_NT
2&Windows&API=Windows_API
2&MFC&and&Windows=MFC_and_Windows
2&OLE&and&Inter-Application&Communications=OLE_and_Inter_Application_Communications
2&Working&Well&with&Windows=Working_Well_with_Windows
1&Chapter&2:&The&MFC&Framework
2&The&MFC&Framework=Chapter_2_The_MFC_Framework
2&What's&in&the&MFC?=What_s_in_the_MFC
2&MFC&Versions&and&Compatibility&Issues=MFC_Versions_and_Compatibility_Issues
2&Resources&and&Context-Sensitive&Help=Resources_and_Context_Sensitive_Help
2&AFX&Helper&Functions
3&Afx_&Helper&Functions=_Afx_Helper_Functions
3&AfxAbort=AfxAbort
3&AfxBeginThread=AfxBeginThread
3&AfxCheckMemory=AfxCheckMemory
3&AfxDoForAllClasses=AfxDoForAllClasses
3&AfxDoForAllObjects=AfxDoForAllObjects
3&AfxDump=AfxDump
3&AfxEnableMemoryTracking=AfxEnableMemoryTracking
3&AfxEndThread=AfxEndThread
3&AfxFormatString1=AfxFormatString1
3&AfxFormatString2=AfxFormatString2
3&AfxGetApp=AfxGetApp
3&AfxGetAppName=AfxGetAppName
3&AfxGetInstanceHandle=AfxGetInstanceHandle
3&AfxGetMainWnd=AfxGetMainWnd
3&AfxGetResourceHandle=AfxGetResourceHandle
3&AfxGetThread=AfxGetThread
3&AfxIsMemoryBlock=AfxIsMemoryBlock
3&AfxIsValidAddress=AfxIsValidAddress
3&AfxIsValidString=AfxIsValidString
3&AfxMessageBox=AfxMessageBox
3&AfxRegisterClass=AfxRegisterClass
3&AfxRegisterWndClass=AfxRegisterWndClass
3&AfxSetAllocHook=AfxSetAllocHook
3&AfxSetResourceHandle=AfxSetResourceHandle
3&AfxThrowArchiveException=AfxThrowArchiveException
3&AfxThrowFileException=AfxThrowFileException
3&AfxThrowMemoryException=AfxThrowMemoryException
3&AfxThrowNotSupportedException=AfxThrowNotSupportedException
3&AfxThrowResourceException=AfxThrowResourceException
3&AfxThrowUserException=AfxThrowUserException
3&The&CObject&Class=The_CObject_Class
3&CObject::CObject=CObject_CObject_constructor
3&CObject::~CObject=CObject_CObject_destructor
3&CObject::_GetBaseClass=CObject_GetBaseClass
3&CObject::AssertValid=CObject_AssertValid
3&CObject::Dump=CObject_Dump
3&CObject::GetRuntimeClass=CObject_GetRuntimeClass
3&CObject::IsKindOf=CObject_IsKindOf
3&CObject::IsSerializable=CObject_IsSerializable
3&CObject::operator=CObject_operator
3&CObject::operator&delete=CObject_operator_delete
3&CObject::operator&new=CObject_operator_new
3&CObject::Serialize=CObject_Serialize
3&CObject&Helper&Macros
4&DECLARE_DYNAMIC=DECLARE_DYNAMIC
4&IMPLEMENT_DYNAMIC=IMPLEMENT_DYNAMIC
4&DECLARE_DYNCREATE=DECLARE_DYNCREATE
4&IMPLEMENT_DYNCREATE=IMPLEMENT_DYNCREATE
4&DECLARE_SERIAL=DECLARE_SERIAL
4&IMPLEMENT_SERIAL=IMPLEMENT_SERIAL
2&CRuntimeClass
3&The&CRuntimeClass&Class=The_CRuntimeClass_Class
3&CRuntimeClass::CreateObject=CRuntimeClass_CreateObject
3&CRunTimeClass::IsDerivedFrom=CRunTimeClass_IsDerivedFrom
3&CRuntimeClass::Load=CRuntimeClass_Load
3&CRuntimeClass::Store=CRuntimeClass_Store
3&Member&Variables
4&CRuntimeClass::m_lpszClassName=CRuntimeClass_m_lpszClassName
4&CRuntimeClass::m_nObjectSize=CRuntimeClass_m_nObjectSize
4&CRuntimeClass::m_pBaseClass=CRuntimeClass_m_pBaseClass
4&CRuntimeClass::m_pfnCreateObject=CRuntimeClass_m_pfnCreateObject
4&CRuntimeClass::m_pfnGetBaseClass=CRuntimeClass_m_pfnGetBaseClass
4&CRuntimeClass::m_pNextClass=CRuntimeClass_m_pNextClass
4&CRuntimeClass::m_wSchema=CRuntimeClass_m_wSchema
1&Chapter&3:&Application&Classes
2&Application&Classes=Chapter_3_Application_Classes
2&CCommandLineInfo
3&The&CCommandLineInfo&Class=The_CCommandLineInfo_Class
3&CCommandLineInfo::CCommandLineInfo=CCommandLineInfo_CCommandLineInfo_constructor
3&CCommandLineInfo::~CCommandLineInfo=CCommandLineInfo_CCommandLineInfo_destructor
3&CCommandLineInfo::ParseParam=CCommandLineInfo_ParseParam
3&Member&Variables
4&CCommandLineInfo::m_bRunAutomated=CCommandLineInfo_m_bRunAutomated
4&CCommandLineInfo::m_bRunEmbedded=CCommandLineInfo_m_bRunEmbedded
4&CCommandLineInfo::m_bShowSplash=CCommandLineInfo_m_bShowSplash
4&CCommandLineInfo::m_nShellCommand=CCommandLineInfo_m_nShellCommand
4&CCommandLineInfo::m_strDriverName=CCommandLineInfo_m_strDriverName
4&CCommandLineInfo::m_strFileName=CCommandLineInfo_m_strFileName
4&CCommandLineInfo::m_strPortName=CCommandLineInfo_m_strPortName
4&CCommandLineInfo::m_strPrinterName=CCommandLineInfo_m_strPrinterName
3&The&CWinApp&Class=The_CWinApp_Class
3&CWinApp::CWinApp=CWinApp_CWinApp_constructor
3&CWinApp::~CWinApp=CWinApp_CWinApp_destructor
3&CWinApp::AddDocTemplate=CWinApp_AddDocTemplate
3&CWinApp::AddToRecentFileList=CWinApp_AddToRecentFileList
3&CWinApp::AssertValid=CWinApp_AssertValid
3&CWinApp::CloseAllDocuments=CWinApp_CloseAllDocuments
3&CWinApp::CreateInitialDocument=CWinApp_CreateInitialDocument
3&CWinApp::CreatePrinterDC=CWinApp_CreatePrinterDC
3&CWinApp::DevModeChange=CWinApp_DevModeChange
3&CWinApp::DoMessageBox=CWinApp_DoMessageBox
3&CWinApp::DoPrintDialog=CWinApp_DoPrintDialog
3&CWinApp::DoPromptFileName=CWinApp_DoPromptFileName
3&CWinApp::DoWaitCursor=CWinApp_DoWaitCursor
3&CWinApp::Dump=CWinApp_Dump
3&CWinApp::Enable3DControls=CWinApp_Enable3DControls
3&CWinApp::Enable3DControlsStatic=CWinApp_Enable3DControlsStatic
3&CWinApp::EnableModeless=CWinApp_EnableModeless
3&CWinApp::EnableShellOpen=CWinApp_EnableShellOpen
3&CWinApp::ExitInstance=CWinApp_ExitInstance
3&CWinApp::GetAppRegistryKey=CWinApp_GetAppRegistryKey
3&CWinApp::GetFirstDocTemplatePosition=CWinApp_GetFirstDocTemplatePosition
3&CWinApp::GetNextDocTemplate=CWinApp_GetNextDocTemplate
3&CWinApp::GetOpenDocumentCount=CWinApp_GetOpenDocumentCount
3&CWinApp::GetPrinterDeviceDefaults=CWinApp_GetPrinterDeviceDefaults
3&CWinApp::GetProfileBinary=CWinApp_GetProfileBinary
3&CWinApp::GetProfileInt=CWinApp_GetProfileInt
3&CWinApp::GetProfileString=CWinApp_GetProfileString
3&CWinApp::GetSectionKey=CWinApp_GetSectionKey
3&CWinApp::HideApplication=CWinApp_HideApplication
3&CWinApp::InitApplication=CWinApp_InitApplication
3&CWinApp::InitInstance=CWinApp_InitInstance
3&CWinApp::LoadCursor=CWinApp_LoadCursor
3&CWinApp::LoadIcon=CWinApp_LoadIcon
3&CWinApp::LoadOEMCursor=CWinApp_LoadOEMCursor
3&CWinApp::LoadOEMIcon=CWinApp_LoadOEMIcon
3&CWinApp::LoadStandardCursor=CWinApp_LoadStandardCursor
3&CWinApp::LoadStandardIcon=CWinApp_LoadStandardIcon
3&CWinApp::LoadStdProfileSettings=CWinApp_LoadStdProfileSettings
3&CWinApp::OnAppExit=CWinApp_OnAppExit
3&CWinApp::OnContextHelp=CWinApp_OnContextHelp
3&CWinApp::OnDDECommand=CWinApp_OnDDECommand
3&CWinApp::OnFileNew=CWinApp_OnFileNew
3&CWinApp::OnFileOpen=CWinApp_OnFileOpen
3&CWinApp::OnFilePrintSetup=CWinApp_OnFilePrintSetup
3&CWinApp::OnHelp=CWinApp_OnHelp
3&CWinApp::OnHelpFinder=CWinApp_OnHelpFinder
3&CWinApp::OnHelpIndex=CWinApp_OnHelpIndex
3&CWinApp::OnHelpUsing=CWinApp_OnHelpUsing
3&CWinApp::OnIdle=CWinApp_OnIdle
3&CWinApp::OnOpenRecentFile=CWinApp_OnOpenRecentFile
3&CWinApp::OnUpdateRecentFileMenu=CWinApp_OnUpdateRecentFileMenu
3&CWinApp::OpenDocumentFile=CWinApp_OpenDocumentFile
3&CWinApp::ParseCommandLine=CWinApp_ParseCommandLine
3&CWinApp::ProcessShellCommand=CWinApp_ProcessShellCommand
3&CWinApp::ProcessWndProcException=CWinApp_ProcessWndProcException
3&CWinApp::RegisterShellFileTypes=CWinApp_RegisterShellFileTypes
3&CWinApp::RegisterShellFileTypesCompat=CWinApp_RegisterShellFileTypesCompat
3&CWinApp::Run=CWinApp_Run
3&CWinApp::RunAutomated=CWinApp_RunAutomated
3&CWinApp::RunEmbedded=CWinApp_RunEmbedded
3&CWinApp::SaveAllModified=CWinApp_SaveAllModified
3&CWinApp::SaveStdProfileSettings=CWinApp_SaveStdProfileSettings
3&CWinApp::SelectPrinter=CWinApp_SelectPrinter
3&CWinApp::SetCurrentHandles=CWinApp_SetCurrentHandles
3&CWinApp::SetDialogBkColor=CWinApp_SetDialogBkColor
3&CWinApp::SetRegistryKey=CWinApp_SetRegistryKey
3&CWinApp::UpdatePrinterSelection=CWinApp_UpdatePrinterSelection
3&CWinApp::WinHelp=CWinApp_WinHelp
3&CWinApp::WriteProfileBinary=CWinApp_WriteProfileBinary
3&CWinApp::WriteProfileInt=CWinApp_WriteProfileInt
3&CWinApp::WriteProfileString=CWinApp_WriteProfileString
2&CWinThread
3&The&CWinThread&Class=The_CWinThread_Class
3&CWinThread::CWinThread=CWinThread_CWinThread_constructor
3&CWinThread::~CWinThread=CWinThread_CWinThread
3&CWinThread::AssertValid=CWinThread_AssertValid
3&CWinThread::CommonConstruct=CWinThread_CommonConstruct
3&CWinThread::CreateThread=CWinThread_CreateThread
3&CWinThread::Delete=CWinThread_Delete
3&CWinThread::Dump=CWinThread_Dump
3&CWinThread::ExitInstance=CWinThread_ExitInstance
3&CWinThread::GetMainWnd=CWinThread_GetMainWnd
3&CWinThread::GetThreadPriority=CWinThread_GetThreadPriority
3&CWinThread::InitInstance=CWinThread_InitInstance
3&CWinThread::IsIdleMessage=CWinThread_IsIdleMessage
3&CWinThread::OnIdle=CWinThread_OnIdle
3&CWinThread::operator&HANDLE=CWinThread_operator_HANDLE
3&CWinThread::PreTranslateMessage=CWinThread_PreTranslateMessage
3&CWinThread::ProcessMessageFilter=CWinThread_ProcessMessageFilter
3&CWinThread::ProcessWndProcException=CWinThread_ProcessWndProcException
3&CWinThread::PumpMessage=CWinThread_PumpMessage
3&CWinThread::ResumeThread=CWinThread_ResumeThread
3&CWinThread::Run=CWinThread_Run
3&CWinThread::SetThreadPriority=CWinThread_SetThreadPriority
3&CWinThread::SuspendThread=CWinThread_SuspendThread
1&Chapter&4:&Windows&Messaging
2&Chapter&4:&Windows&Messaging=Chapter_4_Windows_Messaging
2&Types&of&Messages=Types_of_Messages
2&Message&Routing&in&MFC=Message_Routing_in_MFC
2&Message&Reflection=Message_Reflection
2&Message&Maps
3&Message&Maps=Message_Maps
3&DECLARE_MESSAGE_MAP=DECLARE_MESSAGE_MAP
3&BEGIN_MESSAGE_MAP=BEGIN_MESSAGE_MAP
3&END_MESSAGE_MAP=END_MESSAGE_MAP
3&ON_COMMAND=ON_COMMAND
3&ON_COMMAND_RANGE=ON_COMMAND_RANGE
3&ON_CONTROL=ON_CONTROL
3&ON_CONTROL_RANGE=ON_CONTROL_RANGE
3&ON_CONTROL_REFLECT=ON_CONTROL_REFLECT
3&ON_CONTROL_REFLECT_EX=ON_CONTROL_REFLECT_EX
3&ON_MESSAGE=ON_MESSAGE
3&ON_NOTIFY=ON_NOTIFY
3&ON_NOTIFY_REFLECT=ON_NOTIFY_REFLECT
3&ON_NOTIFY_REFLECT_EX=ON_NOTIFY_REFLECT_EX
3&ON_REGISTERED_MESSAGE=ON_REGISTERED_MESSAGE
3&ON_UPDATE_COMMAND_UI=ON_UPDATE_COMMAND_UI
3&ON_UPDATE_COMMAND_UI_RANGE=ON_UPDATE_COMMAND_UI_RANGE
3&ON_UPDATE_COMMAND_UI&_REFLECT=ON_UPDATE_COMMAND_UI_REFLECT
3&ON_VBXEVENT=ON_VBXEVENT
3&ON_WM_XXXX=ON_WM_XXXX
3&ON_WM_CHARTOITEM_REFLECT=ON_WM_CHARTOITEM_REFLECT
3&ON_WM_COMPAREITEM_REFLECT=ON_WM_COMPAREITEM_REFLECT
3&ON_WM_CTLCOLOR_REFLECT=ON_WM_CTLCOLOR_REFLECT
3&ON_WM_DELETEITEM_REFLECT=ON_WM_DELETEITEM_REFLECT
3&ON_WM_DRAWITEM_REFLECT=ON_WM_DRAWITEM_REFLECT
3&ON_WM_HSCROLL_REFLECT=ON_WM_HSCROLL_REFLECT
3&ON_WM_MEASUREITEM_REFLECT=ON_WM_MEASUREITEM_REFLECT
3&ON_WM_PARENTNOTIFY_REFLECT=ON_WM_PARENTNOTIFY_REFLECT
3&ON_WM_VKEYTOITEM_REFLECT=ON_WM_VKEYTOITEM_REFLECT
3&ON_WM_VSCROLL_REFLECT=ON_WM_VSCROLL_REFLECT
3&ON_XXXX=ON_XXXX
2&User&Interface&Objects
3&User&Interface&Objects=User_Interface_Objects
3&CCmdTarget
4&The&CCmdTarget&Class=The_CCmdTarget_Class
4&CCmdTarget::CCmdTarget=CCmdTarget_CCmdTarget_constructor
4&CCmdTarget::~CCmdTarget=CCmdTarget_CCmdTarget_destructor
4&CCmdTarget::AssertValid=CCmdTarget_AssertValid
4&CCmdTarget::BeginWaitCursor=CCmdTarget_BeginWaitCursor
4&CCmdTarget::Dump=CCmdTarget_Dump
4&CCmdTarget::EndWaitCursor=CCmdTarget_EndWaitCursor
4&CCmdTarget::GetRoutingView=CCmdTarget_GetRoutingView
4&CCmdTarget::OnCmdMsg=CCmdTarget_OnCmdMsg
4&CCmdTarget::RestoreWaitCursor=CCmdTarget_RestoreWaitCursor
4&The&CCmdUI&Class=The_CCmdUI_Class
4&CCmdUI::CCmdUI=CCmdUI_CCmdUI_constructor
4&CCmdUI::ContinueRouting=CCmdUI_ContinueRouting
4&CCmdUI::DoUpdate=CCmdUI_DoUpdate
4&CCmdUI::Enable=CCmdUI_Enable
4&CCmdUI::SetCheck=CCmdUI_SetCheck
4&CCmdUI::SetRadio=CCmdUI_SetRadio
4&CCmdUI::SetText=CCmdUI_SetText
1&Chapter&5:&The&MFC&Window
2&Chapter&5:&The&MFC&Window=Chapter_5_The_MFC_Window
2&The&CWnd&Class=The_CWnd_Class
3&CWnd::CWnd=CWnd_CWnd_constructor
3&CWnd::~CWnd=CWnd_CWnd_destructor
3&CWnd::ActivateTopParent=CWnd_ActivateTopParent
3&CWnd::ArrangeIconicWindows=CWnd_ArrangeIconicWindows
3&CWnd::AssertValid=CWnd_AssertValid
3&CWnd::Attach=CWnd_Attach
3&CWnd::BeginModalState=CWnd_BeginModalState
3&CWnd::BeginPaint=CWnd_BeginPaint
3&CWnd::BringWindowToTop=CWnd_BringWindowToTop
3&CWnd::CalcWindowRect=CWnd_CalcWindowRect
3&CWnd::CancelToolTips=CWnd_CancelToolTips
3&CWnd::CenterWindow=CWnd_CenterWindow
3&CWnd::ChangeClipboardChain=CWnd_ChangeClipboardChain
3&CWnd::CheckAutoCenter=CWnd_CheckAutoCenter
3&CWnd::CheckDlgButton=CWnd_CheckDlgButton
3&CWnd::CheckRadioButton=CWnd_CheckRadioButton
3&CWnd::ChildWindowFromPoint=CWnd_ChildWindowFromPoint
3&CWnd::ClientToScreen=CWnd_ClientToScreen
3&CWnd::CloseWindow=CWnd_CloseWindow
3&CWnd::ContinueModal=CWnd_ContinueModal
3&CWnd::Create=CWnd_Create
3&CWnd::CreateCaret=CWnd_CreateCaret
3&CWnd::CreateDlg=CWnd_CreateDlg
3&CWnd::CreateDlgIndirect=CWnd_CreateDlgIndirect
3&CWnd::CreateEx=CWnd_CreateEx
3&CWnd::CreateGrayCaret=CWnd_CreateGrayCaret
3&CWnd::CreateSolidCaret=CWnd_CreateSolidCaret
3&CWnd::Default=CWnd_Default
3&CWnd::DefWindowProc=CWnd_DefWindowProc
3&CWnd::DeleteTempMap=CWnd_DeleteTempMap
3&CWnd::DestroyWindow=CWnd_DestroyWindow
3&CWnd::Detach=CWnd_Detach
3&CWnd::DlgDirList=CWnd_DlgDirList
3&CWnd::DlgDirListComboBox=CWnd_DlgDirListComboBox
3&CWnd::DlgDirSelect=CWnd_DlgDirSelect
3&CWnd::DlgDirSelectComboBox=CWnd_DlgDirSelectComboBox
3&CWnd::DoDataExchange=CWnd_DoDataExchange
3&CWnd::DragAcceptFiles=CWnd_DragAcceptFiles
3&CWnd::DrawMenuBar=CWnd_DrawMenuBar
3&CWnd::Dump=CWnd_Dump
3&CWnd::EnableScrollBar=CWnd_EnableScrollBar
3&CWnd::EnableScrollBarCtrl=CWnd_EnableScrollBarCtrl
3&CWnd::EnableToolTips=CWnd_EnableToolTips
3&CWnd::EnableWindow=CWnd_EnableWindow
3&CWnd::EndModalLoop=CWnd_EndModalLoop
3&CWnd::EndModalState=CWnd_EndModalState
3&CWnd::EndPaint=CWnd_EndPaint
3&CWnd::ExecuteDlgInit=CWnd_ExecuteDlgInit
3&CWnd::FindWindow=CWnd_FindWindow
3&CWnd::FlashWindow=CWnd_FlashWindow
3&CWnd::FromHandle=CWnd_FromHandle
3&CWnd::FromHandlePermanent=CWnd_FromHandlePermanent
3&CWnd::GetActiveWindow=CWnd_GetActiveWindow
3&CWnd::GetCapture=CWnd_GetCapture
3&CWnd::GetCaretPos=CWnd_GetCaretPos
3&CWnd::GetCheckedRadioButton=CWnd_GetCheckedRadioButton
3&CWnd::GetClientRect=CWnd_GetClientRect
3&CWnd::GetClipboardOwner=CWnd_GetClipboardOwner
3&CWnd::GetClipboardViewer=CWnd_GetClipboardViewer
3&CWnd::GetCurrentMessage=CWnd_GetCurrentMessage
3&CWnd::GetDC=CWnd_GetDC
3&CWnd::GetDCEx=CWnd_GetDCEx
3&CWnd::GetDescendantWindow=CWnd_GetDescendantWindow
3&CWnd::GetDesktopWindow=CWnd_GetDesktopWindow
3&CWnd::GetDlgCtrlID=CWnd_GetDlgCtrlID
3&CWnd::GetDlgItem=CWnd_GetDlgItem
3&CWnd::GetDlgItemInt=CWnd_GetDlgItemInt
3&CWnd::GetDlgItemText=CWnd_GetDlgItemText
3&CWnd::GetExStyle=CWnd_GetExStyle
3&CWnd::GetFocus=CWnd_GetFocus
3&CWnd::GetFont=CWnd_GetFont
3&CWnd::GetForegroundWindow=CWnd_GetForegroundWindow
3&CWnd::GetIcon=CWnd_GetIcon
3&CWnd::GetLastActivePopup=CWnd_GetLastActivePopup
3&CWnd::GetMenu=CWnd_GetMenu
3&CWnd::GetNextDlgGroupItem=CWnd_GetNextDlgGroupItem
3&CWnd::GetNextDlgTabItem=CWnd_GetNextDlgTabItem
3&CWnd::GetNextWindow=CWnd_GetNextWindow
3&CWnd::GetOpenClipboardWindow=CWnd_GetOpenClipboardWindow
3&CWnd::GetOwner=CWnd_GetOwner
3&CWnd::GetParent=CWnd_GetParent
3&CWnd::GetParentFrame=CWnd_GetParentFrame
3&CWnd::GetParentOwner=CWnd_GetParentOwner
3&CWnd::GetSafeHwnd=CWnd_GetSafeHwnd
3&CWnd::GetSafeOwner=CWnd_GetSafeOwner
3&CWnd::GetScrollBarCtrl=CWnd_GetScrollBarCtrl
3&CWnd::GetScrollInfo=CWnd_GetScrollInfo
3&CWnd::GetScrollLimit=CWnd_GetScrollLimit
3&CWnd::GetScrollPos=CWnd_GetScrollPos
3&CWnd::GetScrollRange=CWnd_GetScrollRange
3&CWnd::GetStyle=CWnd_GetStyle
3&CWnd::GetSuperWndProcAddr=CWnd_GetSuperWndProcAddr
3&CWnd::GetSystemMenu=CWnd_GetSystemMenu
3&CWnd::GetTopLevelFrame=CWnd_GetTopLevelFrame
3&CWnd::GetTopLevelOwner=CWnd_GetTopLevelOwner
3&CWnd::GetTopLevelParent=CWnd_GetTopLevelParent
3&CWnd::GetTopWindow=CWnd_GetTopWindow
3&CWnd::GetUpdateRect=CWnd_GetUpdateRect
3&CWnd::GetUpdateRgn=CWnd_GetUpdateRgn
3&CWnd::GetWindow=CWnd_GetWindow
3&CWnd::GetWindowContextHelpId=CWnd_GetWindowContextHelpId
3&CWnd::GetWindowDC=CWnd_GetWindowDC
3&CWnd::GetWindowPlacement=CWnd_GetWindowPlacement
3&CWnd::GetWindowRect=CWnd_GetWindowRect
3&CWnd::GetWindowText=CWnd_GetWindowText
3&CWnd::GetWindowTextLength=CWnd_GetWindowTextLength
3&CWnd::GrayCtlColor=CWnd_GrayCtlColor
3&CWnd::HandleFloatingSysCommand=CWnd_HandleFloatingSysCommand
3&CWnd::HideCaret=CWnd_HideCaret
3&CWnd::HiliteMenuItem=CWnd_HiliteMenuItem
3&CWnd::Invalidate=CWnd_Invalidate
3&CWnd::InvalidateRect=CWnd_InvalidateRect
3&CWnd::InvalidateRgn=CWnd_InvalidateRgn
3&CWnd::IsChild=CWnd_IsChild
3&CWnd::IsDialogMessage=CWnd_IsDialogMessage
3&CWnd::IsDlgButtonChecked=CWnd_IsDlgButtonChecked
3&CWnd::IsFrameWnd=CWnd_IsFrameWnd
3&CWnd::IsIconic=CWnd_IsIconic
3&CWnd::IsTopParentActive=CWnd_IsTopParentActive
3&CWnd::IsWindowEnabled=CWnd_IsWindowEnabled
3&CWnd::IsWindowVisible=CWnd_IsWindowVisible
3&CWnd::IsZoomed=CWnd_IsZoomed
3&CWnd::KillTimer=CWnd_KillTimer
3&CWnd::LockWindowUpdate=CWnd_LockWindowUpdate
3&CWnd::MapWindowPoints=CWnd_MapWindowPoints
3&CWnd::MessageBox=CWnd_MessageBox
3&CWnd::ModifyStyle=CWnd_ModifyStyle
3&CWnd::ModifyStyleEx=CWnd_ModifyStyleEx
3&CWnd::MoveWindow=CWnd_MoveWindow
3&CWnd::OpenClipboard=CWnd_OpenClipboard
3&CWnd::OpenIcon=CWnd_OpenIcon
3&CWnd::operator&HWND=CWnd_operator_HWND
3&CWnd::PostMessage=CWnd_PostMessage
3&CWnd::PostNcDestroy=CWnd_PostNcDestroy
3&CWnd::PreCreateWindow=CWnd_PreCreateWindow
3&CWnd::PreSubclassWindow=CWnd_PreSubclassWindow
3&CWnd::PreTranslateInput=CWnd_PreTranslateInput
3&CWnd::PreTranslateMessage=CWnd_PreTranslateMessage
3&CWnd::Print=CWnd_Print
3&CWnd::PrintClient=CWnd_PrintClient
3&CWnd::RedrawWindow=CWnd_RedrawWindow
3&CWnd::ReflectChildNotify=CWnd_ReflectChildNotify
3&CWnd::ReflectLastMsg=CWnd_ReflectLastMsg
3&CWnd::ReleaseDC=CWnd_ReleaseDC
3&CWnd::RepositionBars=CWnd_RepositionBars
3&CWnd::RunModalLoop=CWnd_RunModalLoop
3&CWnd::ScreenToClient=CWnd_ScreenToClient
3&CWnd::ScrollWindow=CWnd_ScrollWindow
3&CWnd::ScrollWindowEx=CWnd_ScrollWindowEx
3&CWnd::SendChildNotifyLastMsg=CWnd_SendChildNotifyLastMsg
3&CWnd::SendDlgItemMessage=CWnd_SendDlgItemMessage
3&CWnd::SendMessage=CWnd_SendMessage
3&CWnd::SendMessageToDescendants=CWnd_SendMessageToDescendants
3&CWnd::SendNotifyMessage=CWnd_SendNotifyMessage
3&CWnd::SetActiveWindow=CWnd_SetActiveWindow
3&CWnd::SetCapture=CWnd_SetCapture
3&CWnd::SetCaretPos=CWnd_SetCaretPos
3&CWnd::SetClipboardViewer=CWnd_SetClipboardViewer
3&CWnd::SetDlgCtrlID=CWnd_SetDlgCtrlID
3&CWnd::SetDlgItemInt=CWnd_SetDlgItemInt
3&CWnd::SetDlgItemText=CWnd_SetDlgItemText
3&CWnd::SetFocus=CWnd_SetFocus
3&CWnd::SetFont=CWnd_SetFont
3&CWnd::SetForegroundWindow=CWnd_SetForegroundWindow
3&CWnd::SetIcon=CWnd_SetIcon
3&CWnd::SetMenu=CWnd_SetMenu
3&CWnd::SetOwner=CWnd_SetOwner
3&CWnd::SetParent=CWnd_SetParent
3&CWnd::SetRedraw=CWnd_SetRedraw
3&CWnd::SetScrollInfo=CWnd_SetScrollInfo
3&CWnd::SetScrollPos=CWnd_SetScrollPos
3&CWnd::SetScrollRange=CWnd_SetScrollRange
3&CWnd::SetTimer=CWnd_SetTimer
3&CWnd::SetWindowContextHelpId=CWnd_SetWindowContextHelpId
3&CWnd::SetWindowPlacement=CWnd_SetWindowPlacement
3&CWnd::SetWindowPos=CWnd_SetWindowPos
3&CWnd::SetWindowText=CWnd_SetWindowText
3&CWnd::ShowCaret=CWnd_ShowCaret
3&CWnd::ShowOwnedPopups=CWnd_ShowOwnedPopups
3&CWnd::ShowScrollBar=CWnd_ShowScrollBar
3&CWnd::ShowWindow=CWnd_ShowWindow
3&CWnd::SubclassCtl3d=CWnd_SubclassCtl3d
3&CWnd::SubclassDlg3d=CWnd_SubclassDlg3d
3&CWnd::SubclassDlgItem=CWnd_SubclassDlgItem
3&CWnd::SubclassWindow=CWnd_SubclassWindow
3&CWnd::UnlockWindowUpdate=CWnd_UnlockWindowUpdate
3&CWnd::UnsubclassWindow=CWnd_UnsubclassWindow
3&CWnd::UpdateData=CWnd_UpdateData
3&CWnd::UpdateDialogControls=CWnd_UpdateDialogControls
3&CWnd::UpdateWindow=CWnd_UpdateWindow
3&CWnd::ValidateRect=CWnd_ValidateRect
3&CWnd::ValidateRgn=CWnd_ValidateRgn
3&CWnd::WalkPreTranslateTree=CWnd_WalkPreTranslateTree
3&CWnd::WindowFromPoint=CWnd_WindowFromPoint
3&CWnd::WindowProc=CWnd_WindowProc
3&CWnd::WinHelp=CWnd_WinHelp
1&Chapter&6:&Document/View
2&Chapter&6:&Document/View=Chapter_6_Document_View
2&CCtrlView
3&The&CCtrlView&Class=The_CCtrlView_Class
3&CCtrlView::CCtrlView=CCtrlView_CCtrlView_constructor
3&CCtrlView::AssertValid=CCtrlView_AssertValid
3&CCtrlView::Dump=CCtrlView_Dump
3&CCtrlView::OnDraw=CCtrlView_OnDraw
3&CCtrlView::OnPaint=CCtrlView_OnPaint
3&CCtrlView::PreCreateWindow=CCtrlView_PreCreateWindow
2&CDocManager
3&The&CDocManager&Class=The_CDocManager_Class
3&CDocManager::CDocManager=CDocManager_CDocManager_constructor
3&CDocManager::~CDocManager=CDocManager_CDocManager_destructor
3&CDocManager::AddDocTemplate=CDocManager_AddDocTemplate
3&CDocManager::AssertValid=CDocManager_AssertValid
3&CDocManager::CloseAllDocuments=CDocManager_CloseAllDocuments
3&CDocManager::DoPromptFileName=CDocManager_DoPromptFileName
3&CDocManager::Dump=CDocManager_Dump
3&CDocManager::GetFirstDocTemplatePosition=CDocManager_GetFirstDocTemplatePosition
3&CDocManager::GetNextDocTemplate=CDocManager_GetNextDocTemplate
3&CDocManager::GetOpenDocumentCount=CDocManager_GetOpenDocumentCount
3&CDocManager::OnDDECommand=CDocManager_OnDDECommand
3&CDocManager::OnFileNew=CDocManager_OnFileNew
3&CDocManager::OnFileOpen=CDocManager_OnFileOpen
3&CDocManager::OpenDocumentFile=CDocManager_OpenDocumentFile
3&CDocManager::RegisterShellFileTypes=CDocManager_RegisterShellFileTypes
3&CDocManager::SaveAllModified=CDocManager_SaveAllModified
2&CDocTemplate
3&The&CDocTemplate&Class=The_CDocTemplate_Class
3&CDocTemplate::CDocTemplate=CDocTemplate_CDocTemplate_constructor
3&CDocTemplate::~CDocTemplate=CDocTemplate_CDocTemplate_destructor
3&CDocTemplate::AddDocument=CDocTemplate_AddDocument
3&CDocTemplate::AssertValid=CDocTemplate_AssertValid
3&CDocTemplate::CloseAllDocuments=CDocTemplate_CloseAllDocuments
3&CDocTemplate::CreateNewDocument=CDocTemplate_CreateNewDocument
3&CDocTemplate::CreateNewFrame=CDocTemplate_CreateNewFrame
3&CDocTemplate::Dump=CDocTemplate_Dump
3&CDocTemplate::GetDocString=CDocTemplate_GetDocString
3&CDocTemplate::GetFirstDocPosition=CDocTemplate_GetFirstDocPosition
3&CDocTemplate::GetNextDoc=CDocTemplate_GetNextDoc
3&CDocTemplate::InitialUpdateFrame=CDocTemplate_InitialUpdateFrame
3&CDocTemplate::LoadTemplate=CDocTemplate_LoadTemplate
3&CDocTemplate::MatchDocType=CDocTemplate_MatchDocType
3&CDocTemplate::OnIdle=CDocTemplate_OnIdle
3&CDocTemplate::OpenDocumentFile=CDocTemplate_OpenDocumentFile
3&CDocTemplate::RemoveDocument=CDocTemplate_RemoveDocument
3&CDocTemplate::SaveAllModified=CDocTemplate_SaveAllModified
3&CDocTemplate::SetDefaultTitle=CDocTemplate_SetDefaultTitle
2&CDocument
3&The&CDocument&Class=The_CDocument_Class
3&CDocument::CDocument=CDocument_CDocument_constructor
3&CDocument::~CDocument=CDocument_CDocument_destructor
3&CDocument::AddView=CDocument_AddView
3&CDocument::AssertValid=CDocument_AssertValid
3&CDocument::CanCloseFrame=CDocument_CanCloseFrame
3&CDocument::DeleteContents=CDocument_DeleteContents
3&CDocument::DisconnectViews=CDocument_DisconnectViews
3&CDocument::DoFileSave=CDocument_DoFileSave
3&CDocument::DoSave=CDocument_DoSave
3&CDocument::Dump=CDocument_Dump
3&CDocument::GetDefaultAccelerator=CDocument_GetDefaultAccelerator
3&CDocument::GetDefaultMenu=CDocument_GetDefaultMenu
3&CDocument::GetDocTemplate=CDocument_GetDocTemplate
3&CDocument::GetFile=CDocument_GetFile
3&CDocument::GetFirstViewPosition=CDocument_GetFirstViewPosition
3&CDocument::GetNextView=CDocument_GetNextView
3&CDocument::GetPathName=CDocument_GetPathName
3&CDocument::GetTitle=CDocument_GetTitle
3&CDocument::IsModified=CDocument_IsModified
3&CDocument::OnChangedViewList=CDocument_OnChangedViewList
3&CDocument::OnCloseDocument=CDocument_OnCloseDocument
3&CDocument::OnCmdMsg=CDocument_OnCmdMsg
3&CDocument::OnFileClose=CDocument_OnFileClose
3&CDocument::OnFileSave=CDocument_OnFileSave
3&CDocument::OnFileSaveAs=CDocument_OnFileSaveAs
3&CDocument::OnFileSendMail=CDocument_OnFileSendMail
3&CDocument::OnIdle=CDocument_OnIdle
3&CDocument::OnNewDocument=CDocument_OnNewDocument
3&CDocument::OnOpenDocument=CDocument_OnOpenDocument
3&CDocument::OnSaveDocument=CDocument_OnSaveDocument
3&CDocument::OnUpdateFileSendMail=CDocument_OnUpdateFileSendMail
3&CDocument::PreCloseFrame=CDocument_PreCloseFrame
3&CDocument::RecordDataFileOwner=CDocument_RecordDataFileOwner
3&CDocument::ReleaseFile=CDocument_ReleaseFile
3&CDocument::RemoveView=CDocument_RemoveView
3&CDocument::ReportSaveLoadException=CDocument_ReportSaveLoadException
3&CDocument::SaveModified=CDocument_SaveModified
3&CDocument::SendInitialUpdate=CDocument_SendInitialUpdate
3&CDocument::SetModifiedFlag=CDocument_SetModifiedFlag
3&CDocument::SetPathName=CDocument_SetPathName
3&CDocument::SetTitle=CDocument_SetTitle
3&CDocument::UpdateAllViews=CDocument_UpdateAllViews
3&CDocument::UpdateFrameCounts=CDocument_UpdateFrameCounts
2&CEditView
3&The&CEditView&Class=The_CEditView_Class
3&CEditView::CEditView=CEditView_CEditView_constructor
3&CEditView::~CEditView=CEditView_CEditView_destructor
3&CEditView::AssertValid=CEditView_AssertValid
3&CEditView::CalcWindowRect=CEditView_CalcWindowRect
3&CEditView::DeleteContents=CEditView_DeleteContents
3&CEditView::Dump=CEditView_Dump
3&CEditView::FindText=CEditView_FindText
3&CEditView::GetBufferLength=CEditView_GetBufferLength
3&CEditView::GetEditCtrl=CEditView_GetEditCtrl
3&CEditView::GetPrinterFont=CEditView_GetPrinterFont
3&CEditView::GetSelectedText=CEditView_GetSelectedText
3&CEditView::InitializeReplace=CEditView_InitializeReplace
3&CEditView::LockBuffer=CEditView_LockBuffer
3&CEditView::OnBeginPrinting=CEditView_OnBeginPrinting
3&CEditView::OnCreate=CEditView_OnCreate
3&CEditView::OnDestroy=CEditView_OnDestroy
3&CEditView::OnEditChange=CEditView_OnEditChange
3&CEditView::OnEditClear=CEditView_OnEditClear
3&CEditView::OnEditCopy=CEditView_OnEditCopy
3&CEditView::OnEditCut=CEditView_OnEditCut
3&CEditView::OnEditFind=CEditView_OnEditFind
3&CEditView::OnEditFindReplace=CEditView_OnEditFindReplace
3&CEditView::OnEditPaste=CEditView_OnEditPaste
3&CEditView::OnEditRepeat=CEditView_OnEditRepeat
3&CEditView::OnEditReplace=CEditView_OnEditReplace
3&CEditView::OnEditSelectAll=CEditView_OnEditSelectAll
3&CEditView::OnEditUndo=CEditView_OnEditUndo
3&CEditView::OnEndPrinting=CEditView_OnEndPrinting
3&CEditView::OnFindNext=CEditView_OnFindNext
3&CEditView::OnFindReplaceCmd=CEditView_OnFindReplaceCmd
3&CEditView::OnPrepareDC=CEditView_OnPrepareDC
3&CEditView::OnPreparePrinting=CEditView_OnPreparePrinting
3&CEditView::OnPrint=CEditView_OnPrint
3&CEditView::OnReplaceAll=CEditView_OnReplaceAll
3&CEditView::OnReplaceSel=CEditView_OnReplaceSel
3&CEditView::OnSetFont=CEditView_OnSetFont
3&CEditView::OnTextNotFound=CEditView_OnTextNotFound
3&CEditView::OnUpdateEditUndo=CEditView_OnUpdateEditUndo
3&CEditView::OnUpdateNeedClip=CEditView_OnUpdateNeedClip
3&CEditView::OnUpdateNeedFind=CEditView_OnUpdateNeedFind
3&CEditView::OnUpdateNeedSel=CEditView_OnUpdateNeedSel
3&CEditView::OnUpdateNeedText=CEditView_OnUpdateNeedText
3&CEditView::PaginateTo=CEditView_PaginateTo
3&CEditView::PreCreateWindow=CEditView_PreCreateWindow
3&CEditView::PrintInsideRect=CEditView_PrintInsideRect
3&CEditView::ReadFromArchive=CEditView_ReadFromArchive
3&CEditView::SameAsSelected=CEditView_SameAsSelected
3&CEditView::Serialize=CEditView_Serialize
3&CEditView::SerializeRaw=CEditView_SerializeRaw
3&CEditView::SetPrinterFont=CEditView_SetPrinterFont
3&CEditView::SetTabStops=CEditView_SetTabStops
3&CEditView::UnlockBuffer=CEditView_UnlockBuffer
3&CEditView::WriteToArchive=CEditView_WriteToArchive
2&CFormView
3&The&CFormView&Class=The_CFormView_Class
3&CFormView::CFormView=CFormView_CFormView_constructor
3&CFormView::AssertValid=CFormView_AssertValid
3&CFormView::Create=CFormView_Create
3&CFormView::Dump=CFormView_Dump
3&CFormView::OnActivateFrame=CFormView_OnActivateFrame
3&CFormView::OnActivateView=CFormView_OnActivateView
3&CFormView::OnCreate=CFormView_OnCreate
3&CFormView::OnDraw=CFormView_OnDraw
3&CFormView::OnInitialUpdate=CFormView_OnInitialUpdate
3&CFormView::OnSetFocus=CFormView_OnSetFocus
3&CFormView::PreTranslateMessage=CFormView_PreTranslateMessage
3&CFormView::SaveFocusControl=CFormView_SaveFocusControl
2&CListView
3&The&CListView&Class=The_CListView_Class
3&CListView::CListView=CListView_CListView_constructor
3&CListView::DrawItem=CListView_DrawItem
3&CListView::GetListCtrl=CListView_GetListCtrl
3&CListView::OnChildNotify=CListView_OnChildNotify
3&CListView::OnNcDestroy=CListView_OnNcDestroy
3&CListView::PreCreateWindow=CListView_PreCreateWindow
3&CListView::RemoveImageList=CListView_RemoveImageList
2&CMultiDocTemplate
3&The&CMultiDocTemplate&Class=The_CMultiDocTemplate_Class
3&CMultiDocTemplate::CMultiDocTemplate=CMultiDocTemplate_CMultiDocTemplate_constructor
3&CMultiDocTemplate::~CMultiDocTemplate=CMultiDocTemplate_CMultiDocTemplate_destructor
3&CMultiDocTemplate::AddDocument=CMultiDocTemplate_AddDocument
3&CMultiDocTemplate::AssertValid=CMultiDocTemplate_AssertValid
3&CMultiDocTemplate::Dump=CMultiDocTemplate_Dump
3&CMultiDocTemplate::GetFirstDocPosition=CMultiDocTemplate_GetFirstDocPosition
3&CMultiDocTemplate::GetNextDoc=CMultiDocTemplate_GetNextDoc
3&CMultiDocTemplate::OpenDocumentFile=CMultiDocTemplate_OpenDocumentFile
3&CMultiDocTemplate::RemoveDocument=CMultiDocTemplate_RemoveDocument
3&CMultiDocTemplate::SetDefaultTitle=CMultiDocTemplate_SetDefaultTitle
2&CRichEditView
3&The&CRichEditView&Class=The_CRichEditView_Class
3&CRichEditView::CRichEditView=CRichEditView_CRichEditView_constructor
3&CRichEditView::AdjustDialogPosition=CRichEditView_AdjustDialogPosition
3&CRichEditView::AssertValid=CRichEditView_AssertValid
3&CRichEditView::CanPaste=CRichEditView_CanPaste
3&CRichEditView::DeleteContents=CRichEditView_DeleteContents
3&CRichEditView::Dump=CRichEditView_Dump
3&CRichEditView::FindAndSelect=CRichEditView_FindAndSelect
3&CRichEditView::FindText=CRichEditView_FindText
3&CRichEditView::FindTextSimple=CRichEditView_FindTextSimple
3&CRichEditView::GetCharFormatSelection=CRichEditView_GetCharFormatSelection
3&CRichEditView::GetDocument=CRichEditView_GetDocument
3&CRichEditView::GetMargins=CRichEditView_GetMargins
3&CRichEditView::GetPageRect=CRichEditView_GetPageRect
3&CRichEditView::GetPaperSize=CRichEditView_GetPaperSize
3&CRichEditView::GetParaFormatSelection=CRichEditView_GetParaFormatSelection
3&CRichEditView::GetPrintRect=CRichEditView_GetPrintRect
3&CRichEditView::GetPrintWidth=CRichEditView_GetPrintWidth
3&CRichEditView::GetRichEditCtrl=CRichEditView_GetRichEditCtrl
3&CRichEditView::GetTextLength=CRichEditView_GetTextLength
3&CRichEditView::InsertFileAsObject=CRichEditView_InsertFileAsObject
3&CRichEditView::IsRichEditFormat=CRichEditView_IsRichEditFormat
3&CRichEditView::OnBeginPrinting=CRichEditView_OnBeginPrinting
3&CRichEditView::OnBullet=CRichEditView_OnBullet
3&CRichEditView::OnCharBold=CRichEditView_OnCharBold
3&CRichEditView::OnCharEffect=CRichEditView_OnCharEffect
3&CRichEditView::OnCharItalic=CRichEditView_OnCharItalic
3&CRichEditView::OnCharUnderline=CRichEditView_OnCharUnderline
3&CRichEditView::OnColorDefault=CRichEditView_OnColorDefault
3&CRichEditView::OnColorPick=CRichEditView_OnColorPick
3&CRichEditView::OnCreate=CRichEditView_OnCreate
3&CRichEditView::OnDestroy=CRichEditView_OnDestroy
3&CRichEditView::OnDevModeChange=CRichEditView_OnDevModeChange
3&CRichEditView::OnDropFiles=CRichEditView_OnDropFiles
3&CRichEditView::OnEditClear=CRichEditView_OnEditClear
3&CRichEditView::OnEditCopy=CRichEditView_OnEditCopy
3&CRichEditView::OnEditCut=CRichEditView_OnEditCut
3&CRichEditView::OnEditFind=CRichEditView_OnEditFind
3&CRichEditView::OnEditFindReplace=CRichEditView_OnEditFindReplace
3&CRichEditView::OnEditPaste=CRichEditView_OnEditPaste
3&CRichEditView::OnEditPasteSpecial=CRichEditView_OnEditPasteSpecial
3&CRichEditView::OnEditRepeat=CRichEditView_OnEditRepeat
3&CRichEditView::OnEditReplace=CRichEditView_OnEditReplace
3&CRichEditView::OnEditSelectAll=CRichEditView_OnEditSelectAll
3&CRichEditView::OnEditUndo=CRichEditView_OnEditUndo
3&CRichEditView::OnEndPrinting=CRichEditView_OnEndPrinting
3&CRichEditView::OnFindNext=CRichEditView_OnFindNext
3&CRichEditView::OnFindReplaceCmd=CRichEditView_OnFindReplaceCmd
3&CRichEditView::OnFormatFont=CRichEditView_OnFormatFont
3&CRichEditView::OnInitialUpdate=CRichEditView_OnInitialUpdate
3&CRichEditView::OnKeyDown=CRichEditView_OnKeyDown
3&CRichEditView::OnParaAlign=CRichEditView_OnParaAlign
3&CRichEditView::OnParaCenter=CRichEditView_OnParaCenter
3&CRichEditView::OnParaLeft=CRichEditView_OnParaLeft
3&CRichEditView::OnParaRight=CRichEditView_OnParaRight
3&CRichEditView::OnPrepareDC=CRichEditView_OnPrepareDC
3&CRichEditView::OnPrint=CRichEditView_OnPrint
3&CRichEditView::OnPrinterChanged=CRichEditView_OnPrinterChanged
3&CRichEditView::OnReplaceAll=CRichEditView_OnReplaceAll
3&CRichEditView::OnReplaceSel=CRichEditView_OnReplaceSel
3&CRichEditView::OnSelChange=CRichEditView_OnSelChange
3&CRichEditView::OnTextNotFound=CRichEditView_OnTextNotFound
3&CRichEditView::OnUpdateBullet=CRichEditView_OnUpdateBullet
3&CRichEditView::OnUpdateCharBold=CRichEditView_OnUpdateCharBold
3&CRichEditView::OnUpdateCharEffect=CRichEditView_OnUpdateCharEffect
3&CRichEditView::OnUpdateCharItalic=CRichEditView_OnUpdateCharItalic
3&CRichEditView::OnUpdateCharUnderline=CRichEditView_OnUpdateCharUnderline
3&CRichEditView::OnUpdateEditPasteSpecial=CRichEditView_OnUpdateEditPasteSpecial
3&CRichEditView::OnUpdateEditUndo=CRichEditView_OnUpdateEditUndo
3&CRichEditView::OnUpdateNeedClip=CRichEditView_OnUpdateNeedClip
3&CRichEditView::OnUpdateNeedFind=CRichEditView_OnUpdateNeedFind
3&CRichEditView::OnUpdateNeedSel=CRichEditView_OnUpdateNeedSel
3&CRichEditView::OnUpdateNeedText=CRichEditView_OnUpdateNeedText
3&CRichEditView::OnUpdateParaAlign=CRichEditView_OnUpdateParaAlign
3&CRichEditView::OnUpdateParaCenter=CRichEditView_OnUpdateParaCenter
3&CRichEditView::OnUpdateParaLeft=CRichEditView_OnUpdateParaLeft
3&CRichEditView::OnUpdateParaRight=CRichEditView_OnUpdateParaRight
3&CRichEditView::PaginateTo=CRichEditView_PaginateTo
3&CRichEditView::PreCreateWindow=CRichEditView_PreCreateWindow
3&CRichEditView::PrintInsideRect=CRichEditView_PrintInsideRect
3&CRichEditView::PrintPage=CRichEditView_PrintPage
3&CRichEditView::SameAsSelected=CRichEditView_SameAsSelected
3&CRichEditView::Serialize=CRichEditView_Serialize
3&CRichEditView::SetCharFormat=CRichEditView_SetCharFormat
3&CRichEditView::SetMargins=CRichEditView_SetMargins
3&CRichEditView::SetPaperSize=CRichEditView_SetPaperSize
3&CRichEditView::SetParaFormat=CRichEditView_SetParaFormat
3&CRichEditView::Stream=CRichEditView_Stream
3&CRichEditView::TextNotFound=CRichEditView_TextNotFound
3&CRichEditView::WrapChanged=CRichEditView_WrapChanged
2&CScrollView
3&The&CScrollView&Class=The_CScrollView_Class
3&CScrollView::CScrollView=CScrollView_CScrollView_constructor
3&CScrollView::~CScrollView=CScrollView_CScrollView_destructor
3&CScrollView::AssertValid=CScrollView_AssertValid
3&CScrollView::CalcWindowRect=CScrollView_CalcWindowRect
3&CScrollView::CenterOnPoint=CScrollView_CenterOnPoint
3&CScrollView::Dump=CScrollView_Dump
3&CScrollView::FillOutsideRect=CScrollView_FillOutsideRect
3&CScrollView::GetDeviceScrollPosition=CScrollView_GetDeviceScrollPosition
3&CScrollView::GetDeviceScrollSizes=CScrollView_GetDeviceScrollSizes
3&CScrollView::GetScrollBarSizes=CScrollView_GetScrollBarSizes
3&CScrollView::GetScrollBarState=CScrollView_GetScrollBarState
3&CScrollView::GetScrollPosition=CScrollView_GetScrollPosition
3&CScrollView::GetTotalSize=CScrollView_GetTotalSize
3&CScrollView::GetTrueClientSize=CScrollView_GetTrueClientSize
3&CScrollView::OnDraw=CScrollView_OnDraw
3&CScrollView::OnHScroll=CScrollView_OnHScroll
3&CScrollView::OnPrepareDC=CScrollView_OnPrepareDC
3&CScrollView::OnScroll=CScrollView_OnScroll
3&CScrollView::OnScrollBy=CScrollView_OnScrollBy
3&CScrollView::OnSize=CScrollView_OnSize
3&CScrollView::OnVScroll=CScrollView_OnVScroll
3&CScrollView::ResizeParentToFit=CScrollView_ResizeParentToFit
3&CScrollView::ScrollToDevicePosition=CScrollView_ScrollToDevicePosition
3&CScrollView::ScrollToPosition=CScrollView_ScrollToPosition
3&CScrollView::SetScaleToFitSize=CScrollView_SetScaleToFitSize
3&CScrollView::SetScrollSizes=CScrollView_SetScrollSizes
3&CScrollView::UpdateBars=CScrollView_UpdateBars
2&CSingleDocTemplate
3&The&CSingleDocTemplate&Class=The_CSingleDocTemplate_Class
3&CSingleDocTemplate::CSingleDocTemplate=CSingleDocTemplate_CSingleDocTemplate_constructor
3&CSingleDocTemplate::~CSingleDocTemplate=CSingleDocTemplate_CSingleDocTemplate_destructor
3&CSingleDocTemplate::AddDocument=CSingleDocTemplate_AddDocument
3&CSingleDocTemplate::AssertValid=CSingleDocTemplate_AssertValid
3&CSingleDocTemplate::Dump=CSingleDocTemplate_Dump
3&CSingleDocTemplate::GetFirstDocPosition=CSingleDocTemplate_GetFirstDocPosition
3&CSingleDocTemplate::GetNextDoc=CSingleDocTemplate_GetNextDoc
3&CSingleDocTemplate::OpenDocumentFile=CSingleDocTemplate_OpenDocumentFile
3&CSingleDocTemplate::RemoveDocument=CSingleDocTemplate_RemoveDocument
3&CSingleDocTemplate::SetDefaultTitle=CSingleDocTemplate_SetDefaultTitle
2&CTreeView
3&The&CTreeView&Class=The_CTreeView_Class
3&CTreeView::CTreeView=CTreeView_CTreeView_constructor
3&CTreeView::GetTreeCtrl=CTreeView_GetTreeCtrl
3&CTreeView::OnDestroy=CTreeView_OnDestroy
3&CTreeView::PreCreateWindow=CTreeView_PreCreateWindow
3&CTreeView::RemoveImageList=CTreeView_RemoveImageList
3&The&CView&Class=The_CView_Class
3&CView::CView=CView_CView_constructor
3&CView::~CView=CView_CView_destructor
3&CView::AssertValid=CView_AssertValid
3&CView::CalcWindowRect=CView_CalcWindowRect
3&CView::DoPreparePrinting=CView_DoPreparePrinting
3&CView::DoPrintPreview=CView_DoPrintPreview
3&CView::Dump=CView_Dump
3&CView::GetDocument=CView_GetDocument
3&CView::GetParentSplitter=CView_GetParentSplitter
3&CView::GetScrollBarCtrl=CView_GetScrollBarCtrl
3&CView::OnActivateFrame=CView_OnActivateFrame
3&CView::OnActivateView=CView_OnActivateView
3&CView::OnBeginPrinting=CView_OnBeginPrinting
3&CView::OnCmdMsg=CView_OnCmdMsg
3&CView::OnCreate=CView_OnCreate
3&CView::OnDestroy=CView_OnDestroy
3&CView::OnDraw=CView_OnDraw
3&CView::OnEndPrinting=CView_OnEndPrinting
3&CView::OnEndPrintPreview=CView_OnEndPrintPreview
3&CView::OnFilePrint=CView_OnFilePrint
3&CView::OnFilePrintPreview=CView_OnFilePrintPreview
3&CView::OnInitialUpdate=CView_OnInitialUpdate
3&CView::OnMouseActivate=CView_OnMouseActivate
3&CView::OnNextPaneCmd=CView_OnNextPaneCmd
3&CView::OnPaint=CView_OnPaint
3&CView::OnPrepareDC=CView_OnPrepareDC
3&CView::OnPreparePrinting=CView_OnPreparePrinting
3&CView::OnPrint=CView_OnPrint
3&CView::OnSplitCmd=CView_OnSplitCmd
3&CView::OnUpdate=CView_OnUpdate
3&CView::OnUpdateNextPaneMenu=CView_OnUpdateNextPaneMenu
3&CView::OnUpdateSplitCmd=CView_OnUpdateSplitCmd
3&CView::PostNcDestroy=CView_PostNcDestroy
3&CView::PreCreateWindow=CView_PreCreateWindow
1&Chapter&7:&Frame&Windows
2&Chapter&7:&Frame&Windows=Chapter_7_Frame_Windows
2&CFrameWnd
3&The&CFrameWnd&Class=The_CFrameWnd_Class
3&CFrameWnd::CFrameWnd=CFrameWnd_CFrameWnd_constructor
3&CFrameWnd::~CFrameWnd=CFrameWnd_CFrameWnd_destructor
3&CFrameWnd::ActivateFrame=CFrameWnd_ActivateFrame
3&CFrameWnd::AddControlBar=CFrameWnd_AddControlBar
3&CFrameWnd::AddFrameWnd=CFrameWnd_AddFrameWnd
3&CFrameWnd::AssertValid=CFrameWnd_AssertValid
3&CFrameWnd::BeginModalState=CFrameWnd_BeginModalState
3&CFrameWnd::BringToTop=CFrameWnd_BringToTop
3&CFrameWnd::CanDock=CFrameWnd_CanDock
3&CFrameWnd::CanEnterHelpMode=CFrameWnd_CanEnterHelpMode
3&CFrameWnd::Create=CFrameWnd_Create
3&CFrameWnd::CreateView=CFrameWnd_CreateView
3&CFrameWnd::DelayRecalcLayout=CFrameWnd_DelayRecalcLayout
3&CFrameWnd::DelayUpdateFrameMenu=CFrameWnd_DelayUpdateFrameMenu
3&CFrameWnd::DelayUpdateFrameTitle=CFrameWnd_DelayUpdateFrameTitle
3&CFrameWnd::DestroyDockBars=CFrameWnd_DestroyDockBars
3&CFrameWnd::DockControlBar=CFrameWnd_DockControlBar
3&CFrameWnd::Dump=CFrameWnd_Dump
3&CFrameWnd::EnableDocking=CFrameWnd_EnableDocking
3&CFrameWnd::EndModalState=CFrameWnd_EndModalState
3&CFrameWnd::ExitHelpMode=CFrameWnd_ExitHelpMode
3&CFrameWnd::FloatControlBar=CFrameWnd_FloatControlBar
3&CFrameWnd::GetActiveDocument=CFrameWnd_GetActiveDocument
3&CFrameWnd::GetActiveFrame=CFrameWnd_GetActiveFrame
3&CFrameWnd::GetActiveView=CFrameWnd_GetActiveView
3&CFrameWnd::GetControlBar=CFrameWnd_GetControlBar
3&CFrameWnd::GetDefaultAccelerator=CFrameWnd_GetDefaultAccelerator
3&CFrameWnd::GetDockState=CFrameWnd_GetDockState
3&CFrameWnd::GetIconWndClass=CFrameWnd_GetIconWndClass
3&CFrameWnd::GetMessageBar=CFrameWnd_GetMessageBar
3&CFrameWnd::GetMessageString=CFrameWnd_GetMessageString
3&CFrameWnd::InitialUpdateFrame=CFrameWnd_InitialUpdateFrame
3&CFrameWnd::InModalState=CFrameWnd_InModalState
3&CFrameWnd::IsFrameWnd=CFrameWnd_IsFrameWnd
3&CFrameWnd::IsTracking=CFrameWnd_IsTracking
3&CFrameWnd::LoadAccelTable=CFrameWnd_LoadAccelTable
3&CFrameWnd::LoadBarState=CFrameWnd_LoadBarState
3&CFrameWnd::LoadFrame=CFrameWnd_LoadFrame
3&CFrameWnd::NegotiateBorderSpace=CFrameWnd_NegotiateBorderSpace
3&CFrameWnd::NotifyFloatingWindows=CFrameWnd_NotifyFloatingWindows
3&CFrameWnd::OnActivate=CFrameWnd_OnActivate
3&CFrameWnd::OnActivateApp=CFrameWnd_OnActivateApp
3&CFrameWnd::OnActivateTopLevel=CFrameWnd_OnActivateTopLevel
3&CFrameWnd::OnBarCheck=CFrameWnd_OnBarCheck
3&CFrameWnd::OnClose=CFrameWnd_OnClose
3&CFrameWnd::OnCmdMsg=CFrameWnd_OnCmdMsg
3&CFrameWnd::OnCommand=CFrameWnd_OnCommand
3&CFrameWnd::OnCommandHelp=CFrameWnd_OnCommandHelp
3&CFrameWnd::OnContextHelp=CFrameWnd_OnContextHelp
3&CFrameWnd::OnCreate=CFrameWnd_OnCreate
3&CFrameWnd::OnCreateClient=CFrameWnd_OnCreateClient
3&CFrameWnd::OnCreateHelper=CFrameWnd_OnCreateHelper
3&CFrameWnd::OnDDEExecute=CFrameWnd_OnDDEExecute
3&CFrameWnd::OnDDEInitiate=CFrameWnd_OnDDEInitiate
3&CFrameWnd::OnDDETerminate=CFrameWnd_OnDDETerminate
3&CFrameWnd::OnDestroy=CFrameWnd_OnDestroy
3&CFrameWnd::OnDropFiles=CFrameWnd_OnDropFiles
3&CFrameWnd::OnEnable=CFrameWnd_OnEnable
3&CFrameWnd::OnEnterIdle=CFrameWnd_OnEnterIdle
3&CFrameWnd::OnEraseBkgnd=CFrameWnd_OnEraseBkgnd
3&CFrameWnd::OnHelp=CFrameWnd_OnHelp
3&CFrameWnd::OnHelpHitTest=CFrameWnd_OnHelpHitTest
3&CFrameWnd::OnHScroll=CFrameWnd_OnHScroll
3&CFrameWnd::OnIdleUpdateCmdUI=CFrameWnd_OnIdleUpdateCmdUI
3&CFrameWnd::OnInitMenuPopup=CFrameWnd_OnInitMenuPopup
3&CFrameWnd::OnMenuSelect=CFrameWnd_OnMenuSelect
3&CFrameWnd::OnNcActivate=CFrameWnd_OnNcActivate
3&CFrameWnd::OnPaint=CFrameWnd_OnPaint
3&CFrameWnd::OnPaletteChanged=CFrameWnd_OnPaletteChanged
3&CFrameWnd::OnPopMessageString=CFrameWnd_OnPopMessageString
3&CFrameWnd::OnQueryEndSession=CFrameWnd_OnQueryEndSession
3&CFrameWnd::OnQueryNewPalette=CFrameWnd_OnQueryNewPalette
3&CFrameWnd::OnSetCursor=CFrameWnd_OnSetCursor
3&CFrameWnd::OnSetFocus=CFrameWnd_OnSetFocus
3&CFrameWnd::OnSetMessageString=CFrameWnd_OnSetMessageString
3&CFrameWnd::OnSetPreviewMode=CFrameWnd_OnSetPreviewMode
3&CFrameWnd::OnSize=CFrameWnd_OnSize
3&CFrameWnd::OnSysCommand=CFrameWnd_OnSysCommand
3&CFrameWnd::OnToolTipText=CFrameWnd_OnToolTipText
3&CFrameWnd::OnUpdateContextHelp=CFrameWnd_OnUpdateContextHelp
3&CFrameWnd::OnUpdateControlBarMenu=CFrameWnd_OnUpdateControlBarMenu
3&CFrameWnd::OnUpdateFrameMenu=CFrameWnd_OnUpdateFrameMenu
3&CFrameWnd::OnUpdateFrameTitle=CFrameWnd_OnUpdateFrameTitle
3&CFrameWnd::OnUpdateKeyIndicator=CFrameWnd_OnUpdateKeyIndicator
3&CFrameWnd::OnVScroll=CFrameWnd_OnVScroll
3&CFrameWnd::PostNcDestroy=CFrameWnd_PostNcDestroy
3&CFrameWnd::PreCreateWindow=CFrameWnd_PreCreateWindow
3&CFrameWnd::PreTranslateMessage=CFrameWnd_PreTranslateMessage
3&CFrameWnd::ProcessHelpMsg=CFrameWnd_ProcessHelpMsg
3&CFrameWnd::RecalcLayout=CFrameWnd_RecalcLayout
3&CFrameWnd::ReDockControlBar=CFrameWnd_ReDockControlBar
3&CFrameWnd::RemoveControlBar=CFrameWnd_RemoveControlBar
3&CFrameWnd::RemoveFrameWnd=CFrameWnd_RemoveFrameWnd
3&CFrameWnd::SaveBarState=CFrameWnd_SaveBarState
3&CFrameWnd::SetActiveView=CFrameWnd_SetActiveView
3&CFrameWnd::SetDockState=CFrameWnd_SetDockState
3&CFrameWnd::SetHelpCapture=CFrameWnd_SetHelpCapture
3&CFrameWnd::SetMessageText=CFrameWnd_SetMessageText
3&CFrameWnd::ShowControlBar=CFrameWnd_ShowControlBar
3&CFrameWnd::ShowOwnedWindows=CFrameWnd_ShowOwnedWindows
3&CFrameWnd::UpdateFrameTitleForDocument=CFrameWnd_UpdateFrameTitleForDocument
2&CMDIFrame
3&The&CMDIFrame&Class=The_CMDIFrame_Class
3&CMDIFrameWnd::CMDIFrameWnd=CMDIFrameWnd_CMDIFrameWnd
3&CMDIFrameWnd::AssertValid=CMDIFrameWnd_AssertValid
3&CMDIFrameWnd::CreateClient=CMDIFrameWnd_CreateClient
3&CMDIFrameWnd::DefWindowProc=CMDIFrameWnd_DefWindowProc
3&CMDIFrameWnd::DelayUpdateFrameMenu=CMDIFrameWnd_DelayUpdateFrameMenu
3&CMDIFrameWnd::Dump=CMDIFrameWnd_Dump
3&CMDIFrameWnd::GetActiveFrame=CMDIFrameWnd_GetActiveFrame
3&CMDIFrameWnd::GetWindowMenuPopup=CMDIFrameWnd_GetWindowMenuPopup
3&CMDIFrameWnd::LoadFrame=CMDIFrameWnd_LoadFrame
3&CMDIFrameWnd::MDIActivate=CMDIFrameWnd_MDIActivate
3&CMDIFrameWnd::MDICascade=CMDIFrameWnd_MDICascade
3&CMDIFrameWnd::MDIGetActive=CMDIFrameWnd_MDIGetActive
3&CMDIFrameWnd::MDIIconArrange=CMDIFrameWnd_MDIIconArrange
3&CMDIFrameWnd::MDIMaximize=CMDIFrameWnd_MDIMaximize
3&CMDIFrameWnd::MDINext=CMDIFrameWnd_MDINext
3&CMDIFrameWnd::MDIRestore=CMDIFrameWnd_MDIRestore
3&CMDIFrameWnd::MDISetMenu=CMDIFrameWnd_MDISetMenu
3&CMDIFrameWnd::MDITile=CMDIFrameWnd_MDITile
3&CMDIFrameWnd::OnCmdMsg=CMDIFrameWnd_OnCmdMsg
3&CMDIFrameWnd::OnCommand=CMDIFrameWnd_OnCommand
3&CMDIFrameWnd::OnCommandHelp=CMDIFrameWnd_OnCommandHelp
3&CMDIFrameWnd::OnCreateClient=CMDIFrameWnd_OnCreateClient
3&CMDIFrameWnd::OnDestroy=CMDIFrameWnd_OnDestroy
3&CMDIFrameWnd::OnIdleUpdateCmdUI=CMDIFrameWnd_OnIdleUpdateCmdUI
3&CMDIFrameWnd::OnMDIWindowCmd=CMDIFrameWnd_OnMDIWindowCmd
3&CMDIFrameWnd::OnSize=CMDIFrameWnd_OnSize
3&CMDIFrameWnd::OnUpdateFrameMenu=CMDIFrameWnd_OnUpdateFrameMenu
3&CMDIFrameWnd::OnUpdateFrameTitle=CMDIFrameWnd_OnUpdateFrameTitle
3&CMDIFrameWnd::OnUpdateMDIWindowCmd=CMDIFrameWnd_OnUpdateMDIWindowCmd
3&CMDIFrameWnd::PreCreateWindow=CMDIFrameWnd_PreCreateWindow
3&CMDIFrameWnd::PreTranslateMessage=CMDIFrameWnd_PreTranslateMessage
2&CMDIChildWnd
3&The&CMDIChildWnd&Class=The_CMDIChildWnd_Class
3&CMDIChildWnd::CMDIChildWnd=CMDIChildWnd_CMDIChildWnd_constructor
3&CMDIChildWnd::ActivateFrame=CMDIChildWnd_ActivateFrame
3&CMDIChildWnd::AssertValid=CMDIChildWnd_AssertValid
3&CMDIChildWnd::Create=CMDIChildWnd_Create
3&CMDIChildWnd::DefWindowProc=CMDIChildWnd_DefWindowProc
3&CMDIChildWnd::DestroyWindow=CMDIChildWnd_DestroyWindow
3&CMDIChildWnd::Dump=CMDIChildWnd_Dump
3&CMDIChildWnd::GetMDIFrame=CMDIChildWnd_GetMDIFrame
3&CMDIChildWnd::GetMessageBar=CMDIChildWnd_GetMessageBar
3&CMDIChildWnd::LoadFrame=CMDIChildWnd_LoadFrame
3&CMDIChildWnd::MDIActivate=CMDIChildWnd_MDIActivate
3&CMDIChildWnd::MDIDestroy=CMDIChildWnd_MDIDestroy
3&CMDIChildWnd::MDIMaximize=CMDIChildWnd_MDIMaximize
3&CMDIChildWnd::MDIRestore=CMDIChildWnd_MDIRestore
3&CMDIChildWnd::OnCreate=CMDIChildWnd_OnCreate
3&CMDIChildWnd::OnDestroy=CMDIChildWnd_OnDestroy
3&CMDIChildWnd::OnMDIActivate=CMDIChildWnd_OnMDIActivate
3&CMDIChildWnd::OnMouseActivate=CMDIChildWnd_OnMouseActivate
3&CMDIChildWnd::OnNcActivate=CMDIChildWnd_OnNcActivate
3&CMDIChildWnd::OnNcCreate=CMDIChildWnd_OnNcCreate
3&CMDIChildWnd::OnSize=CMDIChildWnd_OnSize
3&CMDIChildWnd::OnUpdateFrameMenu=CMDIChildWnd_OnUpdateFrameMenu
3&CMDIChildWnd::OnUpdateFrameTitle=CMDIChildWnd_OnUpdateFrameTitle
3&CMDIChildWnd::OnWindowPosChanging=CMDIChildWnd_OnWindowPosChanging
3&CMDIChildWnd::PreCreateWindow=CMDIChildWnd_PreCreateWindow
3&CMDIChildWnd::PreTranslateMessage=CMDIChildWnd_PreTranslateMessage
3&CMDIChildWnd::UpdateClientEdge=CMDIChildWnd_UpdateClientEdge
2&CMiniFrameWnd
3&The&CMiniFrameWnd&Class=The_CMiniFrameWnd_Class
3&CMiniFrameWnd::CMiniFrameWnd=CMiniFrameWnd_CMiniFrameWnd_constructor
3&CMiniFrameWnd::~CMiniFrameWnd=CMiniFrameWnd_CMiniFrameWnd_destructor
3&CMiniFrameWnd::CalcBorders=CMiniFrameWnd_CalcBorders
3&CMiniFrameWnd::CalcWindowRect=CMiniFrameWnd_CalcWindowRect
3&CMiniFrameWnd::Create=CMiniFrameWnd_Create
3&CMiniFrameWnd::CreateEx=CMiniFrameWnd_CreateEx
3&CMiniFrameWnd::Initialize=CMiniFrameWnd_Initialize
3&CMiniFrameWnd::InvertSysMenu=CMiniFrameWnd_InvertSysMenu
3&CMiniFrameWnd::OnFloatStatus=CMiniFrameWnd_OnFloatStatus
3&CMiniFrameWnd::OnGetMinMaxInfo=CMiniFrameWnd_OnGetMinMaxInfo
3&CMiniFrameWnd::OnGetText=CMiniFrameWnd_OnGetText
3&CMiniFrameWnd::OnGetTextLength=CMiniFrameWnd_OnGetTextLength
3&CMiniFrameWnd::OnLButtonUp=CMiniFrameWnd_OnLButtonUp
3&CMiniFrameWnd::OnMacintosh=CMiniFrameWnd_OnMacintosh
3&CMiniFrameWnd::OnMouseMove=CMiniFrameWnd_OnMouseMove
3&CMiniFrameWnd::OnNcActivate=CMiniFrameWnd_OnNcActivate
3&CMiniFrameWnd::OnNcCalcSize=CMiniFrameWnd_OnNcCalcSize
3&CMiniFrameWnd::OnNcCreate=CMiniFrameWnd_OnNcCreate
3&CMiniFrameWnd::OnNcHitTest=CMiniFrameWnd_OnNcHitTest
3&CMiniFrameWnd::OnNcLButtonDown=CMiniFrameWnd_OnNcLButtonDown
3&CMiniFrameWnd::OnNcPaint=CMiniFrameWnd_OnNcPaint
3&CMiniFrameWnd::OnQueryCenterWnd=CMiniFrameWnd_OnQueryCenterWnd
3&CMiniFrameWnd::OnSetText=CMiniFrameWnd_OnSetText
3&CMiniFrameWnd::OnSysCommand=CMiniFrameWnd_OnSysCommand
3&CMiniFrameWnd::PreCreateWindow=CMiniFrameWnd_PreCreateWindow
1&Chapter&8:&Dialog&Boxes
2&Chapter&8:&Dialog&Boxes=Chapter_8_Dialog_Boxes
3&The&CDialog&Class=The_CDialog_Class
3&CDialog::CDialog=CDialog_CDialog_constructor
3&CDialog::~CDialog=CDialog_CDialog_destructor
3&CDialog::AssertValid=CDialog_AssertValid
3&CDialog::CheckAutoCenter=CDialog_CheckAutoCenter
3&CDialog::Create=CDialog_Create
3&CDialog::CreateIndirect=CDialog_CreateIndirect
3&CDialog::DoModal=CDialog_DoModal
3&CDialog::Dump=CDialog_Dump
3&CDialog::EndDialog=CDialog_EndDialog
3&CDialog::GetDefID=CDialog_GetDefID
3&CDialog::GotoDlgCtrl=CDialog_GotoDlgCtrl
3&CDialog::HandleInitDialog=CDialog_HandleInitDialog
3&CDialog::HandleSetFont=CDialog_HandleSetFont
3&CDialog::InitModalIndirect=CDialog_InitModalIndirect
3&CDialog::MapDialogRect=CDialog_MapDialogRect
3&CDialog::NextDlgCtrl=CDialog_NextDlgCtrl
3&CDialog::OnCancel=CDialog_OnCancel
3&CDialog::OnCmdMsg=CDialog_OnCmdMsg
3&CDialog::OnCommandHelp=CDialog_OnCommandHelp
3&CDialog::OnCtlColor=CDialog_OnCtlColor
3&CDialog::OnHelpHitTest=CDialog_OnHelpHitTest
3&CDialog::OnInitDialog=CDialog_OnInitDialog
3&CDialog::OnOK=CDialog_OnOK
3&CDialog::OnSetFont=CDialog_OnSetFont
3&CDialog::OnSysColorChange=CDialog_OnSysColorChange
3&CDialog::PostModal=CDialog_PostModal
3&CDialog::PreInitDialog=CDialog_PreInitDialog
3&CDialog::PreModal=CDialog_PreModal
3&CDialog::PreTranslateMessage=CDialog_PreTranslateMessage
3&CDialog::PrevDlgCtrl=CDialog_PrevDlgCtrl
3&CDialog::SetDefID=CDialog_SetDefID
3&CDialog::SetHelpID=CDialog_SetHelpID
2&CPropertySheet
3&The&CPropertySheet&Class=The_CPropertySheet_Class
3&CPropertySheet::CPropertySheet=CPropertySheet_CPropertySheet_constructor
3&CPropertySheet::~CPropertySheet=CPropertySheet_CPropertySheet_destructor
3&CPropertySheet::AddPage=CPropertySheet_AddPage
3&CPropertySheet::AssertValid=CPropertySheet_AssertValid
3&CPropertySheet::BuildPropPageArray=CPropertySheet_BuildPropPageArray
3&CPropertySheet::CommonConstruct=CPropertySheet_CommonConstruct
3&CPropertySheet::Construct=CPropertySheet_Construct
3&CPropertySheet::ContinueModal=CPropertySheet_ContinueModal
3&CPropertySheet::Create=CPropertySheet_Create
3&CPropertySheet::DoModal=CPropertySheet_DoModal
3&CPropertySheet::Dump=CPropertySheet_Dump
3&CPropertySheet::EnableStackedTabs=CPropertySheet_EnableStackedTabs
3&CPropertySheet::EndDialog=CPropertySheet_EndDialog
3&CPropertySheet::GetActiveIndex=CPropertySheet_GetActiveIndex
3&CPropertySheet::GetActivePage=CPropertySheet_GetActivePage
3&CPropertySheet::GetPage=CPropertySheet_GetPage
3&CPropertySheet::GetPageCount=CPropertySheet_GetPageCount
3&CPropertySheet::GetPageIndex=CPropertySheet_GetPageIndex
3&CPropertySheet::GotoControl=CPropertySheet_GotoControl
3&CPropertySheet::GetTabControl=CPropertySheet_GetTabControl
3&CPropertySheet::HandleInitDialog=CPropertySheet_HandleInitDialog
3&CPropertySheet::OnClose=CPropertySheet_OnClose
3&CPropertySheet::OnCmdMsg=CPropertySheet_OnCmdMsg
3&CPropertySheet::OnCommand=CPropertySheet_OnCommand
3&CPropertySheet::OnCommandHelp=CPropertySheet_OnCommandHelp
3&CPropertySheet::OnCtlColor=CPropertySheet_OnCtlColor
3&CPropertySheet::OnInitDialog=CPropertySheet_OnInitDialog
3&CPropertySheet::OnNcCreate=CPropertySheet_OnNcCreate
3&CPropertySheet::OnSetDefID=CPropertySheet_OnSetDefID
3&CPropertySheet::OnSysCommand=CPropertySheet_OnSysCommand
3&CPropertySheet::PressButton=CPropertySheet_PressButton
3&CPropertySheet::PreTranslateMessage=CPropertySheet_PreTranslateMessage
3&CPropertySheet::RemovePage=CPropertySheet_RemovePage
3&CPropertySheet::SetActivePage=CPropertySheet_SetActivePage
3&CPropertySheet::SetFinishText=CPropertySheet_SetFinishText
3&CPropertySheet::SetTitle=CPropertySheet_SetTitle
3&CPropertySheet::SetWizardButtons=CPropertySheet_SetWizardButtons
3&CPropertySheet::SetWizardMode=CPropertySheet_SetWizardMode
2&CPropertyPage
3&The&CPropertyPage&Class=The_CPropertyPage_Class
3&CPropertyPage::CPropertyPage=CPropertyPage_CPropertyPage_constructor
3&CPropertyPage::~CPropertyPage=CPropertyPage_CPropertyPage_destructor
3&CPropertyPage::AssertValid=CPropertyPage_AssertValid
3&CPropertyPage::CancelToClose=CPropertyPage_CancelToClose
3&CPropertyPage::CommonConstruct=CPropertyPage_CommonConstruct
3&CPropertyPage::Construct=CPropertyPage_Construct
3&CPropertyPage::Dump=CPropertyPage_Dump
3&CPropertyPage::EndDialog=CPropertyPage_EndDialog
3&CPropertyPage::OnApply=CPropertyPage_OnApply
3&CPropertyPage::OnCancel=CPropertyPage_OnCancel
3&CPropertyPage::OnCtlColor=CPropertyPage_OnCtlColor
3&CPropertyPage::OnKillActive=CPropertyPage_OnKillActive
3&CPropertyPage::OnNotify=CPropertyPage_OnNotify
3&CPropertyPage::OnOK=CPropertyPage_OnOK
3&CPropertyPage::OnQueryCancel=CPropertyPage_OnQueryCancel
3&CPropertyPage::OnReset=CPropertyPage_OnReset
3&CPropertyPage::OnSetActive=CPropertyPage_OnSetActive
3&CPropertyPage::OnWizardBack=CPropertyPage_OnWizardBack
3&CPropertyPage::OnWizardFinish=CPropertyPage_OnWizardFinish
3&CPropertyPage::OnWizardNext=CPropertyPage_OnWizardNext
3&CPropertyPage::QuerySiblings=CPropertyPage_QuerySiblings
3&CPropertyPage::SetModified=CPropertyPage_SetModified
2&CDataExchange
3&The&CDataExchange&Class=The_CDataExchange_Class
3&CDataExchange::CDataExchange=CDataExchange_CDataExchange_constructor
3&CDataExchange::Fail=CDataExchange_Fail
3&CDataExchange::PrepareCtrl=CDataExchange_PrepareCtrl
3&CDataExchange::PrepareEditCtrl=CDataExchange_PrepareEditCtrl
2&DDX/DDV&Functions
3&DDX/DDV&Functions=DDX_DDV_Functions
3&DDV_MaxChars=DDV_MaxChars
3&DDV_MinMaxByte=DDV_MinMaxByte
3&DDV_MinMaxDouble=DDV_MinMaxDouble
3&DDV_MinMaxDWord=DDV_MinMaxDWord
3&DDV_MinMaxFloat=DDV_MinMaxFloat
3&DDV_MinMaxInt=DDV_MinMaxInt
3&DDV_MinMaxLong=DDV_MinMaxLong
3&DDV_MinMaxUInt=DDV_MinMaxUInt
3&DDX_CBIndex=DDX_CBIndex
3&DDX_CBString=DDX_CBString
3&DDX_CBStringExact=DDX_CBStringExact
3&DDX_Check=DDX_Check
3&DDX_Control=DDX_Control
3&DDX_LBIndex=DDX_LBIndex
3&DDX_LBString=DDX_LBString
3&DDX_LBStringExact=DDX_LBStringExact
3&DDX_Radio=DDX_Radio
3&DDX_Scroll=DDX_Scroll
3&DDX_Text=DDX_Text
2&CCommonDialog
3&The&CCommonDialog&Class=The_CCommonDialog_Class
3&CCommonDialog::CCommonDialog=CCommonDialog_CCommonDialog_constructor
3&CCommonDialog::OnOK=CCommonDialog_OnOK
3&CCommonDialog::OnCancel=CCommonDialog_OnCancel
2&CFileDialog
3&The&CFileDialog&Class=The_CFileDialog_Class
3&CFileDialog::CFileDialog=CFileDialog_CFileDialog_constructor
3&CFileDialog::DoModal=CFileDialog_DoModal
3&CFileDialog::Dump=CFileDialog_Dump
3&CFileDialog::GetFileExt=CFileDialog_GetFileExt
3&CFileDialog::GetFileName=CFileDialog_GetFileName
3&CFileDialog::GetFileTitle=CFileDialog_GetFileTitle
3&CFileDialog::GetFolderPath=CFileDialog_GetFolderPath
3&CFileDialog::GetNextPathName=CFileDialog_GetNextPathName
3&CFileDialog::GetPathName=CFileDialog_GetPathName
3&CFileDialog::GetReadOnlyPref=CFileDialog_GetReadOnlyPref
3&CFileDialog::GetStartPosition=CFileDialog_GetStartPosition
3&CFileDialog::HideControl=CFileDialog_HideControl
3&CFileDialog::OnFileNameChange=CFileDialog_OnFileNameChange
3&CFileDialog::OnFileNameOK=CFileDialog_OnFileNameOK
3&CFileDialog::OnFolderChange=CFileDialog_OnFolderChange
3&CFileDialog::OnInitDone=CFileDialog_OnInitDone
3&CFileDialog::OnNotify=CFileDialog_OnNotify
3&CFileDialog::OnTypeChange=CFileDialog_OnTypeChange
3&CFileDialog::OnShareViolation=CFileDialog_OnShareViolation
3&CFileDialog::SetControlText=CFileDialog_SetControlText
3&CFileDialog::SetDefExt=CFileDialog_SetDefExt
3&CFileDialog::SetTemplate=CFileDialog_SetTemplate
2&CColorDialog
3&The&CColorDialog&Class=The_CColorDialog_Class
3&CColorDialog::CColorDialog=CColorDialog_CColorDialog_constructor
3&CColorDialog::DoModal=CColorDialog_DoModal
3&CColorDialog::Dump=CColorDialog_Dump
3&CColorDialog::GetColor=CColorDialog_GetColor
3&CColorDialog::GetSavedCustomColors=CColorDialog_GetSavedCustomColors
3&CColorDialog::OnColorOK=CColorDialog_OnColorOK
3&CColorDialog::OnCtlColor=CColorDialog_OnCtlColor
3&CColorDialog::SetCurrentColor=CColorDialog_SetCurrentColor
2&CFontDialog
3&The&CFontDialog&Class=The_CFontDialog_Class
3&CFontDialog::CFontDialog=CFontDialog_CFontDialog_constructor
3&CFontDialog::DoModal=CFontDialog_DoModal
3&CFontDialog::Dump=CFontDialog_Dump
3&CFontDialog::FillInLogFont=CFontDialog_FillInLogFont
3&CFontDialog::GetCharFormat=CFontDialog_GetCharFormat
3&CFontDialog::GetColor=CFontDialog_GetColor
3&CFontDialog::GetCurrentFont=CFontDialog_GetCurrentFont
3&CFontDialog::GetFaceName=CFontDialog_GetFaceName
3&CFontDialog::GetSize=CFontDialog_GetSize
3&CFontDialog::GetStyleName=CFontDialog_GetStyleName
3&CFontDialog::GetWeight=CFontDialog_GetWeight
3&CFontDialog::IsBold=CFontDialog_IsBold
3&CFontDialog::IsItalic=CFontDialog_IsItalic
3&CFontDialog::IsStrikeOut=CFontDialog_IsStrikeOut
3&CFontDialog::IsUnderline=CFontDialog_IsUnderline
2&CPageSetup
3&The&CPageSetup&Class=The_CPageSetup_Class
3&CPageSetupDialog::CPageSetupDialog=CPageSetupDialog_CPageSetupDialog_constructor
3&CPageSetupDialog::CreatePrinterDC=CPageSetupDialog_CreatePrinterDC
3&CPageSetupDialog::DoModal=CPageSetupDialog_DoModal
3&CPageSetupDialog::Dump=CPageSetupDialog_Dump
3&CPageSetupDialog::GetDeviceName=CPageSetupDialog_GetDeviceName
3&CPageSetupDialog::GetDevMode=CPageSetupDialog_GetDevMode
3&CPageSetupDialog::GetDriverName=CPageSetupDialog_GetDriverName
3&CPageSetupDialog::GetMargins=CPageSetupDialog_GetMargins
3&CPageSetupDialog::GetPaperSize=CPageSetupDialog_GetPaperSize
3&CPageSetupDialog::GetPortName=CPageSetupDialog_GetPortName
3&CPageSetupDialog::OnDrawPage=CPageSetupDialog_OnDrawPage
3&CPageSetupDialog::PaintHookProc=CPageSetupDialog_PaintHookProc
3&CPageSetupDialog::PreDrawPage=CPageSetupDialog_PreDrawPage
2&CPrintDialog
3&The&CPrintDialog&Class=The_CPrintDialog_Class
3&CPrintDialog::CPrintDialog=CPrintDialog_CPrintDialog_constructor
3&CPrintDialog::AttachOnSetup=CPrintDialog_AttachOnSetup
3&CPrintDialog::CreatePrinterDC=CPrintDialog_CreatePrinterDC
3&CPrintDialog::DoModal=CPrintDialog_DoModal
3&CPrintDialog::Dump=CPrintDialog_Dump
3&CPrintDialog::GetCopies=CPrintDialog_GetCopies
3&CPrintDialog::GetDefaults=CPrintDialog_GetDefaults
3&CPrintDialog::GetDeviceName=CPrintDialog_GetDeviceName
3&CPrintDialog::GetDevMode=CPrintDialog_GetDevMode
3&CPrintDialog::GetDriverName=CPrintDialog_GetDriverName
3&CPrintDialog::GetFromPage=CPrintDialog_GetFromPage
3&CPrintDialog::GetPortName=CPrintDialog_GetPortName
3&CPrintDialog::GetPrinterDC=CPrintDialog_GetPrinterDC
3&CPrintDialog::GetToPage=CPrintDialog_GetToPage
3&CPrintDialog::OnPrintSetup=CPrintDialog_OnPrintSetup
3&CPrintDialog::PrintAll=CPrintDialog_PrintAll
3&CPrintDialog::PrintCollate=CPrintDialog_PrintCollate
3&CPrintDialog::PrintRange=CPrintDialog_PrintRange
3&CPrintDialog::PrintSelection=CPrintDialog_PrintSelection
2&CFindReplaceDialog
3&The&CFindReplaceDialog&Class=The_CFindReplaceDialog_Class
3&CFindReplaceDialog::CFindReplaceDialog=CFindReplaceDialog_CFindReplaceDialog_constructor
3&CFindReplaceDialog::Create=CFindReplaceDialog_Create
3&CFindReplaceDialog::Dump=CFindReplaceDialog_Dump
3&CFindReplaceDialog::FindNext=CFindReplaceDialog_FindNext
3&CFindReplaceDialog::GetFindString=CFindReplaceDialog_GetFindString
3&CFindReplaceDialog::GetNotifier=CFindReplaceDialog_GetNotifier
3&CFindReplaceDialog::GetReplaceString=CFindReplaceDialog_GetReplaceString
3&CFindReplaceDialog::IsTerminating=CFindReplaceDialog_IsTerminating
3&CFindReplaceDialog::MatchCase=CFindReplaceDialog_MatchCase
3&CFindReplaceDialog::MatchWholeWord=CFindReplaceDialog_MatchWholeWord
3&CFindReplaceDialog::PostNcDestroy=CFindReplaceDialog_PostNcDestroy
3&CFindReplaceDialog::ReplaceAll=CFindReplaceDialog_ReplaceAll
3&CFindReplaceDialog::ReplaceCurrent=CFindReplaceDialog_ReplaceCurrent
3&CFindReplaceDialog::SearchDown=CFindReplaceDialog_SearchDown
1&Chapter&9:&Windows&Controls
2&Chapter&9:&Windows&Controls=Chapter_9_Windows_Controls
2&CAnimateCtrl
3&CAnimateCtrl=CAnimateCtrl
3&CAnimateCtrl::CAnimateCtrl=CAnimateCtrl_CAnimateCtrl_constructor
3&CAnimateCtrl::~CAnimateCtrl=CAnimateCtrl_CAnimateCtrl_destructor
3&CAnimateCtrl::Close=CAnimateCtrl_Close
3&CAnimateCtrl::Create=CAnimateCtrl_Create
3&CAnimateCtrl::Open=CAnimateCtrl_Open
3&CAnimateCtrl::Play=CAnimateCtrl_Play
3&CAnimateCtrl::Seek=CAnimateCtrl_Seek
3&CAnimateCtrl::Stop=CAnimateCtrl_Stop
3&CButton=CButton
3&CButton::CButton=CButton_CButton_constructor
3&CButton::~CButton=CButton_CButton_destructor
3&CButton::Create=CButton_Create
3&CButton::DrawItem=CButton_DrawItem
3&CButton::GetBitmap=CButton_GetBitmap
3&CButton::GetButtonStyle=CButton_GetButtonStyle
3&CButton::GetCheck=CButton_GetCheck
3&CButton::GetCursor=CButton_GetCursor
3&CButton::GetIcon=CButton_GetIcon
3&CButton::GetState=CButton_GetState
3&CButton::OnChildNotify=CButton_OnChildNotify
3&CButton::SetBitmap=CButton_SetBitmap
3&CButton::SetButtonStyle=CButton_SetButtonStyle
3&CButton::SetCheck=CButton_SetCheck
3&CButton::SetCursor=CButton_SetCursor
3&CButton::SetIcon=CButton_SetIcon
3&CButton::SetState=CButton_SetState
2&CComboBox
3&CComboBox=CComboBox
3&CComboBox::CComboBox=CComboBox_CComboBox_constructor
3&CComboBox::~CComboBox=CComboBox_CComboBox_destructor
3&CComboBox::AddString=CComboBox_AddString
3&CComboBox::Clear=CComboBox_Clear
3&CComboBox::CompareItem=CComboBox_CompareItem
3&CComboBox::Copy=CComboBox_Copy
3&CComboBox::Create=CComboBox_Create
3&CComboBox::Cut=CComboBox_Cut
3&CComboBox::DeleteItem=CComboBox_DeleteItem
3&CComboBox::DeleteString=CComboBox_DeleteString
3&CComboBox::Dir=CComboBox_Dir
3&CComboBox::DrawItem=CComboBox_DrawItem
3&CComboBox::FindString=CComboBox_FindString
3&CComboBox::FindStringExact=CComboBox_FindStringExact
3&CComboBox::GetCount=CComboBox_GetCount
3&CComboBox::GetCurSel=CComboBox_GetCurSel
3&CComboBox::GetDroppedControlRect=CComboBox_GetDroppedControlRect
3&CComboBox::GetDroppedState=CComboBox_GetDroppedState
3&CComboBox::GetDroppedWidth=CComboBox_GetDroppedWidth
3&CComboBox::GetEditSel=CComboBox_GetEditSel
3&CComboBox::GetExtendedUI=CComboBox_GetExtendedUI
3&CComboBox::GetHorizontalExtent=CComboBox_GetHorizontalExtent
3&CComboBox::GetItemData=CComboBox_GetItemData
3&CComboBox::GetItemDataPtr=CComboBox_GetItemDataPtr
3&CComboBox::GetItemHeight=CComboBox_GetItemHeight
3&CComboBox::GetLBText=CComboBox_GetLBText
3&CComboBox::GetLBTextLen=CComboBox_GetLBTextLen
3&CComboBox::GetLocale=CComboBox_GetLocale
3&CComboBox::GetTopIndex=CComboBox_GetTopIndex
3&CComboBox::InitStorage=CComboBox_InitStorage
3&CComboBox::InsertString=CComboBox_InsertString
3&CComboBox::LimitText=CComboBox_LimitText
3&CComboBox::MeasureItem=CComboBox_MeasureItem
3&CComboBox::OnChildNotify=CComboBox_OnChildNotify
3&CComboBox::Paste=CComboBox_Paste
3&CComboBox::ResetContent=CComboBox_ResetContent
3&

我要回帖

更多关于 同比和环比的区别 的文章

 

随机推荐