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

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: Removing dead code, using gfx::Size in PdfPsMetafile::StartPage 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.
49 // The unit is in point (=1/72 in).
50 // Returns NULL when failed.
51 virtual cairo_t* StartPage(double width_in_points,
52 double height_in_points,
53 double margin_top_in_points,
54 double margin_right_in_points,
55 double margin_bottom_in_points,
56 double margin_left_in_points);
57
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(); 31 virtual bool FinishPage();
62
63 // Closes resulting PDF file. No further rendering is allowed.
64 virtual void Close(); 32 virtual void Close();
65 33
66 // Returns size of PDF contents stored in buffer |data_|. 34 virtual bool SaveTo(const FilePath& file_path) const;
67 // This function should ONLY be called after PDF file is closed.
68 virtual uint32 GetDataSize() const;
69 35
70 // Copies PDF contents stored in buffer |data_| into |dst_buffer|. 36 virtual gfx::Rect GetPageBounds(unsigned int page_number) const;
71 // This function should ONLY be called after PDF file is closed. 37 virtual unsigned int GetPageCount() const { return 1; }
72 // Returns true only when success.
73 virtual bool GetData(void* dst_buffer, uint32 dst_buffer_size) const;
74 38
75 // Saves PDF contents stored in buffer |data_| into the file 39 virtual PlatformContext* StartPage(const gfx::Size& page_size,
76 // associated with |fd|. 40 double margin_top_in_points,
77 // This function should ONLY be called after PDF file is closed. 41 double margin_right_in_points,
78 virtual bool SaveTo(const base::FileDescriptor& fd) const; 42 double margin_bottom_in_points,
43 double margin_left_in_points);
79 44
80 // The hardcoded margins, in points. These values are based on 72 dpi, 45 virtual bool SetRawData(const void* src_buffer, uint32 src_buffer_size);
46 // 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. 47 // with 0.25 margins on top, left, and right, and 0.56 on bottom.
82 static const double kTopMarginInInch; 48 static const double kTopMarginInInch;
83 static const double kRightMarginInInch; 49 static const double kRightMarginInInch;
84 static const double kBottomMarginInInch; 50 static const double kBottomMarginInInch;
85 static const double kLeftMarginInInch; 51 static const double kLeftMarginInInch;
86 52
87 // Returns the PdfPsMetafile object that owns the given context. Returns NULL 53 // Returns the PdfPsMetafile object that owns the given context. Returns NULL
88 // if the context was not created by a PdfPsMetafile object. 54 // if the context was not created by a PdfPsMetafile object.
89 static PdfPsMetafile* FromCairoContext(cairo_t* context); 55 static PdfPsMetafile* FromCairoContext(PlatformContext* context);
90 56
91 protected: 57 protected:
92 PdfPsMetafile(); 58 PdfPsMetafile();
93 59
94 private: 60 private:
95 friend class NativeMetafileFactory; 61 friend class NativeMetafileFactory;
96 FRIEND_TEST_ALL_PREFIXES(PdfPsTest, Pdf); 62 FRIEND_TEST_ALL_PREFIXES(PdfPsTest, Pdf);
97 63
98 // Cleans up all resources. 64 // Cleans up all resources.
99 void CleanUpAll(); 65 void CleanUpAll();
100 66
101 // Cairo surface and context for entire PDF file. 67 // Cairo surface and context for entire PDF file.
102 cairo_surface_t* surface_; 68 cairo_surface_t* surface_;
103 cairo_t* context_; 69 PlatformContext* context_;
104 70
105 // Buffer stores PDF contents for entire PDF file. 71 // Buffer stores PDF contents for entire PDF file.
106 std::string data_; 72 std::string data_;
107 // Buffer stores raw PDF contents set by SetRawPageData. 73 // Buffer stores raw PDF contents set by SetRawPageData.
108 std::string raw_override_data_; 74 std::string raw_override_data_;
109 75
110 DISALLOW_COPY_AND_ASSIGN(PdfPsMetafile); 76 DISALLOW_COPY_AND_ASSIGN(PdfPsMetafile);
111 }; 77 };
112 78
113 } // namespace printing 79 } // namespace printing
114 80
115 #endif // PRINTING_PDF_PS_METAFILE_CAIRO_H_ 81 #endif // PRINTING_PDF_PS_METAFILE_CAIRO_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698