?? workspacebar.cpp
字號:
// WorkspaceBar.cpp : implementation of the CWorkspaceBar class
//
#include "stdafx.h"
#include "StateCollection.h"
#include "WorkspaceBar.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CWorkspaceBar
BEGIN_MESSAGE_MAP(CWorkspaceBar, CBCGSizingControlBar)
//{{AFX_MSG_MAP(CWorkspaceBar)
ON_WM_CREATE()
ON_WM_SIZE()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CWorkspaceBar construction/destruction
CWorkspaceBar::CWorkspaceBar()
{
// TODO: add one-time construction code here
}
CWorkspaceBar::~CWorkspaceBar()
{
}
/////////////////////////////////////////////////////////////////////////////
// CWorkspaceBar message handlers
int CWorkspaceBar::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (CBCGSizingControlBar::OnCreate(lpCreateStruct) == -1)
return -1;
CRect rectDummy;
rectDummy.SetRectEmpty ();
// Create tabs window:
if (!m_wndTabs.Create (CBCGTabWnd::STYLE_3D, rectDummy, this, 1))
{
TRACE0("Failed to create workspace tab window\n");
return -1; // fail to create
}
m_wndTabs.SetImageList (IDB_WORKSPACE, 16, RGB (255, 0, 255));
// Create tree windows.
// TODO: create your own tab windows here:
const DWORD dwViewStyle = WS_CHILD | WS_VISIBLE | TVS_HASLINES |
TVS_LINESATROOT | TVS_HASBUTTONS;
if (!m_wndTree1.Create (dwViewStyle, rectDummy, &m_wndTabs, 2) ||
!m_wndTree2.Create (dwViewStyle, rectDummy, &m_wndTabs, 3))
{
TRACE0("Failed to create workspace view\n");
return -1; // fail to create
}
// Setup trees content:
HTREEITEM hRoot1 = m_wndTree1.InsertItem (_T("Root 1"));
m_wndTree1.InsertItem (_T("Item 1"), hRoot1);
m_wndTree1.InsertItem (_T("Item 2"), hRoot1);
HTREEITEM hRoot2 = m_wndTree2.InsertItem (_T("Root 2"));
m_wndTree2.InsertItem (_T("Item 1"), hRoot2);
m_wndTree2.InsertItem (_T("Item 2"), hRoot2);
// Attach tree windows to tab:
m_wndTabs.AddTab (&m_wndTree1, _T("First View"), 0 /* Image number */);
m_wndTabs.AddTab (&m_wndTree2, _T("Second View"), 1 /* Image number */);
return 0;
}
void CWorkspaceBar::OnSize(UINT nType, int cx, int cy)
{
CBCGSizingControlBar::OnSize(nType, cx, cy);
// Tab control should cover a whole client area:
m_wndTabs.SetWindowPos (NULL, -1, -1, cx, cy,
SWP_NOMOVE | SWP_NOACTIVATE | SWP_NOZORDER);
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -