~ubuntu-branches/ubuntu/precise/kompozer/precise

« back to all changes in this revision

Viewing changes to mozilla/content/base/public/nsIRangeUtils.h

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Yarusso
  • Date: 2007-08-27 01:11:03 UTC
  • Revision ID: james.westby@ubuntu.com-20070827011103-2jgf4s6532gqu2ka
Tags: upstream-0.7.10
ImportĀ upstreamĀ versionĀ 0.7.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
 
2
 *
 
3
 * The contents of this file are subject to the Netscape Public
 
4
 * License Version 1.1 (the "License"); you may not use this file
 
5
 * except in compliance with the License. You may obtain a copy of
 
6
 * the License at http://www.mozilla.org/NPL/
 
7
 *
 
8
 * Software distributed under the License is distributed on an "AS
 
9
 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
 
10
 * implied. See the License for the specific language governing
 
11
 * rights and limitations under the License.
 
12
 *
 
13
 * The Original Code is Mozilla Communicator client code, released
 
14
 * March 31, 1998.
 
15
 *
 
16
 * The Initial Developer of the Original Code is Netscape
 
17
 * Communications Corporation.  Portions created by Netscape are
 
18
 * Copyright (C) 1998 Netscape Communications Corporation. All
 
19
 * Rights Reserved.
 
20
 *
 
21
 * Contributor(s): 
 
22
 *
 
23
 * Alternatively, the contents of this file may be used under the
 
24
 * terms of the GNU Public License (the "GPL"), in which case the
 
25
 * provisions of the GPL are applicable instead of those above.
 
26
 * If you wish to allow use of your version of this file only
 
27
 * under the terms of the GPL and not to allow others to use your
 
28
 * version of this file under the NPL, indicate your decision by
 
29
 * deleting the provisions above and replace them with the notice
 
30
 * and other provisions required by the GPL.  If you do not delete
 
31
 * the provisions above, a recipient may use your version of this
 
32
 * file under either the NPL or the GPL.
 
33
 */
 
34
 
 
35
/* A class for range utilities. */
 
36
 
 
37
#ifndef nsIRangeUtils_h___
 
38
#define nsIRangeUtils_h___
 
39
 
 
40
#include "nsISupports.h"
 
41
 
 
42
// Forward declarations
 
43
class nsIDOMRange;
 
44
class nsIDOMNode;
 
45
class nsIContent;
 
46
 
 
47
// IID for the nsIRangeUtils interface
 
48
#define NS_IRANGEUTILS_IID       \
 
49
{ 0xa6cf9127, 0x15b3, 0x11d2, {0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32} }
 
50
 
 
51
class nsIRangeUtils : public nsISupports {
 
52
public:
 
53
  NS_DEFINE_STATIC_IID_ACCESSOR(NS_IRANGEUTILS_IID)
 
54
 
 
55
  NS_IMETHOD_(PRInt32) ComparePoints(nsIDOMNode* aParent1, PRInt32 aOffset1,
 
56
                                     nsIDOMNode* aParent2, PRInt32 aOffset2) = 0;
 
57
                               
 
58
  NS_IMETHOD_(PRBool) IsNodeIntersectsRange(nsIContent* aNode, nsIDOMRange* aRange) = 0;
 
59
  
 
60
  NS_IMETHOD CompareNodeToRange(nsIContent* aNode, 
 
61
                                nsIDOMRange* aRange,
 
62
                                PRBool *outNodeBefore,
 
63
                                PRBool *outNodeAfter) = 0;
 
64
};
 
65
 
 
66
#endif /* nsIRangeUtils_h___ */
 
67