www.pudn.com > ruier_TTS_SR(vc6).rar > TTS_SRDlg.cpp
// TTS_SRDlg.cpp : implementation file
//
#include "stdafx.h"
#include "TTS_SR.h"
#include "TTS_SRDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CAboutDlg dialog used for App About
class CAboutDlg : public CDialog
{
public:
CAboutDlg();
// Dialog Data
//{{AFX_DATA(CAboutDlg)
enum { IDD = IDD_ABOUTBOX };
//}}AFX_DATA
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CAboutDlg)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
//{{AFX_MSG(CAboutDlg)
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
{
//{{AFX_DATA_INIT(CAboutDlg)
//}}AFX_DATA_INIT
}
void CAboutDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CAboutDlg)
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
//{{AFX_MSG_MAP(CAboutDlg)
// No message handlers
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CTTS_SRDlg dialog
CTTS_SRDlg::CTTS_SRDlg(CWnd* pParent /*=NULL*/)
: CDialog(CTTS_SRDlg::IDD, pParent)
{
//{{AFX_DATA_INIT(CTTS_SRDlg)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
// Note that LoadIcon does not require a subsequent DestroyIcon in Win32
m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
}
void CTTS_SRDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CTTS_SRDlg)
DDX_Control(pDX, IDC_TAB_MAIN, m_Tab);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CTTS_SRDlg, CDialog)
//{{AFX_MSG_MAP(CTTS_SRDlg)
ON_WM_SYSCOMMAND()
ON_WM_PAINT()
ON_WM_QUERYDRAGICON()
ON_NOTIFY(TCN_SELCHANGE, IDC_TAB_MAIN, OnSelchangeTabMain)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CTTS_SRDlg message handlers
BOOL CTTS_SRDlg::OnInitDialog()
{
CDialog::OnInitDialog();
// Add "About..." menu item to system menu.
// IDM_ABOUTBOX must be in the system command range.
ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
ASSERT(IDM_ABOUTBOX < 0xF000);
CMenu* pSysMenu = GetSystemMenu(FALSE);
if (pSysMenu != NULL)
{
CString strAboutMenu;
strAboutMenu.LoadString(IDS_ABOUTBOX);
if (!strAboutMenu.IsEmpty())
{
pSysMenu->AppendMenu(MF_SEPARATOR);
pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
}
}
// Set the icon for this dialog. The framework does this automatically
// when the application's main window is not a dialog
SetIcon(m_hIcon, TRUE); // Set big icon
SetIcon(m_hIcon, FALSE); // Set small icon
// TODO: Add extra initialization here
m_Page_TT.Create(IDD_PROPPAGE_TT,&m_Tab);
m_Page_SR.Create(IDD_PROPPAGE_SR,&m_Tab);
TCITEM item1;
item1.mask = TCIF_TEXT|TCIF_PARAM;
item1.lParam = (LPARAM)&m_Page_TT;
item1.pszText = "语音合成";
TCITEM item2;
item2.mask = TCIF_TEXT|TCIF_PARAM;
item2.lParam = (LPARAM)&m_Page_SR;
item2.pszText = "语音识别";
m_Tab.InsertItem(0,&item1);
m_Tab.InsertItem(1,&item2);
::SetFocus(m_Page_TT);
m_Page_TT.ShowWindow(SW_SHOW); //默认只显示一页
m_Page_SR.ShowWindow(SW_HIDE);
((CWnd *)(this->GetDlgItem(IDC_TAB_MAIN)))->EnableWindow(TRUE);
return FALSE; // return TRUE unless you set the focus to a control
}
void CTTS_SRDlg::OnSysCommand(UINT nID, LPARAM lParam)
{
if ((nID & 0xFFF0) == IDM_ABOUTBOX)
{
CAboutDlg dlgAbout;
dlgAbout.DoModal();
}
else
{
CDialog::OnSysCommand(nID, lParam);
}
}
// If you add a minimize button to your dialog, you will need the code below
// to draw the icon. For MFC applications using the document/view model,
// this is automatically done for you by the framework.
void CTTS_SRDlg::OnPaint()
{
if (IsIconic())
{
CPaintDC dc(this); // device context for painting
SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
// Center icon in client rectangle
int cxIcon = GetSystemMetrics(SM_CXICON);
int cyIcon = GetSystemMetrics(SM_CYICON);
CRect rect;
GetClientRect(&rect);
int x = (rect.Width() - cxIcon + 1) / 2;
int y = (rect.Height() - cyIcon + 1) / 2;
// Draw the icon
dc.DrawIcon(x, y, m_hIcon);
}
else
{
CDialog::OnPaint();
}
}
// The system calls this to obtain the cursor to display while the user drags
// the minimized window.
HCURSOR CTTS_SRDlg::OnQueryDragIcon()
{
return (HCURSOR) m_hIcon;
}
void CTTS_SRDlg::OnSelchangeTabMain(NMHDR* pNMHDR, LRESULT* pResult)
{
// TODO: Add your control notification handler code here
CString s;
((CButton *)(m_Page_TT.GetDlgItem(IDC_BUTTON_START_TT)))->GetWindowText(s);
CString s1;
((CButton *)(m_Page_SR.GetDlgItem(IDC_BUTTON_START_SR)))->GetWindowText(s1);
if(s=="结束"||s1=="停止"){
MessageBox("请等待操作结束","对不起",MB_ICONWARNING);
m_Tab.SetCurSel((m_Tab.GetCurSel()+1)%2);
if(m_Tab.GetCurSel()==0) ((CWnd *)(m_Page_TT.GetDlgItem(IDC_EDIT_TT)))->SetFocus();
return;
}
m_Page_TT.ShowWindow(SW_HIDE);
m_Page_SR.ShowWindow(SW_HIDE);
switch(m_Tab.GetCurSel())//获取当前被选中的序号
{
case 0:
m_Page_TT.ShowWindow(SW_SHOW);
break;
case 1:
m_Page_SR.ShowWindow(SW_SHOW);
break;
default: m_Page_TT.ShowWindow(SW_SHOW);
}
//m_Tab.SetCurSel(0);
*pResult=0;
}