1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/
10 * Software distributed under the License is distributed on an "AS IS" basis,
11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 * for the specific language governing rights and limitations under the
15 * The Original Code is mozilla.org code.
17 * The Initial Developer of the Original Code is
18 * Netscape Communications Corporation.
19 * Portions created by the Initial Developer are Copyright (C) 1998
20 * the Initial Developer. All Rights Reserved.
24 * Alternatively, the contents of this file may be used under the terms of
25 * either of the GNU General Public License Version 2 or later (the "GPL"),
26 * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 * in which case the provisions of the GPL or the LGPL are applicable instead
28 * of those above. If you wish to allow use of your version of this file only
29 * under the terms of either the GPL or the LGPL, and not to allow others to
30 * use your version of this file under the terms of the MPL, indicate your
31 * decision by deleting the provisions above and replace them with the notice
32 * and other provisions required by the GPL or the LGPL. If you do not delete
33 * the provisions above, a recipient may use your version of this file under
34 * the terms of any one of the MPL, the GPL or the LGPL.
36 * ***** END LICENSE BLOCK ***** */
39 * interface for rendering objects that wrap rendering objects that should
43 #ifndef nsIScrollFrame_h___
44 #define nsIScrollFrame_h___
46 #include "nsISupports.h"
48 #include "nsIViewManager.h"
49 #include "nsIScrollableViewProvider.h"
50 #include "nsPresContext.h"
51 #include "nsIFrame.h" // to get nsIBox, which is a typedef
53 class nsBoxLayoutState
;
55 // IID for the nsIScrollableFrame interface
56 #define NS_ISCROLLABLE_FRAME_IID \
57 { 0xf285c180, 0x8492, 0x48d5, \
58 { 0xb1, 0xb5, 0x03, 0x28, 0x21, 0xc9, 0x72, 0x02 } }
60 class nsIScrollableFrame
: public nsIScrollableViewProvider
{
63 NS_DECLARE_STATIC_IID_ACCESSOR(NS_ISCROLLABLE_FRAME_IID
)
66 * Get the frame that we are scrolling within the scrollable frame.
69 virtual nsIFrame
* GetScrolledFrame() const = 0;
71 typedef nsPresContext::ScrollbarStyles ScrollbarStyles
;
73 virtual ScrollbarStyles
GetScrollbarStyles() const = 0;
76 * Return the actual sizes of all possible scrollbars. Returns 0 for scrollbar
77 * positions that don't have a scrollbar or where the scrollbar is not visible.
78 * Do not call this while this frame's descendants are being reflowed, it won't be
81 virtual nsMargin
GetActualScrollbarSizes() const = 0;
84 * Return the sizes of all scrollbars assuming that any scrollbars that could
85 * be visible due to overflowing content, are.
87 virtual nsMargin
GetDesiredScrollbarSizes(nsBoxLayoutState
* aState
) = 0;
88 virtual nsMargin
GetDesiredScrollbarSizes(nsPresContext
* aPresContext
,
89 nsIRenderingContext
* aRC
) = 0;
92 * Get the position of the scrolled view.
94 virtual nsPoint
GetScrollPosition() const = 0;
97 * Scroll the view to the given x,y, update's the scrollbar's thumb
98 * positions and the view's offset. Clamps the values to be
99 * legal. Updates the display based on aUpdateFlags.
100 * @param aX left edge to scroll to
101 * @param aY top edge to scroll to
102 * @param aUpdateFlags passed onto nsIViewManager->UpdateView()
103 * @return error status
105 virtual void ScrollTo(nsPoint aScrollPosition
, PRUint32 aFlags
= NS_VMREFRESH_NO_SYNC
)=0;
107 virtual nsIScrollableView
* GetScrollableView() = 0;
110 * Set information about whether the vertical and horizontal scrollbars
111 * are currently visible
113 virtual void SetScrollbarVisibility(PRBool aVerticalVisible
, PRBool aHorizontalVisible
) = 0;
115 virtual nsIBox
* GetScrollbarBox(PRBool aVertical
) = 0;
117 virtual void CurPosAttributeChanged(nsIContent
* aChild
, PRInt32 aModType
) = 0;
120 * This tells the scroll frame to try scrolling to the scroll
121 * position that was restored from the history. This must be called
122 * at least once after state has been restored. It is called by the
123 * scrolled frame itself during reflow, but sometimes state can be
124 * restored after reflows are done...
126 virtual void ScrollToRestoredPosition() = 0;
129 NS_DEFINE_STATIC_IID_ACCESSOR(nsIScrollableFrame
, NS_ISCROLLABLE_FRAME_IID
)