phoenix_title wx.lib.agw.toasterbox.ToasterBox

ToasterBox is a cross-platform widget to make the creation of MSN style “toaster” popups easier.


class_hierarchy Class Hierarchy

Inheritance diagram for class ToasterBox:

appearance Control Appearance


wxMSW

wxMSW

wxMAC

wxMAC

wxGTK

wxGTK


super_classes Known Superclasses

wx.Timer


method_summary Methods Summary

__init__

Default class constructor.

AddPanel

Adds a panel to the ToasterBox.

CenterOnParent

Centres the window on its parent (if any). If the ToasterBox parent is None,

CenterOnScreen

Centres the ToasterBox on screen.

CleanList

Cleans the window list, erasing the stack of ToasterBox objects.

GetToasterBoxWindow

Returns the ToasterBox frame.

GetUseFocus

Returns whether ToasterBox will steal the focus from the parent application.

MoveAbove

If a ToasterBox already exists, move the new one above the existing one.

Notify

It’s time to hide a ToasterBox.

OnMoveTimer

Handles the wx.EVT_TIMER event for ToasterBox, moving the new window

Play

Creates the ToasterBoxWindow, that does all the job.

SetPopupBackgroundColour

Sets the ToasterBox background colour.

SetPopupBitmap

Sets the ToasterBox background image.

SetPopupPauseTime

Sets the time after which the ToasterBox is destroyed (linger).

SetPopupPosition

Sets the ToasterBox position on screen.

SetPopupPositionByInt

Sets the ToasterBox position on screen, at one of the screen corners.

SetPopupScrollSpeed

Sets the ToasterBox scroll speed.

SetPopupSize

Sets the ToasterBox size.

SetPopupText

Sets the ToasterBox text label.

SetPopupTextColour

Sets the ToasterBox foreground colour.

SetPopupTextFont

Sets the ToasterBox text font.

SetTitle

Sets the ToasterBox title if it was created with TB_CAPTION window style.

SetUseFocus

If focus is True, Instructs ToasterBox to steal the focus from the


api Class API

class ToasterBox(wx.Timer)

ToasterBox is a cross-platform widget to make the creation of MSN style “toaster” popups easier.


Methods

__init__(self, parent, tbstyle=TB_SIMPLE, windowstyle=TB_DEFAULT_STYLE, closingstyle=TB_ONTIME, scrollType=TB_SCR_TYPE_DU)

Default class constructor.

Parameters
  • parent – the window parent;

  • tbstyle

    the ToasterBox main style. Can be one of the following bits:

    ToasterBox Style

    Value

    Description

    TB_SIMPLE

    0x1

    A simple ToasterBox, with background image and text customization can be created

    TB_COMPLEX

    0x2

    ToasterBoxes with different degree of complexity can be created. You can add as many controls as you want, provided that you call the AddPanel method and pass to it a dummy frame and a Panel.

  • windowstyle

    this parameter influences the visual appearance of ToasterBox, and can be one of the following styles:

    Window Style

    Hex Value

    Description

    TB_DEFAULT_STYLE

    0x2008002

    Default window style for ToasterBox, with no caption nor close box.

    TB_CAPTION

    0x22009806

    ToasterBox will have a caption, with the possibility to set a title for the ToasterBox frame, and a close box.

  • closingstyle

    the closing style for ToasterBox. Can be one of the following bits:

    Closing Styles

    Hex Value

    Description

    TB_ONTIME

    0x1

    ToasterBox will close after a specified amount of time.

    TB_ONCLICK

    0x2

    ToasterBox can be closed by clicking anywhere on the ToasterBox frame.

  • scrollType

    the scrolling direction for ToasterBox. Can be one of the following bits:

    Scroll Styles

    Hex Value

    Description

    TB_SCR_TYPE_UD

    0x1

    ToasterBox will scroll from up to down

    TB_SCR_TYPE_DU

    0x2

    ToasterBox will scroll from down to up

    TB_SCR_TYPE_FADE

    0x4

    ToasterBox will fade in/out (without scrolling).



AddPanel(self, panel)

Adds a panel to the ToasterBox.

