1998-04-13 20:24:54 +00: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-22 20:11:42 +00:00
|
|
|
#include "nsCoord.h"
|
1998-06-21 01:23:44 +00:00
|
|
|
#include "nsIViewManager.h"
|
1998-05-11 22:58:44 +00:00
|
|
|
class nsIView;
|
1998-04-13 20:24:54 +00:00
|
|
|
|
1998-06-23 00:53:56 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
nsScrollPreference_kAuto = 0,
|
|
|
|
nsScrollPreference_kNeverScroll,
|
|
|
|
nsScrollPreference_kAlwaysScroll
|
|
|
|
} nsScrollPreference;
|
|
|
|
|
1998-10-19 16:57:27 +00:00
|
|
|
// IID for the nsIScrollableView interface
|
1998-04-13 20:24:54 +00:00
|
|
|
#define NS_ISCROLLABLEVIEW_IID \
|
|
|
|
{ 0xc95f1830, 0xc376, 0x11d1, \
|
|
|
|
{ 0xb7, 0x21, 0x0, 0x60, 0x8, 0x91, 0xd8, 0xc9 } }
|
|
|
|
|
1998-10-19 16:57:27 +00: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-13 20:24:54 +00:00
|
|
|
class nsIScrollableView : public nsISupports
|
|
|
|
{
|
|
|
|
public:
|
1998-04-15 20:25:02 +00:00
|
|
|
/**
|
1998-10-19 16:57:27 +00:00
|
|
|
* Compute the size of the scrolled container.
|
1998-04-15 20:25:02 +00:00
|
|
|
*/
|
1998-08-30 19:16:11 +00:00
|
|
|
NS_IMETHOD ComputeContainerSize(void) = 0;
|
1998-04-15 20:25:02 +00:00
|
|
|
|
|
|
|
/**
|
1998-05-07 23:07:10 +00: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-15 20:25:02 +00:00
|
|
|
*/
|
1998-10-21 16:07:55 +00:00
|
|
|
NS_IMETHOD GetContainerSize(nscoord *aWidth, nscoord *aHeight) const = 0;
|
1998-04-13 20:24:54 +00:00
|
|
|
|
1998-04-15 20:25:02 +00:00
|
|
|
/**
|
1998-10-19 16:57:27 +00:00
|
|
|
* Set the view that we are scrolling within the scrolling view.
|
1998-04-15 20:25:02 +00:00
|
|
|
*/
|
1998-10-19 00:44:28 +00:00
|
|
|
NS_IMETHOD SetScrolledView(nsIView *aScrolledView) = 0;
|
1998-04-23 21:51:43 +00:00
|
|
|
|
|
|
|
/**
|
1998-10-19 16:57:27 +00:00
|
|
|
* Get the view that we are scrolling within the scrolling view.
|
1998-04-23 21:51:43 +00:00
|
|
|
* @result child view
|
|
|
|
*/
|
1998-10-21 16:07:55 +00:00
|
|
|
NS_IMETHOD GetScrolledView(nsIView *&aScrolledView) const = 0;
|
1998-10-19 16:57:27 +00:00
|
|
|
|
1998-06-21 01:23:44 +00: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 19:16:11 +00:00
|
|
|
NS_IMETHOD ShowQuality(PRBool aShow) = 0;
|
1998-06-21 01:23:44 +00: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 16:07:55 +00:00
|
|
|
NS_IMETHOD GetShowQuality(PRBool &aShow) const = 0;
|
1998-06-21 01:23:44 +00: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 19:16:11 +00:00
|
|
|
NS_IMETHOD SetQuality(nsContentQuality aQuality) = 0;
|
1998-06-23 00:53:56 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Select whether scroll bars should be displayed all the time, never or
|
|
|
|
* only when necessary.
|
|
|
|
* @param aPref desired scrollbar selection
|
|
|
|
*/
|
1998-08-30 19:16:11 +00:00
|
|
|
NS_IMETHOD SetScrollPreference(nsScrollPreference aPref) = 0;
|
1998-06-23 00:53:56 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Query whether scroll bars should be displayed all the time, never or
|
|
|
|
* only when necessary.
|
|
|
|
* @return current scrollbar selection
|
|
|
|
*/
|
1998-10-21 16:07:55 +00: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-22 23:39:23 +00: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-24 21:05:50 +00: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-22 23:39:23 +00:00
|
|
|
*/
|
|
|
|
NS_IMETHOD ScrollTo(nscoord aX, nscoord aY, PRUint32 aUpdateFlags) = 0;
|
1998-07-24 21:05:50 +00:00
|
|
|
|
1998-07-27 21:30:14 +00:00
|
|
|
/**
|
1998-10-21 16:07:55 +00: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-27 21:30:14 +00:00
|
|
|
*/
|
1998-10-21 16:07:55 +00:00
|
|
|
NS_IMETHOD GetControlInsets(nsMargin &aInsets) const = 0;
|
1998-08-08 04:23:33 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
NS_IMETHOD_(nsrefcnt) AddRef(void) = 0;
|
|
|
|
NS_IMETHOD_(nsrefcnt) Release(void) = 0;
|
1998-04-13 20:24:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|