wxPython Q? floating window

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • mitsura@skynet.be

    #1

    wxPython Q? floating window

    Hi,

    I have a question about wxPython.
    On Windows systems, you can point your mouse over most items on your
    desktop and a after a second or so, a small window will pop-up with
    extra info about the thing your pointing at (try e.g. move your mouse
    over the time in the right corner and a window will pop-up with the
    date).
    I was wondering this can be done with wxPython. I basically want to
    create a wxTree object and when I point the mouse over the objects in
    the tree I would like to have these kind of smal pop-up windows that
    display more info about the object you are pointing at.

    Any help much appreciated.

    Kris

  • Steve Holden

    #2
    Re: wxPython Q? floating window

    mitsura@skynet. be wrote:[color=blue]
    > Hi,
    >
    > I have a question about wxPython.
    > On Windows systems, you can point your mouse over most items on your
    > desktop and a after a second or so, a small window will pop-up with
    > extra info about the thing your pointing at (try e.g. move your mouse
    > over the time in the right corner and a window will pop-up with the
    > date).
    > I was wondering this can be done with wxPython. I basically want to
    > create a wxTree object and when I point the mouse over the objects in
    > the tree I would like to have these kind of smal pop-up windows that
    > display more info about the object you are pointing at.
    >
    > Any help much appreciated.
    >[/color]
    See wxToolTip - you can set a tooltip with the SetToolTip method on most
    objects.

    regards
    Steve
    --
    Steve Holden +44 150 684 7255 +1 800 494 3119
    Holden Web LLC/Ltd www.holdenweb.com
    Love me, love my blog holdenweb.blogs pot.com

    Comment

    Working...