This file is indexed.

/usr/include/Unidraw/manips.h is in ivtools-dev 1.2.11a1-8.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
/*
 * Copyright (c) 1990, 1991 Stanford University
 *
 * Permission to use, copy, modify, distribute, and sell this software and its
 * documentation for any purpose is hereby granted without fee, provided
 * that the above copyright notice appear in all copies and that both that
 * copyright notice and this permission notice appear in supporting
 * documentation, and that the name of Stanford not be used in advertising or
 * publicity pertaining to distribution of the software without specific,
 * written prior permission.  Stanford makes no representations about
 * the suitability of this software for any purpose.  It is provided "as is"
 * without express or implied warranty.
 *
 * STANFORD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.
 * IN NO EVENT SHALL STANFORD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
 * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
 * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

/*
 * ManipGroup - composition of Manipulators
 * DragManip - downclick-drag-upclick-style manipulation
 * VertexManip - multi-click DragManip
 * ConnectManip - DragManip that snaps to nearest connector
 * TextManip - creates and edits text
 */

#ifndef unidraw_manips_h
#define unidraw_manips_h

#include <Unidraw/globals.h>
#include <Unidraw/manip.h>
#include <InterViews/event.h>

#include <IV-2_6/_enter.h>

class ConnectorView;
class GrowingVertices;
class Iterator;
class Painter;
class Rubberband;
class Selection;
class TextBuffer;
class TextDisplay;
class Transformer;
class UList;

//: group manipulator
// <a href=../man3.1/manips.html>man page</a>
class ManipGroup : public Manipulator {
public:
    ManipGroup(Viewer* = nil, Tool* = nil);
    virtual ~ManipGroup();

    virtual void Grasp(Event&);
    virtual boolean Manipulating(Event&);
    virtual void Effect(Event&);

    virtual void SetViewer(Viewer*);
    virtual void SetTool(Tool*);

    virtual Viewer* GetViewer();
    virtual Tool* GetTool();

    virtual void First(Iterator&);
    virtual void Last(Iterator&);
    virtual void Next(Iterator&);
    virtual void Prev(Iterator&);
    virtual boolean Done(Iterator);

    virtual Manipulator* GetManip(Iterator);
    virtual void SetManip(Manipulator*, Iterator&);

    virtual void Append(
        Manipulator*, Manipulator* =nil, Manipulator* =nil, Manipulator* =nil
    );
    virtual void Prepend(
        Manipulator*, Manipulator* =nil, Manipulator* =nil, Manipulator* =nil
    );
    virtual void InsertBefore(Iterator, Manipulator*);
    virtual void InsertAfter(Iterator, Manipulator*);
    virtual void Remove(Manipulator*);
    virtual void Remove(Iterator&);
protected:
    Manipulator* Manip(UList*);
    UList* Elem(Iterator);
protected:
    UList* _kids;
    Viewer* _viewer;
    Tool* _tool;
};

//: drag manipulator
// <a href=../man3.1/manips.html>man page</a>
class DragManip : public Manipulator {
public:
    DragManip(
        Viewer*, Rubberband*, Transformer* = nil, Tool* = nil, 
        DragConstraint = None
    );
    DragManip(
        Viewer*, Rubberband*, Transformer*, Tool*, DragConstraint, Coord, Coord
    );
    virtual ~DragManip();
    
    virtual void Grasp(Event&);
    virtual boolean Manipulating(Event&);
    virtual void Effect(Event&);

    virtual void SetViewer(Viewer*);
    virtual void SetRubberband(Rubberband*);
    virtual void SetTransformer(Transformer*);
    virtual void SetTool(Tool*);
    virtual void SetConstraint(DragConstraint);

    virtual Viewer* GetViewer();
    virtual Rubberband* GetRubberband();
    virtual Transformer* GetTransformer();
    virtual Tool* GetTool();
    virtual DragConstraint GetConstraint();

    const Event& GraspEvent();
protected:
    void Init(Viewer*, Rubberband*, Transformer*, Tool*, DragConstraint);
    virtual void Constrain(Event&);
protected:
    Viewer* _viewer;
    Rubberband* _r;
    Transformer* _relative;
    Tool* _tool;
    DragConstraint _constraint;
    boolean _origPreset;
    Coord _origx, _origy;
    Event _grasp_e;
};    

