Tizen 2.1 base
[platform/upstream/hplip.git] / prnt / hpijs / models.h
1 /*****************************************************************************\
2   models.h : Models types
3
4   Copyright (c) 1996 - 2008, Hewlett-Packard Co.
5   All rights reserved.
6
7   Redistribution and use in source and binary forms, with or without
8   modification, are permitted provided that the following conditions
9   are met:
10   1. Redistributions of source code must retain the above copyright
11      notice, this list of conditions and the following disclaimer.
12   2. Redistributions in binary form must reproduce the above copyright
13      notice, this list of conditions and the following disclaimer in the
14      documentation and/or other materials provided with the distribution.
15   3. Neither the name of Hewlett-Packard nor the names of its
16      contributors may be used to endorse or promote products derived
17      from this software without specific prior written permission.
18
19   THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
20   WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
21   MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN
22   NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
24   TO, PATENT INFRINGEMENT; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
25   OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
26   ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28   THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 \*****************************************************************************/
30
31
32 #ifndef APDK_MODELS_H
33 #define APDK_MODELS_H
34
35 #include "config.h"
36
37 APDK_BEGIN_NAMESPACE
38
39 // list of the basic equivalence classes
40 /*! Do not use PRINTER_TYPE - it is going away in the next version
41 \depricated
42 */
43 typedef enum PRINTER_TYPE               // typedef'ed for C interface
44 {
45     UNSUPPORTED=-1,
46     eDJ400,
47     eDJ540,
48     eDJ600,
49     eDJ6xx,
50     eDJ6xxPhoto,
51     eDJ8xx,
52     eDJ850,
53     eDJ890,
54     eDJ9xx,
55     eDJ9xxVIP,
56     eDJ630,
57     eAP2xxx,
58     eAP21xx,
59     eAP2560,
60     eDJ350,
61     eDJ8x5,
62     ePSP100,
63     ePSP470,
64     eDJ3320,
65     eDJGenericVIP,
66     eDJ55xx,
67     eOJProKx50,
68     eLJMono,
69     eLJColor,
70     ePScript,
71     eDJ3600,
72     eDJ4100,\r
73     eDJD2600,
74     eLJJetReady,
75     eLJFastRaster,
76     eLJZjsMono,
77     eLJM1005,\r
78     eLJP1XXX,\r
79     eQuickConnect,
80     eLJZjsColor,
81     MAX_PRINTER_TYPE
82 } PRINTER_TYPE;
83
84 // strings used in Version function and for test harness
85 /*! Do not use ModelName - it is going away in the next version
86 \depricated
87 */
88 const char ModelName[MAX_PRINTER_TYPE][13] =
89 {
90     "DJ400",
91     "DJ540",
92     "DJ600",
93     "DJ6xx",
94     "DJ6xxPhoto",
95     "DJ8xx",
96     "DJ850",
97     "DJ890",
98     "DJ9xx",
99     "DJ9xxVIP",
100     "DJ630",
101     "AP2xxx",
102     "AP21xx",
103     "AP2560",
104     "DJ350",
105     "DJ8x5",
106     "PS100",
107     "PS470",
108     "DJ3320",
109     "GenericVIP",
110     "DJ55xx",
111     "OJProKx50",
112     "Mono Laser",
113     "ColorLaser",
114     "PostScript",
115     "DJ3600",
116     "DJ4100",\r
117     "DJD2600",
118     "LJJetReady",
119     "LJFastRaster",
120     "LJZjsMono",
121     "LJM1005",\r
122     "LJP1XXX",\r
123     "QuickConnect",
124     "LJZjsColor"
125 };
126
127 APDK_END_NAMESPACE
128
129 #endif  //APDK_MODELS_H