x11_factory.hpp
资源名称:vlc-1.0.5.zip [点击查看]
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:4k
源码类别:
midi
开发平台:
Unix_Linux
- /*****************************************************************************
- * x11_factory.hpp
- *****************************************************************************
- * Copyright (C) 2003 the VideoLAN team
- * $Id: 1825f3ca9c31a81208a4f538c70cef72e977adc3 $
- *
- * Authors: Cyril Deguet <asmax@via.ecp.fr>
- * Olivier Teulière <ipkiss@via.ecp.fr>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
- *****************************************************************************/
- #ifndef X11_FACTORY_HPP
- #define X11_FACTORY_HPP
- #include <X11/Xlib.h>
- #include "../src/os_factory.hpp"
- #include <map>
- class X11Display;
- class X11DragDrop;
- class X11TimerLoop;
- /// Class used to instanciate X11 specific objects
- class X11Factory: public OSFactory
- {
- public:
- /// Map to find the GenericWindow associated to a X11Window
- map<Window, GenericWindow*> m_windowMap;
- /// Map to find the Dnd object associated to a X11Window
- map<Window, X11DragDrop*> m_dndMap;
- X11Factory( intf_thread_t *pIntf );
- virtual ~X11Factory();
- /// Initialization method
- virtual bool init();
- /// Instantiate an object OSGraphics
- virtual OSGraphics *createOSGraphics( int width, int height );
- /// Get the instance of the singleton OSLoop
- virtual OSLoop *getOSLoop();
- /// Destroy the instance of OSLoop
- virtual void destroyOSLoop();
- /// Instantiate an OSTimer with the given command
- virtual OSTimer *createOSTimer( CmdGeneric &rCmd );
- /// Minimize all the windows
- virtual void minimize();
- /// Restore the minimized windows
- virtual void restore();
- /// Add an icon in the system tray
- virtual void addInTray();
- /// Remove the icon from the system tray
- virtual void removeFromTray();
- /// Show the task in the task bar
- virtual void addInTaskBar();
- /// Remove the task from the task bar
- virtual void removeFromTaskBar();
- /// Instantiate an OSWindow object
- virtual OSWindow *createOSWindow( GenericWindow &rWindow,
- bool dragDrop, bool playOnDrop,
- OSWindow *pParent );
- /// Instantiate an object OSTooltip
- virtual OSTooltip *createOSTooltip();
- /// Instantiate an object OSPopup
- virtual OSPopup *createOSPopup();
- /// Get the directory separator
- virtual const string &getDirSeparator() const { return m_dirSep; }
- /// Get the resource path
- virtual const list<string> &getResourcePath() const
- { return m_resourcePath; }
- /// Get the screen size
- virtual int getScreenWidth() const;
- virtual int getScreenHeight() const;
- /// Get the work area (screen area without taskbars)
- virtual SkinsRect getWorkArea() const;
- /// Get the position of the mouse
- virtual void getMousePos( int &rXPos, int &rYPos ) const;
- /// Change the cursor
- virtual void changeCursor( CursorType_t type ) const { /*TODO*/ }
- /// Delete a directory recursively
- virtual void rmDir( const string &rPath );
- /// Get the timer loop
- X11TimerLoop *getTimerLoop() const { return m_pTimerLoop; }
- private:
- /// X11 display
- X11Display *m_pDisplay;
- /// Timer loop
- X11TimerLoop *m_pTimerLoop;
- /// Directory separator
- const string m_dirSep;
- /// Resource path
- list<string> m_resourcePath;
- };
- #endif