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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================
#include <stdio.h>
#include "DialogKickPlayer.h"
#include <VGUI_Button.h>
#include <VGUI_KeyValues.h>
#include <VGUI_Label.h>
#include <VGUI_TextEntry.h>
#include <VGUI_Controls.h>
#include <VGUI_ISurface.h>
using namespace vgui;
#define max(a,b) (((a) > (b)) ? (a) : (b))
//-----------------------------------------------------------------------------
// Purpose: Constructor
//-----------------------------------------------------------------------------
CDialogKickPlayer::CDialogKickPlayer() : Frame(NULL, "DialogKickPlayer")
{
SetSize(320, 200);
m_pInfoLabel = new Label(this, "InfoLabel", "Kick Player?");
m_pPlayerLabel = new Label(this, "PlayerLabel", "<player name>");
m_pOkayButton = new Button(this, "OkayButton", "&Okay");
LoadControlSettings("Admin\\DialogKickPlayer.res");
SetTitle("Kick/Ban/Status Player", true);
// set our initial position in the middle of the workspace
MoveToCenterOfScreen();
}
//-----------------------------------------------------------------------------
// Purpose: Destructor
//-----------------------------------------------------------------------------
CDialogKickPlayer::~CDialogKickPlayer()
{
}
//-----------------------------------------------------------------------------
// Purpose: initializes the dialog and brings it to the foreground
//-----------------------------------------------------------------------------
void CDialogKickPlayer::Activate(const char *playerName,const char *question,const char *type)
{
m_pPlayerLabel->SetText(playerName);
m_pInfoLabel->SetText(question);
m_pInfoLabel->SizeToContents();
// SetSize(
int wide,tall;
m_pInfoLabel->GetSize(wide,tall);
SetWide(max(wide+50,GetWide()));
m_cType=type;
m_pOkayButton->SetAsDefaultButton(true);
MakePopup();
MoveToFront();
RequestFocus();
}
//-----------------------------------------------------------------------------
// Purpose:
// Input : *command -
//-----------------------------------------------------------------------------
void CDialogKickPlayer::OnCommand(const char *command)
{
bool bClose = false;
if (!stricmp(command, "Okay"))
{
KeyValues *msg = new KeyValues("KickPlayer");
char buf[64];
m_pPlayerLabel->GetText(buf,64);
msg->SetString("player", buf );
msg->SetString("type",m_cType);
PostActionSignal(msg);
bClose = true;
}
else if (!stricmp(command, "Close"))
{
bClose = true;
}
else
{
BaseClass::OnCommand(command);
}
if (bClose)
{
PostMessage(this, new KeyValues("Close"));
MarkForDeletion();
}
}
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
void CDialogKickPlayer::PerformLayout()
{
BaseClass::PerformLayout();
}
//-----------------------------------------------------------------------------
// Purpose: deletes the dialog on close
//-----------------------------------------------------------------------------
void CDialogKickPlayer::OnClose()
{
BaseClass::OnClose();
MarkForDeletion();
}
|