⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 linkckview.h

📁 讲mfc的书
💻 H
字号:
// linkckView.h : interface of the CLinkckView class
//
///////////////////////

#if !defined(AFX_LINKCKVIEW_H__C2E65B2E_B5BC_11D0_B7BA_444553540000__INCLUDED_)
#define AFX_LINKCKVIEW_H__C2E65B2E_B5BC_11D0_B7BA_444553540000__INCLUDED_

#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000

class CLinkckView : public CFormView
{
protected: // create from serialization only
	CLinkckView();
	DECLARE_DYNCREATE(CLinkckView)

public:
	//{{AFX_DATA(CLinkckView)
	enum { IDD = IDD_LINKCK_FORM };
	CListBox	m_lb;
	//}}AFX_DATA

// Attributes
public:
	CLinkckDoc* GetDocument();

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CLinkckView)
	public:
	virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
	virtual void OnInitialUpdate();
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
	virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
	virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
	virtual void OnPrint(CDC* pDC, CPrintInfo*);
	virtual void OnEndPrintPreview(CDC* pDC, CPrintInfo* pInfo, POINT point, CPreviewView* pView);
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~CLinkckView();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:
void DoScan(CString &URL, BOOL recurse=TRUE);
void ParseURL(CString url,CString *proto,
						   CString *host, CString *path,
						   CString *fileplus);
void ExpandURL(CString &result,CString source,CString current);
// Generated message map functions
protected:
	//{{AFX_MSG(CLinkckView)
	afx_msg void OnScan();
	afx_msg void OnFilePrintPreview();
	afx_msg void OnUpdateFilePrint(CCmdUI* pCmdUI);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
private:
	BOOL PrintEnable;
};

#ifndef _DEBUG  // debug version in linkckView.cpp
inline CLinkckDoc* CLinkckView::GetDocument()
   { return (CLinkckDoc*)m_pDocument; }
#endif

///////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Developer Studio will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_LINKCKVIEW_H__C2E65B2E_B5BC_11D0_B7BA_444553540000__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -