namespace { class TestToolTip : public Wt::WApplication { public: TestToolTip( const Wt::WEnvironment& env ) : Wt::WApplication( env ) { Wt::WLabel* w = new Wt::WLabel( "hover to show tip", root() ); w->setToolTip( " xxxx xxxxxxxxxxx xxxxxx xxxxxxxXXXXXXXXXXXXXXXXXXXXXX", Wt::XHTMLText ); } }; }