]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/include/wx/mmedia/vidwin.h
mark slider as being transparent, otherwise it has ugly solid grey background when...
[wxWidgets.git] / contrib / include / wx / mmedia / vidwin.h
index b8d0527f97d571dac305464bec675eec078600df..08b7a104e2dd2750ef371478e18730ad274c535f 100644 (file)
     #pragma interface "vidwin.h"
 #endif
 
     #pragma interface "vidwin.h"
 #endif
 
+#if defined(__WINDOWS__) && !defined(__MINGW32__) && !defined(__WATCOMC__)
+// versions of Open Watcom and MinGW tested against this source does not
+// deliver "digitalv.h" required in this feature
+
 // ----------------------------------------------------------------------------
 // headers
 // ----------------------------------------------------------------------------
 // ----------------------------------------------------------------------------
 // headers
 // ----------------------------------------------------------------------------
@@ -26,7 +30,7 @@
 #endif
 
 // for all others, include the necessary headers (this file is usually all you
 #endif
 
 // for all others, include the necessary headers (this file is usually all you
-// need because it includes almost all "standard" wxWindows headers
+// need because it includes almost all "standard" wxWidgets headers
 #ifndef WX_PRECOMP
     #include "wx/string.h"
     #include "wx/stream.h"
 #ifndef WX_PRECOMP
     #include "wx/string.h"
     #include "wx/stream.h"
@@ -36,6 +40,7 @@
 // ----------------------------------------------------------------------------
 // wxMMedia2 headers
 
 // ----------------------------------------------------------------------------
 // wxMMedia2 headers
 
+#include "wx/mmedia/defs.h"
 #include "wx/mmedia/vidbase.h"
 
 // ----------------------------------------------------------------------------
 #include "wx/mmedia/vidbase.h"
 
 // ----------------------------------------------------------------------------
@@ -53,7 +58,7 @@ typedef struct VIDW_Internal {
 // ----------------------------------------------------------------------------
 // Class definition
 
 // ----------------------------------------------------------------------------
 // Class definition
 
-class WXDLLEXPORT wxVideoWindows : public wxVideoBaseDriver {
+class WXDLLIMPEXP_MMEDIA wxVideoWindows : public wxVideoBaseDriver {
     DECLARE_DYNAMIC_CLASS(wxVideoWindows)
 protected:
     struct VIDW_Internal *m_internal;
     DECLARE_DYNAMIC_CLASS(wxVideoWindows)
 protected:
     struct VIDW_Internal *m_internal;
@@ -89,7 +94,7 @@ public:
     // Return the total number of frames in the movie
     wxUint32 GetNbFrames() const;
     
     // Return the total number of frames in the movie
     wxUint32 GetNbFrames() const;
     
-    bool IsCapable(wxVideoType v_type);
+    bool IsCapable(wxVideoType v_type) const;
     
     bool AttachOutput(wxWindow& output);
     void DetachOutput(void);
     
     bool AttachOutput(wxWindow& output);
     void DetachOutput(void);
@@ -99,3 +104,5 @@ public:
 };
 
 #endif
 };
 
 #endif
+
+#endif