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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * macosx_factory.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: 3efac86e7b69037ca9f108a60d9b23ade1738bd8 $
  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. #ifdef MACOSX_SKINS
  24. #include "macosx_factory.hpp"
  25. #include "macosx_graphics.hpp"
  26. #include "macosx_loop.hpp"
  27. #include "macosx_popup.hpp"
  28. #include "macosx_timer.hpp"
  29. #include "macosx_window.hpp"
  30. #include "macosx_tooltip.hpp"
  31. MacOSXFactory::MacOSXFactory( intf_thread_t *pIntf ): OSFactory( pIntf ),
  32.     m_dirSep( "/" )
  33. {
  34.     // TODO
  35. }
  36. MacOSXFactory::~MacOSXFactory()
  37. {
  38.     // TODO
  39. }
  40. bool MacOSXFactory::init()
  41. {
  42.     // TODO
  43.     return true;
  44. }
  45. OSGraphics *MacOSXFactory::createOSGraphics( int width, int height )
  46. {
  47.     return new MacOSXGraphics( getIntf(), width, height );
  48. }
  49. OSLoop *MacOSXFactory::getOSLoop()
  50. {
  51.     return MacOSXLoop::instance( getIntf() );
  52. }
  53. void MacOSXFactory::destroyOSLoop()
  54. {
  55.     MacOSXLoop::destroy( getIntf() );
  56. }
  57. void MacOSXFactory::minimize()
  58. {
  59.     // TODO
  60. }
  61. void MacOSXFactory::restore()
  62. {
  63.     // TODO
  64. }
  65. void MacOSXFactory::addInTray()
  66. {
  67.     // TODO
  68. }
  69. void MacOSXFactory::removeFromTray()
  70. {
  71.     // TODO
  72. }
  73. void MacOSXFactory::addInTaskBar()
  74. {
  75.     // TODO
  76. }
  77. void MacOSXFactory::removeFromTaskBar()
  78. {
  79.     // TODO
  80. }
  81. OSTimer *MacOSXFactory::createOSTimer( CmdGeneric &rCmd )
  82. {
  83.     return new MacOSXTimer( getIntf(), rCmd );
  84. }
  85. OSWindow *MacOSXFactory::createOSWindow( GenericWindow &rWindow, bool dragDrop,
  86.                                       bool playOnDrop, OSWindow *pParent )
  87. {
  88.     return new MacOSXWindow( getIntf(), rWindow, dragDrop,
  89.                              playOnDrop, (MacOSXWindow*)pParent );
  90. }
  91. OSTooltip *MacOSXFactory::createOSTooltip()
  92. {
  93.     return new MacOSXTooltip( getIntf() );
  94. }
  95. OSPopup *MacOSXFactory::createOSPopup()
  96. {
  97.     return new MacOSXPopup( getIntf() );
  98. }
  99. int MacOSXFactory::getScreenWidth() const
  100. {
  101.     // TODO
  102.     return 0;
  103. }
  104. int MacOSXFactory::getScreenHeight() const
  105. {
  106.     // TODO
  107.     return 0;
  108. }
  109. SkinsRect MacOSXFactory::getWorkArea() const
  110. {
  111.     // XXX
  112.     return SkinsRect( 0, 0, getScreenWidth(), getScreenHeight() );
  113. }
  114. void MacOSXFactory::getMousePos( int &rXPos, int &rYPos ) const
  115. {
  116.     // TODO
  117. }
  118. void MacOSXFactory::rmDir( const string &rPath )
  119. {
  120.     // TODO
  121. }
  122. #endif