source: trunk/third/gtkhtml3/src/htmlinterval.h @ 19539

Revision 19539, 4.0 KB checked in by ghudson, 21 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r19538, which included commits to RCS files with non-trunk default branches.
Line 
1/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2/* This file is part of the GtkHTML library
3
4   Copyright (C) 2000 Helix Code, Inc.
5   Authors:           Radek Doulik (rodo@helixcode.com)
6
7   This library is free software; you can redistribute it and/or
8   modify it under the terms of the GNU Library General Public
9   License as published by the Free Software Foundation; either
10   version 2 of the License, or (at your option) any later version.
11
12   This library is distributed in the hope that it will be useful,
13   but WITHOUT ANY WARRANTY; without even the implied warranty of
14   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15   Library General Public License for more details.
16
17   You should have received a copy of the GNU Library General Public License
18   along with this library; see the file COPYING.LIB.  If not, write to
19   the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20   Boston, MA 02111-1307, USA.
21*/
22
23#ifndef _HTML_INTERVAL_H_
24#define _HTML_INTERVAL_H_
25
26#include "htmltypes.h"
27
28struct _HTMLPoint {
29        HTMLObject *object;
30        guint       offset;
31};
32
33HTMLPoint  *html_point_new               (HTMLObject      *o,
34                                          guint            off);
35void        html_point_construct         (HTMLPoint       *p,
36                                          HTMLObject      *o,
37                                          guint            off);
38void        html_point_destroy           (HTMLPoint       *p);
39HTMLPoint  *html_point_max               (HTMLPoint       *a,
40                                          HTMLPoint       *b);
41HTMLPoint  *html_point_min               (HTMLPoint       *a,
42                                          HTMLPoint       *b);
43gboolean    html_point_eq                (const HTMLPoint *a,
44                                          const HTMLPoint *b);
45gboolean    html_point_cursor_object_eq  (HTMLPoint       *p,
46                                          HTMLPoint       *c);
47void        html_point_next_cursor       (HTMLPoint       *p);
48
49struct _HTMLInterval {
50        HTMLPoint from;
51        HTMLPoint to;
52};
53
54HTMLInterval *html_interval_new              (HTMLObject            *from,
55                                              HTMLObject            *to,
56                                              guint                  from_offset,
57                                              guint                  to_offset);
58HTMLInterval *html_interval_new_from_cursor  (HTMLCursor            *a,
59                                              HTMLCursor            *b);
60HTMLInterval *html_interval_new_from_points  (HTMLPoint             *from,
61                                              HTMLPoint             *to);
62void          html_interval_validate         (HTMLInterval          *i);
63HTMLInterval *html_interval_flat             (HTMLInterval          *i);
64void          html_interval_destroy          (HTMLInterval          *i);
65guint         html_interval_get_length       (HTMLInterval          *i,
66                                              HTMLObject            *obj);
67guint         html_interval_get_bytes        (HTMLInterval          *i,
68                                              HTMLObject            *obj);
69guint         html_interval_get_start        (HTMLInterval          *i,
70                                              HTMLObject            *obj);
71guint         html_interval_get_start_index  (HTMLInterval          *i,
72                                              HTMLObject            *obj);
73HTMLObject   *html_interval_get_head         (HTMLInterval          *i,
74                                              HTMLObject            *o);
75void          html_interval_select           (HTMLInterval          *i,
76                                              HTMLEngine            *e);
77void          html_interval_unselect         (HTMLInterval          *i,
78                                              HTMLEngine            *e);
79gint          html_interval_get_from_index   (HTMLInterval          *i);
80gint          html_interval_get_to_index     (HTMLInterval          *i);
81void          html_interval_forall           (HTMLInterval          *i,
82                                              HTMLEngine            *e,
83                                              HTMLObjectForallFunc   f,
84                                              gpointer               data);
85gboolean      html_interval_eq               (const HTMLInterval    *a,
86                                              const HTMLInterval    *b);
87HTMLInterval *html_interval_intersection     (HTMLInterval          *a,
88                                              HTMLInterval          *b);
89void         *html_interval_substract        (HTMLInterval          *a,
90                                              HTMLInterval          *b,
91                                              HTMLInterval         **s1,
92                                              HTMLInterval         **s2);
93#endif
Note: See TracBrowser for help on using the repository browser.