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

📄 playlistdlg.h

📁 PPC流行的播放软件gsplayer源码2.24版
💻 H
字号:
#ifndef __PLAYLISTDLG_H__
#define __PLAYLISTDLG_H__

class CMainWnd;
class CPlayListDlg
{
public:
	CPlayListDlg();
	virtual ~CPlayListDlg();
	virtual void Show(CMainWnd* pParent);
	virtual void Close();
	virtual void UpdatePlayList();
	virtual void SetCurrent(int nIndex);
	virtual BOOL IsDialogMessage(LPMSG pMsg);

protected:
	static BOOL CALLBACK PlayListDlgProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
	void OnInitDialog(HWND hwndDlg);
	void OnMove(int x, int y);
	void OnAdd();
	void OnUp(BOOL fVisible = TRUE);
	void OnDown(BOOL fVisible = TRUE);
	void OnDelete();
	void OnSave();
	void OnOK();
	void OnSort(UINT uID);
	void OnListKeyDown(NMLVKEYDOWN* pnm);
	void OnListDblClk(NMHDR* pnm);
	void OnListClick(NMHDR* pnm);
	void OnListRClick(NMHDR* pnm);
	void AddList(HWND hwndLV, int nIndex);
#ifndef _WIN32_WCE
	void OnDropFiles(HDROP hDrop);
#endif

	void OnListBeginDrag(NMLISTVIEW* pnmlv);
	void OnMouseMove(int x, int y);
	void OnLButtonUp();
	void ShowMenu(int x, int y);

protected:
	CMainWnd*	m_pParent;
	HIMAGELIST	m_hImageList;
	HWND		m_hWnd;

	BOOL		m_fListDrag;
	int			m_nDragItem;
};

#endif // __PLAYLISTDLG_H__

⌨️ 快捷键说明

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