68 lines
1.8 KiB
C++
68 lines
1.8 KiB
C++
/* -*- 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 nsPrivateTextRange_h__
|
|
#define nsPrivateTextRange_h__
|
|
|
|
#include "nsIPrivateTextRange.h"
|
|
|
|
class nsPrivateTextRange : public nsIPrivateTextRange
|
|
{
|
|
NS_DECL_ISUPPORTS
|
|
public:
|
|
|
|
nsPrivateTextRange(PRUint16 aRangeStart, PRUint16 aRangeEnd, PRUint16 aRangeType);
|
|
virtual ~nsPrivateTextRange(void);
|
|
|
|
NS_IMETHOD GetRangeStart(PRUint16* aRangeStart);
|
|
NS_IMETHOD SetRangeStart(PRUint16 aRangeStart);
|
|
|
|
NS_IMETHOD GetRangeEnd(PRUint16* aRangeEnd);
|
|
NS_IMETHOD SetRangeEnd(PRUint16 aRangeEnd);
|
|
|
|
NS_IMETHOD GetRangeType(PRUint16* aRangeType);
|
|
NS_IMETHOD SetRangeType(PRUint16 aRangeType);
|
|
|
|
protected:
|
|
|
|
PRUint16 mRangeStart;
|
|
PRUint16 mRangeEnd;
|
|
PRUint16 mRangeType;
|
|
};
|
|
|
|
class nsPrivateTextRangeList: public nsIPrivateTextRangeList
|
|
{
|
|
NS_DECL_ISUPPORTS
|
|
public:
|
|
|
|
nsPrivateTextRangeList(PRUint16 aLength,nsIPrivateTextRange** aList);
|
|
virtual ~nsPrivateTextRangeList(void);
|
|
|
|
NS_IMETHOD GetLength(PRUint16* aLength);
|
|
|
|
NS_IMETHOD Item(PRUint16 aIndex, nsIPrivateTextRange** aReturn);
|
|
|
|
protected:
|
|
|
|
PRUint16 mLength;
|
|
nsIPrivateTextRange** mList;
|
|
};
|
|
|
|
|
|
#endif
|