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
776 B

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //=============================================================================//
  7. #ifndef DIVIDER_H
  8. #define DIVIDER_H
  9. #ifdef _WIN32
  10. #pragma once
  11. #endif
  12. #include <vgui_controls/Panel.h>
  13. namespace vgui
  14. {
  15. //-----------------------------------------------------------------------------
  16. // Purpose: Thin line used to divide sections in dialogs
  17. //-----------------------------------------------------------------------------
  18. class Divider : public Panel
  19. {
  20. DECLARE_CLASS_SIMPLE( Divider, Panel );
  21. public:
  22. Divider(Panel *parent, const char *name);
  23. ~Divider();
  24. virtual void ApplySchemeSettings(IScheme *pScheme);
  25. };
  26. } // namespace vgui
  27. #endif // DIVIDER_H