Tizen 2.1 base
[platform/upstream/hplip.git] / prnt / hpijs / psp470.h
1 /*****************************************************************************\
2   psp470.h : Interface for the PSP470 class
3
4   Copyright (c) 2001-2002, 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_PSP470_H
33 #define APDK_PSP470_H
34 // Photosmart 470 series
35
36 APDK_BEGIN_NAMESPACE
37
38 //PSPFastNormalMode
39 /*
40 ******************************************************************************/
41 class PSPFastNormalMode : public PrintMode
42 {
43 public:
44     PSPFastNormalMode ();
45 }; //PSPFastNormalMode
46 /******************************************************************************/
47
48 PSPFastNormalMode::PSPFastNormalMode () : PrintMode (NULL)
49 {
50
51     BaseResX = BaseResY = TextRes = ResolutionX[0] = ResolutionY[0] = 600;
52
53 #if defined(APDK_VIP_COLORFILTERING)
54     Config.bErnie = TRUE;
55 #endif
56
57     Config.bColorImage = FALSE;
58
59     medium = mediaAuto;
60     theQuality = qualityDraft;
61         pmQuality   = QUALITY_DRAFT;
62     pmMediaType = MEDIA_PHOTO;
63     CompatiblePens[0] = COLOR_PEN;
64     bFontCapable = FALSE;
65 } //PSP100Mode
66
67 //PSP470
68 //!
69 /*!
70 \internal
71 ******************************************************************************/
72 class PSP470 : public PSP100
73 {
74 public:
75     PSP470 (SystemServices* pSS, BOOL proto = FALSE) : PSP100 (pSS, proto)
76     {
77         pMode[ModeCount] = new PSPFastNormalMode ();
78         ModeCount++;
79     }
80
81     PAPER_SIZE    MandatoryPaperSize ()
82     {
83         return PHOTO_5x7;
84     }
85     virtual BOOL FullBleedCapable (PAPER_SIZE ps, FullbleedType  *fbType, float *xOverSpray, float *yOverSpray,
86                                    float *fLeftOverSpray, float *fTopOverSpray)
87     {
88         *xOverSpray = (float) 0.12;
89         *yOverSpray = (float) 0.06;
90
91         if (fLeftOverSpray)
92             *fLeftOverSpray = (float) 0.05;
93         if (fTopOverSpray)
94             *fTopOverSpray  = (float) 0.03;
95
96                 *fbType = fullbleed4EdgeAllMedia;
97         return TRUE;
98     }
99
100 }; //PSP470
101
102 #if defined(APDK_PSP100) && defined (APDK_DJ9xxVIP)
103 //! PSP470Proxy
104 /*!
105 ******************************************************************************/
106 class PSP470Proxy : public PrinterProxy
107 {
108 public:
109     PSP470Proxy() : PrinterProxy(
110         "PS470",                // family name
111         "Photosmart 470\0"
112         "Photosmart 475\0"
113         "Photosmart A610\0"
114         "Photosmart A620\0"
115         "Photosmart A710\0"
116         "Photosmart A820\0"
117     ) {m_iPrinterType = ePSP470;}
118     inline Printer* CreatePrinter(SystemServices* pSS) const { return new PSP470(pSS); }
119         inline PRINTER_TYPE GetPrinterType() const { return ePSP470;}
120         inline unsigned int GetModelBit() const { return 0x200;}
121 };
122 #endif
123
124 APDK_END_NAMESPACE
125
126 #endif  // APDK_PSP470_H