blob: 8d0486f895876716a426680487abf4ab906f83e9 (
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#ifndef CL_DEMOACTIONEDITORS_H
#define CL_DEMOACTIONEDITORS_H
#ifdef _WIN32
#pragma once
#endif
#include <vgui_controls/Frame.h>
class CDemoEditorPanel;
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
class CBaseActionEditDialog : public vgui::Frame
{
DECLARE_CLASS_SIMPLE( CBaseActionEditDialog, vgui::Frame );
public:
CBaseActionEditDialog( CDemoEditorPanel *parent, CBaseDemoAction *action, bool newaction );
virtual void Init( void );
virtual void OnClose();
virtual void OnCancel();
virtual void OnCommand( char const *commands );
// Returns true if changes were effected
virtual bool OnSaveChanges( void );
private:
vgui::Button *m_pOK;
vgui::Button *m_pCancel;
vgui::TextEntry *m_pActionName;
vgui::ComboBox *m_pStartType;
vgui::TextEntry *m_pStart;
protected:
CDemoEditorPanel *m_pEditor;
CBaseDemoAction *m_pAction;
bool m_bNewAction;
};
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
class CBaseActionWithTargetDialog : public CBaseActionEditDialog
{
DECLARE_CLASS_SIMPLE( CBaseActionWithTargetDialog, CBaseActionEditDialog );
public:
CBaseActionWithTargetDialog( CDemoEditorPanel *parent, CBaseDemoAction *action, bool newaction );
// Also a pure baseclass
virtual void Init( void );
// Returns true if changes were effected
virtual bool OnSaveChanges( void );
private:
vgui::TextEntry *m_pActionTarget;
};
#endif // CL_DEMOACTIONEDITORS_H
|