]> git.sesse.net Git - vlc/blob - modules/gui/skins/src/bitmap.h
* gtk2_bitmap.cpp: fixed constructor bug
[vlc] / modules / gui / skins / src / bitmap.h
1 /*****************************************************************************
2  * bitmap.h: Bitmap class
3  *****************************************************************************
4  * Copyright (C) 2003 VideoLAN
5  * $Id: bitmap.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_BITMAP
28 #define VLC_SKIN_BITMAP
29
30 //--- GENERAL ---------------------------------------------------------------
31 #include <string>
32 using namespace std;
33
34 //---------------------------------------------------------------------------
35 struct intf_thread_t;
36 class Graphics;
37
38 //---------------------------------------------------------------------------
39 class Bitmap
40 {
41     protected:
42         int Width;
43         int Height;
44         unsigned int AlphaColor;
45         intf_thread_t *p_intf;
46
47     public:
48         void GetSize( int &w, int &h );
49         int GetAlphaColor()     { return AlphaColor; }
50
51         // Constructors
52         Bitmap( intf_thread_t *_p_intf, string FileName, int AColor );
53         Bitmap( intf_thread_t *_p_intf, Graphics *from, int x, int y,
54                 int w, int h, int AColor );
55         Bitmap( intf_thread_t *_p_intf, Bitmap *c );
56
57         // Destructor
58         virtual ~Bitmap();
59
60         virtual void DrawBitmap( int x, int y, int w, int h, int xRef, int yRef,
61                                  Graphics *dest ) = 0;
62         virtual bool Hit( int x, int y ) = 0;
63
64         virtual int  GetBmpPixel( int x, int y ) = 0;
65         virtual void SetBmpPixel( int x, int y, int color ) = 0;
66 };
67 //---------------------------------------------------------------------------
68
69 #endif