Tizen 2.1 base
[platform/upstream/hplip.git] / prnt / hpijs / dj890.cpp
1 /*****************************************************************************\
2   dj890.cpp : Implimentation for the DJ890 class
3
4   Copyright (c) 1996 - 2002, 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 #if defined(APDK_DJ890)
32
33 #include "header.h"
34 #include "io_defs.h"
35 #include "dj8xx.h"
36 #include "dj890.h"
37 #include "printerproxy.h"
38
39 APDK_BEGIN_NAMESPACE
40
41 extern uint32_t ulMapDJ895_Binary_KCMY[ 9 * 9 * 9 ];
42 extern uint32_t ulMapDJ600_CCM_K[9 * 9 * 9 ];
43
44 DJ890::DJ890(SystemServices* pSS,
45                        int numfonts, BOOL proto)
46     : DJ8xx(pSS, numfonts, proto)
47 {
48
49     if ((!proto) && (IOMode.bDevID))
50     {
51         constructor_error = VerifyPenInfo();
52         CERRCHECK;
53     }
54     else ePen=BOTH_PENS;    // matches default mode
55
56 #ifdef APDK_EXTENDED_MEDIASIZE
57     pMode[GRAYMODE_INDEX]      = new DJ895Mode5 ();   // Normal Gray K
58 #else
59     pMode[GRAYMODE_INDEX]      = new GrayMode (ulMapDJ600_CCM_K);   // Normal Gray K
60 #endif
61     pMode[DEFAULTMODE_INDEX]   = new DJ895Mode1 ();   // Normal Color
62     pMode[SPECIALMODE_INDEX] = new DJ895Mode3 ();   // Draft Color
63     pMode[SPECIALMODE_INDEX+1] = new DJ895Mode4 ();   // Draft Gray K
64     ModeCount = 4;
65
66     CMYMap = ulMapDJ895_Binary_KCMY;
67
68     DBG1("DJ890 created\n");
69 }
70
71 Header* DJ890::SelectHeader(PrintContext* pc)
72 {
73     return new Header895(this,pc);
74 }
75
76 APDK_END_NAMESPACE
77
78 #endif  // defined APDK_DJ890