Counter Strike : Global Offensive Source Code
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.
|
|
//====== Copyright � 1996-2005, Valve Corporation, All rights reserved. =======//
//
// Purpose:
//
// $NoKeywords: $
//
//=============================================================================//
#ifndef ATTRIBUTEBASEPICKERPANEL_H
#define ATTRIBUTEBASEPICKERPANEL_H
#ifdef _WIN32
#pragma once
#endif
#include "dme_controls/AttributeTextPanel.h"
//-----------------------------------------------------------------------------
// Forward declarations
//-----------------------------------------------------------------------------
class CDmElement;
namespace vgui { class Button; }
//-----------------------------------------------------------------------------
// CAttributeBasePickerPanel
//-----------------------------------------------------------------------------
class CAttributeBasePickerPanel : public CAttributeTextPanel { DECLARE_CLASS_SIMPLE( CAttributeBasePickerPanel, CAttributeTextPanel );
public: CAttributeBasePickerPanel( vgui::Panel *parent, const AttributeWidgetInfo_t &info );
// Inherited from Panel
virtual void OnCommand( const char *cmd ); virtual void PerformLayout();
private: // Inherited classes must implement this
virtual void ShowPickerDialog() = 0;
vgui::Button *m_pOpen; };
#endif // ATTRIBUTEBASEPICKERPANEL_H
|