Tizen 2.1 base
[platform/upstream/hplip.git] / prnt / hpijs / ljzjsmono.h
1 /*****************************************************************************\
2   ljzjsmono.h : Interface for the LJZjsMono class
3
4   Copyright (c) 1996 - 2007, 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_LJZJS_MONO_H
33 #define APDK_LJZJS_MONO_H
34
35 #ifdef APDK_LJZJS_MONO
36
37 APDK_BEGIN_NAMESPACE
38
39 /*!
40 \internal
41 */
42 class LJZjsMono : public LJZjs
43 {
44 public:
45     LJZjsMono (SystemServices* pSS, int numfonts = 0, BOOL proto = FALSE);
46     ~LJZjsMono ();
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
52 protected:
53
54 #ifdef APDK_HP_UX
55     virtual LJZjsMono & operator = (Printer& rhs)
56     {
57         return *this;
58     }
59 #endif
60
61 private:
62     virtual DRIVER_ERROR    EndPage ();
63     virtual DRIVER_ERROR    SendPlaneData (int iPlaneNumber, HPLJZjsJbgEncSt *se, HPLJZjcBuff *pcBuff, BOOL bLastStride);
64
65 }; // LJZjsMono
66
67 class LJZjsMonoDraftGrayMode : public GrayMode
68 {
69 public:
70         LJZjsMonoDraftGrayMode ();
71 };      // LJZjsMonoDraftGrayMode
72
73 class LJZjsMonoNormalGrayMode : public GrayMode
74 {
75 public:
76     LJZjsMonoNormalGrayMode ();
77 }; // LJZjsMonoNormalGrayMode
78
79 //! LJZjsMonoProxy
80 /*!
81 ******************************************************************************/
82 class LJZjsMonoProxy : public PrinterProxy
83 {
84 public:
85     LJZjsMonoProxy() : PrinterProxy(
86         "LJZjsMono",
87         "HP LaserJet 1000\0"
88         "HP LaserJet 1005\0"\r
89         "HP LaserJet 1018\0"
90         "HP LaserJet 1020\0"
91         "HP LaserJet 1022\0"\r
92         "HP LaserJet P2035\0"\r
93         "HP LaserJet P1102\0"
94                 "HP LaserJet P1566\0"
95                 "HP LaserJet P1606\0"
96         "HP LaserJet Professional M1136\0"
97         "HP LaserJet Professional M1132\0"
98         "HP LaserJet Professional M1212nf\0"
99     ) {m_iPrinterType = eLJZjsMono;}
100     inline Printer* CreatePrinter(SystemServices* pSS) const { return new LJZjsMono(pSS); }
101         inline PRINTER_TYPE GetPrinterType() const { return eLJZjsMono;}
102         inline unsigned int GetModelBit() const { return 0x40;}
103 };
104
105 APDK_END_NAMESPACE
106
107 #endif // APDK_LJZJS_MONO
108 #endif //APDK_LJZJS_MONO_H
109