]> git.sesse.net Git - vlc/blob - modules/gui/skins2/controls/ctrl_button.hpp
Skins2: Cosmetic.
[vlc] / modules / gui / skins2 / controls / ctrl_button.hpp
1 /*****************************************************************************
2  * ctrl_button.hpp
3  *****************************************************************************
4  * Copyright (C) 2003 the VideoLAN team
5  * $Id$
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 along
21  * with this program; if not, write to the Free Software Foundation, Inc.,
22  * 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 #ifndef CTRL_BUTTON_HPP
26 #define CTRL_BUTTON_HPP
27
28 #include "ctrl_generic.hpp"
29 #include "../utils/fsm.hpp"
30 #include "../src/anim_bitmap.hpp"
31
32 class GenericBitmap;
33 class CmdGeneric;
34
35
36 /// Base class for button controls
37 class CtrlButton: public CtrlGeneric, public Observer<AnimBitmap>
38 {
39 public:
40     /// Create a button with 3 images
41     CtrlButton( intf_thread_t *pIntf, const GenericBitmap &rBmpUp,
42                 const GenericBitmap &rBmpOver, const GenericBitmap &rBmpDown,
43                 CmdGeneric &rCommand, const UString &rTooltip,
44                 const UString &rHelp, VarBool *pVisible );
45
46     virtual ~CtrlButton();
47
48     /// Handle an event
49     virtual void handleEvent( EvtGeneric &rEvent );
50
51     /// Check whether coordinates are inside the control
52     virtual bool mouseOver( int x, int y ) const;
53
54     /// Draw the control on the given graphics
55     virtual void draw( OSGraphics &rImage, int xDest, int yDest );
56
57     /// Get the text of the tooltip
58     virtual UString getTooltipText() const { return m_tooltip; }
59
60     /// Get the type of control (custom RTTI)
61     virtual string getType() const { return "button"; }
62
63 private:
64     /// Finite state machine of the control
65     FSM m_fsm;
66     /// Command triggered by the button
67     CmdGeneric &m_rCommand;
68     /// Tooltip text
69     const UString m_tooltip;
70     /// Images of the button in the different states
71     AnimBitmap m_imgUp, m_imgOver, m_imgDown;
72     /// Current image
73     AnimBitmap *m_pImg;
74
75     /// Callback objects
76     DEFINE_CALLBACK( CtrlButton, UpOverDownOver )
77     DEFINE_CALLBACK( CtrlButton, DownOverUpOver )
78     DEFINE_CALLBACK( CtrlButton, DownOverDown )
79     DEFINE_CALLBACK( CtrlButton, DownDownOver )
80     DEFINE_CALLBACK( CtrlButton, UpOverUp )
81     DEFINE_CALLBACK( CtrlButton, UpUpOver )
82     DEFINE_CALLBACK( CtrlButton, DownUp )
83     DEFINE_CALLBACK( CtrlButton, UpHidden )
84     DEFINE_CALLBACK( CtrlButton, HiddenUp )
85
86     /// Change the current image
87     void setImage( AnimBitmap *pImg );
88
89     /// Method called when an animated bitmap changes
90     virtual void onUpdate( Subject<AnimBitmap> &rBitmap, void* );
91 };
92
93
94 #endif