Tizen 2.1 base
[platform/upstream/hplip.git] / prnt / hpijs / dj3600.h
1 /*****************************************************************************\
2   dj3600.h : Interface for the DJ3600 printer class
3
4   Copyright (c) 2003 - 2003, 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_DJ3600_H
33 #define APDK_DJ3600_H
34
35 APDK_BEGIN_NAMESPACE
36
37 //DJ3600
38 //!
39 /*!
40 \internal
41 ******************************************************************************/
42 class DJ3600 : public DJ3320
43 {
44 public:
45     DJ3600 (SystemServices* pSS, BOOL proto = FALSE);
46     virtual BOOL FullBleedCapable (PAPER_SIZE ps, FullbleedType  *fbType, float *xOverSpray, float *yOverSpray,
47                                    float *fLeftOverSpray, float *fTopOverSpray);
48 }; //DJ3600
49
50
51 #if defined(APDK_DJ3600) && defined (APDK_DJ3320)
52 //! DJ3600Proxy
53 /*!
54 ******************************************************************************/
55 class DJ3600Proxy : public PrinterProxy
56 {
57 public:
58     DJ3600Proxy() : PrinterProxy(
59         "DJ3600",                               // family name
60                 "deskjet 3600\0"                        // DeskJet 3600
61         "Deskjet 3740\0"
62         "Deskjet 3745\0"
63                 "Deskjet 3840\0"
64         "Deskjet 3845\0"
65         "Deskjet F300\0"
66         "Deskjet D2360\0"
67         "Deskjet D24\0"\r
68         "Deskjet F41\0"\r
69                 "officejet 4200\0"
70         "910\0"
71         "HP 910\0"
72         "915\0"
73         "HP 915\0"
74 #ifdef APDK_MLC_PRINTER
75         "Officejet 4300\0"
76                 "officejet 5500\0"
77         "Officejet 5600\0"
78                 "psc 1300\0"
79                 "psc 1310\0"
80         "PSC 1400\0"
81 #endif
82     ) {m_iPrinterType = eDJ3600;}
83     inline Printer* CreatePrinter(SystemServices* pSS) const { return new DJ3600(pSS); }
84         inline PRINTER_TYPE GetPrinterType() const { return eDJ3600;}
85         inline unsigned int GetModelBit() const { return 0x2;}
86 };
87 #endif
88
89 APDK_END_NAMESPACE
90
91 #endif  // APDK_DJ3600_H