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

Side by Side Diff: Source/core/layout/LayoutTextControlSingleLine.h

Issue 922423002: Move rendering/RenderTextControl* to layout/LayoutTextControl* (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved.
3 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 3 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
11 * This library is distributed in the hope that it will be useful, 11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Library General Public License for more details. 14 * Library General Public License for more details.
15 * 15 *
16 * You should have received a copy of the GNU Library General Public License 16 * You should have received a copy of the GNU Library General Public License
17 * along with this library; see the file COPYING.LIB. If not, write to 17 * along with this library; see the file COPYING.LIB. If not, write to
18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 * Boston, MA 02110-1301, USA. 19 * Boston, MA 02110-1301, USA.
20 * 20 *
21 */ 21 */
22 22
23 #ifndef RenderTextControlSingleLine_h 23 #ifndef LayoutTextControlSingleLine_h
24 #define RenderTextControlSingleLine_h 24 #define LayoutTextControlSingleLine_h
25 25
26 #include "core/html/HTMLInputElement.h" 26 #include "core/html/HTMLInputElement.h"
27 #include "core/rendering/RenderTextControl.h" 27 #include "core/layout/LayoutTextControl.h"
28 28
29 namespace blink { 29 namespace blink {
30 30
31 class HTMLInputElement; 31 class HTMLInputElement;
32 32
33 class RenderTextControlSingleLine : public RenderTextControl { 33 class LayoutTextControlSingleLine : public LayoutTextControl {
34 public: 34 public:
35 RenderTextControlSingleLine(HTMLInputElement*); 35 LayoutTextControlSingleLine(HTMLInputElement*);
36 virtual ~RenderTextControlSingleLine(); 36 virtual ~LayoutTextControlSingleLine();
37 // FIXME: Move createInnerEditorStyle() to TextControlInnerEditorElement. 37 // FIXME: Move createInnerEditorStyle() to TextControlInnerEditorElement.
38 virtual PassRefPtr<LayoutStyle> createInnerEditorStyle(const LayoutStyle& st artStyle) const override final; 38 virtual PassRefPtr<LayoutStyle> createInnerEditorStyle(const LayoutStyle& st artStyle) const override final;
39 39
40 void capsLockStateMayHaveChanged(); 40 void capsLockStateMayHaveChanged();
41 41
42 protected: 42 protected:
43 virtual void centerContainerIfNeeded(RenderBox*) const { } 43 virtual void centerContainerIfNeeded(RenderBox*) const { }
44 virtual LayoutUnit computeLogicalHeightLimit() const; 44 virtual LayoutUnit computeLogicalHeightLimit() const;
45 Element* containerElement() const; 45 Element* containerElement() const;
46 Element* editingViewPortElement() const; 46 Element* editingViewPortElement() const;
47 HTMLInputElement* inputElement() const; 47 HTMLInputElement* inputElement() const;
48 48
49 private: 49 private:
50 virtual bool hasControlClip() const override final; 50 virtual bool hasControlClip() const override final;
51 virtual LayoutRect controlClipRect(const LayoutPoint&) const override final; 51 virtual LayoutRect controlClipRect(const LayoutPoint&) const override final;
52 virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectTextField || RenderTextControl::isOfType(type); } 52 virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectTextField || LayoutTextControl::isOfType(type); }
53 53
54 virtual void paint(const PaintInfo&, const LayoutPoint&) override; 54 virtual void paint(const PaintInfo&, const LayoutPoint&) override;
55 virtual void layout() override; 55 virtual void layout() override;
56 56
57 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, const HitTes tLocation& locationInContainer, const LayoutPoint& accumulatedOffset, HitTestAct ion) override final; 57 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, const HitTes tLocation& locationInContainer, const LayoutPoint& accumulatedOffset, HitTestAct ion) override final;
58 58
59 virtual void autoscroll(const IntPoint&) override final; 59 virtual void autoscroll(const IntPoint&) override final;
60 60
61 // Subclassed to forward to our inner div. 61 // Subclassed to forward to our inner div.
62 virtual LayoutUnit scrollLeft() const override final; 62 virtual LayoutUnit scrollLeft() const override final;
(...skipping 11 matching lines...) Expand all
74 virtual void styleDidChange(StyleDifference, const LayoutStyle* oldStyle) ov erride final; 74 virtual void styleDidChange(StyleDifference, const LayoutStyle* oldStyle) ov erride final;
75 75
76 bool textShouldBeTruncated() const; 76 bool textShouldBeTruncated() const;
77 77
78 HTMLElement* innerSpinButtonElement() const; 78 HTMLElement* innerSpinButtonElement() const;
79 79
80 bool m_shouldDrawCapsLockIndicator; 80 bool m_shouldDrawCapsLockIndicator;
81 LayoutUnit m_desiredInnerEditorLogicalHeight; 81 LayoutUnit m_desiredInnerEditorLogicalHeight;
82 }; 82 };
83 83
84 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(RenderTextControlSingleLine, isTextField()); 84 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutTextControlSingleLine, isTextField());
85 85
86 // ---------------------------- 86 // ----------------------------
87 87
88 class RenderTextControlInnerBlock : public RenderBlockFlow { 88 class LayoutTextControlInnerBlock : public RenderBlockFlow {
89 public: 89 public:
90 RenderTextControlInnerBlock(Element* element) : RenderBlockFlow(element) { } 90 LayoutTextControlInnerBlock(Element* element) : RenderBlockFlow(element) { }
91 virtual int inlineBlockBaseline(LineDirectionMode direction) const override { return lastLineBoxBaseline(direction); } 91 virtual int inlineBlockBaseline(LineDirectionMode direction) const override { return lastLineBoxBaseline(direction); }
92 92
93 private: 93 private:
94 virtual bool isIntristicallyScrollable(ScrollbarOrientation orientation) con st override 94 virtual bool isIntristicallyScrollable(ScrollbarOrientation orientation) con st override
95 { 95 {
96 return orientation == HorizontalScrollbar; 96 return orientation == HorizontalScrollbar;
97 } 97 }
98 virtual bool scrollsOverflowX() const override { return hasOverflowClip(); } 98 virtual bool scrollsOverflowX() const override { return hasOverflowClip(); }
99 virtual bool scrollsOverflowY() const override { return false; } 99 virtual bool scrollsOverflowY() const override { return false; }
100 virtual bool hasLineIfEmpty() const override { return true; } 100 virtual bool hasLineIfEmpty() const override { return true; }
101 }; 101 };
102 102
103 } 103 }
104 104
105 #endif 105 #endif
OLDNEW
« no previous file with comments | « Source/core/layout/LayoutTextControlMultiLine.cpp ('k') | Source/core/layout/LayoutTextControlSingleLine.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698