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.
43 lines
1.2 KiB
43 lines
1.2 KiB
//========= Copyright Valve Corporation, All rights reserved. ============// |
|
// |
|
// Purpose: |
|
// |
|
// $NoKeywords: $ |
|
// |
|
//=============================================================================// |
|
|
|
#ifndef ATTRIBUTEMDLPICKERPANEL_H |
|
#define ATTRIBUTEMDLPICKERPANEL_H |
|
|
|
#ifdef _WIN32 |
|
#pragma once |
|
#endif |
|
|
|
#include "dme_controls/AttributeBasePickerPanel.h" |
|
#include "vgui_controls/PHandle.h" |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
// Forward declarations |
|
//----------------------------------------------------------------------------- |
|
class CMDLPickerFrame; |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
// CAttributeMDLPickerPanel |
|
//----------------------------------------------------------------------------- |
|
class CAttributeMDLPickerPanel : public CAttributeBasePickerPanel |
|
{ |
|
DECLARE_CLASS_SIMPLE( CAttributeMDLPickerPanel, CAttributeBasePickerPanel ); |
|
|
|
public: |
|
CAttributeMDLPickerPanel( vgui::Panel *parent, const AttributeWidgetInfo_t &info ); |
|
~CAttributeMDLPickerPanel(); |
|
|
|
private: |
|
MESSAGE_FUNC_PARAMS( OnMDLSelected, "MDLSelected", kv ); |
|
virtual void ShowPickerDialog(); |
|
}; |
|
|
|
|
|
#endif // ATTRIBUTEMDLPICKERPANEL_H
|
|
|