ScummVM API documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
printomatic.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_PRINTOMATIC_H
23 #define DIRECTOR_LINGO_XLIBS_PRINTOMATIC_H
24 
25 namespace Director {
26 
27 class PrintOMaticXObject : public Object<PrintOMaticXObject> {
28 public:
29  PrintOMaticXObject(ObjectType objType);
30 };
31 
32 namespace PrintOMaticXObj {
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_dispose(int nargs);
42 void m_reset(int nargs);
43 void m_newPage(int nargs);
44 void m_setPage(int nargs);
45 void m_setMargins(int nargs);
46 void m_setPrintableMargins(int nargs);
47 void m_getPageWidth(int nargs);
48 void m_getPageHeight(int nargs);
49 void m_getPaperWidth(int nargs);
50 void m_getPaperHeight(int nargs);
51 void m_setColor(int nargs);
52 void m_setGray(int nargs);
53 void m_setPenSize(int nargs);
54 void m_setLineWeight(int nargs);
55 void m_setTextFont(int nargs);
56 void m_setTextSize(int nargs);
57 void m_setTextStyle(int nargs);
58 void m_setTextJust(int nargs);
59 void m_setTextLineSpacing(int nargs);
60 void m_textBox(int nargs);
61 void m_setText(int nargs);
62 void m_appendText(int nargs);
63 void m_appendTextFile(int nargs);
64 void m_appendTextResource(int nargs);
65 void m_newFrame(int nargs);
66 void m_drawRect(int nargs);
67 void m_drawLine(int nargs);
68 void m_drawRoundRect(int nargs);
69 void m_drawOval(int nargs);
70 void m_drawText(int nargs);
71 void m_drawPicture(int nargs);
72 void m_drawStagePicture(int nargs);
73 void m_getInsertionPoint(int nargs);
74 void m_masterTextBox(int nargs);
75 void m_appendMasterText(int nargs);
76 void m_appendMasterTextFiles(int nargs);
77 void m_masterPictBox(int nargs);
78 void m_appendMasterPict(int nargs);
79 void m_stageToMasterPict(int nargs);
80 void m_strokedRect(int nargs);
81 void m_filledRect(int nargs);
82 void m_strokedRoundRect(int nargs);
83 void m_filledRoundRect(int nargs);
84 void m_strokedOval(int nargs);
85 void m_filledOval(int nargs);
86 void m_line(int nargs);
87 void m_picture(int nargs);
88 void m_stagePicture(int nargs);
89 void m_1BitStagePicture(int nargs);
90 void m_ePSFile(int nargs);
91 void m_setLandscapeMode(int nargs);
92 void m_setDocumentName(int nargs);
93 void m_doPageSetup(int nargs);
94 void m_doJobSetup(int nargs);
95 void m_setProgressMsg(int nargs);
96 void m_setProgressPict(int nargs);
97 void m_setProgressLoc(int nargs);
98 void m_printPreview(int nargs);
99 void m_printPicts(int nargs);
100 void m_print(int nargs);
101 void m_savePageSetup(int nargs);
102 void m_getPageSetup(int nargs);
103 void m_hideMessages(int nargs);
104 void m_setPageNumSymbol(int nargs);
105 void m_register(int nargs);
106 
107 } // End of namespace PrintOMaticXObj
108 
109 } // End of namespace Director
110 
111 #endif
Definition: path.h:52
Definition: printomatic.h:27
Definition: lingo-object.h:37
Definition: archive.h:35
Definition: lingo-object.h:71