1
0
mirror of https://github.com/DxWnd/DxWnd.reloaded synced 2024-12-30 09:25:35 +01:00
DxWnd.reloaded/host/dxwndhost.cpp
gho tik 8f3bc994d0 v2_02_06_src
Former-commit-id: d4efddb04484dd2edfc4dfcea2129763baf1ca88
2017-03-06 11:17:01 -05:00

213 lines
5.1 KiB
C++

// dxwndhost.cpp : Application and class definitions
//
#define _CRT_SECURE_NO_DEPRECATE 1
#include "stdafx.h"
#include "dxwndhost.h"
#include "MainFrm.h"
#include "dxwndhostDoc.h"
#include "dxwndhostView.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDxwndhostApp
BEGIN_MESSAGE_MAP(CDxwndhostApp, CWinApp)
//{{AFX_MSG_MAP(CDxwndhostApp)
ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
//}}AFX_MSG_MAP
// Basic file command
ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// custom command line parsing:
// CNewCommandLineInfo Class constructor
// too do: eliminate nasty global variables....
UINT m_StartToTray = FALSE;
UINT m_InitialState = DXW_ACTIVE;
extern char m_ConfigFileName[20+1] = "dxwnd.ini";
class CNewCommandLineInfo : public CCommandLineInfo
{
//public:
// UINT m_StartToTray;
// UINT m_InitialState;
void ParseParam(LPCTSTR lpszParam, BOOL bFlag, BOOL bLast);
};
void CNewCommandLineInfo::ParseParam(LPCTSTR lpszParam, BOOL bFlag, BOOL bLast)
{
if(bFlag) {
CString sParam(lpszParam);
if (sParam.MakeLower() == "t"){
m_StartToTray=TRUE;
return;
}
if (sParam.MakeLower() == "i"){
m_InitialState=DXW_IDLE;
return;
}
if (sParam.Left(2).MakeLower() == "c:"){
strcpy_s(m_ConfigFileName, sizeof(m_ConfigFileName)-1, sParam.Mid(2,sizeof(m_ConfigFileName)-1));
return;
}
}
// Call the base class to ensure proper command line processing
CCommandLineInfo::ParseParam(lpszParam, bFlag, bLast);
}
/////////////////////////////////////////////////////////////////////////////
// CDxwndhostApp Class constructor
CDxwndhostApp::CDxwndhostApp()
{
}
/////////////////////////////////////////////////////////////////////////////
// The only CDxwndhostApp object
CDxwndhostApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CDxwndhostApp Class initialization
BOOL CDxwndhostApp::InitInstance()
{
AfxEnableControlContainer();
// standard initialization
//#ifdef _AFXDLL
// Enable3dControls(); // if MFC is in shared DLL use this call.
//#else
// Enable3dControlsStatic(); // if MFC is statically linked use this call.
//#endif
// Register the document template.
CSingleDocTemplate* pDocTemplate;
pDocTemplate = new CSingleDocTemplate(
IDR_MAINFRAME,
RUNTIME_CLASS(CDxwndhostDoc),
RUNTIME_CLASS(CMainFrame), // SDI main frame window
RUNTIME_CLASS(CDxwndhostView));
AddDocTemplate(pDocTemplate);
// DDE file open: Parse command line for standard shell commands and so on.
// Parse command line for standard shell commands, DDE, file open
// and user-defined flags. The CCommandLine class has been replaced
CNewCommandLineInfo cmdInfo;
ParseCommandLine(cmdInfo);
// Dispatch commands specified on the command line.
if (!ProcessShellCommand(cmdInfo))
return FALSE;
m_pMainWnd->SetWindowText("DXWnd");
RECT rect;
m_pMainWnd->GetWindowRect(&rect);
rect.right = rect.left + 320;
rect.bottom = rect.top + 200;
//m_pMainWnd->MoveWindow(&rect, TRUE);
m_pMainWnd->ShowWindow(SW_SHOW);
m_pMainWnd->UpdateWindow();
return TRUE;
}
/////////////////////////////////////////////////////////////////////////////
// Used in application version information dialog CAboutDlg
class CAboutDlg : public CDialog
{
public:
CAboutDlg();
// Data Dialog
//{{AFX_DATA(CAboutDlg)
enum { IDD = IDD_ABOUTBOX };
CString m_Version;
//}}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)
// There is no message handler.
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
{
//{{AFX_DATA_INIT(CAboutDlg)
m_Version = _T("");
//}}AFX_DATA_INIT
}
void CAboutDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CAboutDlg)
DDX_Text(pDX, IDC_VERSION, m_Version);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
//{{AFX_MSG_MAP(CAboutDlg)
// There is no message handler.
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
// The application command to run the dialog
void CDxwndhostApp::OnAppAbout()
{
char tmp[32], ver[32];
CAboutDlg aboutDlg;
GetDllVersion(tmp);
sprintf(ver, "DLL version %s", tmp);
aboutDlg.m_Version = ver;
aboutDlg.DoModal();
}
//void CDxwndhostApp::OnAppExit()
//{
// MessageBoxEx(0,
// "A hooked task is still running.\n"
// "Exiting now may crash it.\n"
// "Do you still want to exit?",
// "Warning", MB_OKCANCEL | MB_ICONQUESTION, NULL);
//}
/////////////////////////////////////////////////////////////////////////////
// CDxwndhostApp Message Handler
char *GetTSCaption(int shift)
{
static char *sTSCaption[17]={
"x16","x12","x8","x6",
"x4","x3","x2","x1.5",
"x1",
":1.5",":2",":3",":4",
":6",":8",":12",":16"};
if (shift<-8 || shift>8) return "???";
return sTSCaption[shift+8];
}