Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / rendering / RenderListBox.cpp
1 /*
2  * Copyright (C) 2006, 2007, 2008, 2011 Apple Inc. All rights reserved.
3  *               2009 Torch Mobile Inc. All rights reserved. (http://www.torchmobile.com/)
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1.  Redistributions of source code must retain the above copyright
10  *     notice, this list of conditions and the following disclaimer.
11  * 2.  Redistributions in binary form must reproduce the above copyright
12  *     notice, this list of conditions and the following disclaimer in the
13  *     documentation and/or other materials provided with the distribution.
14  * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
15  *     its contributors may be used to endorse or promote products derived
16  *     from this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
19  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21  * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
22  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
25  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29
30 #include "config.h"
31 #include "core/rendering/RenderListBox.h"
32
33 #include "core/HTMLNames.h"
34 #include "core/accessibility/AXObjectCache.h"
35 #include "core/css/CSSFontSelector.h"
36 #include "core/css/resolver/StyleResolver.h"
37 #include "core/dom/Document.h"
38 #include "core/dom/NodeRenderStyle.h"
39 #include "core/dom/StyleEngine.h"
40 #include "core/editing/FrameSelection.h"
41 #include "core/frame/FrameView.h"
42 #include "core/frame/LocalFrame.h"
43 #include "core/html/HTMLOptGroupElement.h"
44 #include "core/html/HTMLOptionElement.h"
45 #include "core/html/HTMLSelectElement.h"
46 #include "core/page/EventHandler.h"
47 #include "core/page/FocusController.h"
48 #include "core/page/Page.h"
49 #include "core/page/SpatialNavigation.h"
50 #include "core/rendering/HitTestResult.h"
51 #include "core/rendering/PaintInfo.h"
52 #include "core/rendering/RenderScrollbar.h"
53 #include "core/rendering/RenderText.h"
54 #include "core/rendering/RenderTheme.h"
55 #include "core/rendering/RenderView.h"
56 #include "core/rendering/TextRunConstructor.h"
57 #include "platform/fonts/FontCache.h"
58 #include "platform/graphics/GraphicsContext.h"
59 #include "platform/scroll/Scrollbar.h"
60 #include "platform/text/BidiTextRun.h"
61 #include <math.h>
62
63 namespace blink {
64
65 using namespace HTMLNames;
66
67 // Default size when the multiple attribute is present but size attribute is absent.
68 const int defaultSize = 4;
69
70 const int defaultPaddingBottom = 1;
71
72 RenderListBox::RenderListBox(Element* element)
73     : RenderBlockFlow(element)
74 {
75     ASSERT(element);
76     ASSERT(element->isHTMLElement());
77     ASSERT(isHTMLSelectElement(element));
78 }
79
80 RenderListBox::~RenderListBox()
81 {
82 }
83
84 inline HTMLSelectElement* RenderListBox::selectElement() const
85 {
86     return toHTMLSelectElement(node());
87 }
88
89 int RenderListBox::size() const
90 {
91     int specifiedSize = selectElement()->size();
92     if (specifiedSize >= 1)
93         return specifiedSize;
94
95     return defaultSize;
96 }
97
98 LayoutUnit RenderListBox::defaultItemHeight() const
99 {
100     return style()->fontMetrics().height() + defaultPaddingBottom;
101 }
102
103 LayoutUnit RenderListBox::itemHeight() const
104 {
105     HTMLSelectElement* select = selectElement();
106     if (!select)
107         return 0;
108     RenderObject* baseItemRenderer = firstChild();
109     if (!baseItemRenderer)
110         return defaultItemHeight();
111     if (baseItemRenderer->node() && isHTMLOptGroupElement(baseItemRenderer->node()))
112         baseItemRenderer = baseItemRenderer->slowFirstChild();
113     if (!baseItemRenderer || !baseItemRenderer->isBox())
114         return defaultItemHeight();
115     return toRenderBox(baseItemRenderer)->height();
116 }
117
118 void RenderListBox::computeLogicalHeight(LayoutUnit, LayoutUnit logicalTop, LogicalExtentComputedValues& computedValues) const
119 {
120     LayoutUnit height = itemHeight() * size();
121     // FIXME: The item height should have been added before updateLogicalHeight was called to avoid this hack.
122     updateIntrinsicContentLogicalHeight(height);
123
124     height += borderAndPaddingHeight();
125
126     RenderBox::computeLogicalHeight(height, logicalTop, computedValues);
127 }
128
129 void RenderListBox::stopAutoscroll()
130 {
131     HTMLSelectElement* select = selectElement();
132     if (select->isDisabledFormControl())
133         return;
134     select->handleMouseRelease();
135 }
136
137 void RenderListBox::computeIntrinsicLogicalWidths(LayoutUnit& minLogicalWidth, LayoutUnit& maxLogicalWidth) const
138 {
139     RenderBlockFlow::computeIntrinsicLogicalWidths(minLogicalWidth, maxLogicalWidth);
140     if (style()->width().isPercent())
141         minLogicalWidth = 0;
142 }
143
144 } // namespace blink