You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
912 B
38 lines
912 B
//=========== 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
|
|
|