hl2_src-leak-2017/src/gameui/CvarTextEntry.h

36 lines
855 B
C++

//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#ifndef CVARTEXTENTRY_H
#define CVARTEXTENTRY_H
#ifdef _WIN32
#pragma once
#endif
#include <vgui_controls/TextEntry.h>
class CCvarTextEntry : public vgui::TextEntry
{
DECLARE_CLASS_SIMPLE( CCvarTextEntry, vgui::TextEntry );
public:
CCvarTextEntry( vgui::Panel *parent, const char *panelName, char const *cvarname );
~CCvarTextEntry();
MESSAGE_FUNC( OnTextChanged, "TextChanged" );
void ApplyChanges( bool immediate = false );
virtual void ApplySchemeSettings(vgui::IScheme *pScheme);
void Reset();
bool HasBeenModified();
private:
char *m_pszCvarName;
char m_pszStartValue[64];
};
#endif // CVARTEXTENTRY_H