Tizen 2.1 base
[platform/upstream/hplip.git] / prnt / hpijs / dj630.h
1 /*****************************************************************************\
2   dj630.h : Interface for the DJ630 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_DJ630_H
33 #define APDK_DJ630_H
34
35 APDK_BEGIN_NAMESPACE
36
37 /*!
38 \internal
39 */
40 class DJ630 : public Printer
41 {
42 public:
43     DJ630(SystemServices* pSS, BOOL proto=FALSE);
44
45     Header* SelectHeader(PrintContext* pc);
46     virtual DRIVER_ERROR VerifyPenInfo();
47     virtual DRIVER_ERROR ParsePenInfo(PEN_TYPE& ePen, BOOL QueryPrinter=TRUE);
48     virtual PEN_TYPE DefaultPenSet();
49         virtual BOOL GetMargins (PAPER_SIZE ps, float *fMargins)
50         {
51                 if (ps == A4)
52                         fMargins[0] = (float) 0.135;
53                 else
54                         fMargins[0] = (float) 0.25;     // Left Margin
55                 fMargins[1] = fMargins[0];      // Right Margin
56                 fMargins[2] = (float) 0.125;    // Top Margin
57                 fMargins[3] = (float) 0.67;             // Bottom Margin
58                 return TRUE;
59         }
60
61 #ifdef APDK_HP_UX
62 protected:
63     virtual DJ630& operator = (Printer& rhs)
64     {
65         return *this;
66     }
67 #endif
68
69 }; //DJ630
70
71
72 class Mode630Photo : public PrintMode
73 {
74 public:
75     Mode630Photo();
76 }; //Mode630Photo
77
78
79 class Mode630Color : public PrintMode
80 {
81 public:
82     Mode630Color();
83 }; //Mode630Color
84
85
86 class GrayMode630 : public GrayMode
87 {
88 public:
89     GrayMode630(uint32_t *map);
90 }; //GrayMode630
91
92 #ifdef APDK_EXTENDED_MEDIASIZE
93 class Mode630DraftGrayK : public GrayMode
94 {
95 public:
96     Mode630DraftGrayK();
97 }; //Mode630DraftGrayK
98
99 class Mode630DraftColorKCMY : public PrintMode
100 {
101 public:
102     Mode630DraftColorKCMY();
103 }; //Mode630DraftKCMYColor
104
105 class Mode630DraftColorCMY : public PrintMode
106 {
107 public:
108     Mode630DraftColorCMY();
109 }; //Mode630DraftCMYColor
110
111 class Mode630BestGrayK : public GrayMode
112 {
113 public:
114     Mode630BestGrayK();
115 }; //Mode630BestGrayK
116 #endif // APDK_EXTENDED_MEDIASIZE
117
118 #ifdef APDK_DJ630
119 //! DJ630Proxy
120 /*!
121 ******************************************************************************/
122 class DJ630Proxy : public PrinterProxy
123 {
124 public:
125     DJ630Proxy() : PrinterProxy(
126         "DJ630",                    // family name
127         "DESKJET 63\0"                                  // DeskJet 63x Series
128         "DESKJET 65\0"                                  // DeskJet 65x Series
129 #ifdef APDK_MLC_PRINTER
130 #endif
131     ) {m_iPrinterType = eDJ630;}
132     inline Printer* CreatePrinter(SystemServices* pSS) const { return new DJ630(pSS); }
133         inline PRINTER_TYPE GetPrinterType() const { return eDJ630;}
134         inline unsigned int GetModelBit() const { return 0x8000;}
135 };
136 #endif
137
138 APDK_END_NAMESPACE
139
140 #endif // APDK_DJ630_H