skins2: fix RadialSlider
[vlc/asuraparaju-public.git] / modules / gui / skins2 / src / anim_bitmap.hpp
blob6667ce118c51b2dd39db824ad985e233231bfb75
1 /*****************************************************************************
2 * anim_bitmap.hpp
3 *****************************************************************************
4 * Copyright (C) 2005 the VideoLAN team
5 * $Id$
7 * Authors: Cyril Deguet <asmax@via.ecp.fr>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
24 #ifndef ANIM_BITMAP_HPP
25 #define ANIM_BITMAP_HPP
27 #include "../commands/cmd_generic.hpp"
28 #include "../utils/observer.hpp"
29 #include "../utils/position.hpp"
31 class GenericBitmap;
32 class OSGraphics;
33 class OSTimer;
36 /// Animated bitmap
37 class AnimBitmap: public SkinObject, public Box,
38 public Subject<AnimBitmap>
40 public:
41 AnimBitmap( intf_thread_t *pIntf, const GenericBitmap &rBitmap );
43 virtual ~AnimBitmap();
45 /// Start the animation
46 void startAnim();
48 /// Stop the animation
49 void stopAnim();
51 /// Draw the current frame on another graphics
52 void draw( OSGraphics &rImage, int xDest, int yDest );
54 /// Tell whether the pixel at the given position is visible
55 bool hit( int x, int y ) const;
57 /// Get the size of the current frame
58 virtual int getWidth() const;
59 virtual int getHeight() const;
61 private:
62 /// Bitmap stored
63 const GenericBitmap &m_rBitmap;
64 /// Graphics to store the bitmap
65 OSGraphics *m_pImage;
66 /// Number of frames
67 int m_nbFrames;
68 /// Frame rate
69 int m_frameRate;
70 /// Number of Loops
71 int m_nbLoops;
72 /// Curent frame
73 int m_curFrame;
74 /// Current loop
75 int m_curLoop;
76 /// Timer for the animation
77 OSTimer *m_pTimer;
79 /// Callback for the timer
80 DEFINE_CALLBACK( AnimBitmap, NextFrame );
84 #endif