]> git.saurik.com Git - wxWidgets.git/blob - include/wx/mac/carbon/moviectrl.h
6102095df572272ff64208456d8ffcf0fe86d203
[wxWidgets.git] / include / wx / mac / carbon / moviectrl.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/msw/moviectrl.h
3 // Purpose: DirectX7+ wxMovieCtrl MSW
4 // Author: Ryan Norton <wxprojects@comcast.net>
5 // Modified by:
6 // Created: 11/07/04
7 // RCS-ID: $Id$
8 // Copyright: (c) Ryan Norton
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #include "wx/defs.h"
13
14 #if wxUSE_MOVIECTRL
15
16 #include "wx/datetime.h"
17 #include "wx/control.h"
18
19 enum wxMovieCtrlState
20 {
21 wxMOVIECTRL_STOPPED,
22 wxMOVIECTRL_PAUSED,
23 wxMOVIECTRL_PLAYING
24 };
25
26 class wxMovieCtrl : public wxControl
27 {
28 public:
29 wxMovieCtrl()
30 { }
31
32 wxMovieCtrl(wxWindow* parent, wxWindowID id, const wxString& fileName, const wxString& label = wxT(""),
33 const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
34 long style = 0, const wxString& name = wxPanelNameStr)
35 { Create(parent, id, fileName, label, pos, size, style, name); }
36
37 ~wxMovieCtrl();
38
39 bool Create(wxWindow* parent, wxWindowID id, const wxString& fileName, const wxString& label = wxT(""),
40 const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
41 long style = 0, const wxString& name = wxPanelNameStr);
42
43 bool Play();
44 bool Pause();
45 bool Stop();
46
47 wxMovieCtrlState GetState();
48
49 double GetPlaybackRate();
50 bool SetPlaybackRate(double dRate);
51
52 #if wxUSE_DATETIME
53 bool Seek(const wxTimeSpan& where);
54 wxTimeSpan Tell();
55 wxTimeSpan Length();
56 #endif
57
58 protected:
59 void OnSize(wxSizeEvent& evt);
60 wxSize DoGetBestSize() const;
61 bool InitQT();
62
63 struct MovieRecord* m_movie;
64 wxSize m_bestSize;
65 class _wxQTTimer* m_timer;
66
67 friend class _wxQTTimer;
68
69 DECLARE_DYNAMIC_CLASS(wxMovieCtrl);
70 };
71
72 //Event stuff
73 class WXDLLEXPORT wxMovieEvent : public wxNotifyEvent
74 {
75 public:
76 wxMovieEvent(wxEventType commandType = wxEVT_NULL, int id = 0)
77 : wxNotifyEvent(commandType, id)
78 { }
79
80 wxMovieEvent(const wxMovieEvent &clone)
81 : wxNotifyEvent(clone.GetEventType(), clone.GetId())
82 { }
83
84 wxEvent *Clone() { return new wxMovieEvent(*this); }
85
86 DECLARE_DYNAMIC_CLASS(wxMovieEvent)
87 };
88
89 #define wxMOVIE_FINISHED_ID 13000
90 DECLARE_EVENT_TYPE(wxEVT_MOVIE_FINISHED, wxMOVIE_FINISHED_ID)
91 typedef void (wxEvtHandler::*wxMovieEventFunction)(wxMovieEvent&);
92 #define EVT_MOVIE_FINISHED(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MOVIE_FINISHED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMovieEventFunction) & fn, (wxObject *) NULL ),
93
94 #endif // wxUSE_MOVIECTRL