Tizen 2.1 base
[platform/upstream/hplip.git] / prnt / hpijs / dj8xx.h
1 /*****************************************************************************\
2   dj8xx.h : Interface for the DJ8xx class
3
4   Copyright (c) 1996 - 2001, 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_DJ8XX_H
33 #define APDK_DJ8XX_H
34
35 APDK_BEGIN_NAMESPACE
36
37 //extern char *ModelString[MAX_ID_STRING];
38
39 /*!
40 \internal
41 */
42 class DJ8xx : public Printer
43 {
44 public:
45     DJ8xx(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     DRIVER_ERROR CleanPen();
56
57 #ifdef APDK_HP_UX
58 protected:
59     virtual DJ8xx & operator = (Printer& rhs)
60     {
61         return *this;
62     }
63 #endif
64
65 }; //DJ8xx
66
67
68 class DJ895Mode1 : public PrintMode
69 {
70 public:
71     DJ895Mode1();
72 }; //DJ895Mode1
73
74
75 class DJ895Mode2 : public PrintMode
76 {
77 public:
78     DJ895Mode2();
79 }; //DJ895Mode2
80
81
82 class DJ895Mode3 : public PrintMode
83 {
84 public:
85     DJ895Mode3();
86 }; //DJ895Mode3
87
88 class DJ895Mode4 : public GrayMode
89 {
90 public:
91     DJ895Mode4();
92 }; //DJ895Mode4
93
94 #ifdef APDK_EXTENDED_MEDIASIZE
95
96 class DJ895Mode5 : public GrayMode
97 {
98 public:
99     DJ895Mode5();
100 }; //DJ895Mode5
101
102 #endif //APDK_EXTENDED_MEDIASIZE
103
104
105 #if defined(APDK_DJ8xx)|| defined(APDK_DJ9xx)
106 //! DJ8xxProxy
107 /*!
108 ******************************************************************************/
109 class DJ8xxProxy : public PrinterProxy
110 {
111 public:
112     DJ8xxProxy() : PrinterProxy(
113         "DJ8xx",                    // family name
114         "DESKJET 81\0"                          // DeskJet 81x Series
115         "DESKJET 83\0"                          // DeskJet 83x Series
116         "DESKJET 84\0"                          // DeskJet 84x Series
117         "DESKJET 88\0"                          // DeskJet 88x Series
118         "DESKJET 895\0"                         // DeskJet 895
119 #ifdef APDK_MLC_PRINTER
120         "OfficeJet T\0"                         // OfficeJet T Series
121         "OFFICEJET R\0"                         // OfficeJet R Series
122         "PSC 5\0"                               // PSC 500
123 #endif
124     ) {m_iPrinterType = eDJ8xx;}
125     inline Printer* CreatePrinter(SystemServices* pSS) const { return new DJ8xx(pSS); }
126         inline PRINTER_TYPE GetPrinterType() const { return eDJ8xx;}
127         inline unsigned int GetModelBit() const { return 0x40000;}
128 };
129 #endif
130
131 APDK_END_NAMESPACE
132
133 #endif //APDK_DJ8XX_H