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

📄 clientview.h

📁 用CJ60Lib界面库制作的SQL数据库客户与服务器程序。
💻 H
字号:
// clientView.h : interface of the CClientView class
//
/////////////////////////////////////////////////////////////////////////////

#if !defined(AFX_CLIENTVIEW_H__6150BAFC_2678_47DF_B51A_24AAC402F6E3__INCLUDED_)
#define AFX_CLIENTVIEW_H__6150BAFC_2678_47DF_B51A_24AAC402F6E3__INCLUDED_

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

#include "CCrystalEditView.h"

class CClientView : public CCrystalEditView
{
public: // create from serialization only
	virtual CCrystalTextBuffer* LocateTextBuffer();
	CClientView();
	virtual ~CClientView();	

	void SetSelection(const CPoint &ptStart, const CPoint &ptEnd)
	{
		CCrystalTextView::SetSelection(ptStart,ptEnd);
	}

protected:
	virtual DWORD ParseLine(DWORD dwCookie, int nLineIndex, TEXTBLOCK *pBuf, int &nActualItems);
	
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CSampleView)
	public:
	virtual void OnInitialUpdate();
	//}}AFX_VIRTUAL

	DECLARE_DYNCREATE(CClientView)

// Generated message map functions
protected:
	//{{AFX_MSG(CClientView)
	afx_msg void OnRButtonUp(UINT nFlags, CPoint point);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};
#endif // !defined(AFX_CLIENTVIEW_H__6150BAFC_2678_47DF_B51A_24AAC402F6E3__INCLUDED_)

⌨️ 快捷键说明

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