// CUDALoader_April01Dlg.cpp : implementation file
//
#include "stdafx.h"
#include "CUDALoader_April01.h"
#include "CUDALoader_April01Dlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CCUDALoader_April01Dlg dialog
CCUDALoader_April01Dlg::CCUDALoader_April01Dlg(CWnd* pParent /*=NULL*/)
: CDialog(CCUDALoader_April01Dlg::IDD, pParent)
{
m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
}
void CCUDALoader_April01Dlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
DDX_Control(pDX, IDC_EDIT1, m_exe);
}
BEGIN_MESSAGE_MAP(CCUDALoader_April01Dlg, CDialog)
ON_WM_PAINT()
ON_WM_QUERYDRAGICON()
//}}AFX_MSG_MAP
ON_BN_CLICKED(IDOK, &CCUDALoader_April01Dlg::OnBnClickedOk)
ON_BN_CLICKED(IDC_BUTTON1, &CCUDALoader_April01Dlg::OnBnClickedButton1)
END_MESSAGE_MAP()
// CCUDALoader_April01Dlg message handlers
BOOL CCUDALoader_April01Dlg::OnInitDialog()
{
CDialog::OnInitDialog();
// 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
return TRUE; // return TRUE unless you set the focus to a control
}
// 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 CCUDALoader_April01Dlg::OnPaint()
{
if (IsIconic())
{
CPaintDC dc(this); // device context for painting
SendMessage(WM_ICONERASEBKGND, reinterpret_cast<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 function to obtain the cursor to display while the user drags
// the minimized window.
HCURSOR CCUDALoader_April01Dlg::OnQueryDragIcon()
{
return static_cast<HCURSOR>(m_hIcon);
}
void CCUDALoader_April01Dlg::OnBnClickedOk()
{
if (AfxMessageBox(_T("Please confirm you want to load CUDA emulator for OpenCL."), MB_ICONQUESTION|MB_OKCANCEL)==IDCANCEL)
PostQuitMessage(0);
else
if (AfxMessageBox(_T("Are you sure to load CUDA emulator for OpenCL?"), MB_ICONQUESTION|MB_YESNO)==IDNO)
PostQuitMessage(0);
else
if (AfxMessageBox(_T("CUDA OpenCL emulator requires your confirmation to proceed."), MB_ICONWARNING|MB_OKCANCEL)==IDCANCEL)
PostQuitMessage(0);
else
{
AfxMessageBox(_T("Thank you, please wait a moment..."), MB_ICONINFORMATION|MB_OK);
Sleep(10000);
again:
int res=AfxMessageBox(_T("CUDA for OpenCL encountered a compatibility issue."), MB_ICONERROR|MB_ABORTRETRYIGNORE);
if (res==IDABORT)
{
PostQuitMessage(0);
}
if (res==IDRETRY)
goto again;
AfxMessageBox(_T("What if I don't want to?"), MB_OK);
AfxMessageBox(_T("April Fool!\n\nfrom www.techpowerup.com."), MB_OK);
}
PostQuitMessage(0);
}
void CCUDALoader_April01Dlg::OnBnClickedButton1()
{
CFileDialog o(FALSE,_T("bin"),NULL,OFN_ENABLESIZING|OFN_FILEMUSTEXIST,_T("Executable Files (*.exe)|*.exe||"));
if (o.DoModal() == IDOK)
{
m_exe.SetWindowText(o.GetPathName());
}
}