📄 splashpattern.cc
字号:
//========================================================================//// SplashPattern.cc////========================================================================#include <aconf.h>#ifdef USE_GCC_PRAGMAS#pragma implementation#endif#include "SplashMath.h"#include "SplashScreen.h"#include "SplashPattern.h"//------------------------------------------------------------------------// SplashPattern//------------------------------------------------------------------------SplashPattern::SplashPattern() {}SplashPattern::~SplashPattern() {}//------------------------------------------------------------------------// SplashSolidColor//------------------------------------------------------------------------SplashSolidColor::SplashSolidColor(SplashColorPtr colorA) { splashColorCopy(color, colorA);}SplashSolidColor::~SplashSolidColor() {}void SplashSolidColor::getColor(int x, int y, SplashColorPtr c) { splashColorCopy(c, color);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -