友情提示:如果本网页打开太慢或显示不完整,请尝试鼠标右键“刷新”本网页!
第三电子书 返回本书目录 加入书签 我的书架 我的书签 TXT全本下载 『收藏到我的浏览器』

C语言实例教程(PDF格式)-第56部分

快捷操作: 按键盘上方向键 ← 或 → 可快速上下翻页 按键盘上的 Enter 键可回到本书目录页 按键盘上方向键 ↑ 可回到本页顶部! 如果本书没有阅读完,想下次继续接着阅读,可使用上方 "收藏到我的浏览器" 功能 和 "加入书签" 功能!




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:  



iTop…;  



break;  



case SB_PAGEDOWN:  



iTop += d_clHeight;  



break;  



case SB_PAGEUP:  



iTop …= d_clHeight;  



break;  



case SB_THUMBPOSITION:  



iTop = nPos;  



break;  



case SB_THUMBTRACK:  



iTop = nPos;  



break;  



case SB_TOP:  



iTop = 0;  



break;  


…………………………………………………………Page 485……………………………………………………………

}  



// Check range of new index;  



iTop = max (iTop; 0);  



iTop = min (iTop; d_cLines d_clHeight);  



// If no change; ignore。  



if (iTop == d_iTopLine) return;  



// Pixels to scroll = (lines to scroll) * height…per…line。  



int cyScroll = (d_iTopLine iTop) * d_cyLineHeight;  



// Define new top…line value。  



d_iTopLine = iTop;  



// Scroll pixels。  



ScrollWindow(0; cyScroll);  



// Adjust scroll thumb position。  



SetScrollPos(SB_VERT; d_iTopLine; TRUE);  



}  



//………………………………………………………………………
返回目录 上一页 下一页 回到顶部 1 1
快捷操作: 按键盘上方向键 ← 或 → 可快速上下翻页 按键盘上的 Enter 键可回到本书目录页 按键盘上方向键 ↑ 可回到本页顶部!
温馨提示: 温看小说的同时发表评论,说出自己的看法和其它小伙伴们分享也不错哦!发表书评还可以获得积分和经验奖励,认真写原创书评 被采纳为精评可以获得大量金币、积分和经验奖励哦!