Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(646)

Side by Side Diff: printing/pdf_ps_metafile_cairo.h

Issue 6611032: Unifying NativeMetafile class interface (as much as possible) for Linux, Mac, Win (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed include ordering, some comments and style Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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_PDF_PS_METAFILE_CAIRO_H_ 5 #ifndef PRINTING_PDF_PS_METAFILE_CAIRO_H_
6 #define PRINTING_PDF_PS_METAFILE_CAIRO_H_ 6 #define PRINTING_PDF_PS_METAFILE_CAIRO_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "base/gtest_prod_util.h" 11 #include "base/gtest_prod_util.h"
12 #include "printing/native_metafile_linux.h" 12 #include "printing/native_metafile.h"
13
14 typedef struct _cairo_surface cairo_surface_t;
15 typedef struct _cairo cairo_t;
16
17 namespace base {
18 struct FileDescriptor;
19 }
20
21 class FilePath;
22 13
23 namespace printing { 14 namespace printing {
24 15
25 // This class uses Cairo graphics library to generate PostScript/PDF stream 16 // Implementing NativeMetafile
Lei Zhang 2011/03/04 12:02:36 nit: Unnecessary comment. Same for all the other m
dpapad 2011/03/04 19:19:43 When attempting to unify the interfaces, the comme
Lei Zhang 2011/03/04 19:36:40 Imagine someone who has never read the code before
dpapad 2011/03/04 21:48:19 Done.
26 // and stores rendering results in a string buffer. 17 class PdfPsMetafile : public NativeMetafile {
27 class PdfPsMetafile : public NativeMetafile {
28 public: 18 public:
29 virtual ~PdfPsMetafile(); 19 virtual ~PdfPsMetafile();
30
31 // Initializes to a fresh new metafile. Returns true on success.
32 // Note: Only call in the renderer to allocate rendering resources.
33 virtual bool Init(); 20 virtual bool Init();
34
35 // Initializes a copy of metafile from PDF stream data.
36 // Returns true on success.
37 // |src_buffer| should point to the shared memory which stores PDF
38 // contents generated in the renderer.
39 // Note: Only call in the browser to initialize |data_|.
40 virtual bool Init(const void* src_buffer, uint32 src_buffer_size); 21 virtual bool Init(const void* src_buffer, uint32 src_buffer_size);
41 22
42 // Sets raw PDF data for the document. This is used when a cairo drawing 23 virtual uint32 GetDataSize() const;
43 // surface has already been created. This method will cause all subsequent 24 virtual bool GetData(void* dst_buffer, uint32 dst_buffer_size) const;
44 // drawing on the surface to be discarded (in Close()). If Init() has not yet 25
45 // been called this method simply calls the second version of Init. 26 virtual bool FinishPage();
27 virtual void Close();
28
29 virtual bool SaveTo(const FilePath& file_path) const;
30
46 virtual bool SetRawData(const void* src_buffer, uint32 src_buffer_size); 31 virtual bool SetRawData(const void* src_buffer, uint32 src_buffer_size);
47
48 // Prepares a new cairo surface/context for rendering a new page.
49 // The unit is in point (=1/72 in).
50 // Returns NULL when failed.
51 virtual cairo_t* StartPage(double width_in_points, 32 virtual cairo_t* StartPage(double width_in_points,
52 double height_in_points, 33 double height_in_points,
53 double margin_top_in_points, 34 double margin_top_in_points,
54 double margin_right_in_points, 35 double margin_right_in_points,
55 double margin_bottom_in_points, 36 double margin_bottom_in_points,
56 double margin_left_in_points); 37 double margin_left_in_points);
57 38
58 // Destroys the surface and the context used in rendering current page.
59 // The results of current page will be appended into buffer |data_|.
60 // Returns true on success.
61 virtual bool FinishPage();
62
63 // Closes resulting PDF file. No further rendering is allowed.
64 virtual void Close();
65
66 // Returns size of PDF contents stored in buffer |data_|.
67 // This function should ONLY be called after PDF file is closed.
68 virtual uint32 GetDataSize() const;
69
70 // Copies PDF contents stored in buffer |data_| into |dst_buffer|.
71 // This function should ONLY be called after PDF file is closed.
72 // Returns true only when success.
73 virtual bool GetData(void* dst_buffer, uint32 dst_buffer_size) const;
74
75 // Saves PDF contents stored in buffer |data_| into the file
76 // associated with |fd|.
77 // This function should ONLY be called after PDF file is closed.
78 virtual bool SaveTo(const base::FileDescriptor& fd) const;
79
80 // The hardcoded margins, in points. These values are based on 72 dpi, 39 // The hardcoded margins, in points. These values are based on 72 dpi,
81 // with 0.25 margins on top, left, and right, and 0.56 on bottom. 40 // with 0.25 margins on top, left, and right, and 0.56 on bottom.
82 static const double kTopMarginInInch; 41 static const double kTopMarginInInch;
83 static const double kRightMarginInInch; 42 static const double kRightMarginInInch;
84 static const double kBottomMarginInInch; 43 static const double kBottomMarginInInch;
85 static const double kLeftMarginInInch; 44 static const double kLeftMarginInInch;
86 45
87 // Returns the PdfPsMetafile object that owns the given context. Returns NULL 46 // Returns the PdfPsMetafile object that owns the given context. Returns NULL
88 // if the context was not created by a PdfPsMetafile object. 47 // if the context was not created by a PdfPsMetafile object.
89 static PdfPsMetafile* FromCairoContext(cairo_t* context); 48 static PdfPsMetafile* FromCairoContext(cairo_t* context);
(...skipping 16 matching lines...) Expand all
106 std::string data_; 65 std::string data_;
107 // Buffer stores raw PDF contents set by SetRawPageData. 66 // Buffer stores raw PDF contents set by SetRawPageData.
108 std::string raw_override_data_; 67 std::string raw_override_data_;
109 68
110 DISALLOW_COPY_AND_ASSIGN(PdfPsMetafile); 69 DISALLOW_COPY_AND_ASSIGN(PdfPsMetafile);
111 }; 70 };
112 71
113 } // namespace printing 72 } // namespace printing
114 73
115 #endif // PRINTING_PDF_PS_METAFILE_CAIRO_H_ 74 #endif // PRINTING_PDF_PS_METAFILE_CAIRO_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698