groupbar.cpp
来自「quake3工具源码。包括生成bsp文件」· C++ 代码 · 共 64 行
CPP
64 行
// GroupBar.cpp : implementation file
//
#include "stdafx.h"
#include "Radiant.h"
#include "GroupBar.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CGroupBar dialog
CGroupBar::CGroupBar(CWnd* pParent /*=NULL*/)
: CDialogBar()
{
//{{AFX_DATA_INIT(CGroupBar)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}
void CGroupBar::DoDataExchange(CDataExchange* pDX)
{
CDialogBar::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CGroupBar)
DDX_Control(pDX, IDC_COMBO_GROUPS, m_wndGroupList);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CGroupBar, CDialogBar)
//{{AFX_MSG_MAP(CGroupBar)
ON_BN_CLICKED(IDC_BTN_ADDGROUP, OnBtnAddgroup)
ON_BN_CLICKED(IDC_BTN_LISTGROUPS, OnBtnListgroups)
ON_BN_CLICKED(IDC_BTN_REMOVEGROUP, OnBtnRemovegroup)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CGroupBar message handlers
void CGroupBar::OnBtnAddgroup()
{
// TODO: Add your control notification handler code here
}
void CGroupBar::OnBtnListgroups()
{
// TODO: Add your control notification handler code here
}
void CGroupBar::OnBtnRemovegroup()
{
// TODO: Add your control notification handler code here
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?