summaryrefslogtreecommitdiff
path: root/public/dme_controls/AttributeTextEntry.h
blob: 7a3454b9f40099c21af8b7ae9039ecee7d10c8e0 (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: 
//
// $NoKeywords: $
//
//=============================================================================//

#ifndef ATTRIBUTETEXTENTRY_H
#define ATTRIBUTETEXTENTRY_H

#ifdef _WIN32
#pragma once
#endif

#include "vgui_controls/TextEntry.h"
#include "tier1/utlvector.h"


//-----------------------------------------------------------------------------
// Forward declarations
//-----------------------------------------------------------------------------
class CDmElement;
class CAttributeTextPanel;
class KeyValues;

namespace vgui
{
	class IScheme;
	class Label;
	class Menu;
}


//-----------------------------------------------------------------------------
// CAttributeTextEntry
//-----------------------------------------------------------------------------
class CAttributeTextEntry : public vgui::TextEntry
{
	DECLARE_CLASS_SIMPLE( CAttributeTextEntry, vgui::TextEntry );

public:
	CAttributeTextEntry( Panel *parent, const char *panelName );
	virtual bool GetSelectedRange(int& cx0,int& cx1)
	{
		return BaseClass::GetSelectedRange( cx0, cx1 );
	}

protected:
	CAttributeTextPanel *GetParentAttributePanel();
	virtual void OnMouseWheeled( int delta );

	// We'll only create an "undo" record if the values differ upon focus change
	virtual void OnSetFocus();
	virtual void OnKillFocus();
	virtual void OnKeyCodeTyped( vgui::KeyCode code );

	virtual void OnPanelDropped( CUtlVector< KeyValues * >& data  );
	virtual bool GetDropContextMenu( vgui::Menu *menu, CUtlVector< KeyValues * >& msglist );
	virtual bool IsDroppable( CUtlVector< KeyValues * >& msglist );

	virtual void ApplySchemeSettings( vgui::IScheme *pScheme );

	MESSAGE_FUNC_PARAMS( OnTextChanged, "TextChanged", data );

private:
	enum
	{
		MAX_TEXT_LENGTH = 1024
	};

    template<class T> void ApplyMouseWheel( T newValue, T originalValue );
	void StoreInitialValue( bool bForce = false );
	void WriteValueToAttribute();
	void WriteInitialValueToAttribute();

	bool				m_bValueStored;
	char				m_szOriginalText[ MAX_TEXT_LENGTH ];
	union
	{
		float			m_flOriginalValue;
		int				m_nOriginalValue;
		bool			m_bOriginalValue;
	};
};


// ----------------------------------------------------------------------------
#endif // ATTRIBUTETEXTENTRY_H