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.
35 lines
855 B
35 lines
855 B
//========= 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
|
|
|