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

Unified Diff: printing/native_metafile_mac.h

Issue 6544028: Create a Factory for NativeMetafile. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed styling issues (naming, 80cols) Created 9 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: printing/native_metafile_mac.h
diff --git a/printing/native_metafile_mac.h b/printing/native_metafile_mac.h
new file mode 100644
index 0000000000000000000000000000000000000000..369e53338b5cc5d5316cdf46f4218547470ff2fa
--- /dev/null
+++ b/printing/native_metafile_mac.h
@@ -0,0 +1,90 @@
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef NATIVE_METAFILE_MAC_H_
vandebo (ex-Chrome) 2011/02/22 22:18:16 PRINTING_...
+#define NATIVE_METAFILE_MAC_H_
+
+#include <ApplicationServices/ApplicationServices.h>
+#include <CoreFoundation/CoreFoundation.h>
+
+#include "base/basictypes.h"
+#include "base/mac/scoped_cftyperef.h"
+
+namespace gfx {
+class Rect;
+class Size;
+class Point;
+}
+class FilePath;
+
+namespace printing {
+
+// This class creates a graphics context that renders into a PDF data stream.
+class NativeMetafile {
+ public:
+
+ virtual ~NativeMetafile() {};
+
+ // Initializes a new metafile, and returns a drawing context for rendering
+ // into the PDF. Returns NULL on failure.
+ // Note: The returned context *must not be retained* past Close(). If it is,
+ // the data returned from GetData will not be valid PDF data.
+ virtual CGContextRef Init() = 0;
+
+ // Initializes a copy of metafile from PDF data. Returns true on success.
+ virtual bool Init(const void* src_buffer, uint32 src_buffer_size) = 0;
+
+ // Prepares a new pdf page at specified |content_origin| with the given
+ // |page_size| and a |scale_factor| to use for the drawing.
+ virtual CGContextRef StartPage(const gfx::Size& page_size,
+ const gfx::Point& content_origin,
+ const float& scale_factor) = 0;
+
+ // Closes the current page.
+ virtual void FinishPage() = 0;
+
+ // Closes the PDF file; no further rendering is allowed.
+ virtual void Close() = 0;
+
+ // Renders the given page into |rect| in the given context.
+ // Pages use a 1-based index. The rendering uses the following arguments
+ // to determine scaling and translation factors.
+ // |shrink_to_fit| specifies whether the output should be shrunk to fit the
+ // supplied |rect| if the page size is larger than |rect| in any dimension.
+ // If this is false, parts of the PDF page that lie outside the bounds will be
+ // clipped.
+ // |stretch_to_fit| specifies whether the output should be stretched to fit
+ // the supplied bounds if the page size is smaller than |rect| in all
+ // dimensions.
+ // |center_horizontally| specifies whether the final image (after any scaling
+ // is done) should be centered horizontally within the given |rect|.
+ // |center_vertically| specifies whether the final image (after any scaling
+ // is done) should be centered vertically within the given |rect|.
+ // Note that all scaling preserves the original aspect ratio of the page.
+ virtual bool RenderPage(unsigned int page_number, CGContextRef context,
+ const CGRect rect, bool shrink_to_fit, bool stretch_to_fit,
+ bool center_horizontally, bool center_vertically) const = 0;
+ virtual unsigned int GetPageCount() const = 0;
+
+ // Returns the bounds of the given page.
+ // Pages use a 1-based index.
+ virtual gfx::Rect GetPageBounds(unsigned int page_number) const = 0;
+
+ // Returns the size of the underlying PDF data. Only valid after Close() has
+ // been called.
+ virtual uint32 GetDataSize() const = 0;
+
+ // Copies the first |dst_buffer_size| bytes of the PDF data into |dst_buffer|.
+ // Only valid after Close() has been called.
+ // Returns true if the copy succeeds.
+ virtual bool GetData(void* dst_buffer, uint32 dst_buffer_size) const = 0;
+
+ // Saves the raw PDF data to the given file. For testing only.
+ // Returns true if writing succeeded.
+ virtual bool SaveTo(const FilePath& file_path) const = 0;
+};
+
+} // namespace printing
+
+#endif /* NATIVE_METAFILE_MAC_H_ */

Powered by Google App Engine
This is Rietveld 408576698