Bringing apdf from vendor into main branch.
[AROS-Contrib.git] / apdf / splash / SplashScreen.h
blob66f7c4898642fbe4723dfdd7c6d535ac72db314c
1 //========================================================================
2 //
3 // SplashScreen.h
4 //
5 //========================================================================
7 #ifndef SPLASHSCREEN_H
8 #define SPLASHSCREEN_H
10 #include <aconf.h>
12 #ifdef USE_GCC_PRAGMAS
13 #pragma interface
14 #endif
16 #include "SplashTypes.h"
18 //------------------------------------------------------------------------
19 // SplashScreen
20 //------------------------------------------------------------------------
22 class SplashScreen {
23 public:
25 SplashScreen(int sizeA);
26 SplashScreen(SplashScreen *screen);
27 ~SplashScreen();
29 SplashScreen *copy() { return new SplashScreen(this); }
31 // Return the computed pixel value (0=black, 1=white) for the gray
32 // level <value> at (<x>, <y>).
33 int test(int x, int y, SplashCoord value);
35 // Returns true if value is above the white threshold or below the
36 // black threshold, i.e., if the corresponding halftone will be
37 // solid white or black.
38 GBool isStatic(SplashCoord value);
40 private:
42 SplashCoord *mat; // threshold matrix
43 int size; // size of the threshold matrix
44 SplashCoord minVal; // any pixel value below minVal generates
45 // solid black
46 SplashCoord maxVal; // any pixel value above maxVal generates
47 // solid white
50 #endif