Tizen 2.1 base
[platform/upstream/hplip.git] / prnt / hpijs / dj600.h
1 /*****************************************************************************\
2   dj600.h : Interface for the DJ600 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_DJ600_H
33 #define APDK_DJ600_H
34
35 APDK_BEGIN_NAMESPACE
36
37 /*!
38 \internal
39 */
40 class DJ600 : public DJ6XX
41 {
42 public:
43     DJ600(SystemServices* pSS, BOOL proto=FALSE);
44
45     Header* SelectHeader(PrintContext* pc) ;
46     DRIVER_ERROR VerifyPenInfo();
47     virtual DRIVER_ERROR ParsePenInfo(PEN_TYPE& ePen, BOOL QueryPrinter=TRUE);
48     virtual PEN_TYPE DefaultPenSet();
49
50 }; //DJ600
51
52
53 class Mode600 : public PrintMode
54 {
55 public:
56     Mode600();
57
58 }; //Mode600
59
60 #ifdef APDK_EXTENDED_MEDIASIZE
61 class Mode600DraftGrayK : public GrayMode
62 {
63 public:
64     Mode600DraftGrayK();
65 }; //Mode600DraftGrayK
66
67 class Mode600DraftColor : public PrintMode
68 {
69 public:
70     Mode600DraftColor();
71 }; //Mode600DraftColor
72
73 class Mode600BestGrayK : public GrayMode
74 {
75 public:
76     Mode600BestGrayK();
77 }; //Mode600BestGrayK
78 #endif // APDK_EXTENDED_MEDIASIZE
79 #ifdef APDK_DJ600
80 //! DJ600Proxy
81 /*!
82 ******************************************************************************/
83 class DJ600Proxy : public PrinterProxy
84 {
85 public:
86     DJ600Proxy() : PrinterProxy(
87         "DJ600",                    // family name
88         "DESKJET 600\0"                             // DeskJet 600
89 #ifdef APDK_MLC_PRINTER
90 #endif
91     ) {m_iPrinterType = eDJ6xx;}
92     inline Printer* CreatePrinter(SystemServices* pSS) const { return new DJ600(pSS); }
93         inline PRINTER_TYPE GetPrinterType() const { return eDJ6xx;}
94         inline unsigned int GetModelBit() const { return 0x200000;}
95 };
96 #endif
97
98 APDK_END_NAMESPACE
99
100 #endif //APDK_DJ600_H