📄 lsbanalysis.cpp
字号:
// LSBAnalysis.cpp : Defines the class behaviors for the application.
//
#include "stdafx.h"
#include "LSBAnalysis.h"
#include "MainFrm.h"
#include "ChildFrm.h"
#include "LSBAnalysisDoc.h"
#include "LSBAnalysisView.h"
#include "../cximage/ximage.h"
#include "../cximage/xfile.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
DocType doctypes[CMAX_IMAGE_FORMATS] =
{
{ -1, TRUE, TRUE, "Supported files", "*.bmp;*.gif;*.ico;*.tga;*.pcx;*.wbmp;*.wmf;*.emf" },
#if CXIMAGE_SUPPORT_BMP
{ CXIMAGE_FORMAT_BMP, TRUE, TRUE, "BMP files", "*.bmp" },
#endif
#if CXIMAGE_SUPPORT_GIF
{ CXIMAGE_FORMAT_GIF, TRUE, TRUE, "GIF files", "*.gif" },
#endif
#if CXIMAGE_SUPPORT_JPG
{ CXIMAGE_FORMAT_JPG, TRUE, TRUE, "JPG files", "*.jpg;*.jpeg" },
#endif
#if CXIMAGE_SUPPORT_PNG
{ CXIMAGE_FORMAT_PNG, TRUE, TRUE, "PNG files", "*.png" },
#endif
#if CXIMAGE_SUPPORT_MNG
{ CXIMAGE_FORMAT_MNG, TRUE, TRUE, "MNG files", "*.mng;*.jng;*.png" },
#endif
#if CXIMAGE_SUPPORT_ICO
{ CXIMAGE_FORMAT_ICO, TRUE, TRUE, "ICO CUR files", "*.ico;*.cur" },
#endif
#if CXIMAGE_SUPPORT_TIF
{ CXIMAGE_FORMAT_TIF, TRUE, TRUE, "TIF files", "*.tif;*.tiff" },
#endif
#if CXIMAGE_SUPPORT_TGA
{ CXIMAGE_FORMAT_TGA, TRUE, TRUE, "TGA files", "*.tga" },
#endif
#if CXIMAGE_SUPPORT_PCX
{ CXIMAGE_FORMAT_PCX, TRUE, TRUE, "PCX files", "*.pcx" },
#endif
#if CXIMAGE_SUPPORT_WBMP
{ CXIMAGE_FORMAT_WBMP, TRUE, TRUE, "WBMP files", "*.wbmp" },
#endif
#if CXIMAGE_SUPPORT_WMF
{ CXIMAGE_FORMAT_WMF, TRUE, FALSE, "WMF EMF files", "*.wmf;*.emf" },
#endif
#if CXIMAGE_SUPPORT_J2K
{ CXIMAGE_FORMAT_J2K, TRUE, TRUE, "J2K files", "*.j2k;*.jp2" },
#endif
#if CXIMAGE_SUPPORT_JBG
{ CXIMAGE_FORMAT_JBG, TRUE, TRUE, "JBG files", "*.jbg" },
#endif
#if CXIMAGE_SUPPORT_JP2
{ CXIMAGE_FORMAT_JP2, TRUE, TRUE, "JP2 files", "*.j2k;*.jp2" },
#endif
#if CXIMAGE_SUPPORT_JPC
{ CXIMAGE_FORMAT_JPC, TRUE, TRUE, "JPC files", "*.j2c;*.jpc" },
#endif
#if CXIMAGE_SUPPORT_PGX
{ CXIMAGE_FORMAT_PGX, TRUE, TRUE, "PGX files", "*.pgx" },
#endif
#if CXIMAGE_SUPPORT_RAS
{ CXIMAGE_FORMAT_RAS, TRUE, TRUE, "RAS files", "*.ras" },
#endif
#if CXIMAGE_SUPPORT_PNM
{ CXIMAGE_FORMAT_PNM, TRUE, TRUE, "PNM files", "*.pnm;*.pgm;*.ppm" }
#endif
};
/////////////////////////////////////////////////////////////////////////////
// CLSBAnalysisApp
BEGIN_MESSAGE_MAP(CLSBAnalysisApp, CWinApp)
//{{AFX_MSG_MAP(CLSBAnalysisApp)
ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
ON_COMMAND(ID_FILE_OPEN, OnFileOpen)
//}}AFX_MSG_MAP
// Standard file based document commands
ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
// Standard print setup command
ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CLSBAnalysisApp construction
CLSBAnalysisApp::CLSBAnalysisApp()
{
// TODO: add construction code here,
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CLSBAnalysisApp object
CLSBAnalysisApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CLSBAnalysisApp initialization
BOOL CLSBAnalysisApp::InitInstance()
{
AfxEnableControlContainer();
// Standard initialization
// If you are not using these features and wish to reduce the size
// of your final executable, you should remove from the following
// the specific initialization routines you do not need.
#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif
// Change the registry key under which our settings are stored.
// TODO: You should modify this string to be something appropriate
// such as the name of your company or organization.
SetRegistryKey(_T("Local AppWizard-Generated Applications"));
LoadStdProfileSettings(); // Load standard INI file options (including MRU)
// Register the application's document templates. Document templates
// serve as the connection between documents, frame windows and views.
CMultiDocTemplate* pDocTemplate;
pDocTemplate = new CMultiDocTemplate(
IDR_LSBANATYPE,
RUNTIME_CLASS(CLSBAnalysisDoc),
RUNTIME_CLASS(CChildFrame), // custom MDI child frame
RUNTIME_CLASS(CLSBAnalysisView));
AddDocTemplate(pDocTemplate);
// create main MDI Frame window
CMainFrame* pMainFrame = new CMainFrame;
if (!pMainFrame->LoadFrame(IDR_MAINFRAME))
return FALSE;
m_pMainWnd = pMainFrame;
// Parse command line for standard shell commands, DDE, file open
CCommandLineInfo cmdInfo;
// Alter behaviour to not open window immediately
cmdInfo.m_nShellCommand = CCommandLineInfo::FileNothing;
ParseCommandLine(cmdInfo);
// Dispatch commands specified on the command line
if (!ProcessShellCommand(cmdInfo))
return FALSE;
// The main window has been initialized, so show and update it.
pMainFrame->ShowWindow(m_nCmdShow);
pMainFrame->UpdateWindow();
// Enable open from command line
if (*m_lpCmdLine != 0)
OpenDocumentFile(m_lpCmdLine);
return TRUE;
}
/////////////////////////////////////////////////////////////////////////////
// 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)
// No message handlers
//}}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()
// App command to run the dialog
void CLSBAnalysisApp::OnAppAbout()
{
CAboutDlg aboutDlg;
aboutDlg.DoModal();
}
/////////////////////////////////////////////////////////////////////////////
// CLSBAnalysisApp message handlers
void CLSBAnalysisApp::OnFileOpen()
{
// prompt the user (with all document templates)
CString newName;
int nDocType = -1;
if (!PromptForFileName(newName, AFX_IDS_OPENFILE,
OFN_HIDEREADONLY | OFN_FILEMUSTEXIST, TRUE, &nDocType))
return; // open cancelled
OpenDocumentFile(newName);
}
//////////////////////////////////////////////////////////////////////////////
// prompt for file name - used for open and save as
// static function called from app
BOOL CLSBAnalysisApp::PromptForFileName(CString& fileName, UINT nIDSTitle,
DWORD dwFlags, BOOL bOpenFileDialog, int* pType)
{
CFileDialog dlgFile(bOpenFileDialog);
CString title;
if (bOpenFileDialog) title="Open image file"; else title="Save image file";
dlgFile.m_ofn.Flags |= dwFlags;
int nDocType = (pType != NULL) ? *pType : CXIMAGE_FORMAT_BMP;
if (nDocType==0) nDocType=1;
int nIndex = GetIndexFromType(nDocType, bOpenFileDialog);
if (nIndex == -1) nIndex = 0;
dlgFile.m_ofn.nFilterIndex = nIndex +1;
// strDefExt is necessary to hold onto the memory from GetExtFromType
CString strDefExt = GetExtFromType(nDocType).Mid(2,3);
dlgFile.m_ofn.lpstrDefExt = strDefExt;
CString strFilter = GetFileTypes(bOpenFileDialog);
dlgFile.m_ofn.lpstrFilter = strFilter;
dlgFile.m_ofn.lpstrTitle = title;
dlgFile.m_ofn.lpstrFile = fileName.GetBuffer(_MAX_PATH);
BOOL bRet = (dlgFile.DoModal() == IDOK) ? TRUE : FALSE;
fileName.ReleaseBuffer();
if (bRet){
if (pType != NULL){
int nIndex = (int)dlgFile.m_ofn.nFilterIndex - 1;
ASSERT(nIndex >= 0);
*pType = GetTypeFromIndex(nIndex, bOpenFileDialog);
}
}
return bRet;
}
//////////////////////////////////////////////////////////////////////////////
int CLSBAnalysisApp::GetIndexFromType(int nDocType, BOOL bOpenFileDialog)
{
int nCnt = 0;
for (int i=0;i<CMAX_IMAGE_FORMATS;i++){
if (bOpenFileDialog ? doctypes[i].bRead : doctypes[i].bWrite){
if (doctypes[i].nID == nDocType) return nCnt;
nCnt++;
}
}
return -1;
}
//////////////////////////////////////////////////////////////////////////////
int CLSBAnalysisApp::GetTypeFromIndex(int nIndex, BOOL bOpenFileDialog)
{
int nCnt = 0;
for (int i=0;i<CMAX_IMAGE_FORMATS;i++){
if (bOpenFileDialog ? doctypes[i].bRead : doctypes[i].bWrite){
if (nCnt == nIndex)
// return i; // PJO - Buglet ?
return doctypes[i].nID;
nCnt++;
}
}
ASSERT(FALSE);
return -1;
}
//////////////////////////////////////////////////////////////////////////////
CString CLSBAnalysisApp::GetExtFromType(int nDocType)
{
for (int i=0;i<CMAX_IMAGE_FORMATS;i++){
if (doctypes[i].nID == nDocType)
return doctypes[i].ext;
}
return CString("");
}
//////////////////////////////////////////////////////////////////////////////
CString CLSBAnalysisApp::GetDescFromType(int nDocType)
{
for (int i=0;i<CMAX_IMAGE_FORMATS;i++){
if (doctypes[i].nID == nDocType)
return doctypes[i].description;
}
return CString("");
}
//////////////////////////////////////////////////////////////////////////////
BOOL CLSBAnalysisApp::GetWritableType(int nDocType){
for (int i=0;i<CMAX_IMAGE_FORMATS;i++){
if (doctypes[i].nID == nDocType)
return doctypes[i].bWrite;
}
return FALSE;
}
//////////////////////////////////////////////////////////////////////////////
CString CLSBAnalysisApp::GetFileTypes(BOOL bOpenFileDialog)
{
CString str;
for (int i=0;i<CMAX_IMAGE_FORMATS;i++){
if (bOpenFileDialog && doctypes[i].bRead){
str += doctypes[i].description;
str += (TCHAR)NULL;
str += doctypes[i].ext;
str += (TCHAR)NULL;
} else if (!bOpenFileDialog && doctypes[i].bWrite) {
str += doctypes[i].description;
str += (TCHAR)NULL;
str += doctypes[i].ext;
str += (TCHAR)NULL;
}
}
return str;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -