new idl for line up/down scrolling

git-svn-id: svn://10.0.0.236/trunk@56029 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mjudge%netscape.com
1999-12-15 03:56:32 +00:00
parent 4704ff3a85
commit 6dcf82559d
2 changed files with 18 additions and 0 deletions

View File

@@ -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();

View File

@@ -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();