BTextToolTip
class BTextToolTip : public BToolTip {
BTextToolTip(const char* text);
BTextToolTip(BMessage* archive);
virtual ~BTextToolTip();
static BTextToolTip* Instantiate(BMessage* archive);
*_tip = new(std::nothrow) BTextToolTip(text);
BTextToolTip* tip = new(std::nothrow) BTextToolTip(text);
BTextToolTip* tip = new(std::nothrow) BTextToolTip(text);
*_tip = new(std::nothrow) BTextToolTip(tipData);
class VolumeToolTip : public BTextToolTip {
BTextToolTip(""),
BTextToolTip::BTextToolTip(const char* text)
BTextToolTip::BTextToolTip(BMessage* archive)
BTextToolTip::~BTextToolTip()
/*static*/ BTextToolTip*
BTextToolTip::Instantiate(BMessage* archive)
return new(std::nothrow) BTextToolTip(archive);
BTextToolTip::Archive(BMessage* archive, bool deep) const
BTextToolTip::View() const
BTextToolTip::Text() const
BTextToolTip::SetText(const char* text)
BTextToolTip::_InitData(const char* text)
if (BTextToolTip* tip = dynamic_cast<BTextToolTip*>(fToolTip))
SetToolTip(new BTextToolTip(text));