OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007, 2008 Apple 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 | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 | 54 |
55 bool isLineBreak() const { return m_inputType == TextEventInputLineBreak
; } | 55 bool isLineBreak() const { return m_inputType == TextEventInputLineBreak
; } |
56 bool isComposition() const { return m_inputType == TextEventInputComposi
tion; } | 56 bool isComposition() const { return m_inputType == TextEventInputComposi
tion; } |
57 bool isPaste() const { return m_inputType == TextEventInputPaste; } | 57 bool isPaste() const { return m_inputType == TextEventInputPaste; } |
58 bool isDrop() const { return m_inputType == TextEventInputDrop; } | 58 bool isDrop() const { return m_inputType == TextEventInputDrop; } |
59 | 59 |
60 bool shouldSmartReplace() const { return m_shouldSmartReplace; } | 60 bool shouldSmartReplace() const { return m_shouldSmartReplace; } |
61 bool shouldMatchStyle() const { return m_shouldMatchStyle; } | 61 bool shouldMatchStyle() const { return m_shouldMatchStyle; } |
62 DocumentFragment* pastingFragment() const { return m_pastingFragment.get
(); } | 62 DocumentFragment* pastingFragment() const { return m_pastingFragment.get
(); } |
63 | 63 |
| 64 virtual void trace(Visitor*) OVERRIDE; |
| 65 |
64 private: | 66 private: |
65 TextEvent(); | 67 TextEvent(); |
66 | 68 |
67 TextEvent(PassRefPtr<AbstractView>, const String& data, TextEventInputTy
pe = TextEventInputKeyboard); | 69 TextEvent(PassRefPtr<AbstractView>, const String& data, TextEventInputTy
pe = TextEventInputKeyboard); |
68 TextEvent(PassRefPtr<AbstractView>, const String& data, PassRefPtr<Docum
entFragment>, | 70 TextEvent(PassRefPtr<AbstractView>, const String& data, PassRefPtr<Docum
entFragment>, |
69 bool shouldSmartReplace, bool shouldMatchStyle); | 71 bool shouldSmartReplace, bool shouldMatchStyle); |
70 | 72 |
71 TextEventInputType m_inputType; | 73 TextEventInputType m_inputType; |
72 String m_data; | 74 String m_data; |
73 | 75 |
74 RefPtr<DocumentFragment> m_pastingFragment; | 76 RefPtr<DocumentFragment> m_pastingFragment; |
75 bool m_shouldSmartReplace; | 77 bool m_shouldSmartReplace; |
76 bool m_shouldMatchStyle; | 78 bool m_shouldMatchStyle; |
77 }; | 79 }; |
78 | 80 |
79 inline bool isTextEvent(const Event& event) | 81 inline bool isTextEvent(const Event& event) |
80 { | 82 { |
81 return event.type() == EventTypeNames::textInput && event.hasInterface(Event
Names::TextEvent); | 83 return event.type() == EventTypeNames::textInput && event.hasInterface(Event
Names::TextEvent); |
82 } | 84 } |
83 | 85 |
84 DEFINE_TYPE_CASTS(TextEvent, Event, event, isTextEvent(*event), isTextEvent(even
t)); | 86 DEFINE_TYPE_CASTS(TextEvent, Event, event, isTextEvent(*event), isTextEvent(even
t)); |
85 | 87 |
86 } // namespace WebCore | 88 } // namespace WebCore |
87 | 89 |
88 #endif // TextEvent_h | 90 #endif // TextEvent_h |
OLD | NEW |