Main Page | Modules | Class Hierarchy | Class List | Directories | File List | Class Members | File Members | Related Pages

x11_graphics.hpp

00001 /*****************************************************************************
00002  * x11_graphics.hpp
00003  *****************************************************************************
00004  * Copyright (C) 2003 the VideoLAN team
00005  * $Id: x11_graphics.hpp 11664 2005-07-09 06:17:09Z courmisch $
00006  *
00007  * Authors: Cyril Deguet     <[email protected]>
00008  *          Olivier Teulière <[email protected]>
00009  *
00010  * This program is free software; you can redistribute it and/or modify
00011  * it under the terms of the GNU General Public License as published by
00012  * the Free Software Foundation; either version 2 of the License, or
00013  * (at your option) any later version.
00014  *
00015  * This program is distributed in the hope that it will be useful,
00016  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00017  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00018  * GNU General Public License for more details.
00019  *
00020  * You should have received a copy of the GNU General Public License
00021  * along with this program; if not, write to the Free Software
00022  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
00023  *****************************************************************************/
00024 
00025 #ifndef X11_GRAPHICS_HPP
00026 #define X11_GRAPHICS_HPP
00027 
00028 #include <X11/Xlib.h>
00029 #include <X11/Xutil.h>
00030 
00031 #include "../src/os_graphics.hpp"
00032 
00033 class X11Display;
00034 class GenericWindow;
00035 class GenericBitmap;
00036 
00038 class X11Graphics: public OSGraphics
00039 {
00040     public:
00041         X11Graphics( intf_thread_t *pIntf, X11Display &rDisplay, int width,
00042                      int height);
00043 
00044         virtual ~X11Graphics();
00045 
00047         virtual void clear();
00048 
00050         virtual void drawGraphics( const OSGraphics &rGraphics, int xSrc = 0,
00051                                    int ySrc = 0, int xDest = 0, int yDest = 0,
00052                                    int width = -1, int height = -1 );
00053 
00055         virtual void drawBitmap( const GenericBitmap &rBitmap, int xSrc = 0,
00056                                  int ySrc = 0, int xDest = 0, int yDest = 0,
00057                                  int width = -1, int height = -1,
00058                                  bool blend = false );
00059 
00061         virtual void fillRect( int left, int top, int width, int height,
00062                                uint32_t color );
00063 
00065         virtual void drawRect( int left, int top, int width, int height,
00066                                uint32_t color );
00067 
00069         virtual void applyMaskToWindow( OSWindow &rWindow );
00070 
00072         virtual void copyToWindow( OSWindow &rWindow, int xSrc,
00073                                    int ySrc, int width, int height,
00074                                    int xDest, int yDest );
00075 
00077         virtual bool hit( int x, int y ) const;
00078 
00080         virtual int getWidth() const { return m_width; }
00081         virtual int getHeight() const { return m_height; }
00082 
00084         Pixmap getDrawable() const { return m_pixmap; }
00086         Region getMask() const { return m_mask; }
00087 
00088     private:
00090         X11Display &m_rDisplay;
00092         int m_width, m_height;
00094         Pixmap m_pixmap;
00096         Region m_mask;
00098         GC m_gc;
00099 
00101         void X11Graphics::addHSegmentInRegion( Region &rMask, int xStart,
00102                                                int xEnd, int y );
00104         void X11Graphics::addVSegmentInRegion( Region &rMask, int yStart,
00105                                                int yEnd, int x );
00106 };
00107 
00108 
00109 #endif

Generated on Tue Dec 20 10:14:44 2005 for vlc-0.8.4a by  doxygen 1.4.2