ToolTip.h 529 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. GWEN
  3. Copyright (c) 2010 Facepunch Studios
  4. See license in Gwen.h
  5. */
  6. #pragma once
  7. #ifndef GWEN_TOOLTIP_H
  8. #define GWEN_TOOLTIP_H
  9. #include "Gwen/Controls/Base.h"
  10. #include "Gwen/Gwen.h"
  11. #include "Gwen/Skin.h"
  12. using namespace Gwen;
  13. using namespace Gwen::Controls;
  14. namespace ToolTip
  15. {
  16. GWEN_EXPORT void Enable ( Controls::Base* pControl );
  17. GWEN_EXPORT void Disable ( Controls::Base* pControl );
  18. GWEN_EXPORT void ControlDeleted ( Controls::Base* pControl );
  19. GWEN_EXPORT void RenderToolTip ( Skin::Base* skin );
  20. }
  21. #endif