![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /usr/share/emscripten/tests/poppler/splash/ |
Upload File : |
//======================================================================== // // SplashState.h // //======================================================================== #ifndef SPLASHSTATE_H #define SPLASHSTATE_H #ifdef USE_GCC_PRAGMAS #pragma interface #endif #include "SplashTypes.h" class SplashPattern; class SplashScreen; class SplashClip; class SplashBitmap; //------------------------------------------------------------------------ // line cap values //------------------------------------------------------------------------ #define splashLineCapButt 0 #define splashLineCapRound 1 #define splashLineCapProjecting 2 //------------------------------------------------------------------------ // line join values //------------------------------------------------------------------------ #define splashLineJoinMiter 0 #define splashLineJoinRound 1 #define splashLineJoinBevel 2 //------------------------------------------------------------------------ // SplashState //------------------------------------------------------------------------ class SplashState { public: // Create a new state object, initialized with default settings. SplashState(int width, int height, GBool vectorAntialias, SplashScreenParams *screenParams); SplashState(int width, int height, GBool vectorAntialias, SplashScreen *screenA); // Copy a state object. SplashState *copy() { return new SplashState(this); } ~SplashState(); // Set the stroke pattern. This does not copy <strokePatternA>. void setStrokePattern(SplashPattern *strokePatternA); // Set the fill pattern. This does not copy <fillPatternA>. void setFillPattern(SplashPattern *fillPatternA); // Set the screen. This does not copy <screenA>. void setScreen(SplashScreen *screenA); // Set the line dash pattern. This copies the <lineDashA> array. void setLineDash(SplashCoord *lineDashA, int lineDashLengthA, SplashCoord lineDashPhaseA); // Set the soft mask bitmap. void setSoftMask(SplashBitmap *softMaskA); private: SplashState(SplashState *state); SplashCoord matrix[6]; SplashPattern *strokePattern; SplashPattern *fillPattern; SplashScreen *screen; SplashBlendFunc blendFunc; SplashCoord strokeAlpha; SplashCoord fillAlpha; SplashCoord lineWidth; int lineCap; int lineJoin; SplashCoord miterLimit; SplashCoord flatness; SplashCoord *lineDash; int lineDashLength; SplashCoord lineDashPhase; GBool strokeAdjust; SplashClip *clip; SplashBitmap *softMask; GBool deleteSoftMask; GBool inNonIsolatedGroup; SplashState *next; // used by Splash class friend class Splash; }; #endif