diff options
| author | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
|---|---|---|
| committer | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
| commit | 3bf9df6b2785fa6d951086978a3e66f49427166a (patch) | |
| tree | 2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /utils/vgui_panel_zoo/ButtonDemo.cpp | |
| download | archived-source-engine-2018-hl2-src-master.tar.xz archived-source-engine-2018-hl2-src-master.zip | |
Diffstat (limited to 'utils/vgui_panel_zoo/ButtonDemo.cpp')
| -rw-r--r-- | utils/vgui_panel_zoo/ButtonDemo.cpp | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/utils/vgui_panel_zoo/ButtonDemo.cpp b/utils/vgui_panel_zoo/ButtonDemo.cpp new file mode 100644 index 0000000..e0baa40 --- /dev/null +++ b/utils/vgui_panel_zoo/ButtonDemo.cpp @@ -0,0 +1,81 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +// $NoKeywords: $ +//=============================================================================// +#include "DemoPage.h" + +#include <VGUI/IVGui.h> +#include <vgui_controls/Controls.h> +#include <Keyvalues.h> +#include <vgui_controls/Button.h> + + +using namespace vgui; + + +class ButtonDemo: public DemoPage +{ + public: + ButtonDemo(Panel *parent, const char *name); + ~ButtonDemo(); + + void OnButtonClicked(); + + private: + Button *m_pButton; + + DECLARE_PANELMAP(); +}; + +//----------------------------------------------------------------------------- +// Purpose: Constructor +//----------------------------------------------------------------------------- +ButtonDemo::ButtonDemo(Panel *parent, const char *name) : DemoPage(parent, name) +{ + // Create a button. + m_pButton = new Button(this, "AButton", "ClickMe"); + + // Set its position. + m_pButton->SetPos(100, 100); + + // Install a command that will be executed when the button is pressed + // Here we use a KeyValues command, this is mapped using the Message map + // below to a function. + m_pButton->SetCommand(new KeyValues ("ButtonClicked")); + +} + +//----------------------------------------------------------------------------- +// Purpose: Destructor +//----------------------------------------------------------------------------- +ButtonDemo::~ButtonDemo() +{ +} + +//----------------------------------------------------------------------------- +// Purpose: Respond to a message based action signal +//----------------------------------------------------------------------------- +void ButtonDemo::OnButtonClicked() +{ + ivgui()->DPrintf("Button was clicked.\n"); +} + + + +MessageMapItem_t ButtonDemo::m_MessageMap[] = +{ + MAP_MESSAGE( ButtonDemo, "ButtonClicked", OnButtonClicked ), +}; + +IMPLEMENT_PANELMAP(ButtonDemo, DemoPage); + + + +Panel* ButtonDemo_Create(Panel *parent) +{ + return new ButtonDemo(parent, "ButtonDemo"); +} + + |