OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org> | 2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org> |
3 * 1999-2001 Lars Knoll <knoll@kde.org> | 3 * 1999-2001 Lars Knoll <knoll@kde.org> |
4 * 1999-2001 Antti Koivisto <koivisto@kde.org> | 4 * 1999-2001 Antti Koivisto <koivisto@kde.org> |
5 * 2000-2001 Simon Hausmann <hausmann@kde.org> | 5 * 2000-2001 Simon Hausmann <hausmann@kde.org> |
6 * 2000-2001 Dirk Mueller <mueller@kde.org> | 6 * 2000-2001 Dirk Mueller <mueller@kde.org> |
7 * 2000 Stefan Schimanski <1Stein@gmx.de> | 7 * 2000 Stefan Schimanski <1Stein@gmx.de> |
8 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
reserved. | 8 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
reserved. |
9 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) | 9 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) |
10 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> | 10 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 class VisiblePosition; | 67 class VisiblePosition; |
68 class Widget; | 68 class Widget; |
69 | 69 |
70 class Frame : public RefCounted<Frame> { | 70 class Frame : public RefCounted<Frame> { |
71 public: | 71 public: |
72 static PassRefPtr<Frame> create(Page*, HTMLFrameOwnerElement*, FrameLoad
erClient*); | 72 static PassRefPtr<Frame> create(Page*, HTMLFrameOwnerElement*, FrameLoad
erClient*); |
73 | 73 |
74 void init(); | 74 void init(); |
75 void setView(PassRefPtr<FrameView>); | 75 void setView(PassRefPtr<FrameView>); |
76 void createView(const IntSize&, const Color&, bool, | 76 void createView(const IntSize&, const Color&, bool, |
77 const IntSize& fixedLayoutSize = IntSize(), bool useFixedLayout = fa
lse, ScrollbarMode = ScrollbarAuto, bool horizontalLock = false, | 77 ScrollbarMode = ScrollbarAuto, bool horizontalLock = false, |
78 ScrollbarMode = ScrollbarAuto, bool verticalLock = false); | 78 ScrollbarMode = ScrollbarAuto, bool verticalLock = false); |
79 | 79 |
80 ~Frame(); | 80 ~Frame(); |
81 | 81 |
82 void addDestructionObserver(FrameDestructionObserver*); | 82 void addDestructionObserver(FrameDestructionObserver*); |
83 void removeDestructionObserver(FrameDestructionObserver*); | 83 void removeDestructionObserver(FrameDestructionObserver*); |
84 | 84 |
85 void willDetachPage(); | 85 void willDetachPage(); |
86 void detachFromPage(); | 86 void detachFromPage(); |
87 void disconnectOwnerElement(); | 87 void disconnectOwnerElement(); |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
275 } | 275 } |
276 | 276 |
277 inline EventHandler* Frame::eventHandler() const | 277 inline EventHandler* Frame::eventHandler() const |
278 { | 278 { |
279 return m_eventHandler.get(); | 279 return m_eventHandler.get(); |
280 } | 280 } |
281 | 281 |
282 } // namespace WebCore | 282 } // namespace WebCore |
283 | 283 |
284 #endif // Frame_h | 284 #endif // Frame_h |
OLD | NEW |