aswang  1.0
Bitmap.h
Go to the documentation of this file.
00001 /*
00002         Copyright 2003 Joseph Alvis
00003 
00004     This file is part of Aswang.
00005 
00006     Aswang is free software: you can redistribute it and/or modify
00007     it under the terms of the GNU Lesser General Public License as published by
00008     the Free Software Foundation, either version 3 of the License, or
00009     (at your option) any later version.
00010 
00011     Aswang is distributed in the hope that it will be useful,
00012     but WITHOUT ANY WARRANTY; without even the implied warranty of
00013     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00014     GNU Lesser General Public License for more details.
00015 
00016     You should have received a copy of the GNU Lesser General Public License
00017     along with Aswang.  If not, see <http://www.gnu.org/licenses/>.
00018 */
00019 
00020 #pragma once
00021 
00022 #include "aswang.h"
00023 
00024 namespace aswang {
00026         class Bitmap {
00027         private:
00028                 HBITMAP hbmap;
00029         public:
00030                 Bitmap() : hbmap(NULL) {}
00033                 Bitmap(HBITMAP h) : hbmap(h) {}
00036                 virtual ~Bitmap() {
00037                         Delete();
00038                 }
00039 
00041                 virtual void Delete();
00043                 virtual HBITMAP GetHandle() const {return hbmap;}
00045                 virtual BITMAP GetObjectInfo();
00046                 virtual long GetWidth();
00047                 virtual long GetHeight();
00048                 virtual long GetWidthBytes();
00049                 virtual short GetPlanes();
00050                 virtual short GetBitsPerPixel();
00052                 virtual char *GetBits();
00053 
00054                 virtual Bitmap &operator = (HBITMAP h);
00055                 virtual operator HBITMAP () const {return hbmap;}
00056         };
00057 }
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Defines