友情提示:如果本网页打开太慢或显示不完整,请尝试鼠标右键“刷新”本网页!
C语言实例教程(PDF格式)-第41部分
快捷操作: 按键盘上方向键 ← 或 → 可快速上下翻页 按键盘上的 Enter 键可回到本书目录页 按键盘上方向键 ↑ 可回到本页顶部! 如果本书没有阅读完,想下次继续接着阅读,可使用上方 "收藏到我的浏览器" 功能 和 "加入书签" 功能!
//{{AFX_MSG_MAP(DApp)
ON_MAND(ID_APP_ABOUT; OnAppAbout)
// NOTE the ClassWizard will add and remove mapping macros here。
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG_MAP
// Standard file based document mands
ON_MAND(ID_FILE_NEW; CWinApp::OnFileNew)
ON_MAND(ID_FILE_OPEN; CWinApp::OnFileOpen)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// DApp construction
DApp::DApp()
{
// TODO: add construction code here;
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only DApp object
DApp theApp;
/////////////////////////////////////////////////////////////////////////////
…………………………………………………………Page 470……………………………………………………………
// DApp initialization
BOOL DApp::InitInstance()
{
// Step 1: Allocate C++ window object。
DMainFrame * pFrame;
pFrame = new DMainFrame();
// Step 2: Initialize window object。
pFrame…》LoadFrame(IDR_MAINFRAME);
// Make window visible
pFrame…》ShowWindow(m_nCmdShow);
// Assign frame as application's main window
m_pMainWnd = pFrame;
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
// Implementation
protected:
…………………………………………………………Page 471……………………………………………………………
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//{{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 mand to run the dialog
void DApp::OnAppAbout()
{
CAboutDlg aboutDlg;
…………………………………………………………Page 472……………………………………………………………
aboutDlg。DoModal();
}
/////////////////////////////////////////////////////////////////////////////
// DApp mands
// mainfrm。h : interface of the DMainFrame class
//
/////////////////////////////////////////////////////////////////////////////
#include // Connect to CArray template。
// Structure to track lines in text file。
class STRING
{
public:
LPTSTR pText;
int ccLen;
};
// This declaration uses the CArray template
// to provide a dynamic array of STRING records。
class StringArray : public CArray
{
public:
StringArray() {}
STRING& operator=(STRING & s)
{m_pData…》pText = s。pText;
m_pData…》ccLen = s。ccLen;
return *m_pData;}
};
…………………………………………………………Page 473……………………………………………………………
const int g_nTabCount=25;
const int g_nTabStop=4;
class DMainFrame : public CFrameWnd
{
public:
DMainFrame();
protected: // create from serialization only
DECLARE_DYNCREATE(DMainFrame)
// Attributes
public:
BOOL d_bTabs; // Respect tabs or not。
CFileDialog * d_pOpenFile; // Ptr to OpenFile dialog。
CFontDialog * d_pSetFont; // Ptr to Font Picker dialog。
CFont * d_pFont; // Ptr to CFont object。
COLORREF d_crForeground; // Foreground text color。
COLORREF d_crBackground; // Background text color。
LOGFONT d_lf; // Current logical font。
LPINT d_pnTabs; // Array of tab settings。
LPTSTR d_lpTextBuffer; // Ptr to text buffer。
DWORD d_dwFileLength; // File length。
StringArray d_saTextInfo; // Array of string info。
int d_cLines; // Count of lines in text。
int d_cyLineHeight; // Height of one line of text。
int d_clHeight; // Window height line count。
int d_iTopLine; // Index of top…most line。
int d_cyClient; // Window client area height。
…………………………………………………………Page 474……………………………………………………………
int d_cxLeftMargin; // Margin to left of text。
// Operations
public:
void BuildStringArray();
BOOL CreateNewFont();
void ResetScrollValues();
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(DMainFrame)
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~DMainFrame();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
// Generated message map functions
protected:
//{{AFX_MSG(DMainFrame)
afx_msg void CmdFileOpen();
afx_msg void CmdFormatFont();
afx_msg void CmdFormatTabs();
afx_msg void UpdFormatTabs(CCmdUI* pCmdUI);
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
afx_msg void OnPaint();
…………………………………………………………Page 475……………………………………………………………
afx_msg void OnSize(UINT nType; int cx; int cy);
afx_msg void OnVScroll(UINT nSBCode; UINT nPos; CScrollBar* pScrollBar);
afx_msg void OnWinIniChange(LPCTSTR lpszSection);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// mainfrm。cpp : implementation of the DMainFrame class
//
#include 〃stdafx。h〃
#include 〃filelist。h〃
#include 〃mainfrm。h〃
#ifdef _DEBUG
#undef THIS_FILE
static char BASED_CODE THIS_FILE'' = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// DMainFrame
IMPLEMENT_DYNCREATE(DMainFrame; CFrameWnd)
BEGIN_MESSAGE_MAP(DMainFrame; CFrameWnd)
//{{AFX_MSG_MAP(DMainFrame)
ON_MAND(ID_FILE_OPEN; CmdFileOpen)
ON_MAND(ID_FORMAT_FONT; CmdFormatFont)
ON_MAND(ID_FORMAT_TABS; CmdFormatTabs)
ON_UPDATE_MAND_UI(ID_FORMAT_TABS; UpdFormatTabs)
ON_WM_CREATE()
…………………………………………………………Page 476……………………………………………………………
ON_WM_PAINT()
ON_WM_SIZE()
ON_WM_VSCROLL()
ON_WM_WININICHANGE()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// DMainFrame construction/destruction
DMainFrame::DMainFrame()
{
// Init all data members to a known value。
d_pOpenFile = 0;
d_lpTextBuffer = 0;
d_dwFileLength = 0;
d_pFont = 0;
// Init desired font。
memset (&d_lf; 0; sizeof(LOGFONT));
// Initial font face name is Courier New。
lstrcpy (d_lf。lfFaceName; _T(〃Courier New〃));
// Initial font size is 10 pt。
CWindowDC dc(NULL);
int cyPixels = dc。GetDeviceCaps(LOGPIXELSY);
d_lf。lfHeight = (…1) * MulDiv(10; cyPixels; 72);
// Initial tab setting is OFF。
d_bTabs = TRUE;
// Tab table initially empty (set when font selected)。
…………………………………………………………Page 477……………………………………………………………
d_pnTabs = 0;
}
DMainFrame::~DMainFrame()
{
if (d_pFont) delete d_pFont;
if (d_pnTabs) delete '' d_pnTabs;
if (d_pOpenFile) delete d_pOpenFile;
if (d_pSetFont) delete d_pSetFont;
}
///////////////////////////////////////////////////////////////////////////////
// DMainFrame helper functions。
//…………………………………………………………………………………………………………………………………………………………………………………………………………
// BuildStringArray …Parses text file to create a CString array。
void DMainFrame::BuildStringArray()
{
// Scan buffer to calculate line count。
LPTSTR lpNext = d_lpTextBuffer;
LPTSTR lpEnd = d_lpTextBuffer + d_dwFileLength 1;
*lpEnd = 'n';
for (d_cLines = 0; lpNext 《 lpEnd; d_cLines++; lpNext++)
{
// Search for next character。
lpNext = strchr(lpNext; 'n');
// Discontinue if NULL encountered。
if (lpNext == NULL) break;
}
…………………………………………………………Page 478……………………………………………………………
// Set array size。
d_saTextInfo。SetSize(d_cLines);
// Scan buffer to build array of pointers & sizes。
STRING string;
lpNext = d_lpTextBuffer;
for (int iLine = 0; iLine 《 d_cLines; iLine++)
{
// Char count for current line。
string。ccLen = 0;
string。pText = lpNext;
// Loop to end…of…line。
while ((*lpNext != 'n') && (*lpNext != 'r'))
{
lpNext++; // Check next char。
string。ccLen++; // Increment length counter。
}
// Enter value in array。
d_saTextInfo'iLine' = string;
// Skip over
lpNext += (2 * sizeof(char));
}
}
//…………………………………………………………………………………………………………………………………………………………………………………………………………
// CreateNewFont …Creates new CFont for use in drawing text。
BOOL DMainFrame::CreateNewFont()
{
…………………………………………………………Page 479……………………………………………………………
// Delete any previous font。
if (d_pFont)
delete d_pFont;
// Create a new font
d_pFont = new CFont();
if (!d_pFont) return FALSE;
d_pFont…》CreateFontIndirect(&d_lf);
// Calculate font height
CClientDC dc(this);
TEXTMETRIC tm;
dc。SelectObject(d_pFont);
dc。GetTextMetrics(&tm);
d_cyLineHeight = tm。tmHeight + tm。tmExternalLeading;
// Calculate left margin。
d_cxLeftMargin = tm。tmAveCharWidth * 2;
// Rebuild tab setting table。
if (d_pnTabs) delete '' d_pnTabs;
d_pnTabs = new INT'g_nTabCount';
for (int i=0; iGetPathName();
// Open file in read…only mode。
CFile cfData;
if (!cfData。Open(csFile; CFile::modeRead))
{
AfxMessageBox(_T(〃Error Opening File〃));
return;
}
// Free previous buffer contents
if (d_lpTextBuffer)
{
free(d_lpTextBuffer);
…………………………………………………………Page 482……………………………………………………………
d_lpTextBuffer=0;
}
// Calculate file size & allocate buffer。
// Pad to avoid bad address reference。
d_dwFileLength = cfData。GetLength() + sizeof(char);
d_lpTextBuffer = (LPTSTR)malloc (d_dwFileLength);
if (!d_lpTextBuffer)
{
AfxMessageBox(_T(〃Cannot Allocate Memory For File〃));
return;
《 // Loop through client area coordinates to draw。
int cyLine = 0;
while (iLine 《 cLastLine)
{
// Draw a line of text。
LPTSTR lp = d_saTextInfo'iLine'。pText;
int cc = d_saTextInfo'iLine'。ccLen;
// Drawing function depends on 'respect tabs' setting。
if (d_bTabs && d_pnTabs != 0)
{
dc。TabbedTextOut(d_cxLeftMargin; cyLine; lp; cc;
g_nTabCount; d_pnTabs; 0);
}
else
{
dc。TextOut(d_cxLeftMargin; cyLine; lp; cc);
…………………………………………………………Page 483……………………………………………………………
}
// Increment various counts。
cyLine += d_cyLineHeight;
iLine++;
}
}
//…………………………………………………………………………………………………………………………………………………………………………………………………………
// WM_SIZE message handler。
void DMainFrame::OnSize(UINT nType; int cx; int cy)
{
// Notify base class of new window size。
CFrameWnd ::OnSize(nType; cx; cy);
// Save client area height。
d_cyClient = cy;
// Recalculate scroll bar info。
ResetScrollValues();
}
//…………………………………………………………………………………………………………………………………………………………………………………………………………
// WM_VSCROLL message handler。
void DMainFrame::OnVScroll(UINT nSBCode; UINT nPos; CScrollBar* pScrollBar)
{
// Temporary 〃new line〃 value。
int iTop = d_iTopLine;
// Based on particular scroll button clicked; modify top line index。
switch(nSBCode)
{
…………………………………………………………Page 484……………………………………………………………
case SB_BOTTOM:
iTop = d_cLines d_clHeight;
break;
case SB_ENDSCROLL:
break;
case SB_LINEDOWN:
iTop++;
break;
case SB_LINEUP:
快捷操作: 按键盘上方向键 ← 或 → 可快速上下翻页 按键盘上的 Enter 键可回到本书目录页 按键盘上方向键 ↑ 可回到本页顶部!
温馨提示: 温看小说的同时发表评论,说出自己的看法和其它小伙伴们分享也不错哦!发表书评还可以获得积分和经验奖励,认真写原创书评 被采纳为精评可以获得大量金币、积分和经验奖励哦!