⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 munpalistdialog.h

📁 墨香最新私服
💻 H
字号:
// MunpaListDialog.h: interface for the CMunpaListDialog class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_MUNPALISTDIALOG_H__18194DD2_3FC3_47F9_AEA3_C8E4EE0D57FE__INCLUDED_)
#define AFX_MUNPALISTDIALOG_H__18194DD2_3FC3_47F9_AEA3_C8E4EE0D57FE__INCLUDED_

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


#include "./Interface/cDialog.h"

class cListCtrl;
class cEditBox;
class cComboBox;
class cStatic;

class CMunpaListDialog : public cDialog  
{	
	DWORD m_StartMunpaIDX;
	DWORD m_CurPage;
	DWORD m_PastPage; //ÆäÀÌÁö¸¦ ´­·¶´Âµ¥ °á°ú°ªÀÌ ¾øÀ¸¸é ÀÌ º¯¼ö¸¦ m_CurPage¿¡ ¼ÂÆÃÇÑ´Ù. 
	int m_OrderType;
	DWORD m_TotalResultNum;
	

	cButton* m_pCreateBtn;
	cButton* m_pMyMunpaBtn;
	cButton* m_pNewestPageBtn;
	cButton* m_pSearchBtn;

	cButton* m_pMunpaListPageBtn[MAX_MUNPA_PAGEBTN];

	cEditBox* m_pSearchEdit;
	cComboBox* m_pOrderCombo;

//	cStatic* m_pLocation;
	cStatic* m_pMyLocation;
//	cStatic* m_pOrder;

	cListCtrl* m_pMunpaList;

	friend class CMunpaManager;
public:
	CMunpaListDialog();
	virtual ~CMunpaListDialog();

	void Init(LONG x, LONG y, WORD wid, WORD hei, cImage * basicImage, LONG ID=0);

	void Linking();
	virtual void SetActive( BOOL val );
	
	void UpdateData();
	void RefreshDlg();

	void ShowNonMunpa();
	void ShowMunpa();

	void SetMunpaListInfo(int listnum,MUNPALISTINFO* pInfo);

	void SetCurPage(int PageNum);
	int GetCurPage()			{	return m_CurPage;		}
	void ResetCurPage();

	void SetOrderType(int OrderType){	m_OrderType = OrderType;	}
	void GetOrderType(char* type);
	
	void DelListAllInfo();
	virtual DWORD ActionEvent(CMouse * mouseInfo);

	void SetTotalResultNum(DWORD TotalNum);
	DWORD GetTotalResultNum() { return m_TotalResultNum; }

	void SetMunpaList(SEND_MUNPA_INFO* pInfo);
	void ShowMunpaListPageBtn(DWORD TotalPage);
};

#endif // !defined(AFX_MUNPALISTDIALOG_H__18194DD2_3FC3_47F9_AEA3_C8E4EE0D57FE__INCLUDED_)

⌨️ 快捷键说明

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