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.
31 lines
764 B
31 lines
764 B
5 years ago
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
// $NoKeywords: $
|
||
|
//=============================================================================//
|
||
|
|
||
|
#ifndef COMMANDCHECKBUTTON_H
|
||
|
#define COMMANDCHECKBUTTON_H
|
||
|
#ifdef _WIN32
|
||
|
#pragma once
|
||
|
#endif
|
||
|
|
||
|
#include <vgui_controls/CheckButton.h>
|
||
|
|
||
|
class CCommandCheckButton : public vgui::CheckButton
|
||
|
{
|
||
|
public:
|
||
|
CCommandCheckButton( vgui::Panel *parent, const char *panelName, const char *text, const char *downcmd, const char *upcmd );
|
||
|
~CCommandCheckButton();
|
||
|
|
||
|
// virtual void OnCheckButtonChecked(vgui::Panel *panel);
|
||
|
virtual void SetSelected( bool state );
|
||
|
private:
|
||
|
typedef vgui::CheckButton BaseClass;
|
||
|
|
||
|
char *m_pszDown;
|
||
|
char *m_pszUp;
|
||
|
};
|
||
|
#endif // COMMANDCHECKBUTTON_H
|