blob: 9eb1d94b16e86f9560a30c4cad353f4f71e238c7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#ifndef CVARNEGATECHECKBUTTON_H
#define CVARNEGATECHECKBUTTON_H
#ifdef _WIN32
#pragma once
#endif
#include <vgui_controls/CheckButton.h>
class CCvarNegateCheckButton : public vgui::CheckButton
{
DECLARE_CLASS_SIMPLE( CCvarNegateCheckButton, vgui::CheckButton );
public:
CCvarNegateCheckButton( vgui::Panel *parent, const char *panelName, const char *text,
char const *cvarname );
~CCvarNegateCheckButton();
virtual void SetSelected( bool state );
virtual void Paint();
void Reset();
void ApplyChanges();
bool HasBeenModified();
private:
MESSAGE_FUNC( OnButtonChecked, "CheckButtonChecked" );
char *m_pszCvarName;
bool m_bStartState;
};
#endif // CVARNEGATECHECKBUTTON_H
|