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

📄 dirlistview.h

📁 这些源代码
💻 H
字号:
// DirListView.h : interface of the CDirListView class
//
/////////////////////////////////////////////////////////////////////////////

#if !defined(AFX_DIRLISTVIEW_H__84CC1E35_4CE3_11D4_85C6_00A0CC253EAC__INCLUDED_)
#define AFX_DIRLISTVIEW_H__84CC1E35_4CE3_11D4_85C6_00A0CC253EAC__INCLUDED_

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


class CDirListView : public CListView
{
protected: // create from serialization only
	CDirListView();
	DECLARE_DYNCREATE(CDirListView)

// Attributes
public:
	CDirListDoc* GetDocument();

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CDirListView)
	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:
	CImageList m_SmallIcons;
	void SetDirectoryName (char *dir);
	virtual ~CDirListView();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:

// Generated message map functions
protected:
	CImageList m_LargeIcons;
	CString m_DirectoryName;
	int GetFileType (WIN32_FIND_DATA & fd, CString &strFileType);
	int GetIconIndex (WIN32_FIND_DATA &fd, UINT uiOpen = 0);
	void FreeItemMemory();
	bool AddItem(int nIndex, WIN32_FIND_DATA * pfd);
	void ListDirectory (CString & strDir);
	void ListDirectory();
	static int CALLBACK CompareItems(LPARAM lParam1, LPARAM lParam2, LPARAM lParamSort);
	CString & GetCurrentDirectory();
	BOOL LoadSystemImageList (UINT uiImageList);
	//{{AFX_MSG(CDirListView)
	afx_msg void OnDestroy();
	afx_msg void OnGetdispinfo(NMHDR* pNMHDR, LRESULT* pResult);
	afx_msg void OnLButtonDblClk(UINT nFlags, CPoint point);
	afx_msg void OnColumnclick(NMHDR* pNMHDR, LRESULT* pResult);
	afx_msg void OnKillFocus(CWnd* pNewWnd);
	afx_msg void OnSetFocus(CWnd* pOldWnd);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

#ifndef _DEBUG  // debug version in DirListView.cpp
inline CDirListDoc* CDirListView::GetDocument()
   { return (CDirListDoc*)m_pDocument; }
#endif

/////////////////////////////////////////////////////////////////////////////

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

#endif // !defined(AFX_DIRLISTVIEW_H__84CC1E35_4CE3_11D4_85C6_00A0CC253EAC__INCLUDED_)

⌨️ 快捷键说明

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