splitter.h
来自「cy7c68013目前最流行的几种gps芯片的控制定制程序的源代码」· C头文件 代码 · 共 58 行
H
58 行
////////////////////////////////////////////////////////////////////////////////
// splitter.h : custom splitter control and frame that contains it
// $Header: /USB/Util/EzMr/SPLITTER.H 3 8/08/00 2:26p Tpm $
// Copyright (c) 2000 Cypress Semiconductor. May not be reproduced without permission.
// See the EzUsb Developer's Kit license agreement for more details.
////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
// CSplitterFrame frame with splitter/wiper
class CSplitterFrame : public CMDIChildWnd
{
DECLARE_DYNCREATE(CSplitterFrame)
protected:
CSplitterFrame(); // protected constructor used by dynamic creation
// Attributes
protected:
CSplitterWnd m_wndSplitter;
// Implementation
public:
virtual ~CSplitterFrame();
virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
// Generated message map functions
//{{AFX_MSG(CSplitterFrame)
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
/*
class C3WaySplitterFrame : public CMDIChildWnd
{
DECLARE_DYNCREATE(C3WaySplitterFrame)
protected:
C3WaySplitterFrame(); // protected constructor used by dynamic creation
// Attributes
protected:
CSplitterWnd m_wndSplitter;
CSplitterWnd m_wndSplitter2; // embedded in the first
// Implementation
public:
virtual ~C3WaySplitterFrame();
virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
// Generated message map functions
//{{AFX_MSG(C3WaySplitterFrame)
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
*/
/////////////////////////////////////////////////////////////////////////////
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?