📄 dirlistview.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
#include "ListViewEx.h"
#include "DirTreeView.h"
class CDummyDoc;
class CDirListView : public CListViewEx
{
protected: // create from serialization only
CDirListView();
DECLARE_DYNCREATE(CDirListView)
// Attributes
public:
CDummyDoc* 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:
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:
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();
//{{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 void OnSize(UINT nType, int cx, int cy);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
friend class CDirTreeView;
private:
bool m_bInitialized;
};
#ifndef _DEBUG // debug version in DirListView.cpp
inline CDummyDoc* CDirListView::GetDocument()
{ return (CDummyDoc*)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 + -