blob: d1564044c180a2d45f2606c4bee5afd7ef3b16cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SKIA_EXT_VECTOR_PLATFORM_DEVICE_SKIA_H_
#define SKIA_EXT_VECTOR_PLATFORM_DEVICE_SKIA_H_
#pragma once
#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "base/logging.h"
#include "skia/ext/platform_device.h"
#include "third_party/skia/include/core/SkRefCnt.h"
#include "third_party/skia/include/core/SkTScopedPtr.h"
#include "third_party/skia/include/pdf/SkPDFDevice.h"
class SkMatrix;
namespace skia {
class BitmapPlatformDevice;
class VectorPlatformDeviceSkia : public SkPDFDevice, public PlatformDevice {
public:
SK_API VectorPlatformDeviceSkia(const SkISize& pageSize,
const SkISize& contentSize,
const SkMatrix& initialTransform);
virtual ~VectorPlatformDeviceSkia();
// PlatformDevice methods.
virtual bool IsNativeFontRenderingAllowed() OVERRIDE;
virtual PlatformSurface BeginPlatformPaint() OVERRIDE;
virtual void EndPlatformPaint() OVERRIDE;
#if defined(OS_WIN)
virtual void DrawToNativeContext(HDC dc,
int x,
int y,
const RECT* src_rect) OVERRIDE;
#elif defined(OS_MACOSX)
virtual void DrawToNativeContext(CGContext* context,
int x,
int y,
const CGRect* src_rect) OVERRIDE;
virtual CGContextRef GetBitmapContext() OVERRIDE;
#elif defined(OS_LINUX) || defined(OS_ANDROID) || defined(OS_OPENBSD)
virtual void DrawToNativeContext(PlatformSurface surface,
int x,
int y,
const PlatformRect* src_rect) OVERRIDE;
#endif
private:
SkRefPtr<BitmapPlatformDevice> raster_surface_;
DISALLOW_COPY_AND_ASSIGN(VectorPlatformDeviceSkia);
};
} // namespace skia
#endif // SKIA_EXT_VECTOR_PLATFORM_DEVICE_SKIA_H_
|