From 9938ea772d372ba955b7bc1f1c48a062c3a36f8a Mon Sep 17 00:00:00 2001 From: Michael Krelin Date: Mon, 05 Jul 2004 01:53:09 +0000 Subject: initial commit into svn repository git-svn-id: http://svn.klever.net/kin/pumpkin/trunk@1 fe716a7a-6dde-0310-88d9-d003556173a8 --- (limited to 'ConfirmRRQDlg.cpp') diff --git a/ConfirmRRQDlg.cpp b/ConfirmRRQDlg.cpp new file mode 100644 index 0000000..361ad14 --- a/dev/null +++ b/ConfirmRRQDlg.cpp @@ -0,0 +1,67 @@ +// ConfirmRRQDlg.cpp : implementation file +// + +#include "stdafx.h" +#include "PumpKIN.h" +#include "ConfirmRRQDlg.h" +#include "PumpKINDlg.h" + +#ifdef _DEBUG +#define new DEBUG_NEW +#undef THIS_FILE +static char THIS_FILE[] = __FILE__; +#endif + +///////////////////////////////////////////////////////////////////////////// +// CConfirmRRQDlg dialog + + +CConfirmRRQDlg::CConfirmRRQDlg(CWnd* pParent /*=NULL*/) + : CDialog(CConfirmRRQDlg::IDD, pParent) +{ + m_Daddy=NULL; + //{{AFX_DATA_INIT(CConfirmRRQDlg) + m_File = _T(""); + m_Host = _T(""); + //}}AFX_DATA_INIT +} + + +void CConfirmRRQDlg::DoDataExchange(CDataExchange* pDX) +{ + CDialog::DoDataExchange(pDX); + //{{AFX_DATA_MAP(CConfirmRRQDlg) + DDX_Text(pDX, IDC_FILE, m_File); + DDX_Text(pDX, IDC_HOST, m_Host); + //}}AFX_DATA_MAP +} + + +BEGIN_MESSAGE_MAP(CConfirmRRQDlg, CDialog) + //{{AFX_MSG_MAP(CConfirmRRQDlg) + ON_WM_TIMER() + //}}AFX_MSG_MAP +END_MESSAGE_MAP() + +///////////////////////////////////////////////////////////////////////////// +// CConfirmRRQDlg message handlers + +BOOL CConfirmRRQDlg::OnInitDialog() +{ + CDialog::OnInitDialog(); + + m_Daddy->m_Daddy->m_bnw.StartSound(m_Daddy->m_Daddy->m_bnwRequest); + if(m_Daddy->m_Daddy->m_PromptTimeOut) + SetTimer(1,m_Daddy->m_Daddy->m_PromptTimeOut*1000,NULL); + SetWindowPos(&CWnd::wndTopMost,0,0,0,0,SWP_NOACTIVATE|SWP_NOMOVE|SWP_NOSIZE); + + return TRUE; // return TRUE unless you set the focus to a control + // EXCEPTION: OCX Property Pages should return FALSE +} + +void CConfirmRRQDlg::OnTimer(UINT nIDEvent) +{ + if(nIDEvent==1) + EndDialog(IDCANCEL); + CDialog::OnTimer(nIDEvent); +} -- cgit v0.9.0.2