📄 qqwview.cpp
字号:
// qqwView.cpp : implementation of the CQqwView class
//
#include "stdafx.h"
#include "qqw.h"
#include "qqwSet.h"
#include "qqwDoc.h"
#include "qqwView.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CQqwView
IMPLEMENT_DYNCREATE(CQqwView, CRecordView)
BEGIN_MESSAGE_MAP(CQqwView, CRecordView)
//{{AFX_MSG_MAP(CQqwView)
//ON_BN_CLICKED(IDC_BUTTON1, Onaddnew)
ON_BN_CLICKED(IDC_BUTTON_addnew, OnBUTTONaddnew)
//}}AFX_MSG_MAP
// Standard printing commands
ON_COMMAND(ID_FILE_PRINT, CRecordView::OnFilePrint)
ON_COMMAND(ID_FILE_PRINT_DIRECT, CRecordView::OnFilePrint)
ON_COMMAND(ID_FILE_PRINT_PREVIEW, CRecordView::OnFilePrintPreview)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CQqwView construction/destruction
CQqwView::CQqwView()
: CRecordView(CQqwView::IDD)
{
//{{AFX_DATA_INIT(CQqwView)
// NOTE: the ClassWizard will add member initialization here
m_pSet = NULL;
//}}AFX_DATA_INIT
// TODO: add construction code here
}
CQqwView::~CQqwView()
{
}
void CQqwView::DoDataExchange(CDataExchange* pDX)
{
CRecordView::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CQqwView)
// NOTE: the ClassWizard will add DDX and DDV calls here
//}}AFX_DATA_MAP
}
BOOL CQqwView::PreCreateWindow(CREATESTRUCT& cs)
{
// TODO: Modify the Window class or styles here by modifying
// the CREATESTRUCT cs
return CRecordView::PreCreateWindow(cs);
}
void CQqwView::OnInitialUpdate()
{
m_pSet = &GetDocument()->m_qqwSet;
CRecordView::OnInitialUpdate();
GetParentFrame()->RecalcLayout();
ResizeParentToFit();
}
/////////////////////////////////////////////////////////////////////////////
// CQqwView printing
BOOL CQqwView::OnPreparePrinting(CPrintInfo* pInfo)
{
// default preparation
return DoPreparePrinting(pInfo);
}
void CQqwView::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
{
// TODO: add extra initialization before printing
}
void CQqwView::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
{
// TODO: add cleanup after printing
}
/////////////////////////////////////////////////////////////////////////////
// CQqwView diagnostics
#ifdef _DEBUG
void CQqwView::AssertValid() const
{
CRecordView::AssertValid();
}
void CQqwView::Dump(CDumpContext& dc) const
{
CRecordView::Dump(dc);
}
CQqwDoc* CQqwView::GetDocument() // non-debug version is inline
{
ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CQqwDoc)));
return (CQqwDoc*)m_pDocument;
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CQqwView database support
CRecordset* CQqwView::OnGetRecordset()
{
return m_pSet;
}
/////////////////////////////////////////////////////////////////////////////
// CQqwView message handlers
void CQqwView::Onaddnew()
{
// TODO: Add your control notification handler code here
}
void CQqwView::OnBUTTONaddnew()
{
// TODO: Add your control notification handler code here
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -