From 6dcf82559d6bb9520b02c8325846f1bf70632dfd Mon Sep 17 00:00:00 2001 From: "mjudge%netscape.com" Date: Wed, 15 Dec 1999 03:56:32 +0000 Subject: [PATCH] new idl for line up/down scrolling git-svn-id: svn://10.0.0.236/trunk@56029 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/content/base/public/nsISelectionController.idl | 9 +++++++++ mozilla/layout/base/public/nsISelectionController.idl | 9 +++++++++ 2 files changed, 18 insertions(+) diff --git a/mozilla/content/base/public/nsISelectionController.idl b/mozilla/content/base/public/nsISelectionController.idl index 9dc4201a711..610bee20f54 100644 --- a/mozilla/content/base/public/nsISelectionController.idl +++ b/mozilla/content/base/public/nsISelectionController.idl @@ -94,6 +94,15 @@ interface nsISelectionController : nsISupports */ void scrollPage(in boolean aForward); + /** ScrolLine will scroll line up or down dependent on the boolean + * @param aForward scroll forward or backwards in selection + */ + void scrollLine(in boolean aForward); + + /** ScrolHorizontal will scroll left or right dependent on the boolean + * @param aLeft if true will scroll left. if not will scroll right. + */ + void scrollHorizontal(in boolean aLeft); /** SelectAll will select the whole page */ void selectAll(); diff --git a/mozilla/layout/base/public/nsISelectionController.idl b/mozilla/layout/base/public/nsISelectionController.idl index 9dc4201a711..610bee20f54 100644 --- a/mozilla/layout/base/public/nsISelectionController.idl +++ b/mozilla/layout/base/public/nsISelectionController.idl @@ -94,6 +94,15 @@ interface nsISelectionController : nsISupports */ void scrollPage(in boolean aForward); + /** ScrolLine will scroll line up or down dependent on the boolean + * @param aForward scroll forward or backwards in selection + */ + void scrollLine(in boolean aForward); + + /** ScrolHorizontal will scroll left or right dependent on the boolean + * @param aLeft if true will scroll left. if not will scroll right. + */ + void scrollHorizontal(in boolean aLeft); /** SelectAll will select the whole page */ void selectAll();