-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathDlgVideo.cpp
90 lines (69 loc) · 1.76 KB
/
DlgVideo.cpp
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/*
* Copyright (c) 2016 The AnyRTC project authors. All Rights Reserved.
*
* Please visit https://www.anyrtc.io for detail.
*
* The GNU General Public License is a free, copyleft license for
* software and other kinds of works.
*
* The licenses for most software and other practical works are designed
* to take away your freedom to share and change the works. By contrast,
* the GNU General Public License is intended to guarantee your freedom to
* share and change all versions of a program--to make sure it remains free
* software for all its users. We, the Free Software Foundation, use the
* GNU General Public License for most of our software; it applies also to
* any other work released this way by its authors. You can apply it to
* your programs, too.
* See the GNU LICENSE file for more info.
*/
#include "stdafx.h"
#include "DlgVideo.h"
// DlgVideo 对话框
IMPLEMENT_DYNAMIC(DlgVideo, CDialog)
DlgVideo::DlgVideo(CWnd* pParentWnd)
: CDialog(DlgVideo::IDD, pParentWnd)
{
}
DlgVideo::~DlgVideo()
{
}
void DlgVideo::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
}
BEGIN_MESSAGE_MAP(DlgVideo, CDialog)
ON_WM_CLOSE()
ON_WM_ERASEBKGND()
ON_WM_LBUTTONDBLCLK()
END_MESSAGE_MAP()
// DlgVideo 消息处理程序
void DlgVideo::OnOK()
{
}
void DlgVideo::OnCancel()
{
}
void DlgVideo::OnClose()
{
}
BOOL DlgVideo::OnInitDialog()
{
CDialog::OnInitDialog();
return TRUE; // return TRUE unless you set the focus to a control
// 异常: OCX 属性页应返回 FALSE
}
void DlgVideo::OnPaint() {
}
BOOL DlgVideo::DestroyWindow()
{
return CDialog::DestroyWindow();
}
BOOL DlgVideo::OnEraseBkgnd(CDC* pDC)
{
return FALSE;
}
void DlgVideo::OnLButtonDblClk(UINT nFlags, CPoint point)
{
//m_rDlgMain.OnFullScreen(this);
CDialog::OnLButtonDblClk(nFlags, point);
}