138 lines
3.2 KiB
C++
138 lines
3.2 KiB
C++
// UserView.h : interface of the CUserView class
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#if !defined(AFX_USERVIEW_H__1F4B491E_AC6F_4326_8092_E7CFED813D64__INCLUDED_)
|
|
#define AFX_USERVIEW_H__1F4B491E_AC6F_4326_8092_E7CFED813D64__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
|
|
//#include "SmsManagerDoc.h"
|
|
//#include "reportctrl\ReportCtrl.h"
|
|
#include "InfoDlg.h"
|
|
#include "UserDlg.h"
|
|
#include "SPDlg.h"
|
|
#include "TSCmdDlg.h"
|
|
#include "ManagerDlg.h"
|
|
#include "FiltDlg.h"
|
|
#include "CheckupDlg.h"
|
|
#include "TabDlg.h"
|
|
#include "ListDlg.h"
|
|
#include "Back.h"
|
|
#include "OtherDlg.h"
|
|
#include "K_Agent.h"
|
|
#include "K_KHCard.h"
|
|
#include "K_CJCard.h"
|
|
#include "K_BBS.h"
|
|
#include "K_SWTSQ.h"
|
|
#include "HZBDlg.h"
|
|
#include "C_Pay.h"
|
|
#include "C_JCB.h"
|
|
#include "C_User.h"
|
|
#include "K_BBSU.h"
|
|
#include "DLG_C_GG.h"
|
|
#include "C_MyPay.h"
|
|
#include "K_YWMsg.h"
|
|
#include "K_GZMsg.h"
|
|
#include "C_FPQuery.h"
|
|
#include "CC_SFQuery.h"
|
|
#include "CK_AllQuery_Report.h"
|
|
|
|
|
|
class CMainFrame;
|
|
class CUserView : public CView
|
|
{
|
|
public:
|
|
CInfoDlg m_dlgInfo;
|
|
CUserDlg m_dlgUser;
|
|
CSPDlg m_dlgSP;
|
|
CTSCmdDlg m_dlgTSCmd;
|
|
CManagerDlg m_dlgManager;
|
|
CFiltDlg m_dlgFilt;
|
|
CCheckupDlg m_dlgCheckup;
|
|
CTabDlg m_dlgTab;
|
|
CC_Pay m_dlgPay;
|
|
CC_JCB m_dlgJCB;
|
|
CC_User m_dlgUser2;
|
|
CListDlg m_dlgList;
|
|
CBack m_dlgBack;
|
|
COtherDlg m_dlgOther;
|
|
CK_Agent m_dlgAgent;
|
|
CK_KHCard m_dlgKHCard;
|
|
CK_CJCard m_dlgCJCard;
|
|
CK_SWTSQ m_dlgSWTSQ;
|
|
CK_BBS m_dlgBBS;
|
|
CK_BBSU m_dlgBBSU;
|
|
CHZBDlg m_dlgHZB;
|
|
DLG_C_GG m_dlgGG;
|
|
CC_MyPay m_dlgMyPay;
|
|
CK_YWMsg m_dlgYWMsg;
|
|
CK_GZMsg m_dlgGZMsg;
|
|
CC_FPQuery m_dlgFPQuery;
|
|
CC_SFQuery m_dlgSFQuery;
|
|
CK_AllQuery_Report m_dlgAllQuery_Report;
|
|
|
|
|
|
long m_lCurFunc;
|
|
|
|
protected:
|
|
CMainFrame * m_pMainFrame;
|
|
|
|
protected: // create from serialization only
|
|
CUserView();
|
|
DECLARE_DYNCREATE(CUserView)
|
|
|
|
// Attributes
|
|
public:
|
|
CSmsManagerDoc* GetDocument();
|
|
|
|
// Operations
|
|
public:
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(CUserView)
|
|
public:
|
|
virtual void OnDraw(CDC* pDC); // overridden to draw this view
|
|
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
|
|
virtual void OnInitialUpdate();
|
|
protected:
|
|
virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
|
|
virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
|
|
virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
public:
|
|
BOOL ShowFuncDlg( long lIndex );
|
|
virtual ~CUserView();
|
|
#ifdef _DEBUG
|
|
virtual void AssertValid() const;
|
|
virtual void Dump(CDumpContext& dc) const;
|
|
#endif
|
|
|
|
protected:
|
|
|
|
// Generated message map functions
|
|
protected:
|
|
//{{AFX_MSG(CUserView)
|
|
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
|
|
afx_msg void OnSize(UINT nType, int cx, int cy);
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
#ifndef _DEBUG // debug version in UserView.cpp
|
|
inline CSmsManagerDoc* CUserView::GetDocument()
|
|
{ return (CSmsManagerDoc*)m_pDocument; }
|
|
#endif
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
//{{AFX_INSERT_LOCATION}}
|
|
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|
|
|
|
#endif // !defined(AFX_USERVIEW_H__1F4B491E_AC6F_4326_8092_E7CFED813D64__INCLUDED_)
|