winctrl.h
上传用户:liguizhu
上传日期:2015-11-01
资源大小:2422k
文件大小:10k
源码类别:

P2P编程

开发平台:

Visual C++

  1. //------------------------------------------------------------------------------
  2. // File: WinCtrl.h
  3. //
  4. // Desc: DirectShow base classes - defines classes for video control 
  5. //       interfaces.
  6. //
  7. // Copyright (c) Microsoft Corporation.  All rights reserved.
  8. //------------------------------------------------------------------------------
  9. #ifndef __WINCTRL__
  10. #define __WINCTRL__
  11. #define ABSOL(x) (x < 0 ? -x : x)
  12. #define NEGAT(x) (x > 0 ? -x : x)
  13. //  Helper
  14. BOOL WINAPI PossiblyEatMessage(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
  15. class CBaseControlWindow : public CBaseVideoWindow, public CBaseWindow
  16. {
  17. protected:
  18.     CBaseFilter *m_pFilter;            // Pointer to owning media filter
  19.     CBasePin *m_pPin;                  // Controls media types for connection
  20.     CCritSec *m_pInterfaceLock;        // Externally defined critical section
  21.     COLORREF m_BorderColour;           // Current window border colour
  22.     BOOL m_bAutoShow;                  // What happens when the state changes
  23.     HWND m_hwndOwner;                  // Owner window that we optionally have
  24.     HWND m_hwndDrain;                  // HWND to post any messages received
  25.     BOOL m_bCursorHidden;              // Should we hide the window cursor
  26. public:
  27.     // Internal methods for other objects to get information out
  28.     HRESULT DoSetWindowStyle(long Style,long WindowLong);
  29.     HRESULT DoGetWindowStyle(long *pStyle,long WindowLong);
  30.     BOOL IsAutoShowEnabled() { return m_bAutoShow; };
  31.     COLORREF GetBorderColour() { return m_BorderColour; };
  32.     HWND GetOwnerWindow() { return m_hwndOwner; };
  33.     BOOL IsCursorHidden() { return m_bCursorHidden; };
  34.     inline BOOL PossiblyEatMessage(UINT uMsg, WPARAM wParam, LPARAM lParam)
  35.     {
  36.         return ::PossiblyEatMessage(m_hwndDrain, uMsg, wParam, lParam);
  37.     }
  38.     // Derived classes must call this to set the pin the filter is using
  39.     // We don't have the pin passed in to the constructor (as we do with
  40.     // the CBaseFilter object) because filters typically create the
  41.     // pins dynamically when requested in CBaseFilter::GetPin. This can
  42.     // not be called from our constructor because is is a virtual method
  43.     void SetControlWindowPin(CBasePin *pPin) {
  44.         m_pPin = pPin;
  45.     }
  46. public:
  47.     CBaseControlWindow(CBaseFilter *pFilter,   // Owning media filter
  48.                        CCritSec *pInterfaceLock,    // Locking object
  49.                        TCHAR *pName,                // Object description
  50.                        LPUNKNOWN pUnk,              // Normal COM ownership
  51.                        HRESULT *phr);               // OLE return code
  52.     // These are the properties we support
  53.     STDMETHODIMP put_Caption(BSTR strCaption);
  54.     STDMETHODIMP get_Caption(BSTR *pstrCaption);
  55.     STDMETHODIMP put_AutoShow(long AutoShow);
  56.     STDMETHODIMP get_AutoShow(long *AutoShow);
  57.     STDMETHODIMP put_WindowStyle(long WindowStyle);
  58.     STDMETHODIMP get_WindowStyle(long *pWindowStyle);
  59.     STDMETHODIMP put_WindowStyleEx(long WindowStyleEx);
  60.     STDMETHODIMP get_WindowStyleEx(long *pWindowStyleEx);
  61.     STDMETHODIMP put_WindowState(long WindowState);
  62.     STDMETHODIMP get_WindowState(long *pWindowState);
  63.     STDMETHODIMP put_BackgroundPalette(long BackgroundPalette);
  64.     STDMETHODIMP get_BackgroundPalette(long *pBackgroundPalette);
  65.     STDMETHODIMP put_Visible(long Visible);
  66.     STDMETHODIMP get_Visible(long *pVisible);
  67.     STDMETHODIMP put_Left(long Left);
  68.     STDMETHODIMP get_Left(long *pLeft);
  69.     STDMETHODIMP put_Width(long Width);
  70.     STDMETHODIMP get_Width(long *pWidth);
  71.     STDMETHODIMP put_Top(long Top);
  72.     STDMETHODIMP get_Top(long *pTop);
  73.     STDMETHODIMP put_Height(long Height);
  74.     STDMETHODIMP get_Height(long *pHeight);
  75.     STDMETHODIMP put_Owner(OAHWND Owner);
  76.     STDMETHODIMP get_Owner(OAHWND *Owner);
  77.     STDMETHODIMP put_MessageDrain(OAHWND Drain);
  78.     STDMETHODIMP get_MessageDrain(OAHWND *Drain);
  79.     STDMETHODIMP get_BorderColor(long *Color);
  80.     STDMETHODIMP put_BorderColor(long Color);
  81.     STDMETHODIMP get_FullScreenMode(long *FullScreenMode);
  82.     STDMETHODIMP put_FullScreenMode(long FullScreenMode);
  83.     // And these are the methods
  84.     STDMETHODIMP SetWindowForeground(long Focus);
  85.     STDMETHODIMP NotifyOwnerMessage(OAHWND hwnd,long uMsg,LONG_PTR wParam,LONG_PTR lParam);
  86.     STDMETHODIMP GetMinIdealImageSize(long *pWidth,long *pHeight);
  87.     STDMETHODIMP GetMaxIdealImageSize(long *pWidth,long *pHeight);
  88.     STDMETHODIMP SetWindowPosition(long Left,long Top,long Width,long Height);
  89.     STDMETHODIMP GetWindowPosition(long *pLeft,long *pTop,long *pWidth,long *pHeight);
  90.     STDMETHODIMP GetRestorePosition(long *pLeft,long *pTop,long *pWidth,long *pHeight);
  91. STDMETHODIMP HideCursor(long HideCursor);
  92.     STDMETHODIMP IsCursorHidden(long *CursorHidden);
  93. };
  94. // This class implements the IBasicVideo interface
  95. class CBaseControlVideo : public CBaseBasicVideo
  96. {
  97. protected:
  98.     CBaseFilter *m_pFilter;   // Pointer to owning media filter
  99.     CBasePin *m_pPin;                   // Controls media types for connection
  100.     CCritSec *m_pInterfaceLock;         // Externally defined critical section
  101. public:
  102.     // Derived classes must provide these for the implementation
  103.     virtual HRESULT IsDefaultTargetRect() PURE;
  104.     virtual HRESULT SetDefaultTargetRect() PURE;
  105.     virtual HRESULT SetTargetRect(RECT *pTargetRect) PURE;
  106.     virtual HRESULT GetTargetRect(RECT *pTargetRect) PURE;
  107.     virtual HRESULT IsDefaultSourceRect() PURE;
  108.     virtual HRESULT SetDefaultSourceRect() PURE;
  109.     virtual HRESULT SetSourceRect(RECT *pSourceRect) PURE;
  110.     virtual HRESULT GetSourceRect(RECT *pSourceRect) PURE;
  111.     virtual HRESULT GetStaticImage(long *pBufferSize,long *pDIBImage) PURE;
  112.     // Derived classes must override this to return a VIDEOINFO representing
  113.     // the video format. We cannot call IPin ConnectionMediaType to get this
  114.     // format because various filters dynamically change the type when using
  115.     // DirectDraw such that the format shows the position of the logical
  116.     // bitmap in a frame buffer surface, so the size might be returned as
  117.     // 1024x768 pixels instead of 320x240 which is the real video dimensions
  118.     virtual VIDEOINFOHEADER *GetVideoFormat() PURE;
  119.     // Helper functions for creating memory renderings of a DIB image
  120.     HRESULT GetImageSize(VIDEOINFOHEADER *pVideoInfo,
  121.                          LONG *pBufferSize,
  122.                          RECT *pSourceRect);
  123.     HRESULT CopyImage(IMediaSample *pMediaSample,
  124.                       VIDEOINFOHEADER *pVideoInfo,
  125.                       LONG *pBufferSize,
  126.                       BYTE *pVideoImage,
  127.                       RECT *pSourceRect);
  128.     // Override this if you want notifying when the rectangles change
  129.     virtual HRESULT OnUpdateRectangles() { return NOERROR; };
  130.     virtual HRESULT OnVideoSizeChange();
  131.     // Derived classes must call this to set the pin the filter is using
  132.     // We don't have the pin passed in to the constructor (as we do with
  133.     // the CBaseFilter object) because filters typically create the
  134.     // pins dynamically when requested in CBaseFilter::GetPin. This can
  135.     // not be called from our constructor because is is a virtual method
  136.     void SetControlVideoPin(CBasePin *pPin) {
  137.         m_pPin = pPin;
  138.     }
  139.     // Helper methods for checking rectangles
  140.     virtual HRESULT CheckSourceRect(RECT *pSourceRect);
  141.     virtual HRESULT CheckTargetRect(RECT *pTargetRect);
  142. public:
  143.     CBaseControlVideo(CBaseFilter *pFilter,    // Owning media filter
  144.                       CCritSec *pInterfaceLock,     // Serialise interface
  145.                       TCHAR *pName,                 // Object description
  146.                       LPUNKNOWN pUnk,               // Normal COM ownership
  147.                       HRESULT *phr);                // OLE return code
  148.     // These are the properties we support
  149.     STDMETHODIMP get_AvgTimePerFrame(REFTIME *pAvgTimePerFrame);
  150.     STDMETHODIMP get_BitRate(long *pBitRate);
  151.     STDMETHODIMP get_BitErrorRate(long *pBitErrorRate);
  152.     STDMETHODIMP get_VideoWidth(long *pVideoWidth);
  153.     STDMETHODIMP get_VideoHeight(long *pVideoHeight);
  154.     STDMETHODIMP put_SourceLeft(long SourceLeft);
  155.     STDMETHODIMP get_SourceLeft(long *pSourceLeft);
  156.     STDMETHODIMP put_SourceWidth(long SourceWidth);
  157.     STDMETHODIMP get_SourceWidth(long *pSourceWidth);
  158.     STDMETHODIMP put_SourceTop(long SourceTop);
  159.     STDMETHODIMP get_SourceTop(long *pSourceTop);
  160.     STDMETHODIMP put_SourceHeight(long SourceHeight);
  161.     STDMETHODIMP get_SourceHeight(long *pSourceHeight);
  162.     STDMETHODIMP put_DestinationLeft(long DestinationLeft);
  163.     STDMETHODIMP get_DestinationLeft(long *pDestinationLeft);
  164.     STDMETHODIMP put_DestinationWidth(long DestinationWidth);
  165.     STDMETHODIMP get_DestinationWidth(long *pDestinationWidth);
  166.     STDMETHODIMP put_DestinationTop(long DestinationTop);
  167.     STDMETHODIMP get_DestinationTop(long *pDestinationTop);
  168.     STDMETHODIMP put_DestinationHeight(long DestinationHeight);
  169.     STDMETHODIMP get_DestinationHeight(long *pDestinationHeight);
  170.     // And these are the methods
  171.     STDMETHODIMP GetVideoSize(long *pWidth,long *pHeight);
  172.     STDMETHODIMP SetSourcePosition(long Left,long Top,long Width,long Height);
  173.     STDMETHODIMP GetSourcePosition(long *pLeft,long *pTop,long *pWidth,long *pHeight);
  174.     STDMETHODIMP GetVideoPaletteEntries(long StartIndex,long Entries,long *pRetrieved,long *pPalette);
  175.     STDMETHODIMP SetDefaultSourcePosition();
  176.     STDMETHODIMP IsUsingDefaultSource();
  177.     STDMETHODIMP SetDestinationPosition(long Left,long Top,long Width,long Height);
  178.     STDMETHODIMP GetDestinationPosition(long *pLeft,long *pTop,long *pWidth,long *pHeight);
  179.     STDMETHODIMP SetDefaultDestinationPosition();
  180.     STDMETHODIMP IsUsingDefaultDestination();
  181.     STDMETHODIMP GetCurrentImage(long *pBufferSize,long *pVideoImage);
  182. };
  183. #endif // __WINCTRL__