Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkinddragon <kinddragon@users.sourceforge.net>2010-05-24 01:35:52 +0400
committerkinddragon <kinddragon@users.sourceforge.net>2010-05-24 01:35:52 +0400
commit4234d42118220613aa2f17098211fead230a1a5e (patch)
tree63eed4248ef255c1aa5cab600564dcfcf4809f47 /src/apps/mplayerc/PPageInternalFilters.h
parent880c9026dfb0b2311e1d42c381216b852b62550b (diff)
Internal filters context menu added (disable/enable)
OSD messages added when switched audio stream or subtitles Some OSD messages now can be localized git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@1931 10f7b99b-c216-0410-bff0-8a66a9350fd8
Diffstat (limited to 'src/apps/mplayerc/PPageInternalFilters.h')
-rw-r--r--src/apps/mplayerc/PPageInternalFilters.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/apps/mplayerc/PPageInternalFilters.h b/src/apps/mplayerc/PPageInternalFilters.h
index d38771bd6..c4aa1fc32 100644
--- a/src/apps/mplayerc/PPageInternalFilters.h
+++ b/src/apps/mplayerc/PPageInternalFilters.h
@@ -32,19 +32,21 @@ class CPPageInternalFiltersListBox : public CCheckListBox
DECLARE_DYNAMIC(CPPageInternalFiltersListBox)
public:
- CPPageInternalFiltersListBox();
+ CPPageInternalFiltersListBox(int n);
CFont m_bold;
+ int m_n;
protected:
virtual void PreSubclassWindow();
virtual INT_PTR OnToolHitTest(CPoint point, TOOLINFO* pTI) const;
DECLARE_MESSAGE_MAP()
- afx_msg BOOL OnToolTipNotify(UINT id, NMHDR* pNMHDR, LRESULT* pResult);
+ afx_msg BOOL OnToolTipNotify(UINT id, NMHDR* pNMHDR, LRESULT* pResult);
public:
virtual void DrawItem(LPDRAWITEMSTRUCT /*lpDrawItemStruct*/);
+ afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
};
// CPPageInternalFilters dialog
@@ -73,5 +75,5 @@ protected:
public:
afx_msg void OnLbnDblclkList1();
- afx_msg void OnLbnDblclkList2();
+ afx_msg void OnLbnDblclkList2();
};