1998-04-14 00:24:54 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Netscape Public License
|
|
|
|
* Version 1.0 (the "NPL"); you may not use this file except in
|
|
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
|
|
* http://www.mozilla.org/NPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* NPL.
|
|
|
|
*
|
|
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
|
|
* Communications Corporation. Portions created by Netscape are
|
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
|
|
* Reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef nsIScrollableView_h___
|
|
|
|
#define nsIScrollableView_h___
|
|
|
|
|
|
|
|
#include "nsISupports.h"
|
1998-05-23 00:11:42 +04:00
|
|
|
#include "nsCoord.h"
|
1998-06-21 05:23:44 +04:00
|
|
|
#include "nsIViewManager.h"
|
1998-05-12 02:58:44 +04:00
|
|
|
class nsIView;
|
1998-04-14 00:24:54 +04:00
|
|
|
|
1998-06-23 04:53:56 +04:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
nsScrollPreference_kAuto = 0,
|
|
|
|
nsScrollPreference_kNeverScroll,
|
|
|
|
nsScrollPreference_kAlwaysScroll
|
|
|
|
} nsScrollPreference;
|
|
|
|
|
1998-10-19 20:57:27 +04:00
|
|
|
// IID for the nsIScrollableView interface
|
1998-04-14 00:24:54 +04:00
|
|
|
#define NS_ISCROLLABLEVIEW_IID \
|
|
|
|
{ 0xc95f1830, 0xc376, 0x11d1, \
|
|
|
|
{ 0xb7, 0x21, 0x0, 0x60, 0x8, 0x91, 0xd8, 0xc9 } }
|
|
|
|
|
1998-10-19 20:57:27 +04:00
|
|
|
/**
|
|
|
|
* A scrolling view allows an arbitrary view that you supply to be scrolled
|
|
|
|
* vertically or horizontally (or both). The scrolling view creates and
|
|
|
|
* manages the scrollbars.
|
|
|
|
*
|
|
|
|
* You must use SetScrolledView() to specify the view that is to be scrolled,
|
|
|
|
* because the scrolled view is made a child of the clip view (an internal
|
|
|
|
* child view created by the scrolling view).
|
|
|
|
*
|
|
|
|
* XXX Rename this class nsIScrollingView
|
|
|
|
*/
|
1998-04-14 00:24:54 +04:00
|
|
|
class nsIScrollableView : public nsISupports
|
|
|
|
{
|
|
|
|
public:
|
1999-06-25 02:40:53 +04:00
|
|
|
|
|
|
|
static const nsIID& GetIID() { static nsIID iid = NS_ISCROLLABLEVIEW_IID; return iid; }
|
|
|
|
|
1998-11-04 07:14:10 +03:00
|
|
|
/**
|
|
|
|
* Create the controls used to allow scrolling. Call this method
|
|
|
|
* before anything else is done with the scrollable view.
|
|
|
|
* @param aNative native widget to use as parent for control widgets
|
|
|
|
* @return error status
|
|
|
|
*/
|
|
|
|
NS_IMETHOD CreateScrollControls(nsNativeWidget aNative = nsnull) = 0;
|
|
|
|
|
1998-04-16 00:25:02 +04:00
|
|
|
/**
|
1999-03-19 00:04:00 +03:00
|
|
|
* Compute the values for the scroll bars and adjust the position
|
|
|
|
* of the scrolled view as necessary.
|
|
|
|
* @param aAdjustWidgets if any widgets that are children of the
|
|
|
|
* scrolled view should be repositioned after rethinking
|
|
|
|
* the scroll parameters, set this ot PR_TRUE. in general
|
|
|
|
* this should be true unless you intended to vists the
|
|
|
|
* child widgets manually.
|
|
|
|
* @return error status
|
1998-04-16 00:25:02 +04:00
|
|
|
*/
|
1999-03-19 00:04:00 +03:00
|
|
|
NS_IMETHOD ComputeScrollOffsets(PRBool aAdjustWidgets = PR_TRUE) = 0;
|
1998-04-16 00:25:02 +04:00
|
|
|
|
|
|
|
/**
|
1998-05-08 03:07:10 +04:00
|
|
|
* Get the dimensions of the container
|
|
|
|
* @param aWidth return value for width of container
|
|
|
|
* @param aHeight return value for height of container
|
1998-04-16 00:25:02 +04:00
|
|
|
*/
|
1998-10-21 20:07:55 +04:00
|
|
|
NS_IMETHOD GetContainerSize(nscoord *aWidth, nscoord *aHeight) const = 0;
|
1998-04-14 00:24:54 +04:00
|
|
|
|
1998-04-16 00:25:02 +04:00
|
|
|
/**
|
1998-10-19 20:57:27 +04:00
|
|
|
* Set the view that we are scrolling within the scrolling view.
|
1998-04-16 00:25:02 +04:00
|
|
|
*/
|
1998-10-19 04:44:28 +04:00
|
|
|
NS_IMETHOD SetScrolledView(nsIView *aScrolledView) = 0;
|
1998-04-24 01:51:43 +04:00
|
|
|
|
|
|
|
/**
|
1998-10-19 20:57:27 +04:00
|
|
|
* Get the view that we are scrolling within the scrolling view.
|
1998-04-24 01:51:43 +04:00
|
|
|
* @result child view
|
|
|
|
*/
|
1998-10-21 20:07:55 +04:00
|
|
|
NS_IMETHOD GetScrolledView(nsIView *&aScrolledView) const = 0;
|
1998-10-19 20:57:27 +04:00
|
|
|
|
1998-06-21 05:23:44 +04:00
|
|
|
/**
|
|
|
|
* Select whether quality level should be displayed in view frame
|
|
|
|
* @param aShow if PR_TRUE, quality level will be displayed, else hidden
|
|
|
|
*/
|
1998-08-30 23:16:11 +04:00
|
|
|
NS_IMETHOD ShowQuality(PRBool aShow) = 0;
|
1998-06-21 05:23:44 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Query whether quality level should be displayed in view frame
|
|
|
|
* @return if PR_TRUE, quality level will be displayed, else hidden
|
|
|
|
*/
|
1998-10-21 20:07:55 +04:00
|
|
|
NS_IMETHOD GetShowQuality(PRBool &aShow) const = 0;
|
1998-06-21 05:23:44 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Select whether quality level should be displayed in view frame
|
|
|
|
* @param aShow if PR_TRUE, quality level will be displayed, else hidden
|
|
|
|
*/
|
1998-08-30 23:16:11 +04:00
|
|
|
NS_IMETHOD SetQuality(nsContentQuality aQuality) = 0;
|
1998-06-23 04:53:56 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Select whether scroll bars should be displayed all the time, never or
|
|
|
|
* only when necessary.
|
|
|
|
* @param aPref desired scrollbar selection
|
|
|
|
*/
|
1998-08-30 23:16:11 +04:00
|
|
|
NS_IMETHOD SetScrollPreference(nsScrollPreference aPref) = 0;
|
1998-06-23 04:53:56 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Query whether scroll bars should be displayed all the time, never or
|
|
|
|
* only when necessary.
|
|
|
|
* @return current scrollbar selection
|
|
|
|
*/
|
1998-10-21 20:07:55 +04:00
|
|
|
NS_IMETHOD GetScrollPreference(nsScrollPreference& aScrollPreference) const = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the position of the scrolled view.
|
|
|
|
*/
|
|
|
|
NS_IMETHOD GetScrollPosition(nscoord &aX, nscoord& aY) const = 0;
|
1998-07-23 03:39:23 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Scroll the view to the given x,y, update's the scrollbar's thumb
|
|
|
|
* positions and the view's offset. Clamps the values to be
|
|
|
|
* legal. Updates the display based on aUpdateFlags.
|
1998-07-25 01:05:50 +04:00
|
|
|
* @param aX left edge to scroll to
|
|
|
|
* @param aY top edge to scroll to
|
|
|
|
* @param aUpdateFlags passed onto nsIViewManager->UpdateView()
|
|
|
|
* @return error status
|
1998-07-23 03:39:23 +04:00
|
|
|
*/
|
|
|
|
NS_IMETHOD ScrollTo(nscoord aX, nscoord aY, PRUint32 aUpdateFlags) = 0;
|
1998-07-25 01:05:50 +04:00
|
|
|
|
1998-07-28 01:30:14 +04:00
|
|
|
/**
|
1998-10-21 20:07:55 +04:00
|
|
|
* Set the amount to inset when positioning the scrollbars and clip view
|
|
|
|
*/
|
|
|
|
NS_IMETHOD SetControlInsets(const nsMargin &aInsets) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the amount to inset when positioning the scrollbars and clip view
|
1998-07-28 01:30:14 +04:00
|
|
|
*/
|
1998-10-21 20:07:55 +04:00
|
|
|
NS_IMETHOD GetControlInsets(nsMargin &aInsets) const = 0;
|
1998-08-08 08:23:33 +04:00
|
|
|
|
1999-02-03 07:25:31 +03:00
|
|
|
/**
|
|
|
|
* Get information about whether the vertical and horizontal scrollbars
|
|
|
|
* are currently visible
|
|
|
|
*/
|
|
|
|
NS_IMETHOD GetScrollbarVisibility(PRBool *aVerticalVisible,
|
|
|
|
PRBool *aHorizontalVisible) const = 0;
|
|
|
|
|
1999-03-10 01:10:31 +03:00
|
|
|
/**
|
|
|
|
* Set the properties describing how scrolling can be performed
|
|
|
|
* in this scrollable.
|
|
|
|
* @param aProperties new properties
|
|
|
|
* @return error status
|
|
|
|
*/
|
|
|
|
NS_IMETHOD SetScrollProperties(PRUint32 aProperties) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the properties describing how scrolling can be performed
|
|
|
|
* in this scrollable.
|
|
|
|
* @param aProperties out parameter for current properties
|
|
|
|
* @return error status
|
|
|
|
*/
|
|
|
|
NS_IMETHOD GetScrollProperties(PRUint32 *aProperties) = 0;
|
|
|
|
|
1999-03-20 04:25:37 +03:00
|
|
|
/**
|
|
|
|
* Set the height of a line used for line scrolling.
|
|
|
|
* @param aHeight new line height in app units. the default
|
|
|
|
* height is 12 points.
|
|
|
|
* @return error status
|
|
|
|
*/
|
|
|
|
NS_IMETHOD SetLineHeight(nscoord aHeight) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the height of a line used for line scrolling.
|
|
|
|
* @param aHeight out parameter for line height
|
|
|
|
* @return error status
|
|
|
|
*/
|
|
|
|
NS_IMETHOD GetLineHeight(nscoord *aHeight) = 0;
|
|
|
|
|
1999-03-20 03:11:35 +03:00
|
|
|
/**
|
|
|
|
* Scroll the view up or down by aNumLines lines. positive
|
|
|
|
* values move down in the view. Prevents scrolling off the
|
|
|
|
* end of the view.
|
|
|
|
* @param aNumLines number of lines to scroll the view by
|
|
|
|
* @return error status
|
|
|
|
*/
|
|
|
|
NS_IMETHOD ScrollByLines(PRInt32 aNumLines) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Scroll the view up or down by aNumPages pages. a page
|
|
|
|
* is considered to be the amount displayed by the clip view.
|
|
|
|
* positive values move down in the view. Prevents scrolling
|
|
|
|
* off the end of the view.
|
|
|
|
* @param aNumPage number of pages to scroll the view by
|
|
|
|
* @return error status
|
|
|
|
*/
|
|
|
|
NS_IMETHOD ScrollByPages(PRInt32 aNumPages) = 0;
|
|
|
|
|
1999-04-24 06:52:58 +04:00
|
|
|
/**
|
|
|
|
* Returns the clip view
|
|
|
|
*/
|
|
|
|
NS_IMETHOD GetClipView(const nsIView** aClipView) const = 0;
|
1998-04-14 00:24:54 +04:00
|
|
|
};
|
|
|
|
|
1999-03-10 01:10:31 +03:00
|
|
|
//regardless of the transparency or opacity settings
|
|
|
|
//for this view, it can always be scrolled via a blit
|
|
|
|
#define NS_SCROLL_PROPERTY_ALWAYS_BLIT 0x0001
|
|
|
|
|
|
|
|
//regardless of the transparency or opacity settings
|
|
|
|
//for this view, it can never be scrolled via a blit
|
|
|
|
#define NS_SCROLL_PROPERTY_NEVER_BLIT 0x0002
|
|
|
|
|
1998-04-14 00:24:54 +04:00
|
|
|
#endif
|