#if !defined(AFX_SLIDERS_H__3542255E_1376_4FB7_91E7_B4841BB4F173__INCLUDED_)
#define AFX_SLIDERS_H__3542255E_1376_4FB7_91E7_B4841BB4F173__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif
class MySliderCtrl : public CSliderCtrl
{
public:
MySliderCtrl () {}
protected:
afx_msg virtual void OnLButtonDown(UINT nFlags, CPoint point);
};
class Sliders : public CDialog
{
public:
Sliders(CWnd* pParent = NULL);
void SetVolume();
Bool m_grabbed;
enum { IDD = IDD_SLIDERS };
CSliderCtrl m_AudioVol;
CSliderCtrl m_PosSlider;
protected:
virtual void DoDataExchange(CDataExchange* pDX);
protected:
afx_msg void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
afx_msg void OnSize(UINT nType, int cx, int cy);
afx_msg void OnClose();
virtual BOOL OnInitDialog();
virtual BOOL PreTranslateMessage(MSG* pMsg);
DECLARE_MESSAGE_MAP()
};
#endif