| 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_PDF_METAFILE_MAC_H_ | 5 #ifndef PRINTING_PDF_METAFILE_MAC_H_ |
| 6 #define PRINTING_PDF_METAFILE_MAC_H_ | 6 #define PRINTING_PDF_METAFILE_MAC_H_ |
| 7 | 7 |
| 8 #include <ApplicationServices/ApplicationServices.h> | 8 #include <ApplicationServices/ApplicationServices.h> |
| 9 #include <CoreFoundation/CoreFoundation.h> | 9 #include <CoreFoundation/CoreFoundation.h> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "base/mac/scoped_cftyperef.h" |
| 12 #include "base/gtest_prod_util.h" | 13 #include "base/gtest_prod_util.h" |
| 13 #include "base/mac/scoped_cftyperef.h" | 14 #include "printing/native_metafile.h" |
| 14 #include "printing/native_metafile_mac.h" | |
| 15 | |
| 16 namespace gfx { | |
| 17 class Rect; | |
| 18 class Size; | |
| 19 class Point; | |
| 20 } | |
| 21 class FilePath; | |
| 22 | 15 |
| 23 namespace printing { | 16 namespace printing { |
| 24 | 17 |
| 25 // This class creates a graphics context that renders into a PDF data stream. | 18 // Implementing NativeMetafile |
| 26 class PdfMetafile : public NativeMetafile { | 19 class PdfMetafile : public NativeMetafile { |
| 27 public: | 20 public: |
| 28 | 21 |
| 29 virtual ~PdfMetafile(); | 22 virtual ~PdfMetafile(); |
| 30 | 23 |
| 31 // Initializes a new metafile, and returns a drawing context for rendering | |
| 32 // into the PDF. Returns NULL on failure. | |
| 33 // Note: The returned context *must not be retained* past Close(). If it is, | 24 // Note: The returned context *must not be retained* past Close(). If it is, |
| 34 // the data returned from GetData will not be valid PDF data. | 25 // the data returned from GetData will not be valid PDF data. |
| 35 virtual CGContextRef Init(); | 26 virtual bool Init(); |
| 36 | |
| 37 // Initializes a copy of metafile from PDF data. Returns true on success. | |
| 38 virtual bool Init(const void* src_buffer, uint32 src_buffer_size); | 27 virtual bool Init(const void* src_buffer, uint32 src_buffer_size); |
| 39 | 28 |
| 40 // Prepares a new pdf page at specified |content_origin| with the given | 29 virtual uint32 GetDataSize() const; |
| 41 // |page_size| and a |scale_factor| to use for the drawing. | 30 virtual bool GetData(void* dst_buffer, uint32 dst_buffer_size) const; |
| 31 |
| 32 virtual bool FinishPage(); |
| 33 virtual void Close(); |
| 34 virtual bool SaveTo(const FilePath& file_path) const; |
| 35 |
| 36 virtual gfx::Rect GetPageBounds(unsigned int page_number) const; |
| 37 virtual unsigned int GetPageCount() const; |
| 38 |
| 42 virtual CGContextRef StartPage(const gfx::Size& page_size, | 39 virtual CGContextRef StartPage(const gfx::Size& page_size, |
| 43 const gfx::Point& content_origin, | 40 const gfx::Point& content_origin, |
| 44 const float& scale_factor); | 41 const float& scale_factor); |
| 45 | |
| 46 // Closes the current page. | |
| 47 virtual void FinishPage(); | |
| 48 | |
| 49 // Closes the PDF file; no further rendering is allowed. | |
| 50 virtual void Close(); | |
| 51 | |
| 52 // Renders the given page into |rect| in the given context. | |
| 53 // Pages use a 1-based index. The rendering uses the following arguments | |
| 54 // to determine scaling and translation factors. | |
| 55 // |shrink_to_fit| specifies whether the output should be shrunk to fit the | |
| 56 // supplied |rect| if the page size is larger than |rect| in any dimension. | |
| 57 // If this is false, parts of the PDF page that lie outside the bounds will be | |
| 58 // clipped. | |
| 59 // |stretch_to_fit| specifies whether the output should be stretched to fit | |
| 60 // the supplied bounds if the page size is smaller than |rect| in all | |
| 61 // dimensions. | |
| 62 // |center_horizontally| specifies whether the final image (after any scaling | |
| 63 // is done) should be centered horizontally within the given |rect|. | |
| 64 // |center_vertically| specifies whether the final image (after any scaling | |
| 65 // is done) should be centered vertically within the given |rect|. | |
| 66 // Note that all scaling preserves the original aspect ratio of the page. | |
| 67 virtual bool RenderPage(unsigned int page_number, CGContextRef context, | 42 virtual bool RenderPage(unsigned int page_number, CGContextRef context, |
| 68 const CGRect rect, bool shrink_to_fit, bool stretch_to_fit, | 43 const CGRect rect, bool shrink_to_fit, bool stretch_to_fit, |
| 69 bool center_horizontally, bool center_vertically) const; | 44 bool center_horizontally, bool center_vertically) const; |
| 70 virtual unsigned int GetPageCount() const; | |
| 71 | 45 |
| 72 // Returns the bounds of the given page. | 46 virtual CGContextRef context() { return context_.get(); } |
| 73 // Pages use a 1-based index. | |
| 74 virtual gfx::Rect GetPageBounds(unsigned int page_number) const; | |
| 75 | |
| 76 // Returns the size of the underlying PDF data. Only valid after Close() has | |
| 77 // been called. | |
| 78 virtual uint32 GetDataSize() const; | |
| 79 | |
| 80 // Copies the first |dst_buffer_size| bytes of the PDF data into |dst_buffer|. | |
| 81 // Only valid after Close() has been called. | |
| 82 // Returns true if the copy succeeds. | |
| 83 virtual bool GetData(void* dst_buffer, uint32 dst_buffer_size) const; | |
| 84 | |
| 85 // Saves the raw PDF data to the given file. For testing only. | |
| 86 // Returns true if writing succeeded. | |
| 87 virtual bool SaveTo(const FilePath& file_path) const; | |
| 88 | 47 |
| 89 protected: | 48 protected: |
| 90 // To create PDF data, callers should call Init() to set up the rendering | 49 // To create PDF data, callers should call Init() to set up the rendering |
| 91 // context. | 50 // context. |
| 92 // To create a metafile from existing data, callers should call | 51 // To create a metafile from existing data, callers should call |
| 93 // Init(const void*, uint32). | 52 // Init(const void*, uint32). |
| 94 PdfMetafile(); | 53 PdfMetafile(); |
| 95 | 54 |
| 96 private: | 55 private: |
| 97 friend class NativeMetafileFactory; | 56 friend class NativeMetafileFactory; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 111 | 70 |
| 112 // Whether or not a page is currently open. | 71 // Whether or not a page is currently open. |
| 113 bool page_is_open_; | 72 bool page_is_open_; |
| 114 | 73 |
| 115 DISALLOW_COPY_AND_ASSIGN(PdfMetafile); | 74 DISALLOW_COPY_AND_ASSIGN(PdfMetafile); |
| 116 }; | 75 }; |
| 117 | 76 |
| 118 } // namespace printing | 77 } // namespace printing |
| 119 | 78 |
| 120 #endif // PRINTING_PDF_METAFILE_MAC_H_ | 79 #endif // PRINTING_PDF_METAFILE_MAC_H_ |
| OLD | NEW |