summaryrefslogtreecommitdiff
path: root/public/panorama/controls/verticalscrolllist.h
blob: a9b6c514f2a5bf2d59cbdf4c627a790016b25e28 (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
//=========== Copyright Valve Corporation, All rights reserved. ===============//
//
// Purpose: 
//=============================================================================//

#ifndef VERTICALSCROLLLIST_H
#define VERTICALSCROLLLIST_H

#ifdef _WIN32
#pragma once
#endif

#include "panel2d.h"
#include "panorama/controls/label.h"

namespace panorama
{

//-----------------------------------------------------------------------------
// Purpose: CVerticalScrollList
//-----------------------------------------------------------------------------
class CVerticalScrollList : public CPanel2D
{
	DECLARE_PANEL2D( CVerticalScrollList, CPanel2D );

public:
	CVerticalScrollList( CPanel2D *parent, const char * pchPanelID );
	virtual ~CVerticalScrollList();

	virtual bool BSetProperty( CPanoramaSymbol symName, const char *pchValue ) OVERRIDE;

private:
};


} // namespace panorama

#endif // VERTICALSCROLLLIST_H