summaryrefslogtreecommitdiff
path: root/tools/commedit/commentarynodebrowserpanel.h
blob: 38a7de1aa89dfa7dbf538baf914c2fb658283586 (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: 
//
//===========================================================================//

#ifndef COMMENTARYNODEBROWSERPANEL_H
#define COMMENTARYNODEBROWSERPANEL_H
#ifdef _WIN32
#pragma once
#endif

#include "vgui_controls/editablepanel.h"
#include "tier1/utlstring.h"


//-----------------------------------------------------------------------------
// Forward declarations
//-----------------------------------------------------------------------------
class CCommEditDoc;
class CDmeCommentaryNodeEntity;
namespace vgui
{
	class ComboBox;
	class Button;
	class TextEntry;
	class ListPanel;
	class CheckButton;
	class RadioButton;
}


//-----------------------------------------------------------------------------
// Panel that shows all entities in the level
//-----------------------------------------------------------------------------
class CCommentaryNodeBrowserPanel : public vgui::EditablePanel
{
	DECLARE_CLASS_SIMPLE( CCommentaryNodeBrowserPanel, vgui::EditablePanel );

public:
	CCommentaryNodeBrowserPanel( CCommEditDoc *pDoc, vgui::Panel* pParent, const char *pName );   // standard constructor
	virtual ~CCommentaryNodeBrowserPanel();

// Inherited from Panel
	virtual void OnCommand( const char *pCommand );
	virtual void OnKeyCodeTyped( vgui::KeyCode code );

	// Methods related to updating the listpanel
	void UpdateEntityList();

	// Select a particular node
	void SelectNode( CDmeCommentaryNodeEntity *pNode );

private:
	// Messages handled
	MESSAGE_FUNC( OnDeleteEntities, "DeleteEntities" );
	MESSAGE_FUNC( OnItemSelected, "ItemSelected" );

	// Shows the most recent selected object in properties window
	void OnProperties();

	CCommEditDoc *m_pDoc;
	vgui::ListPanel		*m_pEntities;
};


#endif // COMMENTARYNODEBROWSERPANEL_H