Tizen 2.1 base
[platform/upstream/hplip.git] / prnt / hpijs / dj850.h
1 /*****************************************************************************\
2   dj850.h : Interface for the DJ850 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
32 #ifndef APDK_DJ850_H
33 #define APDK_DJ850_H
34
35 APDK_BEGIN_NAMESPACE
36
37 //extern char *ModelString[MAX_ID_STRING];
38
39 /*!
40 \internal
41 */
42 class DJ850 : public Printer
43 {
44 public:
45     DJ850(SystemServices* pSS,int numfonts=0, BOOL proto=FALSE);
46
47     virtual Header* SelectHeader(PrintContext* pc);
48     virtual DRIVER_ERROR VerifyPenInfo();
49     virtual DRIVER_ERROR ParsePenInfo(PEN_TYPE& ePen, BOOL QueryPrinter=TRUE);
50     virtual DISPLAY_STATUS ParseError(BYTE status_reg);
51
52     Compressor* CreateCompressor(unsigned int RasterSize);
53
54     virtual BOOL UseGUIMode(PrintMode* pPrintMode);
55
56 #ifdef APDK_HP_UX
57 protected:
58     virtual DJ850 & operator = (Printer& rhs)
59     {
60         return *this;
61     }
62 #endif
63
64 }; //DJ850
65
66
67 class DJ850Mode1 : public PrintMode
68 {
69 public:
70     DJ850Mode1();
71 }; //DJ850Mode1
72
73 class DJ850Mode3 : public PrintMode
74 {
75 public:
76     DJ850Mode3();
77 }; //DJ850Mode3
78
79 class DJ850Mode4 : public GrayMode
80 {
81 public:
82     DJ850Mode4();
83 }; //DJ850Mode4
84
85 class DJ850Mode5 : public GrayMode
86 {
87 public:
88     DJ850Mode5();
89 }; //DJ850Mode5
90
91 #if defined(APDK_DJ850)
92 //! DJ850Proxy
93 /*!
94 ******************************************************************************/
95 class DJ850Proxy : public PrinterProxy
96 {
97 public:
98     DJ850Proxy() : PrinterProxy(
99         "DJ850",                    // family name
100         "DESKJET 85\0"                          // DeskJet 85x Series
101         "DESKJET 87\0"                          // DeskJet 87x Series
102 #ifdef APDK_MLC_PRINTER
103         "OFFICEJET PRO 115\0"                   // OfficeJet PRO 1150
104 #endif
105     ) {m_iPrinterType = eDJ850;}
106     inline Printer* CreatePrinter(SystemServices* pSS) const { return new DJ850(pSS); }
107         inline PRINTER_TYPE GetPrinterType() const { return eDJ850;}
108         inline unsigned int GetModelBit() const { return 0x8;}
109 };
110 #endif
111
112 APDK_END_NAMESPACE
113
114 #endif //APDK_DJ850_H