Tizen 2.1 base
[platform/upstream/hplip.git] / prnt / hpijs / dj400.h
1 /*****************************************************************************\
2   dj400.h : Interface for the DJ400 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_DJ400_H
33 #define APDK_DJ400_H
34
35 APDK_BEGIN_NAMESPACE
36
37 /*!
38 \internal
39 */
40 class DJ400 : public Printer
41 {
42 public:
43     DJ400(SystemServices* pSS,BOOL proto=FALSE);
44
45 #if defined(APDK_FONTS_NEEDED)
46     Font* RealizeFont(const int index,const BYTE bSize,
47                         const TEXTCOLOR eColor=BLACK_TEXT,
48                         const BOOL bBold=FALSE,const BOOL bItalic=FALSE,
49                         const BOOL bUnderline=FALSE);
50 #endif
51     Header* SelectHeader(PrintContext* pc);
52     DRIVER_ERROR VerifyPenInfo();
53     virtual DRIVER_ERROR ParsePenInfo(PEN_TYPE& ePen, BOOL QueryPrinter=TRUE);
54     BOOL TopCoverOpen(BYTE status_reg);
55     DRIVER_ERROR CleanPen();
56     virtual DISPLAY_STATUS ParseError(BYTE status_reg);
57     virtual PEN_TYPE DefaultPenSet();
58         virtual BOOL GetMargins (PAPER_SIZE ps, float *fMargins)
59         {
60                 if (ps == A4)
61                         fMargins[0] = (float) 0.135;
62                 else
63                         fMargins[0] = (float) 0.25;     // Left Margin
64                 fMargins[1] = fMargins[0];              // Right Margin
65                 fMargins[2] = (float) 0.125;    // Top Margin
66                 fMargins[3] = (float) 0.67;             // Bottom Margin
67                 return TRUE;
68         }
69
70 protected:
71
72 #ifdef APDK_HP_UX
73     virtual DJ400& operator = (Printer& rhs)
74     {
75         return *this;
76     }
77 #endif
78
79     virtual DRIVER_ERROR GetC32Status(BYTE *pStatusString, int *pLen);
80     unsigned long last_C32_status;      /* XXX unused? */
81
82 }; //DJ400
83
84
85 class Mode400 : public PrintMode
86 {
87 public:
88     Mode400();
89
90 }; //Mode400
91
92 #ifdef APDK_DJ400
93
94 //! DJ400Proxy
95 /*!
96 ******************************************************************************/
97 class DJ400Proxy : public PrinterProxy
98 {
99 public:
100     DJ400Proxy() : PrinterProxy(
101         "DJ400",                    // family name
102         "HP DeskJet 4\0"                            // DeskJet 4xx Series
103 #ifdef APDK_MLC_PRINTER
104 #endif
105     ) {m_iPrinterType = eDJ400;}
106     inline Printer* CreatePrinter(SystemServices* pSS) const { return new DJ400(pSS); }
107         inline PRINTER_TYPE GetPrinterType() const { return eDJ400;}
108         inline unsigned int GetModelBit() const { return 0x800000;}
109 };
110
111 #endif
112
113 APDK_END_NAMESPACE
114
115 #endif //APDK_DJ400_H