OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
4 * (C) 2000 Dirk Mueller (mueller@kde.org) | 4 * (C) 2000 Dirk Mueller (mueller@kde.org) |
5 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Apple Inc. All rights reserved. | 5 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Apple Inc. All rights reserved. |
6 * | 6 * |
7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
(...skipping 15 matching lines...) Expand all Loading... |
26 | 26 |
27 #include "core/html/HTMLTextFormControlElement.h" | 27 #include "core/html/HTMLTextFormControlElement.h" |
28 | 28 |
29 namespace blink { | 29 namespace blink { |
30 | 30 |
31 class BeforeTextInsertedEvent; | 31 class BeforeTextInsertedEvent; |
32 class ExceptionState; | 32 class ExceptionState; |
33 class VisibleSelection; | 33 class VisibleSelection; |
34 | 34 |
35 class HTMLTextAreaElement FINAL : public HTMLTextFormControlElement { | 35 class HTMLTextAreaElement FINAL : public HTMLTextFormControlElement { |
| 36 DEFINE_WRAPPERTYPEINFO(); |
36 public: | 37 public: |
37 static PassRefPtrWillBeRawPtr<HTMLTextAreaElement> create(Document&, HTMLFor
mElement*); | 38 static PassRefPtrWillBeRawPtr<HTMLTextAreaElement> create(Document&, HTMLFor
mElement*); |
38 | 39 |
39 int cols() const { return m_cols; } | 40 int cols() const { return m_cols; } |
40 int rows() const { return m_rows; } | 41 int rows() const { return m_rows; } |
41 | 42 |
42 bool shouldWrapText() const { return m_wrap != NoWrap; } | 43 bool shouldWrapText() const { return m_wrap != NoWrap; } |
43 | 44 |
44 virtual String value() const OVERRIDE; | 45 virtual String value() const OVERRIDE; |
45 void setValue(const String&, TextFieldEventBehavior = DispatchNoEvent); | 46 void setValue(const String&, TextFieldEventBehavior = DispatchNoEvent); |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 | 126 |
126 int m_rows; | 127 int m_rows; |
127 int m_cols; | 128 int m_cols; |
128 WrapMethod m_wrap; | 129 WrapMethod m_wrap; |
129 mutable String m_value; | 130 mutable String m_value; |
130 mutable bool m_isDirty; | 131 mutable bool m_isDirty; |
131 bool m_valueIsUpToDate; | 132 bool m_valueIsUpToDate; |
132 String m_suggestedValue; | 133 String m_suggestedValue; |
133 }; | 134 }; |
134 | 135 |
135 } //namespace | 136 } // namespace blink |
136 | 137 |
137 #endif | 138 #endif // HTMLTextAreaElement_h |
OLD | NEW |