~ubuntu-branches/ubuntu/raring/hplip/raring

« back to all changes in this revision

Viewing changes to prnt/hpijs/djd2600.h

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2009-12-14 20:08:44 UTC
  • mfrom: (2.1.118 lucid)
  • Revision ID: james.westby@ubuntu.com-20091214200844-z8qhqwgppbu3t7ze
Tags: 3.9.10-4
KBSD patch from KiBi (Closes: #560796)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*****************************************************************************\
 
2
  djd2600.h : Interface for the DJ D2600 printer class
 
3
 
 
4
  Copyright (c) 2003 - 2009, 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_DJD2600_H
 
33
#define APDK_DJD2600_H
 
34
#if defined(APDK_DJ3600) && defined (APDK_DJ3320)
 
35
 
 
36
APDK_BEGIN_NAMESPACE
 
37
//DJ2600
 
38
//!
 
39
/*!
 
40
\internal
 
41
******************************************************************************/
 
42
class DJD2600 : public DJ4100
 
43
{
 
44
public:
 
45
    DJD2600 (SystemServices* pSS, BOOL proto = FALSE) : DJ4100 (pSS, proto)
 
46
    {
 
47
        m_iBlackPenResolution = 600;
 
48
        m_iNumBlackNozzles    = 336;
 
49
    }
 
50
}; //DJD2600
 
51
 
 
52
 
 
53
#if defined(APDK_DJ3600) && defined (APDK_DJ3320)
 
54
//! DJ4100Proxy
 
55
/*!
 
56
******************************************************************************/
 
57
class DJD2600Proxy : public PrinterProxy
 
58
{
 
59
public:
 
60
    DJD2600Proxy() : PrinterProxy(
 
61
        "DJD2600",                               // family name
 
62
                "Deskjet D26\0"                        // DeskJet D2600
 
63
        "Deskjet D16\0"
 
64
    ) {m_iPrinterType = eDJD2600;}
 
65
    inline Printer* CreatePrinter(SystemServices* pSS) const { return new DJD2600(pSS); }
 
66
        inline PRINTER_TYPE GetPrinterType() const { return eDJD2600;}
 
67
        inline unsigned int GetModelBit() const { return 0x2;}
 
68
};
 
69
#endif
 
70
 
 
71
APDK_END_NAMESPACE
 
72
 
 
73
#endif // defined(APDK_DJ3600) && defined (APDK_DJ3320)
 
74
 
 
75
#endif  // APDK_DJD2600_H