Team Fortress 2 Source Code as on 22/4/2020
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

  1. //=========== Copyright Valve Corporation, All rights reserved. ===============//
  2. //
  3. // Purpose:
  4. //=============================================================================//
  5. #ifndef VERTICALSCROLLLIST_H
  6. #define VERTICALSCROLLLIST_H
  7. #ifdef _WIN32
  8. #pragma once
  9. #endif
  10. #include "panel2d.h"
  11. #include "panorama/controls/label.h"
  12. namespace panorama
  13. {
  14. //-----------------------------------------------------------------------------
  15. // Purpose: CVerticalScrollList
  16. //-----------------------------------------------------------------------------
  17. class CVerticalScrollList : public CPanel2D
  18. {
  19. DECLARE_PANEL2D( CVerticalScrollList, CPanel2D );
  20. public:
  21. CVerticalScrollList( CPanel2D *parent, const char * pchPanelID );
  22. virtual ~CVerticalScrollList();
  23. virtual bool BSetProperty( CPanoramaSymbol symName, const char *pchValue ) OVERRIDE;
  24. private:
  25. };
  26. } // namespace panorama
  27. #endif // VERTICALSCROLLLIST_H