mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 14:16:50 +00:00
39 lines
912 B
C++
39 lines
912 B
C++
//=========== 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
|