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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * x11_factory.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: 1825f3ca9c31a81208a4f538c70cef72e977adc3 $
  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 X11_FACTORY_HPP
  25. #define X11_FACTORY_HPP
  26. #include <X11/Xlib.h>
  27. #include "../src/os_factory.hpp"
  28. #include <map>
  29. class X11Display;
  30. class X11DragDrop;
  31. class X11TimerLoop;
  32. /// Class used to instanciate X11 specific objects
  33. class X11Factory: public OSFactory
  34. {
  35.     public:
  36.         /// Map to find the GenericWindow associated to a X11Window
  37.         map<Window, GenericWindow*> m_windowMap;
  38.         /// Map to find the Dnd object associated to a X11Window
  39.         map<Window, X11DragDrop*> m_dndMap;
  40.         X11Factory( intf_thread_t *pIntf );
  41.         virtual ~X11Factory();
  42.         /// Initialization method
  43.         virtual bool init();
  44.         /// Instantiate an object OSGraphics
  45.         virtual OSGraphics *createOSGraphics( int width, int height );
  46.         /// Get the instance of the singleton OSLoop
  47.         virtual OSLoop *getOSLoop();
  48.         /// Destroy the instance of OSLoop
  49.         virtual void destroyOSLoop();
  50.         /// Instantiate an OSTimer with the given command
  51.         virtual OSTimer *createOSTimer( CmdGeneric &rCmd );
  52.         /// Minimize all the windows
  53.         virtual void minimize();
  54.         /// Restore the minimized windows
  55.         virtual void restore();
  56.         /// Add an icon in the system tray
  57.         virtual void addInTray();
  58.         /// Remove the icon from the system tray
  59.         virtual void removeFromTray();
  60.         /// Show the task in the task bar
  61.         virtual void addInTaskBar();
  62.         /// Remove the task from the task bar
  63.         virtual void removeFromTaskBar();
  64.         /// Instantiate an OSWindow object
  65.         virtual OSWindow *createOSWindow( GenericWindow &rWindow,
  66.                                           bool dragDrop, bool playOnDrop,
  67.                                           OSWindow *pParent );
  68.         /// Instantiate an object OSTooltip
  69.         virtual OSTooltip *createOSTooltip();
  70.         /// Instantiate an object OSPopup
  71.         virtual OSPopup *createOSPopup();
  72.         /// Get the directory separator
  73.         virtual const string &getDirSeparator() const { return m_dirSep; }
  74.         /// Get the resource path
  75.         virtual const list<string> &getResourcePath() const
  76.             { return m_resourcePath; }
  77.         /// Get the screen size
  78.         virtual int getScreenWidth() const;
  79.         virtual int getScreenHeight() const;
  80.         /// Get the work area (screen area without taskbars)
  81.         virtual SkinsRect getWorkArea() const;
  82.         /// Get the position of the mouse
  83.         virtual void getMousePos( int &rXPos, int &rYPos ) const;
  84.         /// Change the cursor
  85.         virtual void changeCursor( CursorType_t type ) const { /*TODO*/ }
  86.         /// Delete a directory recursively
  87.         virtual void rmDir( const string &rPath );
  88.         /// Get the timer loop
  89.         X11TimerLoop *getTimerLoop() const { return m_pTimerLoop; }
  90.     private:
  91.         /// X11 display
  92.         X11Display *m_pDisplay;
  93.         /// Timer loop
  94.         X11TimerLoop *m_pTimerLoop;
  95.         /// Directory separator
  96.         const string m_dirSep;
  97.         /// Resource path
  98.         list<string> m_resourcePath;
  99. };
  100. #endif