blob: 944533518f1f98837a07c5884527ba3281311a26 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#ifndef SELECTMODEDLGBAR_H
#define SELECTMODEDLGBAR_H
#ifdef _WIN32
#pragma once
#endif
#include "resource.h"
#include "GroupList.h"
#include "HammerBar.h"
class CSelectModeDlgBar : public CHammerBar
{
public:
BOOL Create(CWnd *pParentWnd);
private:
//{{AFX_DATA(CFilterControl)
enum { IDD = IDD_SELECT_MODE_BAR };
//}}AFX_DATA
protected:
//{{AFX_MSG(CFilterControl)
afx_msg void OnGroups();
afx_msg void OnObjects();
afx_msg void OnSolids();
afx_msg void UpdateControlGroups(CCmdUI *pCmdUI);
afx_msg void UpdateControlObjects(CCmdUI *pCmdUI);
afx_msg void UpdateControlSolids(CCmdUI *pCmdUI);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
#endif // SELECTMODEDLGBAR_H
|