📄 popupview.cpp
字号:
// PopUpView.cpp: implementation of the CPopUpView class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "VisualJava.h"
#include "PopUpView.h"
#include "PopUpDocument.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
IMPLEMENT_DYNCREATE(CPopUpView, CBGFEditView)
CPopUpView::CPopUpView()
{
}
CPopUpView::~CPopUpView()
{
}
#ifdef _DEBUG
CPopUpDocument* CPopUpView::GetDocument() // non-debug version is inline
{
ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CPopUpDocument)));
return (CPopUpDocument*)m_pDocument;
}
#endif //_DEBUG
CCrystalTextBuffer *CPopUpView::LocateTextBuffer()
{
return (CCrystalTextBuffer*)GetDocument ()->m_pTextBuffer;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -