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

« back to all changes in this revision

Viewing changes to modules/gui/skins/win32/win32_bitmap.h

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
 * win32_bitmap.h: Win32 implementation of the Bitmap class
 
3
 *****************************************************************************
 
4
 * Copyright (C) 2003 VideoLAN
 
5
 * $Id: win32_bitmap.h 6961 2004-03-05 17:34:23Z sam $
 
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
#ifdef WIN32
 
27
 
 
28
#ifndef VLC_WIN32_BITMAP
 
29
#define VLC_WIN32_BITMAP
 
30
 
 
31
//--- WIN32 -----------------------------------------------------------------
 
32
#include <windows.h>
 
33
 
 
34
//--- GENERAL ---------------------------------------------------------------
 
35
#include <string>
 
36
using namespace std;
 
37
 
 
38
//---------------------------------------------------------------------------
 
39
struct intf_thread_t;
 
40
class Bitmap;
 
41
class Graphics;
 
42
 
 
43
//---------------------------------------------------------------------------
 
44
class Win32Bitmap : public Bitmap
 
45
{
 
46
    private:
 
47
        HDC bmpDC;
 
48
 
 
49
    public:
 
50
        // Constructors
 
51
        Win32Bitmap( intf_thread_t *p_intf, string FileName, int AColor );
 
52
        Win32Bitmap( intf_thread_t *p_intf, Graphics *from, int x, int y,
 
53
                     int w, int h, int AColor );
 
54
        Win32Bitmap( intf_thread_t *p_intf, Bitmap *c );
 
55
 
 
56
        // Destructor
 
57
        virtual ~Win32Bitmap();
 
58
 
 
59
        virtual void DrawBitmap( int x, int y, int w, int h, int xRef, int yRef,
 
60
                                 Graphics *dest );
 
61
        virtual bool Hit( int x, int y );
 
62
 
 
63
        virtual int  GetBmpPixel( int x, int y );
 
64
        virtual void SetBmpPixel( int x, int y, int color );
 
65
 
 
66
        HDC GetBmpDC() { return bmpDC; }
 
67
};
 
68
//---------------------------------------------------------------------------
 
69
 
 
70
#endif
 
71
 
 
72
#endif