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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * win32_factory.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: 77904d239ec3164e88bcd9fc7145964df37198cd $
  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 WIN32_FACTORY_HPP
  25. #define WIN32_FACTORY_HPP
  26. #ifndef _WIN32_WINNT
  27. #   define _WIN32_WINNT 0x0500
  28. #endif
  29. #include <windows.h>
  30. #include <shellapi.h>
  31. #include "../src/os_factory.hpp"
  32. #include <map>
  33. /// Class used to instanciate Win32 specific objects
  34. class Win32Factory: public OSFactory
  35. {
  36.     public:
  37.         Win32Factory( intf_thread_t *pIntf );
  38.         virtual ~Win32Factory();
  39.         /// Initialization method
  40.         virtual bool init();
  41.         /// Instantiate an object OSGraphics
  42.         virtual OSGraphics *createOSGraphics( int width, int height );
  43.         /// Get the instance of the singleton OSLoop
  44.         virtual OSLoop *getOSLoop();
  45.         /// Destroy the instance of OSLoop
  46.         virtual void destroyOSLoop();
  47.         /// Minimize all the windows
  48.         virtual void minimize();
  49.         /// Restore the minimized windows
  50.         virtual void restore();
  51.         /// Add an icon in the system tray
  52.         virtual void addInTray();
  53.         /// Remove the icon from the system tray
  54.         virtual void removeFromTray();
  55.         /// Show the task in the task bar
  56.         virtual void addInTaskBar();
  57.         /// Remove the task from the task bar
  58.         virtual void removeFromTaskBar();
  59.         /// Instantiate an OSTimer with the given command
  60.         virtual OSTimer *createOSTimer( CmdGeneric &rCmd );
  61.         /// Instantiate an OSWindow object
  62.         virtual OSWindow *createOSWindow( GenericWindow &rWindow,
  63.                                           bool dragDrop, bool playOnDrop,
  64.                                           OSWindow *pParent );
  65.         /// Instantiate an object OSTooltip
  66.         virtual OSTooltip *createOSTooltip();
  67.         /// Instantiate an object OSPopup
  68.         virtual OSPopup *createOSPopup();
  69.         /// Get the directory separator
  70.         virtual const string &getDirSeparator() const { return m_dirSep; }
  71.         /// Get the resource path
  72.         virtual const list<string> &getResourcePath() const
  73.             { return m_resourcePath; }
  74.         /// Get the screen size
  75.         virtual int getScreenWidth() const;
  76.         virtual int getScreenHeight() const;
  77.         /// Get the work area (screen area without taskbars)
  78.         virtual SkinsRect getWorkArea() const;
  79.         /// Get the position of the mouse
  80.         virtual void getMousePos( int &rXPos, int &rYPos ) const;
  81.         /// Change the cursor
  82.         virtual void changeCursor( CursorType_t type ) const;
  83.         /// Delete a directory recursively
  84.         virtual void rmDir( const string &rPath );
  85.         /// Map to find the GenericWindow associated with a Win32Window
  86.         map<HWND, GenericWindow*> m_windowMap;
  87.         /// Functions dynamically loaded from the dll, because they don't exist
  88.         /// on Win9x/NT4
  89.         // We dynamically load msimg32.dll to get a pointer to TransparentBlt()
  90.         BOOL (WINAPI *TransparentBlt)( HDC, int, int, int, int,
  91.                                        HDC, int, int, int, int, UINT );
  92.         BOOL (WINAPI *AlphaBlend)( HDC, int, int, int, int,
  93.                                    HDC, int, int, int, int, BLENDFUNCTION );
  94.         // Idem for user32.dll and SetLayeredWindowAttributes()
  95.         BOOL (WINAPI *SetLayeredWindowAttributes)( HWND, COLORREF,
  96.                                                    BYTE, DWORD );
  97.     private:
  98.         /// Handle of the instance
  99.         HINSTANCE m_hInst;
  100.         /// Handle of the parent window
  101.         HWND m_hParentWindow;
  102.         /// Structure for the system tray
  103.         NOTIFYICONDATA m_trayIcon;
  104.         /// Handle on msimg32.dll (for TransparentBlt)
  105.         HINSTANCE m_hMsimg32;
  106.         /// Handle on user32.dll (for SetLayeredWindowAttributes)
  107.         HINSTANCE m_hUser32;
  108.         /// Directory separator
  109.         const string m_dirSep;
  110.         /// Resource path
  111.         list<string> m_resourcePath;
  112. };
  113. #endif