summaryrefslogtreecommitdiff
path: root/public/dme_controls/AttributeStringChoicePanel.h
blob: a35482215c48a154d1689c006e91d4c29027c255 (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
68
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: 
//
// $NoKeywords: $
//
//=============================================================================//

#ifndef ATTRIBUTESTRINGCHOICEPANEL_h
#define ATTRIBUTESTRINGCHOICEPANEL_h

#ifdef _WIN32
#pragma once
#endif

#include "dme_controls/BaseAttributeChoicePanel.h"
#include "movieobjects/dmeeditortypedictionary.h"
#include "vgui_controls/MessageMap.h"


//-----------------------------------------------------------------------------
// Forward declarations
//-----------------------------------------------------------------------------
struct AttributeWidgetInfo_t;

namespace vgui
{
	class Panel;
	class ComboBox;
}


//-----------------------------------------------------------------------------
// Configuration for string choices
//-----------------------------------------------------------------------------
class CDmeEditorStringChoicesInfo : public CDmeEditorChoicesInfo
{
	DEFINE_ELEMENT( CDmeEditorStringChoicesInfo, CDmeEditorChoicesInfo );

public:
	// Add a choice
	CDmElement *AddChoice( const char *pValueString, const char *pChoiceString );

	// Gets the choices
	const char *GetChoiceValue( int nIndex ) const;
};


//-----------------------------------------------------------------------------
// CAttributeStringChoicePanel
//-----------------------------------------------------------------------------
class CAttributeStringChoicePanel : public CBaseAttributeChoicePanel
{
	DECLARE_CLASS_SIMPLE( CAttributeStringChoicePanel, CBaseAttributeChoicePanel );

public:
	CAttributeStringChoicePanel( vgui::Panel *parent,	const AttributeWidgetInfo_t &info );

private:
	// Derived classes can re-implement this to fill the combo box however they like
	virtual void PopulateComboBox( vgui::ComboBox *pComboBox );
	virtual void SetAttributeFromComboBox( vgui::ComboBox *pComboBox, KeyValues *pKeyValues );
	virtual void SetComboBoxFromAttribute( vgui::ComboBox *pComboBox );
};


// ----------------------------------------------------------------------------
#endif // ATTRIBUTESTRINGCHOICEPANEL_h