BalloonTip
is a class that allows you to display tooltips in a balloon style
window.
BalloonTip
is a class that allows you to display tooltips in a balloon style
window (actually a frame), similarly to the windows XP balloon help. There is
also an arrow that points to the center of the control designed as a “target”
for the BalloonTip
.
What it can do:
Set the balloon shape as a rectangle or a rounded rectangle;
Set an icon to the top-left of the BalloonTip
frame;
Set a title at the top of the BalloonTip
frame;
Automatic “best” placement of BalloonTip
frame depending on the target
control/window position;
Runtime customization of title/tip fonts and foreground colours;
Runtime change of BalloonTip
frame shape;
Set the balloon background colour;
Possibility to set the delay after which the BalloonTip
is displayed;
Possibility to set the delay after which the BalloonTip
is destroyed;
Three different behaviors for the BalloonTip
window (regardless the delay
destruction time set):
Destroy by leave: the BalloonTip
is destroyed when the mouse leaves the
target control/window;
Destroy by click: the BalloonTip
is destroyed when you click on any area
of the target control/window;
Destroy by button: the BalloonTip
is destroyed when you click on the
top-right close button;
Possibility to enable/disable globally the BalloonTip
on you application;
Set the BalloonTip
also for the taskbar icon.
Usage example:
import wx
import wx.lib.agw.balloontip as BT
class MyFrame(wx.Frame):
def __init__(self, parent):
wx.Frame.__init__(self, parent, -1, "BalloonTip Demo")
panel = wx.Panel(self)
# Let's suppose that in your application you have a wx.TextCtrl defined as:
mytextctrl = wx.TextCtrl(panel, -1, "I am a textctrl", pos=(100, 100))
# You can define your BalloonTip as follows:
tipballoon = BT.BalloonTip(topicon=None, toptitle="textctrl",
message="this is a textctrl",
shape=BT.BT_ROUNDED,
tipstyle=BT.BT_LEAVE)
# Set the BalloonTip target
tipballoon.SetTarget(mytextctrl)
# Set the BalloonTip background colour
tipballoon.SetBalloonColour(wx.WHITE)
# Set the font for the balloon title
tipballoon.SetTitleFont(wx.Font(9, wx.FONTFAMILY_SWISS, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_BOLD, False))
# Set the colour for the balloon title
tipballoon.SetTitleColour(wx.BLACK)
# Leave the message font as default
tipballoon.SetMessageFont()
# Set the message (tip) foreground colour
tipballoon.SetMessageColour(wx.LIGHT_GREY)
# Set the start delay for the BalloonTip
tipballoon.SetStartDelay(1000)
# Set the time after which the BalloonTip is destroyed
tipballoon.SetEndDelay(3000)
# our normal wxApp-derived class, as usual
app = wx.App(0)
frame = MyFrame(None)
app.SetTopWindow(frame)
frame.Show()
app.MainLoop()
This class supports the following window styles:
Window Styles |
Hex Value |
Description |
---|---|---|
|
0x1 |
|
|
0x2 |
|
|
0x3 |
|
|
0x4 |
|
|
0x5 |
|
No custom events are available for this class.
BalloonTip is distributed under the wxPython license.
Latest revision: Andrea Gavana @ 16 Jul 2012, 15.00 GMT
Version 0.3
This class is called by the main |
|
|