~ubuntu-branches/debian/wheezy/vlc/wheezy

« back to all changes in this revision

Viewing changes to modules/gui/skins2/controls/ctrl_button.hpp

Tags: upstream-0.7.2.final
Import upstream version 0.7.2.final

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*****************************************************************************
 
2
 * ctrl_button.hpp
 
3
 *****************************************************************************
 
4
 * Copyright (C) 2003 VideoLAN
 
5
 * $Id: ctrl_button.hpp 6961 2004-03-05 17:34:23Z sam $
 
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
#ifndef CTRL_BUTTON_HPP
 
26
#define CTRL_BUTTON_HPP
 
27
 
 
28
#include "ctrl_generic.hpp"
 
29
#include "../utils/fsm.hpp"
 
30
 
 
31
class GenericBitmap;
 
32
class OSGraphics;
 
33
class CmdGeneric;
 
34
 
 
35
 
 
36
/// Base class for button controls
 
37
class CtrlButton: public CtrlGeneric
 
38
{
 
39
    public:
 
40
        /// Create a button with 3 images
 
41
        CtrlButton( intf_thread_t *pIntf, const GenericBitmap &rBmpUp,
 
42
                    const GenericBitmap &rBmpOver,
 
43
                    const GenericBitmap &rBmpDown,
 
44
                    CmdGeneric &rCommand, const UString &rTooltip,
 
45
                    const UString &rHelp, VarBool *pVisible );
 
46
 
 
47
        virtual ~CtrlButton();
 
48
 
 
49
        /// Handle an event
 
50
        virtual void handleEvent( EvtGeneric &rEvent );
 
51
 
 
52
        /// Check whether coordinates are inside the control
 
53
        virtual bool mouseOver( int x, int y ) const;
 
54
 
 
55
        /// Draw the control on the given graphics
 
56
        virtual void draw( OSGraphics &rImage, int xDest, int yDest );
 
57
 
 
58
        /// Get the text of the tooltip
 
59
        virtual UString getTooltipText() const { return m_tooltip; }
 
60
 
 
61
    private:
 
62
        /// Finite state machine of the control
 
63
        FSM m_fsm;
 
64
        /// Command triggered by the button
 
65
        CmdGeneric &m_rCommand;
 
66
        /// Tooltip text
 
67
        const UString m_tooltip;
 
68
        /// Callbacks objects
 
69
        Callback m_cmdUpOverDownOver;
 
70
        Callback m_cmdDownOverUpOver;
 
71
        Callback m_cmdDownOverDown;
 
72
        Callback m_cmdDownDownOver;
 
73
        Callback m_cmdUpOverUp;
 
74
        Callback m_cmdUpUpOver;
 
75
        Callback m_cmdDownUp;
 
76
        Callback m_cmdUpHidden;
 
77
        Callback m_cmdHiddenUp;
 
78
        /// Images of the button in the different states
 
79
        OSGraphics *m_pImgUp, *m_pImgOver, *m_pImgDown;
 
80
        /// Current image
 
81
        OSGraphics *m_pImg;
 
82
 
 
83
        /// Callback functions
 
84
        static void transUpOverDownOver( SkinObject *pCtrl );
 
85
        static void transDownOverUpOver( SkinObject *pCtrl );
 
86
        static void transDownOverDown( SkinObject *pCtrl );
 
87
        static void transDownDownOver( SkinObject *pCtrl );
 
88
        static void transUpOverUp( SkinObject *pCtrl );
 
89
        static void transUpUpOver( SkinObject *pCtrl );
 
90
        static void transDownUp( SkinObject *pCtrl );
 
91
        static void transUpHidden( SkinObject *pCtrl );
 
92
        static void transHiddenUp( SkinObject *pCtrl );
 
93
};
 
94
 
 
95
 
 
96
#endif