Volume.h
上传用户:panstart
上传日期:2022-04-12
资源大小:199k
文件大小:1k
源码类别:

IP电话/视频会议

开发平台:

C++ Builder

  1. ////////////////////////////////////////////////////////////////////////////
  2. //
  3. //
  4. //    Project     : VideoNet version 1.1.
  5. //    Description : Peer to Peer Video Conferencing over the LAN.
  6. //   Author      : Nagareshwar Y Talekar ( nsry2002@yahoo.co.in)
  7. //    Date        : 15-6-2004.
  8. //
  9. //
  10. //    File description : 
  11. //    Name    : Volume.h
  12. //    Details : Dialog class for Volume Control
  13. //
  14. //
  15. /////////////////////////////////////////////////////////////////////////////
  16. #if !defined(AFX_VOLUME_H__0423C7A1_4B57_11D6_8886_B01554C10000__INCLUDED_)
  17. #define AFX_VOLUME_H__0423C7A1_4B57_11D6_8886_B01554C10000__INCLUDED_
  18. #if _MSC_VER > 1000
  19. #pragma once
  20. #endif // _MSC_VER > 1000
  21. #include<afxcmn.h>
  22. #include"Mixer.h"
  23. class Volume : public CDialog  
  24. {
  25. public:
  26. CMixer *mixrec,*mixplay;
  27. CSliderCtrl *srec,*splay;
  28. Volume(int n);
  29. BOOL OnInitDialog();
  30. void OnHScroll(UINT code,UINT pos,CScrollBar *scroll);
  31. HBRUSH OnCtlColor(CDC *pdc,CWnd *pwnd,UINT ctrl);
  32. void OnPaint();
  33. DECLARE_MESSAGE_MAP()
  34. };
  35. #endif // !defined(AFX_VOLUME_H__0423C7A1_4B57_11D6_8886_B01554C10000__INCLUDED_)