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

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: Fixes for CHROMEOS 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 13
14 typedef struct _cairo_surface cairo_surface_t; 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 15
23 namespace printing { 16 namespace printing {
24 17
25 // This class uses Cairo graphics library to generate PostScript/PDF stream 18 // This class uses Cairo graphics library to generate PDF stream and stores
26 // and stores rendering results in a string buffer. 19 // rendering results in a string buffer.
27 class PdfPsMetafile : public NativeMetafile { 20 class PdfPsMetafile : public NativeMetafile {
28 public: 21 public:
29 virtual ~PdfPsMetafile(); 22 virtual ~PdfPsMetafile();
30 23
31 // Initializes to a fresh new metafile. Returns true on success. 24 // NativeMetafile methods.
32 // Note: Only call in the renderer to allocate rendering resources.
33 virtual bool Init(); 25 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); 26 virtual bool Init(const void* src_buffer, uint32 src_buffer_size);
41 27
42 // Sets raw PDF data for the document. This is used when a cairo drawing 28 virtual uint32 GetDataSize() const;
43 // surface has already been created. This method will cause all subsequent 29 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
45 // been called this method simply calls the second version of Init.
46 virtual bool SetRawData(const void* src_buffer, uint32 src_buffer_size);
47 30
48 // Prepares a new cairo surface/context for rendering a new page. 31 virtual bool FinishPage();
49 // The unit is in point (=1/72 in). 32 virtual void Close();
50 // Returns NULL when failed. 33
51 virtual cairo_t* StartPage(double width_in_points, 34 virtual bool SaveTo(const FilePath& file_path) const;
52 double height_in_points, 35
36 virtual gfx::Rect GetPageBounds(unsigned int page_number) const;
37 virtual unsigned int GetPageCount() const { return 1; }
38
39 virtual cairo_t* StartPage(const gfx::Size& page_size,
53 double margin_top_in_points, 40 double margin_top_in_points,
54 double margin_right_in_points, 41 double margin_right_in_points,
55 double margin_bottom_in_points, 42 double margin_bottom_in_points,
56 double margin_left_in_points); 43 double margin_left_in_points);
57 44
58 // Destroys the surface and the context used in rendering current page. 45 virtual bool SetRawData(const void* src_buffer, uint32 src_buffer_size);
59 // The results of current page will be appended into buffer |data_|.
60 // Returns true on success.
61 virtual bool FinishPage();
62 46
63 // Closes resulting PDF file. No further rendering is allowed. 47 #if defined(OS_CHROMEOS)
64 virtual void Close(); 48 virtual bool SaveToFD(const base::FileDescriptor& fd) const;
65 49 #endif // if defined(OS_CHROMEOS)
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 50
80 // The hardcoded margins, in points. These values are based on 72 dpi, 51 // 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. 52 // with 0.25 margins on top, left, and right, and 0.56 on bottom.
82 static const double kTopMarginInInch; 53 static const double kTopMarginInInch;
83 static const double kRightMarginInInch; 54 static const double kRightMarginInInch;
84 static const double kBottomMarginInInch; 55 static const double kBottomMarginInInch;
85 static const double kLeftMarginInInch; 56 static const double kLeftMarginInInch;
86 57
87 // Returns the PdfPsMetafile object that owns the given context. Returns NULL 58 // Returns the PdfPsMetafile object that owns the given context. Returns NULL
88 // if the context was not created by a PdfPsMetafile object. 59 // if the context was not created by a PdfPsMetafile object.
(...skipping 17 matching lines...) Expand all
106 std::string data_; 77 std::string data_;
107 // Buffer stores raw PDF contents set by SetRawPageData. 78 // Buffer stores raw PDF contents set by SetRawPageData.
108 std::string raw_override_data_; 79 std::string raw_override_data_;
109 80
110 DISALLOW_COPY_AND_ASSIGN(PdfPsMetafile); 81 DISALLOW_COPY_AND_ASSIGN(PdfPsMetafile);
111 }; 82 };
112 83
113 } // namespace printing 84 } // namespace printing
114 85
115 #endif // PRINTING_PDF_PS_METAFILE_CAIRO_H_ 86 #endif // PRINTING_PDF_PS_METAFILE_CAIRO_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698