~ubuntu-branches/ubuntu/lucid/xpdf/lucid-updates

« back to all changes in this revision

Viewing changes to splash/SplashPattern.h

  • Committer: Bazaar Package Importer
  • Author(s): Andy Price
  • Date: 2007-05-17 22:04:33 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070517220433-gzcx2lrvllkbl7mr
Tags: 3.02-1ubuntu1
* Merge from Debian unstable (LP: #113365), remaining changes:
  - Added back 09_xpdfrc_manpage.dpatch (LP #71753)
  - Set Ubuntu maintainer

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
  SplashColor color;
63
63
};
64
64
 
65
 
//------------------------------------------------------------------------
66
 
// SplashHalftone
67
 
//------------------------------------------------------------------------
68
 
 
69
 
class SplashHalftone: public SplashPattern {
70
 
public:
71
 
 
72
 
  SplashHalftone(SplashColorPtr color0A, SplashColorPtr color1A,
73
 
                 SplashScreen *screenA, SplashCoord valueA);
74
 
 
75
 
  virtual SplashPattern *copy();
76
 
 
77
 
  virtual ~SplashHalftone();
78
 
 
79
 
  virtual void getColor(int x, int y, SplashColorPtr c);
80
 
 
81
 
  virtual GBool isStatic();
82
 
 
83
 
private:
84
 
 
85
 
  SplashColor color0, color1;
86
 
  SplashScreen *screen;
87
 
  SplashCoord value;
88
 
};
89
 
 
90
65
#endif