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

« back to all changes in this revision

Viewing changes to .pc/black-stripes-on-pcl5c-printouts.dpatch/prnt/hpcups/LJColor.h

  • Committer: Package Import Robot
  • Author(s): Mark Purcell
  • Date: 2012-10-06 15:03:44 UTC
  • mfrom: (1.6.1) (20.1.16 quantal)
  • Revision ID: package-import@ubuntu.com-20121006150344-2p3xz26br0t3hu2q
Tags: 3.12.10-1
* New upstream release
  - Fixes "Network scanning fails (Closes: #683033)
* quilt refresh hplip-syslog-fix-debug-messages-to-error.dpatch
* Fix "error in clean build env" updated debian/rules (Closes: #687129)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*****************************************************************************\
 
2
  LJColor.h : Interface for LJColor class
 
3
 
 
4
  Copyright (c) 1996 - 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
#ifndef LJCOLOR_H
 
32
#define LJCOLOR_H
 
33
 
 
34
#include "CommonDefinitions.h"
 
35
#include "Pipeline.h"
 
36
#include "Encapsulator.h"
 
37
 
 
38
class Halftoner;
 
39
class Mode3;
 
40
 
 
41
class LJColor: public Encapsulator
 
42
{
 
43
public:
 
44
    LJColor();
 
45
    ~LJColor();
 
46
    DRIVER_ERROR    Encapsulate (RASTERDATA *InputRaster, bool bLastPlane);
 
47
    DRIVER_ERROR    StartPage(JobAttributes *pJA);
 
48
    DRIVER_ERROR    Configure(Pipeline **pipeline);
 
49
    DRIVER_ERROR    EndJob();
 
50
    DRIVER_ERROR    FormFeed();
 
51
protected:
 
52
    virtual DRIVER_ERROR addJobSettings();
 
53
    void    configureRasterData();
 
54
    DRIVER_ERROR    flushPrinterBuffer() {return NO_ERROR;}
 
55
private:
 
56
    PrintMode    m_PM;
 
57
    Halftoner    *m_pHalftoner;
 
58
    Mode3        *m_pMode3;
 
59
    int          m_iYPos;
 
60
};
 
61
 
 
62
#endif // LJCOLOR_H
 
63