ScummVM API documentation
orthoplayxobj.h
1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  *
20  */
21 
22 #ifndef DIRECTOR_LINGO_XLIBS_ORTHOPLAYXOBJ_H
23 #define DIRECTOR_LINGO_XLIBS_ORTHOPLAYXOBJ_H
24 
25 namespace Director {
26 
27 class OrthoPlayXObject : public Object<OrthoPlayXObject> {
28 public:
29  OrthoPlayXObject(ObjectType objType);
30 };
31 
32 namespace OrthoPlayXObj {
33 
34 extern const char *xlibName;
35 extern const XlibFileDesc fileNames[];
36 
37 void open(ObjectType type, const Common::Path &path);
38 void close(ObjectType type);
39 
40 void m_new(int nargs);
41 void m_setSerialPort(int nargs);
42 void m_setInitViaDlog(int nargs);
43 void m_getInitInfo(int nargs);
44 void m_setInitInfo(int nargs);
45 void m_getMaxDevices(int nargs);
46 void m_getDeviceTitle(int nargs);
47 void m_setDevice(int nargs);
48 void m_selectDevice(int nargs);
49 void m_getDevice(int nargs);
50 void m_service(int nargs);
51 void m_getValue(int nargs);
52 void m_cancel(int nargs);
53 void m_explain(int nargs);
54 void m_idle(int nargs);
55 void m_readStatus(int nargs);
56 void m_readPos(int nargs);
57 void m_searchTo(int nargs);
58 void m_play(int nargs);
59 void m_still(int nargs);
60 void m_stop(int nargs);
61 void m_scanForward(int nargs);
62 void m_scanReverse(int nargs);
63 void m_playReverse(int nargs);
64 void m_fastForward(int nargs);
65 void m_rewind(int nargs);
66 void m_stepForward(int nargs);
67 void m_stepReverse(int nargs);
68 void m_shuttle(int nargs);
69 void m_record(int nargs);
70 void m_eject(int nargs);
71 void m_prepareMedium(int nargs);
72 void m_getFirstTrack(int nargs);
73 void m_getLastTrack(int nargs);
74 void m_getFirstFrame(int nargs);
75 void m_getLastFrame(int nargs);
76 void m_getTrack(int nargs);
77 void m_resetCounter(int nargs);
78 void m_audioEnable(int nargs);
79 void m_audioMute(int nargs);
80 void m_videoEnable(int nargs);
81 void m_showFrame(int nargs);
82 void m_getFrameResolution(int nargs);
83 void m_setFrameResolution(int nargs);
84 void m_hasDropFrames(int nargs);
85 void m_sendRaw(int nargs);
86 void m_readRaw(int nargs);
87 void m_setInPoint(int nargs);
88 void m_setOutPoint(int nargs);
89 void m_setDuration(int nargs);
90 void m_getMinDuration(int nargs);
91 void m_setPreroll(int nargs);
92 void m_getPreroll(int nargs);
93 void m_setPostroll(int nargs);
94 void m_getPostroll(int nargs);
95 void m_setFieldDominance(int nargs);
96 void m_playCue(int nargs);
97 void m_playSegment(int nargs);
98 void m_recordCue(int nargs);
99 void m_recordSegment(int nargs);
100 void m_recordVideoEnable(int nargs);
101 void m_recordAudioEnable(int nargs);
102 void m_assembleRecord(int nargs);
103 void m_previewRecord(int nargs);
104 void m_gotoInPoint(int nargs);
105 void m_gotoOutPoint(int nargs);
106 void m_gotoPrerollPoint(int nargs);
107 void m_gotoPostrollPoint(int nargs);
108 
109 } // End of namespace OrthoPlayXObj
110 
111 } // End of namespace Director
112 
113 #endif
Definition: path.h:52
Definition: lingo-object.h:37
Definition: archive.h:35
Definition: lingo-object.h:71
Definition: orthoplayxobj.h:27