1 /* 2 * Copyright (C) 2003 Apple Computer, Inc. 3 * 4 * Portions are Copyright (C) 1998 Netscape Communications Corporation. 5 * 6 * Other contributors: 7 * Robert O'Callahan <roc+@cs.cmu.edu> 8 * David Baron <dbaron@fas.harvard.edu> 9 * Christian Biesinger <cbiesinger@web.de> 10 * Randall Jesup <rjesup@wgate.com> 11 * Roland Mainz <roland.mainz@informatik.med.uni-giessen.de> 12 * Josh Soref <timeless@mac.com> 13 * Boris Zbarsky <bzbarsky@mit.edu> 14 * 15 * This library is free software; you can redistribute it and/or 16 * modify it under the terms of the GNU Lesser General Public 17 * License as published by the Free Software Foundation; either 18 * version 2.1 of the License, or (at your option) any later version. 19 * 20 * This library is distributed in the hope that it will be useful, 21 * but WITHOUT ANY WARRANTY; without even the implied warranty of 22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 23 * Lesser General Public License for more details. 24 * 25 * You should have received a copy of the GNU Lesser General Public 26 * License along with this library; if not, write to the Free Software 27 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 28 * 29 * Alternatively, the contents of this file may be used under the terms 30 * of either the Mozilla Public License Version 1.1, found at 31 * http://www.mozilla.org/MPL/ (the "MPL") or the GNU General Public 32 * License Version 2.0, found at http://www.fsf.org/copyleft/gpl.html 33 * (the "GPL"), in which case the provisions of the MPL or the GPL are 34 * applicable instead of those above. If you wish to allow use of your 35 * version of this file only under the terms of one of those two 36 * licenses (the MPL or the GPL) and not to allow others to use your 37 * version of this file under the LGPL, indicate your decision by 38 * deletingthe provisions above and replace them with the notice and 39 * other provisions required by the MPL or the GPL, as the case may be. 40 * If you do not delete the provisions above, a recipient may use your 41 * version of this file under any of the LGPL, the MPL or the GPL. 42 */ 43 44 #ifndef RenderMarquee_h 45 #define RenderMarquee_h 46 47 #include "core/html/HTMLMarqueeElement.h" 48 #include "core/rendering/RenderBlockFlow.h" 49 #include "core/rendering/style/RenderStyleConstants.h" 50 #include "platform/Length.h" 51 #include "platform/Timer.h" 52 53 namespace WebCore { 54 55 class RenderLayer; 56 57 // This class handles the auto-scrolling for <marquee> 58 class RenderMarquee FINAL : public RenderBlockFlow { 59 public: 60 explicit RenderMarquee(HTMLMarqueeElement*); 61 virtual ~RenderMarquee(); 62 speed()63 int speed() const { return m_speed; } 64 int marqueeSpeed() const; 65 reverseDirection()66 EMarqueeDirection reverseDirection() const { return static_cast<EMarqueeDirection>(-direction()); } 67 EMarqueeDirection direction() const; 68 69 bool isHorizontal() const; 70 71 int computePosition(EMarqueeDirection, bool stopAtClientEdge); 72 setEnd(int end)73 void setEnd(int end) { m_end = end; } 74 75 void start(); 76 void suspend(); 77 void stop(); 78 79 // FIXME: This function should be private and called at layout time. 80 // However <marquee> tests are very timing dependent so we need to keep the existing timing. 81 void updateMarqueePosition(); 82 83 void timerFired(); 84 85 private: 86 virtual const char* renderName() const OVERRIDE FINAL; 87 isMarquee()88 virtual bool isMarquee() const OVERRIDE FINAL { return true; } 89 90 virtual void styleDidChange(StyleDifference, const RenderStyle* oldStyle) OVERRIDE FINAL; 91 92 virtual void layoutBlock(bool relayoutChildren, LayoutUnit pageLogicalHeight = 0) OVERRIDE FINAL; 93 supportsPartialLayout()94 virtual bool supportsPartialLayout() const OVERRIDE { return false; } 95 96 int m_currentLoop; 97 int m_totalLoops; 98 Timer<HTMLMarqueeElement> m_timer; 99 int m_start; 100 int m_end; 101 int m_speed; 102 Length m_height; 103 bool m_reset: 1; 104 bool m_suspended : 1; 105 bool m_stopped : 1; 106 EMarqueeDirection m_direction : 4; 107 }; 108 109 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderMarquee, isMarquee()); 110 111 } // namespace WebCore 112 113 #endif // RenderMarquee_h 114