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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * macosx_factory.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: 33d4f2d8a57cc0a8e9cf7a8bcf9e981d0bb1ce77 $
  6.  *
  7.  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. #ifndef MACOSX_FACTORY_HPP
  24. #define MACOSX_FACTORY_HPP
  25. #include "../src/os_factory.hpp"
  26. /// Class used to instanciate MacOSX specific objects
  27. class MacOSXFactory: public OSFactory
  28. {
  29.     public:
  30.         MacOSXFactory( intf_thread_t *pIntf );
  31.         virtual ~MacOSXFactory();
  32.         /// Initialization method
  33.         virtual bool init();
  34.         /// Instantiate an object OSGraphics
  35.         virtual OSGraphics *createOSGraphics( int width, int height );
  36.         /// Get the instance of the singleton OSLoop
  37.         virtual OSLoop *getOSLoop();
  38.         /// Destroy the instance of OSLoop
  39.         virtual void destroyOSLoop();
  40.         /// Instantiate an OSTimer with the given callback
  41.         virtual OSTimer *createOSTimer( CmdGeneric &rCmd );
  42.         /// Minimize all the windows
  43.         virtual void minimize();
  44.         /// Restore the minimized windows
  45.         virtual void restore();
  46.         /// Add an icon in the system tray
  47.         virtual void addInTray();
  48.         /// Remove the icon from the system tray
  49.         virtual void removeFromTray();
  50.         /// Show the task in the task bar
  51.         virtual void addInTaskBar();
  52.         /// Remove the task from the task bar
  53.         virtual void removeFromTaskBar();
  54.         /// Instantiate an OSWindow object
  55.         virtual OSWindow *createOSWindow( GenericWindow &rWindow,
  56.                                           bool dragDrop, bool playOnDrop,
  57.                                           OSWindow *pParent );
  58.         /// Instantiate an object OSTooltip
  59.         virtual OSTooltip *createOSTooltip();
  60.         /// Instantiate an object OSPopup
  61.         virtual OSPopup *createOSPopup();
  62.         /// Get the directory separator
  63.         virtual const string &getDirSeparator() const { return m_dirSep; }
  64.         /// Get the resource path
  65.         virtual const list<string> &getResourcePath() const
  66.             { return m_resourcePath; }
  67.         /// Get the screen size
  68.         virtual int getScreenWidth() const;
  69.         virtual int getScreenHeight() const;
  70.         /// Get the work area (screen area without taskbars)
  71.         virtual SkinsRect getWorkArea() const;
  72.         /// Get the position of the mouse
  73.         virtual void getMousePos( int &rXPos, int &rYPos ) const;
  74.         /// Change the cursor
  75.         virtual void changeCursor( CursorType_t type ) const { /*TODO*/ }
  76.         /// Delete a directory recursively
  77.         virtual void rmDir( const string &rPath );
  78.     private:
  79.         /// Directory separator
  80.         const string m_dirSep;
  81.         /// Resource path
  82.         list<string> m_resourcePath;
  83. };
  84. #endif