📄 ticketview.h
字号:
// TicketView.h : interface of the CTicketView class
//
/////////////////////////////////////////////////////////////////////////////
#if !defined(AFX_TICKETVIEW_H__1AAE0C23_2726_4AA6_A33A_4528120CB895__INCLUDED_)
#define AFX_TICKETVIEW_H__1AAE0C23_2726_4AA6_A33A_4528120CB895__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CTicketView : public CListView
{
protected: // create from serialization only
CTicketView();
DECLARE_DYNCREATE(CTicketView)
// Attributes
public:
CTicketDoc* GetDocument();
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CTicketView)
public:
virtual void OnDraw(CDC* pDC); // overridden to draw this view
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
protected:
virtual void OnInitialUpdate(); // called first time after construct
virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
//}}AFX_VIRTUAL
// Implementation
public:
int m_ShowID;
CBus* m_pBus;
virtual ~CTicketView();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected:
// Generated message map functions
protected:
//{{AFX_MSG(CTicketView)
afx_msg void OnCreateBus();
afx_msg void OnSellTic();
afx_msg void OnReturnTic();
afx_msg void OnViewBuslist();
afx_msg void OnViewBus();
afx_msg void OnViewPassenger();
afx_msg void OnUpdateViewBuslist(CCmdUI* pCmdUI);
afx_msg void OnUpdateViewBus(CCmdUI* pCmdUI);
afx_msg void OnUpdateViewPassenger(CCmdUI* pCmdUI);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
#ifndef _DEBUG // debug version in TicketView.cpp
inline CTicketDoc* CTicketView::GetDocument()
{ return (CTicketDoc*)m_pDocument; }
#endif
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_TICKETVIEW_H__1AAE0C23_2726_4AA6_A33A_4528120CB895__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -