OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 13 matching lines...) Expand all Loading... |
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 */ | 29 */ |
30 | 30 |
31 #include "config.h" | 31 #include "config.h" |
32 #include "core/html/ime/Composition.h" | 32 #include "core/html/ime/Composition.h" |
33 | 33 |
| 34 #include "core/html/ime/InputMethodContext.h" |
| 35 |
34 namespace WebCore { | 36 namespace WebCore { |
35 | 37 |
36 Composition::~Composition() | 38 Composition::~Composition() |
37 { | 39 { |
38 } | 40 } |
39 | 41 |
40 PassRefPtr<Composition> Composition::create() | 42 PassRefPtr<Composition> Composition::create(InputMethodContext* context) |
41 { | 43 { |
42 return adoptRef(new Composition()); | 44 return adoptRef(new Composition(context)); |
43 } | 45 } |
44 | 46 |
45 Composition::Composition() | 47 Composition::Composition(InputMethodContext* context) |
46 : m_selectionStart(0) | 48 : m_inputMethodContext(context) |
47 , m_selectionEnd(0) | |
48 { | 49 { |
49 ScriptWrappable::init(this); | 50 ScriptWrappable::init(this); |
50 } | 51 } |
51 | 52 |
| 53 String Composition::text() const |
| 54 { |
| 55 return m_inputMethodContext->compositionText(); |
| 56 } |
| 57 |
| 58 int Composition::selectionStart() const |
| 59 { |
| 60 return m_inputMethodContext->selectionStart(); |
| 61 } |
| 62 |
| 63 int Composition::selectionEnd() const |
| 64 { |
| 65 return m_inputMethodContext->selectionEnd(); |
| 66 } |
| 67 |
52 const Vector<unsigned>& Composition::getSegments() const | 68 const Vector<unsigned>& Composition::getSegments() const |
53 { | 69 { |
54 return m_segments; | 70 return m_inputMethodContext->segments(); |
55 } | 71 } |
56 | 72 |
57 } // namespace WebCore | 73 } // namespace WebCore |
OLD | NEW |