blob: 04d4c7b97f3202e56d3c60d7f50ab4f07b5cbbc4 [file] [log] [blame]
ctguil@chromium.orgf966fd32011-03-04 21:47:04 +00001/*
2 * Copyright (C) 2011 Google Inc.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef SkPDFUtils_DEFINED
18#define SkPDFUtils_DEFINED
19
vandebo@chromium.orgf71b2102011-04-04 19:46:31 +000020#include "SkPath.h"
ctguil@chromium.orgf966fd32011-03-04 21:47:04 +000021
22class SkMatrix;
23class SkPath;
24class SkPDFArray;
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +000025class SkRect;
ctguil@chromium.orgf966fd32011-03-04 21:47:04 +000026
vandebo@chromium.orgf71b2102011-04-04 19:46:31 +000027#if 0
28#define PRINT_NOT_IMPL(str) fprintf(stderr, str)
29#else
30#define PRINT_NOT_IMPL(str)
31#endif
32
33#define NOT_IMPLEMENTED(condition, assert) \
34 do { \
35 if (condition) { \
36 PRINT_NOT_IMPL("NOT_IMPLEMENTED: " #condition "\n"); \
37 SkDEBUGCODE(SkASSERT(!assert);) \
38 } \
39 } while(0)
40
ctguil@chromium.orgf966fd32011-03-04 21:47:04 +000041class SkPDFUtils {
42public:
43 static SkPDFArray* MatrixToArray(const SkMatrix& matrix);
vandebo@chromium.org75f97e42011-04-11 23:24:18 +000044 static void AppendTransform(const SkMatrix& matrix, SkWStream* content);
vandebo@chromium.orgcae5fba2011-03-28 19:03:50 +000045
46 static void MoveTo(SkScalar x, SkScalar y, SkWStream* content);
47 static void AppendLine(SkScalar x, SkScalar y, SkWStream* content);
ctguil@chromium.orgf966fd32011-03-04 21:47:04 +000048 static void AppendCubic(SkScalar ctl1X, SkScalar ctl1Y,
49 SkScalar ctl2X, SkScalar ctl2Y,
vandebo@chromium.orgcae5fba2011-03-28 19:03:50 +000050 SkScalar dstX, SkScalar dstY, SkWStream* content);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +000051 static void AppendRectangle(const SkRect& rect, SkWStream* content);
vandebo@chromium.orgcae5fba2011-03-28 19:03:50 +000052 static void EmitPath(const SkPath& path, SkWStream* content);
53 static void ClosePath(SkWStream* content);
ctguil@chromium.orgf966fd32011-03-04 21:47:04 +000054 static void PaintPath(SkPaint::Style style, SkPath::FillType fill,
vandebo@chromium.orgcae5fba2011-03-28 19:03:50 +000055 SkWStream* content);
56 static void StrokePath(SkWStream* content);
vandebo@chromium.org6112c212011-05-13 03:50:38 +000057 static void DrawFormXObject(int objectIndex, SkWStream* content);
58 static void ApplyGraphicState(int objectIndex, SkWStream* content);
ctguil@chromium.orgf966fd32011-03-04 21:47:04 +000059};
60
61#endif