os_factory.hpp
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:4k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * os_factory.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: c16d52ef4afb996c6f6a23ee6f9fdc346278a471 $
  6.  *
  7.  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  8.  *          Olivier Teulière <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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, 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 CmdGeneric;
  32. class OSBitmap;
  33. class OSGraphics;
  34. class OSLoop;
  35. class OSWindow;
  36. class OSTooltip;
  37. class OSPopup;
  38. class OSTimer;
  39. /// Abstract factory used to instantiate OS specific objects.
  40. class OSFactory: public SkinObject
  41. {
  42.     public:
  43.         enum CursorType_t
  44.         {
  45.             kDefaultArrow,
  46.             kResizeNS,
  47.             kResizeWE,
  48.             kResizeNWSE,
  49.             kResizeNESW
  50.         };
  51.         /**
  52.          * Initialization method overloaded in derived classes.
  53.          * It must return false if the init failed.
  54.          */
  55.         virtual bool init() { return true; }
  56.         /**
  57.          * Get the right instance of OSFactory.
  58.          * Returns NULL if initialization of the concrete factory failed.
  59.          */
  60.         static OSFactory *instance( intf_thread_t *pIntf );
  61.         /// Delete the instance of OSFactory
  62.         static void destroy( intf_thread_t *pIntf );
  63.         /// Instantiate an object OSGraphics
  64.         virtual OSGraphics *createOSGraphics( int width, int height ) = 0;
  65.         /// Get the instance of the singleton OSLoop
  66.         virtual OSLoop *getOSLoop() = 0;
  67.         /// Destroy the instance of OSLoop
  68.         virtual void destroyOSLoop() = 0;
  69.         /// Minimize all the windows
  70.         virtual void minimize() = 0;
  71.         /// Restore the minimized windows
  72.         virtual void restore() = 0;
  73.         /// Add an icon in the system tray
  74.         virtual void addInTray() = 0;
  75.         /// Remove the icon from the system tray
  76.         virtual void removeFromTray() = 0;
  77.         /// Show the task in the task bar
  78.         virtual void addInTaskBar() = 0;
  79.         /// Remove the task from the task bar
  80.         virtual void removeFromTaskBar() = 0;
  81.         /// Instantiate an OSTimer with the given command
  82.         virtual OSTimer *createOSTimer( CmdGeneric &rCmd ) = 0;
  83.         /// Instantiate an object OSWindow
  84.         virtual OSWindow *createOSWindow( GenericWindow &rWindow,
  85.                                           bool dragDrop, bool playOnDrop,
  86.                                           OSWindow *pParent ) = 0;
  87.         /// Instantiate an object OSTooltip
  88.         virtual OSTooltip *createOSTooltip() = 0;
  89.         /// Instantiate an object OSPopup
  90.         virtual OSPopup *createOSPopup() = 0;
  91.         /// Get the directory separator
  92.         virtual const string &getDirSeparator() const = 0;
  93.         /// Get the resource path
  94.         virtual const list<string> &getResourcePath() const = 0;
  95.         /// Get the screen size
  96.         virtual int getScreenWidth() const = 0;
  97.         virtual int getScreenHeight() const = 0;
  98.         /// Get the work area (screen area without taskbars)
  99.         virtual SkinsRect getWorkArea() const = 0;
  100.         /// Get the position of the mouse
  101.         virtual void getMousePos( int &rXPos, int &rYPos ) const = 0;
  102.         /// Change the cursor
  103.         virtual void changeCursor( CursorType_t type ) const = 0;
  104.         /// Delete a directory recursively
  105.         virtual void rmDir( const string &rPath ) = 0;
  106.    protected:
  107.         // Protected because it's a singleton
  108.         OSFactory( intf_thread_t* pIntf ): SkinObject( pIntf ) {}
  109.         virtual ~OSFactory() {}
  110. };
  111. #endif