Tizen 2.1 base
[platform/upstream/hplip.git] / prnt / hpijs / dj8x5.h
1 /*****************************************************************************\
2   dj8x5.h : Interface for the DJ8x5 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_DJ8X5_H
33 #define APDK_DJ8X5_H
34
35 APDK_BEGIN_NAMESPACE
36
37 /*!
38 \internal
39 */
40 class DJ8x5 : public DJ8xx
41 {
42 public:
43     DJ8x5 (SystemServices* pSS,int numfonts=0, BOOL proto=FALSE);
44
45     virtual DRIVER_ERROR VerifyPenInfo();
46     virtual PEN_TYPE DefaultPenSet();
47
48 }; //DJ8x5
49
50
51 class DJ8x5Mode1 : public PrintMode
52 {
53 public:
54     DJ8x5Mode1();
55 }; //DJ8x5Mode1
56
57
58 class DJ8x5Mode2 : public PrintMode
59 {
60 public:
61     DJ8x5Mode2();
62 }; //DJ8x5Mode2
63
64
65 class DJ8x5Mode3 : public PrintMode
66 {
67 public:
68     DJ8x5Mode3();
69 }; //DJ8x5Mode3
70
71 /*
72 class DJ8x5Mode4 : public PrintMode
73 {
74     public:
75         DJ8x5Mode4 ();
76 }; //DJ8x5Mode4
77 */
78
79 /*
80 class DJ8x5Mode5 : public PrintMode
81 {
82     public:
83         DJ8x5Mode5 ();
84 };
85 */
86 #if defined(APDK_DJ8xx)|| defined(APDK_DJ9xx)
87
88 #ifdef APDK_DJ8x5
89 //! DJ8x5Proxy
90 /*!
91 ******************************************************************************/
92 class DJ8x5Proxy : public PrinterProxy
93 {
94 public:
95     DJ8x5Proxy() : PrinterProxy(
96         "DJ8x5",                    // family name
97         "DESKJET 825\0"                                 // DeskJet 825
98         "DESKJET 845\0"                                 // DeskJet 845
99 #ifdef APDK_MLC_PRINTER
100 #endif
101     ) {m_iPrinterType = eDJ8x5;}
102     inline Printer* CreatePrinter(SystemServices* pSS) const { return new DJ8x5(pSS); }
103         inline PRINTER_TYPE GetPrinterType() const { return eDJ8x5;}
104         inline unsigned int GetModelBit() const { return 0x400;}
105 } ;
106 #endif
107 #endif
108
109 APDK_END_NAMESPACE
110
111 #endif //APDK_DJ8X5_H