Parameters

panel – an instance of wx.Window.

Note

Use this method only for a ToasterBox created with the TB_COMPLEX style.



CenterOnParent(self, direction=wx.BOTH)

Centres the window on its parent (if any). If the ToasterBox parent is None, it calls CenterOnScreen.

Parameters

direction – specifies the direction for the centering. May be wx.HORIZONTAL, wx.VERTICAL or wx.BOTH.

Note

This methods provides for a way to center ToasterBox over their parents instead of the entire screen. If there is no parent, then behaviour is the same as CenterOnScreen.

See also

CenterOnScreen.



CenterOnScreen(self, direction=wx.BOTH)

Centres the ToasterBox on screen.

Parameters

direction – specifies the direction for the centering. May be wx.HORIZONTAL, wx.VERTICAL or wx.BOTH.

See also

CenterOnParent.



CleanList(self)

Cleans the window list, erasing the stack of ToasterBox objects.



GetToasterBoxWindow(self)

Returns the ToasterBox frame.



GetUseFocus(self)

Returns whether ToasterBox will steal the focus from the parent application.



MoveAbove(self, tb)

If a ToasterBox already exists, move the new one above the existing one.

Parameters

tb – another instance of ToasterBox.



Notify(self)

It’s time to hide a ToasterBox.



OnMoveTimer(self, event)

Handles the wx.EVT_TIMER event for ToasterBox, moving the new window on top of the last one created.

Parameters

event – a TimerEvent event to be processed.



Play(self)

Creates the ToasterBoxWindow, that does all the job.



SetPopupBackgroundColour(self, colour=None)

Sets the ToasterBox background colour.

Parameters

colour – a valid wx.Colour object. If defaulted to None, then the background colour will be white.

Note

Use this method only for a ToasterBox created with the TB_SIMPLE style.



SetPopupBitmap(self, bitmap=None)

Sets the ToasterBox background image.

Parameters

bitmap – a valid wx.Bitmap object or filename. If defaulted to None, then no background bitmap is used.

Note

Use this method only for a ToasterBox created with the TB_SIMPLE style.



SetPopupPauseTime(self, pausetime)

Sets the time after which the ToasterBox is destroyed (linger).

Parameters

pausetime – the delay after which the control is destroyed, in seconds.



SetPopupPosition(self, pos)

Sets the ToasterBox position on screen.

Parameters

pos – the widget position, an instance of wx.Point.



SetPopupPositionByInt(self, pos)

Sets the ToasterBox position on screen, at one of the screen corners.

Parameters

pos – an integer specifying the screen corner, namely:

Corner Number

Position

0

Top left screen corner

1

Top right screen corner

2

Bottom left screen corner

3

Bottom right screen corner



SetPopupScrollSpeed(self, speed)

Sets the ToasterBox scroll speed.

Parameters

speed – it is the pause time (in milliseconds) for every step in the ScrollUp method.



SetPopupSize(self, size)

Sets the ToasterBox size.

Parameters

size – the new control size, an instance of wx.Size.



SetPopupText(self, text)

Sets the ToasterBox text label.

Parameters

text – the widget label.

Note

Use this method only for a ToasterBox created with the TB_SIMPLE style.



SetPopupTextColour(self, colour=None)

Sets the ToasterBox foreground colour.

Parameters

colour – a valid wx.Colour object. If defaulted to None, then the background colour will be black.

Note

Use this method only for a ToasterBox created with the TB_SIMPLE style.



SetPopupTextFont(self, font=None)

Sets the ToasterBox text font.

Parameters

colour – a valid wx.Colour object. If defaulted to None, then a simple generic font will be generated.

Note

Use this method only for a ToasterBox created with the TB_SIMPLE style.



SetTitle(self, title)

Sets the ToasterBox title if it was created with TB_CAPTION window style.

Parameters

title – the ToasterBox caption title.



SetUseFocus(self, focus)

If focus is True, Instructs ToasterBox to steal the focus from the parent application, otherwise it returns the focus to the original owner.

Parameters

focusTrue to set the focus on ToasterBox, False to return it to the original owner.