os_factory.hpp
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:4k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * os_factory.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: os_factory.hpp 8116 2004-07-04 22:22:10Z adn $
  6.  *
  7.  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  8.  *          Olivier Teuli鑢e <ipkiss@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, USA.
  23.  *****************************************************************************/
  24. #ifndef OS_FACTORY_HPP
  25. #define OS_FACTORY_HPP
  26. #include "skin_common.hpp"
  27. #include "../utils/position.hpp"
  28. #include <string>
  29. #include <list>
  30. class GenericWindow;
  31. class OSBitmap;
  32. class OSGraphics;
  33. class OSLoop;
  34. class OSWindow;
  35. class OSTooltip;
  36. class OSTimer;
  37. /// Abstract factory used to instantiate OS specific objects.
  38. class OSFactory: public SkinObject
  39. {
  40.     public:
  41.         typedef enum
  42.         {
  43.             kDefaultArrow,
  44.             kResizeNS,
  45.             kResizeWE,
  46.             kResizeNWSE,
  47.             kResizeNESW
  48.         } CursorType_t;
  49.         /// Initialization method overloaded in derived classes.
  50.         /// It must return false if the init failed.
  51.         virtual bool init() { return true; }
  52.         /// Get the right instance of OSFactory.
  53.         /// Returns NULL if initialization of the concrete factory failed.
  54.         static OSFactory *instance( intf_thread_t *pIntf );
  55.         /// Delete the instance of OSFactory.
  56.         static void destroy( intf_thread_t *pIntf );
  57.         /// Instantiate an object OSGraphics.
  58.         virtual OSGraphics *createOSGraphics( int width, int height ) = 0;
  59.         /// Get the instance of the singleton OSLoop.
  60.         virtual OSLoop *getOSLoop() = 0;
  61.         /// Destroy the instance of OSLoop.
  62.         virtual void destroyOSLoop() = 0;
  63.         ///
  64.         virtual void minimize() = 0;
  65.         /// Instantiate an OSTimer with the given callback
  66.         virtual OSTimer *createOSTimer( const Callback &rCallback ) = 0;
  67.         /// Instantiate an object OSWindow.
  68.         virtual OSWindow *createOSWindow( GenericWindow &rWindow,
  69.                                           bool dragDrop, bool playOnDrop,
  70.                                           OSWindow *pParent ) = 0;
  71.         /// Instantiate an object OSTooltip.
  72.         virtual OSTooltip *createOSTooltip() = 0;
  73.         /// Get the directory separator
  74.         virtual const string &getDirSeparator() const = 0;
  75.         /// Get the resource path
  76.         virtual const list<string> &getResourcePath() const = 0;
  77.         /// Get the screen size
  78.         virtual int getScreenWidth() const = 0;
  79.         virtual int getScreenHeight() const = 0;
  80.         /// Get the work area (screen area without taskbars)
  81.         virtual Rect getWorkArea() const = 0;
  82.         /// Get the position of the mouse
  83.         virtual void getMousePos( int &rXPos, int &rYPos ) const = 0;
  84.         /// Change the cursor
  85.         virtual void changeCursor( CursorType_t type ) const = 0;
  86.         /// Delete a directory recursively
  87.         virtual void rmDir( const string &rPath ) = 0;
  88.    protected:
  89.         // Protected because it's a singleton.
  90.         OSFactory( intf_thread_t* pIntf ): SkinObject( pIntf ) {}
  91.         virtual ~OSFactory() {}
  92. };
  93. #endif