You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
2.1 KiB
69 lines
2.1 KiB
5 years ago
|
//========= 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
|