superworlddlg.h

来自「一个操作系统源代码」· C头文件 代码 · 共 81 行

H
81
字号
// SuperWorldDlg.h : header file
//

#if !defined(AFX_SUPERWORLDDLG_H__3B63DC2D_E957_403E_9D27_F5E49F3069B5__INCLUDED_)
#define AFX_SUPERWORLDDLG_H__3B63DC2D_E957_403E_9D27_F5E49F3069B5__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

/////////////////////////////////////////////////////////////////////////////
// CSuperWorldDlg dialog
#include "BookDialog.h"
#include "WorldDialog.h"
#include "GameDialog.h"
#include "CountDialog.h"
#include "PageDialog.h"
#include "FavDialog.h"
#include "BtnST.h"


class CSuperWorldDlg : public CDialog
{
// Construction
public:
	CSuperWorldDlg(CWnd* pParent = NULL);	// standard constructor

	CBookDialog m_hBookDialog;
	CWorldDialog m_hWorldDialog;
	CFavDialog m_hFavDialog;
	CGameDialog m_hGameDialog;
	CCountDialog m_hCountDialog;
	CPageDialog m_hPageDialog;

	CButtonST m_btnBook;
    CButtonST m_btnButton2;
	CButtonST m_btnButton3;
	CButtonST m_btnButton4;
	CButtonST m_btnButton5;
	CButtonST m_btnButton6;
	CButtonST m_btnExit;

	void CreateSuperDialog();
// Dialog Data
	//{{AFX_DATA(CSuperWorldDlg)
	enum { IDD = IDD_SUPERWORLD_DIALOG };
	CButton	m_static;
	//}}AFX_DATA

	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CSuperWorldDlg)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);	// DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	HICON m_hIcon;

	// Generated message map functions
	//{{AFX_MSG(CSuperWorldDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	afx_msg void OnButtonWorld();
	afx_msg void OnButtonBook();
	virtual void OnCancel();
	afx_msg void OnButtonPage();
	afx_msg void OnButtonCount();
	afx_msg void OnButtonGame();
	afx_msg void OnButtonHome();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_SUPERWORLDDLG_H__3B63DC2D_E957_403E_9D27_F5E49F3069B5__INCLUDED_)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?