I want to use methods on the windows -tooltip object.
e.g. to use multiline texts I have to use the SetMaxTipWidth method.

But GUI_Helper.cpp:CreateTooltip only stores the tooltip handle
and not the XS object in the hash at -tooltip.

Well, I can SendMessage to this handle:
  use constant TTM_SETMAXTIPWIDTH => (1024+24);
  SendMessage($W->{-tooltip}, TTM_SETMAXTIPWIDTH, 0, $width);
but what do we have this object for if we cannot access it?

Shouldn't these Win32::GUI::Tooltip::Add options be also supported?

    #  -maxtipwidth => width
    #     required for enable multiline
    #  -alwaystip  => 0/1
    #  -noprefix   => 0/1
    #  -balloon    => 0/1
--
Reini Urban
http://phpwiki.org/
http://spacemovie.mur.at/   http://helsinki.at/

Reply via email to