⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bitmap.h

📁 VLC媒体播放程序
💻 H
字号:
/***************************************************************************** * bitmap.h: Bitmap class ***************************************************************************** * Copyright (C) 2003 VideoLAN * $Id: bitmap.h,v 1.1 2003/03/18 02:21:47 ipkiss Exp $ * * Authors: Olivier Teuli鑢e <ipkiss@via.ecp.fr> *          Emmanuel Puig    <karibu@via.ecp.fr> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, * USA. *****************************************************************************/#ifndef VLC_SKIN_BITMAP#define VLC_SKIN_BITMAP//--- GENERAL ---------------------------------------------------------------#include <string>using namespace std;//---------------------------------------------------------------------------struct intf_thread_t;class Graphics;//---------------------------------------------------------------------------class Bitmap{    protected:        int Width;        int Height;        unsigned int AlphaColor;        intf_thread_t *p_intf;    public:        void GetSize( int &w, int &h );        int GetAlphaColor()     { return AlphaColor; }        // Constructors        Bitmap( intf_thread_t *_p_intf, string FileName, int AColor );        Bitmap( intf_thread_t *_p_intf, Graphics *from, int x, int y,                int w, int h, int AColor );        Bitmap( intf_thread_t *_p_intf, Bitmap *c );        // Destructor        virtual ~Bitmap();        virtual void DrawBitmap( int x, int y, int w, int h, int xRef, int yRef,                                 Graphics *dest ) = 0;        virtual bool Hit( int x, int y ) = 0;        virtual int  GetBmpPixel( int x, int y ) = 0;        virtual void SetBmpPixel( int x, int y, int color ) = 0;};//---------------------------------------------------------------------------#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -