blob: ef0501705b5b042501f0f51c806eec53a1da2690 (
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
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//
//=============================================================================//
#ifndef ATTRIBUTESOUNDPICKERPANEL_H
#define ATTRIBUTESOUNDPICKERPANEL_H
#ifdef _WIN32
#pragma once
#endif
#include "dme_controls/AttributeBasePickerPanel.h"
//-----------------------------------------------------------------------------
// Forward declarations
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
// CAttributeSoundPickerPanel
//-----------------------------------------------------------------------------
class CAttributeSoundPickerPanel : public CAttributeBasePickerPanel
{
DECLARE_CLASS_SIMPLE( CAttributeSoundPickerPanel, CAttributeBasePickerPanel );
public:
CAttributeSoundPickerPanel( vgui::Panel *parent, const AttributeWidgetInfo_t &info );
~CAttributeSoundPickerPanel();
private:
MESSAGE_FUNC_PARAMS( OnSoundSelected, "SoundSelected", kv );
virtual void ShowPickerDialog();
};
#endif // ATTRIBUTESOUNDPICKERPANEL_H
|