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

📄 bcgpshelllist.h

📁 远程网络监视程序的源码
💻 H
字号:
#if !defined(AFX_BCGPSHELLLIST_H__E4BD89AE_F335_4BC6_854F_751F8DBBE0D8__INCLUDED_)
#define AFX_BCGPSHELLLIST_H__E4BD89AE_F335_4BC6_854F_751F8DBBE0D8__INCLUDED_

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

//*******************************************************************************
// COPYRIGHT NOTES
// ---------------
// This is a part of the BCGControlBar Library
// Copyright (C) 1998-2000 BCGSoft Ltd.
// All rights reserved.
//
// This source code can be used, distributed or modified
// only under terms and conditions 
// of the accompanying license agreement.
//*******************************************************************************
// BCGPShellList.h : header file
//

#include "BCGCBPro.h"
#include "BCGPShellManager.h"
#include "BCGPListCtrl.h"

class CBCGPShellTree;

/////////////////////////////////////////////////////////////////////////////
// CBCGPShellList window

class BCGCBPRODLLEXPORT CBCGPShellList : public CBCGPListCtrl
{
	friend class CBCGPShellTree;

	DECLARE_DYNAMIC(CBCGPShellList)

// Construction
public:
	CBCGPShellList();

// Attributes
public:
	enum
	{
		BCGPShellList_ColumnName = 0,
		BCGPShellList_ColumnSize = 1,
		BCGPShellList_ColumnType = 2,
		BCGPShellList_ColumnModified = 3,
	}
	BCGPShellListColumns;

	const IShellFolder* GetCurrentShellFolder () const
	{
		return m_psfCurFolder;
	}

	LPITEMIDLIST GetCurrentItemIdList () const
	{
		return m_pidlCurFQ;
	}

	BOOL IsDesktop () const
	{
		return m_bIsDesktop;
	}

protected:
	IShellFolder*	m_psfCurFolder;
	LPITEMIDLIST	m_pidlCurFQ;
	BOOL			m_bContextMenu;
	HWND			m_hwndRelatedTree;
	BOOL			m_bIsDesktop;
	BOOL			m_bNoNotify;
	SHCONTF			m_nTypes;

	static IContextMenu2*	m_pContextMenu2;

// Operations
public:
	BOOL GetItemPath (CString& strPath, int iItem) const;
	BOOL GetCurrentFolder (CString& strPath) const;
	BOOL GetCurrentFolderName (CString& strName) const;

	virtual HRESULT Refresh ();
	virtual HRESULT DisplayFolder (LPCTSTR lpszPath);
	virtual HRESULT DisplayFolder (LPBCGCBITEMINFO lpItemInfo);
	virtual HRESULT DisplayParentFolder ();

	void SetItemTypes (SHCONTF nTypes);
	SHCONTF GetItemTypes () const
	{
		return m_nTypes;
	}

	void EnableShellContextMenu (BOOL bEnable = TRUE);

// Overrides
	virtual void OnSetColumns ();
	virtual CString OnGetItemText (int iItem, int iColumn, LPBCGCBITEMINFO pItem);
	virtual int OnGetItemIcon (int iItem, LPBCGCBITEMINFO pItem);

	virtual void OnFormatFileSize (long lFileSize, CString& str);
	virtual void OnFormatFileDate (const CTime& tmFile, CString& str);

	virtual int OnCompareItems (LPARAM lParam1, LPARAM lParam2, int iColumn);

	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CBCGPShellList)
	protected:
	virtual void PreSubclassWindow();
	virtual LRESULT WindowProc(UINT message, WPARAM wParam, LPARAM lParam);
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~CBCGPShellList();

	// Generated message map functions
protected:
	//{{AFX_MSG(CBCGPShellList)
	afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
	afx_msg void OnDeleteitem(NMHDR* pNMHDR, LRESULT* pResult);
	afx_msg void OnLvnItemchanged(NMHDR *pNMHDR, LRESULT *pResult);
	afx_msg void OnDblclk(NMHDR* pNMHDR, LRESULT* pResult);
	afx_msg void OnReturn(NMHDR* pNMHDR, LRESULT* pResult);
	afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
	afx_msg void OnDestroy();
	//}}AFX_MSG

	DECLARE_MESSAGE_MAP()

	HIMAGELIST GetShellImageList (BOOL bLarge);
	HRESULT LockCurrentFolder (LPBCGCBITEMINFO pItemInfo);
	void ReleaseCurrFolder ();

	virtual HRESULT EnumObjects (LPSHELLFOLDER pParentFolder, LPITEMIDLIST pidlParent);
	virtual void DoDefault (int iItem);

	BOOL InitList ();
	CBCGPShellTree* GetRelatedTree () const;
};

extern BCGCBPRODLLEXPORT UINT BCGPM_CHANGE_CURRENT_FOLDER;
extern BCGCBPRODLLEXPORT UINT BCGPM_SELECT_ITEMS_CHANGED;

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

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

#endif // !defined(AFX_BCGPSHELLLIST_H__E4BD89AE_F335_4BC6_854F_751F8DBBE0D8__INCLUDED_)

⌨️ 快捷键说明

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