OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef PRINTING_EMF_WIN_H_ | 5 #ifndef PRINTING_EMF_WIN_H_ |
6 #define PRINTING_EMF_WIN_H_ | 6 #define PRINTING_EMF_WIN_H_ |
7 | 7 |
8 #include <windows.h> | 8 #include <windows.h> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/gtest_prod_util.h" | 12 #include "base/gtest_prod_util.h" |
13 #include "printing/native_metafile.h" | 13 #include "printing/metafile.h" |
14 | 14 |
15 class FilePath; | 15 class FilePath; |
16 | 16 |
17 namespace gfx { | 17 namespace gfx { |
18 class Point; | 18 class Point; |
19 class Rect; | 19 class Rect; |
20 class Size; | 20 class Size; |
21 } | 21 } |
22 | 22 |
23 namespace printing { | 23 namespace printing { |
24 | 24 |
25 // Simple wrapper class that manage an EMF data stream and its virtual HDC. | 25 // Simple wrapper class that manage an EMF data stream and its virtual HDC. |
26 class Emf : public NativeMetafile { | 26 class Emf : public Metafile { |
27 public: | 27 public: |
28 class Record; | 28 class Record; |
29 class Enumerator; | 29 class Enumerator; |
30 struct EnumerationContext; | 30 struct EnumerationContext; |
31 | 31 |
32 // Generates a virtual HDC that will record every GDI commands and compile | 32 // Generates a virtual HDC that will record every GDI commands and compile |
33 // it in a EMF data stream. | 33 // it in a EMF data stream. |
34 Emf(); | 34 Emf(); |
35 virtual ~Emf(); | 35 virtual ~Emf(); |
36 | 36 |
37 // Generates a new metafile that will record every GDI command, and will | 37 // Generates a new metafile that will record every GDI command, and will |
38 // be saved to |metafile_path|. | 38 // be saved to |metafile_path|. |
39 virtual bool InitToFile(const FilePath& metafile_path); | 39 virtual bool InitToFile(const FilePath& metafile_path); |
40 | 40 |
41 // Initializes the Emf with the data in |metafile_path|. | 41 // Initializes the Emf with the data in |metafile_path|. |
42 virtual bool InitFromFile(const FilePath& metafile_path); | 42 virtual bool InitFromFile(const FilePath& metafile_path); |
43 | 43 |
44 // NativeMetafile methods. | 44 // Metafile methods. |
45 virtual bool Init(); | 45 virtual bool Init(); |
46 virtual bool InitFromData(const void* src_buffer, uint32 src_buffer_size); | 46 virtual bool InitFromData(const void* src_buffer, uint32 src_buffer_size); |
47 | 47 |
48 virtual skia::PlatformDevice* StartPageForVectorCanvas( | 48 virtual skia::PlatformDevice* StartPageForVectorCanvas( |
49 const gfx::Size& page_size, const gfx::Point& content_origin, | 49 const gfx::Size& page_size, const gfx::Point& content_origin, |
50 const float& scale_factor); | 50 const float& scale_factor); |
51 // Inserts a custom GDICOMMENT records indicating StartPage/EndPage calls | 51 // Inserts a custom GDICOMMENT records indicating StartPage/EndPage calls |
52 // (since StartPage and EndPage do not work in a metafile DC). Only valid | 52 // (since StartPage and EndPage do not work in a metafile DC). Only valid |
53 // when hdc_ is non-NULL. |page_size| and |content_origin| are ignored. | 53 // when hdc_ is non-NULL. |page_size| and |content_origin| are ignored. |
54 // |scale_factor| must be 1.0. | 54 // |scale_factor| must be 1.0. |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 std::vector<Record> items_; | 174 std::vector<Record> items_; |
175 | 175 |
176 EnumerationContext context_; | 176 EnumerationContext context_; |
177 | 177 |
178 DISALLOW_COPY_AND_ASSIGN(Enumerator); | 178 DISALLOW_COPY_AND_ASSIGN(Enumerator); |
179 }; | 179 }; |
180 | 180 |
181 } // namespace printing | 181 } // namespace printing |
182 | 182 |
183 #endif // PRINTING_EMF_WIN_H_ | 183 #endif // PRINTING_EMF_WIN_H_ |
OLD | NEW |