]> git.saurik.com Git - wxWidgets.git/blob - utils/wxMMedia/vidxanm.h
Changed BidEndianOrdered to BigEndianOrdered in datstrm.h
[wxWidgets.git] / utils / wxMMedia / vidxanm.h
1 // /////////////////////////////////////////////////////////////////////////////
2 // Name: vidxanm.h
3 // Purpose: wxMMedia
4 // Author: Guilhem Lavaux
5 // Created: 1997
6 // Updated: 1998
7 // Copyright: (C) 1997, 1998, Guilhem Lavaux
8 // License: wxWindows license
9 // /////////////////////////////////////////////////////////////////////////////
10 /* Real -*- C++ -*- */
11 #ifndef __VID_xanim_H__
12 #define __VID_xanim_H__
13
14 #ifdef __GNUG__
15 #pragma interface
16 #endif
17
18 #if defined(WXMMEDIA_INTERNAL) && (defined(__X__) || defined(__WXGTK__))
19 #include <X11/Xlib.h>
20 #include <X11/Xatom.h>
21 #endif
22
23 #include "vidbase.h"
24
25 #ifdef WXMMEDIA_INTERNAL
26 typedef struct wxXANIMinternal {
27 Display *xanim_dpy;
28 Window xanim_window;
29 Atom xanim_atom, xanim_ret;
30 } wxXANIMinternal;
31
32 #ifndef __XANIM_COMMAND__
33 #define __XANIM_COMMAND__ "/usr/X11R6/bin/xanim"
34 #endif
35 #endif
36
37 class wxVideoXANIM : public wxVideoBaseDriver {
38 DECLARE_DYNAMIC_CLASS(wxVideoXANIM)
39 protected:
40 bool xanim_started, paused;
41 struct wxXANIMinternal *internal;
42 public:
43 wxVideoXANIM();
44 wxVideoXANIM(wxInputStream& str);
45 wxVideoXANIM(const wxString& fname);
46 virtual ~wxVideoXANIM();
47
48 virtual bool StartPlay();
49 virtual bool Pause();
50 virtual bool Resume();
51 virtual void StopPlay();
52
53 virtual bool SetVolume(wxUint8 vol);
54 virtual bool Resize(wxUint16 w, wxUint16 h);
55
56 virtual bool IsCapable(wxVideoType v_type);
57
58 virtual bool AttachOutput(wxVideoOutput& output);
59 virtual void DetachOutput();
60
61 protected:
62 ///
63 bool RestartXANIM();
64 ///
65 bool SendCommand(const char *command, char **ret = NULL,
66 wxUint32 *size = NULL);
67 };
68
69 #endif