]> git.sesse.net Git - vlc/blob - modules/gui/skins/controls/image.h
* SkinManage is called by a timer
[vlc] / modules / gui / skins / controls / image.h
1 /*****************************************************************************
2  * image.h: Image control
3  *****************************************************************************
4  * Copyright (C) 2003 VideoLAN
5  * $Id: image.h,v 1.1 2003/03/18 02:21:47 ipkiss Exp $
6  *
7  * Authors: Olivier Teulière <ipkiss@via.ecp.fr>
8  *          Emmanuel Puig    <karibu@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,
23  * USA.
24  *****************************************************************************/
25
26
27 #ifndef VLC_SKIN_CONTROL_IMAGE
28 #define VLC_SKIN_CONTROL_IMAGE
29
30 //--- GENERAL ---------------------------------------------------------------
31 #include <string>
32 using namespace std;
33
34 //---------------------------------------------------------------------------
35 class Action;
36 class Graphics;
37 class Window;
38
39 //---------------------------------------------------------------------------
40 class ControlImage : public GenericControl
41 {
42     private:
43         // Image ID
44         string Bg;
45
46         // Behaviour
47         bool Enabled;
48
49         // List of actions to execute when clicking
50         Action  *MouseDownAction;
51         string   MouseDownActionName;
52
53     public:
54         // Constructor
55         ControlImage( string id, bool visible, int x, int y, string img,
56             string event, string help, Window *Parent);
57
58         // Destructor
59         virtual ~ControlImage();
60
61         // initialization
62         virtual void Init();
63         virtual bool ProcessEvent( Event *evt );
64
65         //Draw image
66         virtual void Draw( int x, int y, int w, int h, Graphics *dest );
67
68         // Mouse events
69         virtual bool MouseDown( int x, int y, int button );
70         virtual bool MouseOver( int x, int y );
71
72         // Enabling control
73         virtual void Enable( Event *event, bool enabled );
74
75 };
76 //---------------------------------------------------------------------------
77
78 #endif