diff options
| author | Joe Ludwig <[email protected]> | 2013-06-26 15:22:04 -0700 |
|---|---|---|
| committer | Joe Ludwig <[email protected]> | 2013-06-26 15:22:04 -0700 |
| commit | 39ed87570bdb2f86969d4be821c94b722dc71179 (patch) | |
| tree | abc53757f75f40c80278e87650ea92808274aa59 /mp/src/public/vgui_controls/KeyBindingHelpDialog.h | |
| download | source-sdk-2013-39ed87570bdb2f86969d4be821c94b722dc71179.tar.xz source-sdk-2013-39ed87570bdb2f86969d4be821c94b722dc71179.zip | |
First version of the SOurce SDK 2013
Diffstat (limited to 'mp/src/public/vgui_controls/KeyBindingHelpDialog.h')
| -rw-r--r-- | mp/src/public/vgui_controls/KeyBindingHelpDialog.h | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/mp/src/public/vgui_controls/KeyBindingHelpDialog.h b/mp/src/public/vgui_controls/KeyBindingHelpDialog.h new file mode 100644 index 00000000..284cfc08 --- /dev/null +++ b/mp/src/public/vgui_controls/KeyBindingHelpDialog.h @@ -0,0 +1,63 @@ +//========= Copyright Valve Corporation, All rights reserved. ============//
+//
+// Purpose:
+//
+//=============================================================================
+
+#ifndef KEYBINDINGHELPDIALOG_H
+#define KEYBINDINGHELPDIALOG_H
+#ifdef _WIN32
+#pragma once
+#endif
+
+#include "vgui_controls/Frame.h"
+#include "vgui/KeyCode.h"
+
+namespace vgui
+{
+
+class ListPanel;
+class CKeyBoardEditorDialog;
+
+//-----------------------------------------------------------------------------
+// Purpose: Dialog for use in editing keybindings
+//-----------------------------------------------------------------------------
+class CKeyBindingHelpDialog : public Frame
+{
+ DECLARE_CLASS_SIMPLE( CKeyBindingHelpDialog, Frame );
+
+public:
+ CKeyBindingHelpDialog( Panel *parent, Panel *panelToView, KeyBindingContextHandle_t handle, KeyCode code, int modifiers );
+ ~CKeyBindingHelpDialog();
+
+ virtual void OnCommand( char const *cmd );
+ virtual void OnKeyCodeTyped(vgui::KeyCode code);
+
+ // The key originally bound to help was pressed
+ void HelpKeyPressed();
+private:
+
+ virtual void OnTick();
+
+ bool IsHelpKeyStillBeingHeld();
+
+ void PopulateList();
+ void GetMappingList( Panel *panel, CUtlVector< PanelKeyBindingMap * >& maps );
+
+ void AnsiText( char const *token, char *out, size_t buflen );
+
+ vgui::PHandle m_hPanel;
+ KeyBindingContextHandle_t m_Handle;
+ KeyCode m_KeyCode;
+ int m_Modifiers;
+
+ ListPanel *m_pList;
+ double m_flShowTime;
+ bool m_bPermanent;
+
+ DHANDLE< CKeyBoardEditorDialog > m_hKeyBindingsEditor;
+};
+
+}
+
+#endif // KEYBINDINGHELPDIALOG_H
|