-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathEffectsDlg.h
More file actions
37 lines (29 loc) · 798 Bytes
/
EffectsDlg.h
File metadata and controls
37 lines (29 loc) · 798 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#pragma once
#include "WinRefine ViewDlg.h"
#include "afxcmn.h"
#include "afxwin.h"
// CEffectsDlg dialog
class CEffectsDlg : public CDialog
{
DECLARE_DYNAMIC(CEffectsDlg)
public:
CEffectsDlg(CWinRefineViewDlg* pParent = NULL); // standard constructor
virtual ~CEffectsDlg();
// Dialog Data
enum { IDD = IDD_EFFECTS };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
private:
CWinRefineViewDlg* Dlg;
DECLARE_MESSAGE_MAP()
virtual BOOL OnInitDialog();
private:
CSliderCtrl Volume;
private:
CSliderCtrl Transparency;
private:
CButton Tooltip;
afx_msg void OnBnClickedTooltip();
afx_msg void OnNMReleasedcaptureVolume(NMHDR *pNMHDR, LRESULT *pResult);
afx_msg void OnNMReleasedcaptureTransparency(NMHDR *pNMHDR, LRESULT *pResult);
};