1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
|
/*
* Copyright (C) 2007 Alp Toker <alp@atoker.com>
* Copyright (C) 2007 Apple Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "third_party/blink/renderer/core/page/print_context.h"
#include <utility>
#include "third_party/blink/public/web/web_print_page_description.h"
#include "third_party/blink/renderer/core/css/properties/computed_style_utils.h"
#include "third_party/blink/renderer/core/frame/local_frame.h"
#include "third_party/blink/renderer/core/frame/local_frame_view.h"
#include "third_party/blink/renderer/core/frame/settings.h"
#include "third_party/blink/renderer/core/layout/layout_view.h"
#include "third_party/blink/renderer/core/layout/pagination_utils.h"
#include "third_party/blink/renderer/core/layout/physical_box_fragment.h"
#include "third_party/blink/renderer/core/layout/physical_fragment_link.h"
#include "third_party/blink/renderer/core/paint/paint_layer_scrollable_area.h"
#include "third_party/blink/renderer/platform/graphics/graphics_context.h"
#include "third_party/blink/renderer/platform/graphics/paint/drawing_recorder.h"
#include "third_party/blink/renderer/platform/graphics/paint/scoped_paint_chunk_properties.h"
#include "ui/gfx/geometry/size_f.h"
namespace blink {
namespace {
LayoutBoxModelObject* EnclosingBoxModelObject(LayoutObject* object) {
while (object && !object->IsBoxModelObject())
object = object->Parent();
return To<LayoutBoxModelObject>(object);
}
bool IsCoordinateInPage(int top, int left, const gfx::Rect& page) {
return page.x() <= left && left < page.right() && page.y() <= top &&
top < page.bottom();
}
} // namespace
PrintContext::PrintContext(LocalFrame* frame)
: frame_(frame), is_printing_(false), linked_destinations_valid_(false) {}
PrintContext::~PrintContext() {
DCHECK(!is_printing_);
}
wtf_size_t PrintContext::PageCount() const {
DCHECK(is_printing_);
if (!IsFrameValid()) {
return 0;
}
if (!use_paginated_layout_) {
return 1;
}
return ::blink::PageCount(*frame_->GetDocument()->GetLayoutView());
}
gfx::Rect PrintContext::PageRect(wtf_size_t page_index) const {
CHECK(IsFrameValid());
DCHECK(is_printing_);
DCHECK_LT(page_index, PageCount());
const LayoutView& layout_view = *frame_->GetDocument()->GetLayoutView();
if (!use_paginated_layout_) {
// Remote frames (and the special per-page headers+footers document) end up
// here.
return ToPixelSnappedRect(layout_view.DocumentRect());
}
PhysicalRect physical_rect = StitchedPageContentRect(layout_view, page_index);
gfx::Rect page_rect = ToEnclosingRect(physical_rect);
// There's code to avoid fractional page sizes, so we shouldn't have to worry
// about that here.
DCHECK_EQ(gfx::RectF(physical_rect), gfx::RectF(page_rect));
page_rect.Offset(-frame_->View()->LayoutViewport()->ScrollOffsetInt());
return page_rect;
}
void PrintContext::BeginPrintMode(const WebPrintParams& print_params) {
DCHECK_GT(print_params.default_page_description.size.width(), 0);
DCHECK_GT(print_params.default_page_description.size.height(), 0);
// This function can be called multiple times to adjust printing parameters
// without going back to screen mode.
is_printing_ = true;
use_paginated_layout_ = print_params.use_paginated_layout;
const Settings* settings = frame_->GetSettings();
DCHECK(settings);
float maximum_shink_factor = settings->GetPrintingMaximumShrinkFactor();
LayoutView& layout_view = *frame_->GetDocument()->GetLayoutView();
layout_view.SetPaginationScaleFactor(1.0f / print_params.scale_factor);
// This changes layout, so callers need to make sure that they don't paint to
// screen while in printing mode.
frame_->StartPrinting(print_params, maximum_shink_factor);
}
void PrintContext::EndPrintMode() {
DCHECK(is_printing_);
is_printing_ = false;
if (IsFrameValid()) {
frame_->EndPrinting();
}
linked_destinations_.clear();
linked_destinations_valid_ = false;
}
// static
int PrintContext::PageNumberForElement(Element* element,
const gfx::SizeF& page_size_in_pixels) {
element->GetDocument().UpdateStyleAndLayout(DocumentUpdateReason::kPrinting);
LocalFrame* frame = element->GetDocument().GetFrame();
ScopedPrintContext print_context(frame);
print_context->BeginPrintMode(WebPrintParams(page_size_in_pixels));
LayoutBoxModelObject* box =
EnclosingBoxModelObject(element->GetLayoutObject());
if (!box)
return -1;
int top = box->OffsetTop(box->OffsetParent()).ToInt();
int left = box->OffsetLeft(box->OffsetParent()).ToInt();
for (wtf_size_t page_number = 0; page_number < print_context->PageCount();
++page_number) {
if (IsCoordinateInPage(top, left, print_context->PageRect(page_number)))
return static_cast<int>(page_number);
}
return -1;
}
void PrintContext::CollectLinkedDestinations(Node* node) {
for (Node* i = node->firstChild(); i; i = i->nextSibling())
CollectLinkedDestinations(i);
auto* element = DynamicTo<Element>(node);
if (!node->IsLink() || !element)
return;
const AtomicString& href = element->getAttribute(html_names::kHrefAttr);
if (href.IsNull())
return;
KURL url = node->GetDocument().CompleteURL(href);
if (!url.IsValid())
return;
if (url.HasFragmentIdentifier() &&
EqualIgnoringFragmentIdentifier(url, node->GetDocument().BaseURL())) {
String name = url.FragmentIdentifier().ToString();
if (Node* target = node->GetDocument().FindAnchor(name))
linked_destinations_.Set(name, target);
}
}
void PrintContext::OutputLinkedDestinations(
GraphicsContext& context,
const PropertyTreeStateOrAlias& property_tree_state,
const gfx::Rect& page_rect) {
DEFINE_STATIC_DISPLAY_ITEM_CLIENT(client, "PrintedLinkedDestinations");
ScopedPaintChunkProperties scoped_paint_chunk_properties(
context.GetPaintController(), property_tree_state, *client,
DisplayItem::kPrintedContentDestinationLocations);
DrawingRecorder line_boundary_recorder(
context, *client, DisplayItem::kPrintedContentDestinationLocations);
if (!linked_destinations_valid_) {
// Collect anchors in the top-level frame only because our PrintContext
// supports only one namespace for the anchors.
CollectLinkedDestinations(GetFrame()->GetDocument());
linked_destinations_valid_ = true;
}
for (const auto& entry : linked_destinations_) {
LayoutObject* layout_object = entry.value->GetLayoutObject();
if (!layout_object || !layout_object->GetFrameView())
continue;
gfx::Point anchor_point = layout_object->AbsoluteBoundingBoxRect().origin();
if (page_rect.Contains(anchor_point)) {
// The linked destination location is relative to the current page (in
// fact just like everything else that's painted, but the linked
// destination code is tacked on the outside of the paint code, so extra
// awareness is required).
context.SetURLDestinationLocation(
entry.key, anchor_point - page_rect.OffsetFromOrigin());
}
}
}
// static
int PrintContext::NumberOfPages(LocalFrame* frame,
const gfx::SizeF& page_size_in_pixels) {
frame->GetDocument()->UpdateStyleAndLayout(DocumentUpdateReason::kPrinting);
ScopedPrintContext print_context(frame);
print_context->BeginPrintMode(WebPrintParams(page_size_in_pixels));
return print_context->PageCount();
}
bool PrintContext::IsFrameValid() const {
return frame_->View() && frame_->GetDocument() &&
frame_->GetDocument()->GetLayoutView();
}
void PrintContext::Trace(Visitor* visitor) const {
visitor->Trace(frame_);
visitor->Trace(linked_destinations_);
}
ScopedPrintContext::ScopedPrintContext(LocalFrame* frame)
: context_(MakeGarbageCollected<PrintContext>(frame)) {}
ScopedPrintContext::~ScopedPrintContext() {
context_->EndPrintMode();
}
} // namespace blink
|