source2006/public/vgui_controls/tooltip.h
2020-02-25 05:28:57 +02:00

55 lines
1.3 KiB
C++

//========= Copyright © 1996-2005, Valve Corporation, All rights reserved. ============//
//
// Purpose: Creates a Message box with a question in it and yes/no buttons
//
// $NoKeywords: $
//=============================================================================//
#ifndef TOOLTIP_H
#define TOOLTIP_H
#ifdef _WIN32
#pragma once
#endif
#include <vgui/VGUI.h>
#include <vgui_controls/Controls.h>
#include <UtlVector.h>
namespace vgui
{
//-----------------------------------------------------------------------------
// Purpose: Tooltip for a panel - shows text when cursor hovers over a panel
//-----------------------------------------------------------------------------
class Tooltip
{
public:
Tooltip(Panel *parent, const char *text = NULL);
~Tooltip();
void SetText(const char *text);
const char *GetText();
void ShowTooltip(Panel *currentPanel);
void HideTooltip();
void SizeTextWindow();
void ResetDelay();
void PerformLayout();
void SetTooltipFormatToSingleLine();
void SetTooltipFormatToMultiLine();
void SetTooltipDelay(int tooltipDelayMilliseconds);
int GetTooltipDelay();
private:
virtual void ApplySchemeSettings(IScheme *pScheme);
CUtlVector<char> m_Text;
int _delay; // delay that counts down
int _tooltipDelay; // delay before tooltip comes up.
bool _makeVisible;
bool _displayOnOneLine;
};
};
#endif // TOOLTIP_H