Tizen 2.1 base
[platform/upstream/hplip.git] / prnt / hpijs / ljm1005.h
1 /*****************************************************************************\
2   ljm1005.h : Interface for the LJM1005 class
3
4   Copyright (c) 1996 - 2006, 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_LJM1005_H
33 #define APDK_LJM1005_H
34
35 #ifdef APDK_LJM1005
36
37 APDK_BEGIN_NAMESPACE
38
39 /*!
40 \internal
41 */
42 class LJM1005 : public LJZjs
43 {
44 public:
45     LJM1005 (SystemServices* pSS, int numfonts = 0, BOOL proto = FALSE);
46     ~LJM1005 ();
47
48     virtual DRIVER_ERROR Encapsulate (const RASTERDATA *pRasterData, BOOL bLastPlane);
49     virtual DRIVER_ERROR VerifyPenInfo ();
50     virtual DRIVER_ERROR ParsePenInfo (PEN_TYPE& ePen, BOOL QueryPrinter = TRUE);
51     virtual BOOL GetMargins (PAPER_SIZE ps, float *fMargins)
52     {
53         fMargins[0] = (float) 0.156;
54         fMargins[1] = (float) 0.156;
55         fMargins[2] = (float) 0.156;
56         fMargins[3] = (float) 0.2;
57         return TRUE;
58     }
59
60 protected:
61
62 #ifdef APDK_HP_UX
63     virtual LJM1005 & operator = (Printer& rhs)
64     {
65         return *this;
66     }
67 #endif
68
69 private:
70     virtual DRIVER_ERROR    EndPage ();
71     virtual DRIVER_ERROR    SendPlaneData (int iPlaneNumber, HPLJZjsJbgEncSt *se, HPLJZjcBuff *pcBuff, BOOL bLastStride);\r
72     virtual int             GetOutputResolutionY ()\r
73     {\r
74         return 600;\r
75     }\r
76
77 }; // LJM1005
78
79 class LJM1005DraftGrayMode : public GrayMode
80 {
81 public:
82     LJM1005DraftGrayMode ();
83 };    // LJM1005DraftGrayMode
84
85 class LJM1005NormalGrayMode : public GrayMode
86 {
87 public:
88     LJM1005NormalGrayMode ();
89 }; // LJM1005NormalGrayMode
90 \r
91 //! LJM1005Proxy
92 /*!
93 ******************************************************************************/
94 class LJM1005Proxy : public PrinterProxy
95 {
96 public:
97     LJM1005Proxy() : PrinterProxy(
98         "LJM1005",
99         "LaserJet M1005\0"
100         "HP LaserJet M1005\0"\r
101         "HP LaserJet M1120\0"\r
102         "HP LaserJet M1319\0"
103         "HP LaserJet P1505\0"\r
104         "HP LaserJet P2010\0"\r
105         "HP LaserJet P2014\0"\r
106         "HP LaserJet P2014n\0"\r
107         "M1005\0"
108     ) {m_iPrinterType = eLJM1005;}
109     inline Printer* CreatePrinter(SystemServices* pSS) const { return new LJM1005(pSS); }
110     inline PRINTER_TYPE GetPrinterType() const { return eLJM1005;}
111     inline unsigned int GetModelBit() const { return 0x40;}
112 };
113
114 APDK_END_NAMESPACE
115
116 #endif // APDK_LJM1005
117 #endif //APDK_LJM1005_H