diff options
| author | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
|---|---|---|
| committer | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
| commit | 3bf9df6b2785fa6d951086978a3e66f49427166a (patch) | |
| tree | 2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /public/dme_controls/BaseAttributeChoicePanel.h | |
| download | archived-source-engine-2018-hl2-src-master.tar.xz archived-source-engine-2018-hl2-src-master.zip | |
Diffstat (limited to 'public/dme_controls/BaseAttributeChoicePanel.h')
| -rw-r--r-- | public/dme_controls/BaseAttributeChoicePanel.h | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/public/dme_controls/BaseAttributeChoicePanel.h b/public/dme_controls/BaseAttributeChoicePanel.h new file mode 100644 index 0000000..89a25f0 --- /dev/null +++ b/public/dme_controls/BaseAttributeChoicePanel.h @@ -0,0 +1,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 |