/* * $Id$ * * (C) 2003-2006 Gabest * (C) 2006-2010 see AUTHORS * * This file is part of mplayerc. * * Mplayerc is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * Mplayerc is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * */ #pragma once #include "VolumeCtrl.h" // CPlayerToolBar class CPlayerToolBar : public CToolBar { DECLARE_DYNAMIC(CPlayerToolBar) private: bool IsMuted(); void SetMute(bool fMute = true); int m_nButtonHeight; public: CPlayerToolBar(); virtual ~CPlayerToolBar(); int GetVolume(); int GetMinWidth(); void SetVolume(int volume); __declspec(property(get=GetVolume, put=SetVolume)) int Volume; void ArrangeControls(); CVolumeCtrl m_volctrl; // Overrides // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CPlayerToolBar) virtual BOOL Create(CWnd* pParentWnd); virtual BOOL PreCreateWindow(CREATESTRUCT& cs); //}}AFX_VIRTUAL // Generated message map functions protected: //{{AFX_MSG(CPlayerToolBar) afx_msg void OnPaint(); afx_msg void OnSize(UINT nType, int cx, int cy); afx_msg void OnInitialUpdate(); afx_msg BOOL OnVolumeMute(UINT nID); afx_msg void OnUpdateVolumeMute(CCmdUI* pCmdUI); afx_msg BOOL OnVolumeUp(UINT nID); afx_msg BOOL OnVolumeDown(UINT nID); afx_msg void OnNcPaint(); afx_msg void OnLButtonDown(UINT nFlags, CPoint point); //}}AFX_MSG DECLARE_MESSAGE_MAP() };