PPageAccelTbl.h
上传用户:tangyu_668
上传日期:2014-02-27
资源大小:678k
文件大小:2k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. /* 
  2.  * Copyright (C) 2003-2006 Gabest
  3.  * http://www.gabest.org
  4.  *
  5.  *  This Program is free software; you can redistribute it and/or modify
  6.  *  it under the terms of the GNU General Public License as published by
  7.  *  the Free Software Foundation; either version 2, or (at your option)
  8.  *  any later version.
  9.  *   
  10.  *  This Program is distributed in the hope that it will be useful,
  11.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13.  *  GNU General Public License for more details.
  14.  *   
  15.  *  You should have received a copy of the GNU General Public License
  16.  *  along with GNU Make; see the file COPYING.  If not, write to
  17.  *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 
  18.  *  http://www.gnu.org/copyleft/gpl.html
  19.  *
  20.  */
  21. #pragma once
  22. #include "PPageBase.h"
  23. #include "PlayerListCtrl.h"
  24. #include "StaticLink.h"
  25. // CPPageAccelTbl dialog
  26. class CPPageAccelTbl : public CPPageBase
  27. {
  28. DECLARE_DYNAMIC(CPPageAccelTbl)
  29. private:
  30. enum {COL_CMD, COL_MOD, COL_KEY, COL_TYPE, COL_ID, COL_MOUSE, COL_APPCMD, COL_RMCMD, COL_RMREPCNT};
  31. CList<wmcmd> m_wmcmds;
  32. void SetupList();
  33. int m_counter;
  34. public:
  35. CPPageAccelTbl();
  36. virtual ~CPPageAccelTbl();
  37. static CString MakeAccelModLabel(BYTE fVirt);
  38. static CString MakeAccelVkeyLabel(WORD key, bool fVirtKey);
  39. static CString MakeAccelShortcutLabel(UINT id);
  40. static CString MakeAccelShortcutLabel(ACCEL& a);
  41. static CString MakeMouseButtonLabel(UINT mouse);
  42. static CString MakeAppCommandLabel(UINT id);
  43. enum {APPCOMMAND_LAST=APPCOMMAND_MEDIA_CHANNEL_DOWN};
  44. // Dialog Data
  45. enum { IDD = IDD_PPAGEACCELTBL };
  46. CPlayerListCtrl m_list;
  47. BOOL m_fWinLirc;
  48. CString m_WinLircAddr;
  49. CEdit m_WinLircEdit;
  50. CStaticLink m_WinLircLink;
  51. BOOL m_fUIce;
  52. CString m_UIceAddr;
  53. CEdit m_UIceEdit;
  54. CStaticLink m_UIceLink;
  55. protected:
  56. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  57. virtual BOOL OnInitDialog();
  58. virtual BOOL OnApply();
  59. virtual BOOL PreTranslateMessage(MSG* pMsg);
  60. virtual BOOL OnSetActive();
  61. virtual BOOL OnKillActive();
  62. DECLARE_MESSAGE_MAP()
  63. public:
  64. afx_msg void OnBeginlabeleditList(NMHDR* pNMHDR, LRESULT* pResult);
  65. afx_msg void OnDolabeleditList(NMHDR* pNMHDR, LRESULT* pResult);
  66. afx_msg void OnEndlabeleditList(NMHDR* pNMHDR, LRESULT* pResult);
  67. afx_msg void OnBnClickedButton1();
  68. afx_msg void OnBnClickedButton2();
  69. afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
  70. afx_msg void OnTimer(UINT nIDEvent);
  71. };