inline const Event& DragManip::GraspEvent () { return _grasp_e; }

//: vertex manipulator
// <a href=../man3.1/manips.html>man page</a>
class VertexManip : public DragManip {
public:
    VertexManip(
        Viewer*, GrowingVertices*, Transformer* = nil, Tool* = nil,
        DragConstraint = None
    );

    virtual boolean Manipulating(Event&);

    GrowingVertices* GetGrowingVertices();
};

//: continuous vertex manipulator
// <a href=../man3.1/manips.html>man page</a>
class ScribbleVertexManip : public VertexManip {
public:
    ScribbleVertexManip(
        Viewer*, GrowingVertices*, Transformer* = nil, Tool* = nil,
        DragConstraint = None
    );

    virtual boolean Manipulating(Event&);

protected:
    boolean _first;
};

//: connection manipulator
// <a href=../man3.1/manips.html>man page</a>
class ConnectManip : public DragManip {
public:
    ConnectManip(Viewer*, Rubberband*, Transformer* = nil, Tool* = nil);

    virtual boolean Manipulating(Event&);
    ConnectorView* GetTarget();
protected:
    ConnectorView* _target;
};

//: text manipulator
// <a href=../man3.1/manips.html>man page</a>
class TextManip : public Manipulator {
public:
    TextManip(Viewer*, Painter*, Coord tab, Tool* = nil);
    TextManip(Viewer*, Painter*, Coord h, Coord tab, Tool* = nil);
    TextManip(
        Viewer*, const char*, int, Coord, Coord, Painter*, Coord tab,
        Tool* = nil
    );
    TextManip(
        Viewer*, const char*, int, Coord, Coord, Painter*, Coord h, Coord tab,
        Tool* = nil
    );
    virtual ~TextManip();

    virtual void Grasp(Event&);
    virtual boolean Manipulating(Event&);
    virtual void Effect(Event&);

    virtual void SetViewer(Viewer*);
    virtual void SetTool(Tool*);

    virtual Viewer* GetViewer();
    virtual Tool* GetTool();

    virtual Painter* GetPainter();
    virtual Coord GetLineHeight();
    virtual Coord GetTabWidth();

    virtual const char* GetText(int&);
    virtual void GetPosition(Coord&, Coord&);

    const Event& GraspEvent();

    virtual boolean HandleKey(Event&);

    int Dot();
    int Mark();

    void InsertCharacter(char);
    void DeleteCharacter(int);

    void InsertText(const char*, int);
    void DeleteText(int);
    void DeleteLine();
    void DeleteSelection();

    void BackwardCharacter(int = 1),    ForwardCharacter(int = 1);
    void BackwardLine(int = 1),         ForwardLine(int = 1);
    void BackwardWord(int = 1),         ForwardWord(int = 1);

    void BeginningOfLine(),             EndOfLine();
    void BeginningOfWord(),             EndOfWord();
    void BeginningOfSelection(),        EndOfSelection();
    void BeginningOfText(),             EndOfText();

    void Select(int dot);
    void SelectMore(int mark);
    void SelectAll();
    void Select(int dot, int mark);

    boolean Contains(Coord, Coord);
    int Locate(Coord, Coord);
protected:
    void Init(
        Viewer*, Painter*, Coord, Coord, Tool*, boolean,const char* =nil,int =0
    );
    void InitTextDisplay(const char*, int);
    void PlaceTextDisplay (Coord, Coord);
    void CheckBuf(int more);
protected:
    boolean _prepositioned;
    boolean _selecting;
    Coord _xpos, _ypos;
    Viewer* _viewer;
    Selection* _selection;
    Painter* _painter;
    Tool* _tool;
    PSFont* _font;
    Coord _lineHt, _tabWidth;
    boolean _multiline;
    TextBuffer* _text;
    TextDisplay* _display;
    char* _buf;
    int _bufsize;
    int _dot, _mark;
    Event _grasp_e;
};

inline int TextManip::Dot () { return _dot; }
inline int TextManip::Mark () { return _mark; }
inline const Event& TextManip::GraspEvent () { return _grasp_e; }

#include <IV-2_6/_leave.h>

#endif