-
Notifications
You must be signed in to change notification settings - Fork 352
/
Audiodecode.cpp
80 lines (61 loc) · 1.77 KB
/
Audiodecode.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
/*
*
*
* VideoEye
*
* 雷霄骅 Lei Xiaohua
* 中国传媒大学/数字电视技术
* Communication University of China / Digital TV Technology
* http://blog.csdn.net/leixiaohua1020
*
*/
#include "stdafx.h"
#include "Audiodecode.h"
#include "afxdialogex.h"
// Audiodecode 对话框
IMPLEMENT_DYNAMIC(Audiodecode, CDialogEx)
Audiodecode::Audiodecode(CWnd* pParent /*=NULL*/)
: CDialogEx(Audiodecode::IDD, pParent)
{
}
Audiodecode::~Audiodecode()
{
}
void Audiodecode::DoDataExchange(CDataExchange* pDX)
{
CDialogEx::DoDataExchange(pDX);
DDX_Control(pDX, IDC_DECODEFRAME_A, m_decodeframe_a);
}
BEGIN_MESSAGE_MAP(Audiodecode, CDialogEx)
ON_BN_CLICKED(IDCANCEL, &Audiodecode::OnBnClickedCancel)
END_MESSAGE_MAP()
// Audiodecode 消息处理程序
BOOL Audiodecode::OnInitDialog()
{
CDialogEx::OnInitDialog();
CString resloader;
resloader.LoadString(IDS_AUDIODECODE);
SetWindowText(resloader);
//整行选择;有表格线;表头;单击激活
DWORD dwExStyle=LVS_EX_FULLROWSELECT|LVS_EX_GRIDLINES|LVS_EX_HEADERDRAGDROP|LVS_EX_ONECLICKACTIVATE;
m_decodeframe_a.ModifyStyle(0,LVS_SINGLESEL|LVS_REPORT|LVS_SHOWSELALWAYS);
m_decodeframe_a.SetExtendedStyle(dwExStyle);
resloader.LoadString(IDS_AUDIODECODE_NUM);
m_decodeframe_a.InsertColumn(0,resloader,LVCFMT_CENTER,60,0);
resloader.LoadString(IDS_AUDIODECODE_SIZE);
m_decodeframe_a.InsertColumn(1,resloader,LVCFMT_CENTER,60,0);
resloader.LoadString(IDS_AUDIODECODE_PTS);
m_decodeframe_a.InsertColumn(2,resloader,LVCFMT_CENTER,60,0);
resloader.LoadString(IDS_AUDIODECODE_DTS);
m_decodeframe_a.InsertColumn(3,resloader,LVCFMT_CENTER,60,0);
return TRUE;
}
void Audiodecode::OnBnClickedCancel()
{
// TODO: 在此添加控件通知处理程序代码
ShowWindow(SW_HIDE);
}
void Audiodecode::SystemClear(){
m_decodeframe_a.DeleteAllItems();
}