blob: 270cad4753be4f42989cec198758bbafe2292837 (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================
#ifndef CONFIGPANEL_H
#define CONFIGPANEL_H
#ifdef _WIN32
#pragma once
#endif
#include <vgui_controls/Frame.h>
//-----------------------------------------------------------------------------
// Purpose: Dialog for displaying information about a game server
//-----------------------------------------------------------------------------
class CConfigPanel : public vgui::Frame
{
DECLARE_CLASS_SIMPLE( CConfigPanel, vgui::Frame );
public:
CConfigPanel(vgui::Panel *parent, bool autorefresh,bool savercon,int refreshtime,bool graphs, int graphsrefreshtime,bool getlogs);
~CConfigPanel();
void Run();
protected:
// message handlers
MESSAGE_FUNC_PTR( OnButtonToggled, "ButtonToggled", panel );
MESSAGE_FUNC_PTR( OnRadioButtonChecked, "RadioButtonChecked", panel )
{
OnButtonToggled( panel );
}
// vgui overrides
virtual void OnClose();
virtual void OnCommand(const char *command);
private:
void SetControlText(const char *textEntryName, const char *text);
vgui::Button *m_pOkayButton;
vgui::Button *m_pCloseButton;
vgui::CheckButton *m_pRconCheckButton;
vgui::CheckButton *m_pRefreshCheckButton;
vgui::TextEntry *m_pRefreshTextEntry;
vgui::CheckButton *m_pGraphsButton;
vgui::TextEntry *m_pGraphsRefreshTimeTextEntry;
vgui::CheckButton *m_pLogsButton;
};
#endif // CONFIGPANEL_H
|