• Skip to content
  • Skip to link menu
Trinity API Reference
  • Trinity API Reference
  • kate
 

kate

  • kate
  • part
katelinerange.cpp
1 /* This file is part of the KDE libraries
2  Copyright (C) 2002,2003 Hamish Rodda <rodda@kde.org>
3  Copyright (C) 2003 Anakim Border <aborder@sources.sourceforge.net>
4 
5  This library is free software; you can redistribute it and/or
6  modify it under the terms of the GNU Library General Public
7  License version 2 as published by the Free Software Foundation.
8 
9  This library is distributed in the hope that it will be useful,
10  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  Library General Public License for more details.
13 
14  You should have received a copy of the GNU Library General Public License
15  along with this library; see the file COPYING.LIB. If not, write to
16  the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17  Boston, MA 02110-1301, USA.
18 */
19 
20 #include "katelinerange.h"
21 
22 KateLineRange::KateLineRange()
23  : line(-1)
24  , virtualLine(-1)
25  , startCol(-1)
26  , endCol(-1)
27  , startX(-1)
28  , endX(-1)
29  , dirty(false)
30  , viewLine(-1)
31  , wrap(false)
32  , startsInvisibleBlock(false)
33  , shiftX(0)
34 {
35 }
36 
37 KateLineRange::~KateLineRange ()
38 {
39 }
40 
41 void KateLineRange::clear()
42 {
43  line = -1;
44  virtualLine = -1;
45  startCol = -1;
46  endCol = -1;
47  startX = -1;
48  shiftX = 0;
49  endX = -1;
50  viewLine = -1;
51  wrap = false;
52  startsInvisibleBlock = false;
53 }
54 
55 bool operator> (const KateLineRange& r, const KateTextCursor& c)
56 {
57  return r.line > c.line() || r.endCol > c.col();
58 }
59 
60 bool operator>= (const KateLineRange& r, const KateTextCursor& c)
61 {
62  return r.line > c.line() || r.endCol >= c.col();
63 }
64 
65 bool operator< (const KateLineRange& r, const KateTextCursor& c)
66 {
67  return r.line < c.line() || r.startCol < c.col();
68 }
69 
70 bool operator<= (const KateLineRange& r, const KateTextCursor& c)
71 {
72  return r.line < c.line() || r.startCol <= c.col();
73 }
74 
75 // kate: space-indent on; indent-width 2; replace-tabs on;

kate

Skip menu "kate"
  • Main Page
  • Namespace List
  • Class Hierarchy
  • Alphabetical List
  • Class List
  • File List
  • Namespace Members
  • Class Members
  • Related Pages

kate

Skip menu "kate"
  • arts
  • dcop
  • dnssd
  • interfaces
  •     interface
  •     library
  •   kspeech
  •   ktexteditor
  • kabc
  • kate
  • kcmshell
  • kdecore
  • kded
  • kdefx
  • kdeprint
  • kdesu
  • kdeui
  • kdoctools
  • khtml
  • kimgio
  • kinit
  • kio
  •   bookmarks
  •   httpfilter
  •   kfile
  •   kio
  •   kioexec
  •   kpasswdserver
  •   kssl
  • kioslave
  •   http
  • kjs
  • kmdi
  •   kmdi
  • knewstuff
  • kparts
  • krandr
  • kresources
  • kspell2
  • kunittest
  • kutils
  • kwallet
  • libkmid
  • libkscreensaver
Generated for kate by doxygen 1.8.3.1
This website is maintained by Timothy Pearson.
KDE® and the K Desktop Environment® logo are registered trademarks of KDE e.V. |