]> git.sesse.net Git - vlc/blob - modules/gui/skins2/src/tooltip.cpp
* modules/gui/skins/*:
[vlc] / modules / gui / skins2 / src / tooltip.cpp
1 /*****************************************************************************
2  * tooltip.cpp
3  *****************************************************************************
4  * Copyright (C) 2003 VideoLAN
5  * $Id: tooltip.cpp,v 1.2 2004/01/11 17:12:17 asmax Exp $
6  *
7  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
8  *          Olivier Teulière <ipkiss@via.ecp.fr>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 #include "tooltip.hpp"
26 #include "generic_bitmap.hpp"
27 #include "generic_font.hpp"
28 #include "os_factory.hpp"
29 #include "os_graphics.hpp"
30 #include "os_tooltip.hpp"
31 #include "os_timer.hpp"
32 #include "var_manager.hpp"
33 #include "../utils/ustring.hpp"
34
35
36 Tooltip::Tooltip( intf_thread_t *pIntf, const GenericFont &rFont, int delay ):
37     SkinObject( pIntf ), m_rFont( rFont ), m_delay( delay ), m_pImage( NULL ),
38     m_xPos( -1 ), m_yPos( -1 )
39 {
40     OSFactory *pOsFactory = OSFactory::instance( pIntf );
41     m_pTimer = pOsFactory->createOSTimer( Callback( this, &doShow ) );
42     m_pOsTooltip = pOsFactory->createOSTooltip();
43
44     // Observe the tooltip text variable
45     VarManager::instance( pIntf )->getTooltipText().addObserver( this );
46 }
47
48
49 Tooltip::~Tooltip()
50 {
51  //   VarManager::instance( getIntf() )->getTooltipText().delObserver( this );
52     SKINS_DELETE( m_pTimer );
53     SKINS_DELETE( m_pOsTooltip );
54     if( m_pImage )
55     {
56         delete m_pImage;
57     }
58 }
59
60
61 void Tooltip::show()
62 {
63     // (Re)start the timer
64     m_pTimer->start( m_delay, true );
65 }
66
67
68 void Tooltip::hide()
69 {
70     m_pTimer->stop();
71     m_pOsTooltip->hide();
72     m_xPos = -1;
73     m_yPos = -1;
74 }
75
76
77 void Tooltip::onUpdate( Subject<VarText> &rVariable )
78 {
79     // Redisplay the tooltip
80     displayText( ((VarText&)rVariable).get() );
81 }
82
83
84 void Tooltip::displayText( const UString &rText )
85 {
86     // Rebuild the image
87     makeImage( rText );
88
89     // Redraw the window if it is already visible
90     if( m_xPos != -1 )
91     {
92         m_pOsTooltip->show( m_xPos, m_yPos, *m_pImage );
93     }
94 }
95
96
97 void Tooltip::makeImage( const UString &rText )
98 {
99     // Render the text on a bitmap
100     GenericBitmap *pBmpTip = m_rFont.drawString( rText, 0 );
101     int w = pBmpTip->getWidth() + 10;
102     int h = m_rFont.getSize() + 8;
103
104     // Create the image of the tooltip
105     if( m_pImage )
106     {
107         delete m_pImage;
108     }
109     m_pImage = OSFactory::instance( getIntf() )->createOSGraphics( w, h );
110     m_pImage->fillRect( 0, 0, w, h, 0xffffd0 );
111     m_pImage->drawRect( 0, 0, w, h, 0x000000 );
112     m_pImage->drawBitmap( *pBmpTip, 0, 0, 5, 5 );
113
114     delete pBmpTip;
115 }
116
117
118 void Tooltip::doShow( SkinObject *pObj )
119 {
120     Tooltip *pThis = (Tooltip*)pObj;
121
122     if( pThis->m_pImage )
123     {
124         if( pThis->m_xPos == -1 )
125         {
126             // Get the mouse coordinates and the image size
127             OSFactory *pOsFactory = OSFactory::instance( pThis->getIntf() );
128             int x, y;
129             pOsFactory->getMousePos( x, y );
130             int scrWidth = pOsFactory->getScreenWidth();
131             int scrHeight = pOsFactory->getScreenHeight();
132             int w = pThis->m_pImage->getWidth();
133             int h = pThis->m_pImage->getHeight();
134
135             // Compute the position of the tooltip
136             x -= (w / 2 + 4);
137             y += (h + 5);
138             if( x + w > scrWidth )
139                 x -= (x + w - scrWidth);
140             else if( x < 0 )
141                 x = 0;
142             if( y + h > scrHeight )
143                 y -= (2 * h + 20);
144
145             pThis->m_xPos = x;
146             pThis->m_yPos = y;
147         }
148
149         // Show the tooltip window
150         pThis->m_pOsTooltip->show( pThis->m_xPos, pThis->m_yPos,
151                                    *(pThis->m_pImage) );
152     }
153 }
154