ShortCutDlg.h
上传用户:qzzxgm
上传日期:2009-12-14
资源大小:1882k
文件大小:2k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // ShortCutDlg.h : header file
  2. //
  3. #if !defined(AFX_SHORTCUTDLG_H__962BA007_7FC3_11D6_8F32_00E04CE76240__INCLUDED_)
  4. #define AFX_SHORTCUTDLG_H__962BA007_7FC3_11D6_8F32_00E04CE76240__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CShortCutDlg dialog
  10. class CShortCutDlg : public CDialog
  11. {
  12. // Construction
  13. public:
  14. CShortCutDlg(CWnd* pParent = NULL); // standard constructor
  15. // Dialog Data
  16. //{{AFX_DATA(CShortCutDlg)
  17. enum { IDD = IDD_SHORTCUT_DIALOG };
  18. int m_nLocation;
  19. //}}AFX_DATA
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CShortCutDlg)
  22. protected:
  23. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  24. //}}AFX_VIRTUAL
  25. // Implementation
  26. protected:
  27. HICON m_hIcon;
  28. //起始文件夹的PIDL
  29. int nBeginAt;
  30. BOOL BrowseForFolder(
  31.     LPITEMIDLIST pidlRoot,//浏览开始处的PIDL
  32.     LPITEMIDLIST *ppidlDestination,
  33.                 //浏览结束时所选择的PIDL
  34.     LPCSTR lpszTitle);//浏览对话框中的提示文字
  35. //取得快捷方式的目标应用程序名
  36. BOOL SelectMenuItem( LPSTR szFileName);
  37. //取得要创建的快捷方式的名字
  38. BOOL GetShortcutCrt(LPSTR szPath);
  39. //创建快捷方式
  40. BOOL CreateLink ( 
  41. LPSTR szPath,//快捷方式的目标应用程序名
  42. LPSTR szLink);//快捷方式的数据文件名(*.lnk)
  43. //删除文件夹
  44. BOOL DeleteFolder( LPSTR pszFolder);
  45. //取得要删除的快捷方式
  46. BOOL GetShortcutDel (
  47.         LPSTR lpszInitDir,//选择文件的开始目录
  48.         LPSTR lpszShortcut);//快捷方式名
  49. //删除快捷方式的数据文件 (*.lnk)
  50. BOOL DeleteLink( LPSTR lpszShortcut);
  51. // 通知shell有关变化
  52. void NotifyShell(LONG wEventId,//事件标志
  53.             LPSTR szPath);//路径
  54. // Generated message map functions
  55. //{{AFX_MSG(CShortCutDlg)
  56. virtual BOOL OnInitDialog();
  57. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  58. afx_msg void OnPaint();
  59. afx_msg HCURSOR OnQueryDragIcon();
  60. afx_msg void OnCreateGroup();
  61. afx_msg void OnCreateItem();
  62. afx_msg void OnDeleteGroup();
  63. afx_msg void OnDeleteItem();
  64. afx_msg void OnDestroy();
  65. //}}AFX_MSG
  66. DECLARE_MESSAGE_MAP()
  67. };
  68. //{{AFX_INSERT_LOCATION}}
  69. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  70. #endif // !defined(AFX_SHORTCUTDLG_H__962BA007_7FC3_11D6_8F32_00E04CE76240__INCLUDED_)