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

#ifndef BASEATTRIBUTECHOICEPANEL_h
#define BASEATTRIBUTECHOICEPANEL_h

#ifdef _WIN32
#pragma once
#endif

#include "dme_controls/BaseAttributePanel.h"


//-----------------------------------------------------------------------------
// Forward declarations
//-----------------------------------------------------------------------------
class CDmElement;
struct AttributeWidgetInfo_t;

namespace vgui
{
	class IScheme;
	class Panel;
	class Label;
	class ComboBox;
}


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

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

	virtual void PostConstructor();
	virtual void ApplySchemeSettings( vgui::IScheme *pScheme );

protected:
	virtual void Refresh();

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

	MESSAGE_FUNC_PTR( OnTextChanged, "TextChanged", panel );

	virtual void Apply();
	virtual vgui::Panel *GetDataPanel();

	vgui::ComboBox	*m_pData;
};


#endif // BASEATTRIBUTECHOICEPANEL_h