2 * Copyright (C) 2012 Google Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
15 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
16 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
17 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
18 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
19 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
20 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
21 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 #ifndef TextAutosizer_h
27 #define TextAutosizer_h
29 #if ENABLE(TEXT_AUTOSIZING)
31 #include "HTMLNames.h"
32 #include <wtf/Noncopyable.h>
33 #include <wtf/PassOwnPtr.h>
41 struct TextAutosizingWindowInfo;
42 struct TextAutosizingClusterInfo;
45 WTF_MAKE_NONCOPYABLE(TextAutosizer);
48 static PassOwnPtr<TextAutosizer> create(Document* document) { return adoptPtr(new TextAutosizer(document)); }
50 virtual ~TextAutosizer();
52 bool processSubtree(RenderObject* layoutRoot);
54 static float computeAutosizedFontSize(float specifiedSize, float multiplier);
57 enum TraversalDirection {
62 explicit TextAutosizer(Document*);
64 void processCluster(TextAutosizingClusterInfo&, RenderBlock* container, RenderObject* subtreeRoot, const TextAutosizingWindowInfo&);
65 void processContainer(float multiplier, RenderBlock* container, TextAutosizingClusterInfo&, RenderObject* subtreeRoot, const TextAutosizingWindowInfo&);
67 void setMultiplier(RenderObject*, float);
69 static bool isAutosizingContainer(const RenderObject*);
70 static bool isNarrowDescendant(const RenderBlock*, TextAutosizingClusterInfo& parentClusterInfo);
71 static bool isWiderDescendant(const RenderBlock*, const TextAutosizingClusterInfo& parentClusterInfo);
72 static bool isIndependentDescendant(const RenderBlock*);
73 static bool isAutosizingCluster(const RenderBlock*, TextAutosizingClusterInfo& parentClusterInfo);
75 static bool containerShouldBeAutosized(const RenderBlock* container);
76 static bool containerContainsOneOfTags(const RenderBlock* cluster, const Vector<QualifiedName>& tags);
77 static bool containerIsRowOfLinks(const RenderObject* container);
78 static bool contentHeightIsConstrained(const RenderBlock* container);
79 static bool clusterShouldBeAutosized(TextAutosizingClusterInfo&, float blockWidth);
80 static void measureDescendantTextWidth(const RenderBlock* container, TextAutosizingClusterInfo&, float minTextWidth, float& textWidth);
82 // Use to traverse the tree of descendants, excluding descendants of containers (but returning the containers themselves).
83 static RenderObject* nextInPreOrderSkippingDescendantsOfContainers(const RenderObject*, const RenderObject* stayWithin);
85 static const RenderBlock* findDeepestBlockContainingAllText(const RenderBlock* cluster);
87 // Depending on the traversal direction specified, finds the first or the last leaf text node child that doesn't
88 // belong to any cluster.
89 static const RenderObject* findFirstTextLeafNotInCluster(const RenderObject*, size_t& depth, TraversalDirection);
94 } // namespace WebCore
96 #endif // ENABLE(TEXT_AUTOSIZING)
98 #endif // TextAutosizer_h