Class: Wx::TipKind
Overview
Support tip kinds for RichToolTip.
This enum describes the kind of the tip shown which combines both the tip position and appearance because the two are related (when the tip is positioned asymmetrically, a right handed triangle is used but an equilateral one when it’s in the middle of a side). Automatic selects the tip appearance best suited for the current platform and the position best suited for the window the tooltip is shown for, i.e. chosen in such a way that the tooltip is always fully on screen. Other values describe the position of the tooltip itself, not the window it relates to. E.g. TipKind_Top places the tip on the top of the tooltip and so the tooltip itself is located beneath its associated window.
Constant Summary collapse
- TipKind_None =
Don’t show any tip, the tooltip will be (roughly) rectangular.
Wx::TipKind.new(0)
- TipKind_TopLeft =
Show a right triangle tip in the top left corner of the tooltip.
Wx::TipKind.new(1)
- TipKind_Top =
Show an equilateral triangle tip in the middle of the tooltip top side.
Wx::TipKind.new(2)
- TipKind_TopRight =
Show a right triangle tip in the top right corner of the tooltip.
Wx::TipKind.new(3)
- TipKind_BottomLeft =
Show a right triangle tip in the bottom left corner of the tooltip.
Wx::TipKind.new(4)
- TipKind_Bottom =
Show an equilateral triangle tip in the middle of the tooltip bottom side.
Wx::TipKind.new(5)
- TipKind_BottomRight =
Show a right triangle tip in the bottom right corner of the tooltip.
Wx::TipKind.new(6)
- TipKind_Auto =
Choose the appropriate tip shape and position automatically.
Wx::TipKind.new(7)
Method Summary
Methods inherited from Enum
#!, #&, #<=>, [], #allbits?, #anybits?, #coerce, enumerators, #eql?, #initialize, #inspect, #integer?, #method_missing, #nobits?, non_distinct, #real?, set_non_distinct, #succ, #to_int, #to_s, #|, #~
Constructor Details
This class inherits a constructor from Wx::Enum
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Wx::Enum