| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
reserved. | 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 void didMergeTextNodes(const Text& oldNode, unsigned offset); | 180 void didMergeTextNodes(const Text& oldNode, unsigned offset); |
| 181 void didSplitTextNode(const Text& oldNode); | 181 void didSplitTextNode(const Text& oldNode); |
| 182 | 182 |
| 183 bool isAppearanceDirty() const; | 183 bool isAppearanceDirty() const; |
| 184 void commitAppearanceIfNeeded(LayoutView&); | 184 void commitAppearanceIfNeeded(LayoutView&); |
| 185 void updateAppearance(); | 185 void updateAppearance(); |
| 186 void setCaretVisible(bool caretIsVisible); | 186 void setCaretVisible(bool caretIsVisible); |
| 187 bool isCaretBoundsDirty() const; | 187 bool isCaretBoundsDirty() const; |
| 188 void setCaretRectNeedsUpdate(); | 188 void setCaretRectNeedsUpdate(); |
| 189 void scheduleVisualUpdate() const; | 189 void scheduleVisualUpdate() const; |
| 190 void invalidateCaretRect(); | 190 void invalidateCaretRect(bool forceInvalidation = false); |
| 191 void paintCaret(GraphicsContext&, const LayoutPoint&); | 191 void paintCaret(GraphicsContext&, const LayoutPoint&); |
| 192 | 192 |
| 193 // Used to suspend caret blinking while the mouse is down. | 193 // Used to suspend caret blinking while the mouse is down. |
| 194 void setCaretBlinkingSuspended(bool); | 194 void setCaretBlinkingSuspended(bool); |
| 195 bool isCaretBlinkingSuspended() const; | 195 bool isCaretBlinkingSuspended() const; |
| 196 | 196 |
| 197 // Focus | 197 // Focus |
| 198 void setFocused(bool); | 198 void setFocused(bool); |
| 199 bool isFocused() const { return m_focused; } | 199 bool isFocused() const { return m_focused; } |
| 200 bool isFocusedAndActive() const; | 200 bool isFocusedAndActive() const; |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 318 } | 318 } |
| 319 } // namespace blink | 319 } // namespace blink |
| 320 | 320 |
| 321 #ifndef NDEBUG | 321 #ifndef NDEBUG |
| 322 // Outside the WebCore namespace for ease of invocation from gdb. | 322 // Outside the WebCore namespace for ease of invocation from gdb. |
| 323 void showTree(const blink::FrameSelection&); | 323 void showTree(const blink::FrameSelection&); |
| 324 void showTree(const blink::FrameSelection*); | 324 void showTree(const blink::FrameSelection*); |
| 325 #endif | 325 #endif |
| 326 | 326 |
| 327 #endif // FrameSelection_h | 327 #endif // FrameSelection_h |
| OLD | NEW |