popupview.cpp

来自「用bcg库编写的java IDE 源码」· C++ 代码 · 共 44 行

CPP
44
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?