This file is indexed.

/usr/include/KWWidgets/vtkKWWidget.h is in libkwwidgets1-dev 1.0.0~cvs20100930-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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
/*=========================================================================

  Module:    $RCSfile: vtkKWWidget.h,v $

  Copyright (c) Kitware, Inc.
  All rights reserved.
  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.

     This software is distributed WITHOUT ANY WARRANTY; without even
     the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
     PURPOSE.  See the above copyright notice for more information.

=========================================================================*/
// .NAME vtkKWWidget - superclass of KW widgets
// .SECTION Description
// This class is the superclass of all UI based objects in the
// Kitware toolkit. It contains common methods such as specifying
// the parent widget, generating and returning the Tcl widget name
// for an instance, and managing children. It overrides the 
// Unregister method to handle circular reference counts between
// child and parent widgets.

#ifndef __vtkKWWidget_h
#define __vtkKWWidget_h

#include "vtkKWObject.h"

class vtkKWTopLevel;
class vtkKWDragAndDropTargetSet;
class vtkKWWidgetInternals;
class vtkKWBalloonHelpManager;
class vtkKWKeyBindingsManager;
class vtkKWIcon;

class KWWidgets_EXPORT vtkKWWidget : public vtkKWObject
{
public:
  static vtkKWWidget* New();
  vtkTypeRevisionMacro(vtkKWWidget,vtkKWObject);
  void PrintSelf(ostream& os, vtkIndent indent);

  // Description:
  // Set/Get the parent widget for this widget.
  // Important: you can not reparent a widget that has been Create()'ed already.
  virtual void SetParent(vtkKWWidget *p);
  vtkGetObjectMacro(Parent, vtkKWWidget);

  // Description:
  // Get the application instance for this object.
  // Override the superclass to try to retrieve the parent's application
  // if it was not set already.
  virtual vtkKWApplication* GetApplication();

  // Description:
  // Create the widget.
  // The parent should be set before calling this method (see SetParent()).
  // Once the object is fully created:
  // - the widget is configured according to the settings found in the 
  //   application's option database.
  // - the UpdateEnableState() method is called to make sure the state
  //   of the widget and its internal sub-widgets is up-to-date.
  // - a WidgetCreatedEvent event is sent.
  // Subclasses should *not* re-implement this method but re-implement the
  // protected CreateWidget() method instead.
  virtual void Create();

  // Description:
  // Get the name of the underlying Tk widget being used.
  // The Create() method should be called before invoking this method.
  // Note that setting the widget name manually is *not* recommended ; use
  // it only if you know what you are doing, say, for example, if
  // you have to map an external Tk widget to a vtkKWWidget object.
  virtual const char *GetWidgetName();
  vtkSetStringMacro(WidgetName);

  // Description:
  // Globally Set/Get if the widget name should include the object class name.
  // NOTE: this is a *static* method that defines the behaviour for *all*
  // instances to be created afterwards. This is typically called in your 
  // application class or your main executable, before creating any UI.
  // By default it is globally *disabled*.
  static int GetUseClassNameInWidgetName();
  static void SetUseClassNameInWidgetName(int);
  static void UseClassNameInWidgetNameOn();
  static void UseClassNameInWidgetNameOff();

  // Description:
  // Query if the widget was created successfully.
  virtual int IsCreated();

  // Description:
  // Query if the widget is "alive" (i.e. IsCreated()) and has not been 
  // deleted as far as Tk is concerned.
  virtual int IsAlive();
  
  // Description:
  // Query if the widget is mapped (i.e, on screen)
  virtual int IsMapped();
  
  // Description:
  // Set/query focus to this widget.
  virtual void Focus();
  virtual int HasFocus();

  // Description:
  // Set/Get the enabled state.
  virtual void SetEnabled(int);
  vtkBooleanMacro(Enabled, int);
  vtkGetMacro(Enabled, int);

  // Description:
  // Set/add/remove a binding to a widget, i.e. the command that is invoked
  // whenever the 'event' is triggered on the widget.
  // SetBinding will replace any old bindings, whereas AddBinding will
  // add the binding to the list of bindings already defined for that event.
  // RemoveBinding can remove a specific binding or all bindings for an event.
  // The 'object' argument is the object that will have the method called on
  // it. The 'method' argument is the name of the method to be called and any
  // arguments in string form. If the object is NULL, the method is still
  // evaluated as a simple command. 
  virtual void SetBinding(
    const char *event, vtkObject *object, const char *method);
  virtual void SetBinding(
    const char *event, const char *command);
  virtual const char* GetBinding(const char *event);
  virtual void AddBinding(
    const char *event, vtkObject *object, const char *method);
  virtual void AddBinding(
    const char *event, const char *command);
  virtual void RemoveBinding(const char *event);
  virtual void RemoveBinding(
    const char *event, vtkObject *object, const char *method);

  // Description:
  // A convenience method to add a key binding. This method does call
  // SetBinding under the hood (which can still be used to add key bindings)
  // but use the 'context' and 'description' to register that specific binding
  // to an application-wide key bindings (keyboard shortcuts) manager. That
  // manager can in turn be queried to create a list of key bindings and
  // present it to the user (in the Help menu for example). Use this method
  // only for important key bindings that you want the user to be reminded 
  // of. Simple bindings like <Return> on a button to allow the user
  // to "press" said button by hitting <Return, should probably not be set
  // with this method, but with the usual SetBinding method.
  // 'context' is a string in plain English (or preferably localized) that
  // explains in which context this key binding is valid. For example: 
  // "Any 2D View", or "Any Main Window". It usually is a simple/short
  // description of the class setting the binding. 
  // 'description' is a string in plain English (or preferably localized) that
  // explains what that binding does. For example: "Reset the camera".
  virtual void SetKeyBinding(
    const char *event, vtkObject *object, const char *method,
    const char *context, const char *description);
  virtual void RemoveKeyBinding(const char *event);
  virtual void RemoveKeyBinding(
    const char *event, vtkObject *object, const char *method);

  // Description:
  // A convenience method that will return the key bindings manager associated
  // to the application this widget belongs to. There is no key bindings
  // internal ivar, this method returns the *application-wide* manager.
  virtual vtkKWKeyBindingsManager* GetKeyBindingsManager();

  // Description:
  // Set a drop-file binding to a widget, i.e. the command that is invoked
  // whenever a file is dropped on the widget.
  // The following parameters are also passed to the command:
  // - filename(s): list of filenames
  virtual void SetDropFileBinding(vtkObject *object, const char *method);

  // Description:
  // Get the parent vtkKWTopLevel for this widget if there is one (by
  // recursively tracking the parents).
  // This can be safe-downcasted to a vtkKWWindowBase or vtkKWWindow.
  // NOTE: this may return NULL if the widget is not in a toplevel.
  vtkKWTopLevel* GetParentTopLevel();

  // Description:
  // Query if widget is pack'ed, i.e. if the widget has been layout using 
  // the 'pack' geometry manager. 
  // Get number of packed children, unpack (remove from layout).
  virtual int IsPacked();
  virtual int GetNumberOfPackedChildren();
  virtual void Unpack();

  // Description:
  // Query if widget is grid'ed, i.e. if the widget has been layout using 
  // the 'grid' geometry manager. 
  // Get number of grid'ed children, ungrid (remove from layout).
  virtual int IsGridded();
  virtual int GetNumberOfGriddedChildren();
  virtual void Ungrid();

  // Description:
  // Query if widget is place'ed, i.e. if the widget has been layout using 
  // the 'place' geometry manager. 
  // Get number of placed children, unplace (remove from layout).
  virtual int IsPlaced();
  virtual int GetNumberOfPlacedChildren();
  virtual void Unplace();

  // Description:
  // Unpack widget, unpack siblings (slave's of parent widget), unpack children
  // This will both unpack and ungrid and unplace, for convenience.
  virtual void UnpackSiblings();
  virtual void UnpackChildren();
  
  // Description:
  // Set the balloon help string or icon for this widget.
  // This will popup a small tooltip window over the widget after some delay.
  // The tooltip settings are common to all widgets within the application
  // and can be accessed by retrieving the balloon help manager using
  // the GetBalloonHelpManager method. In some very specific case, a new
  // tooltip manager can be set specifically for a widget instance.
  virtual void SetBalloonHelpString(const char *str);
  vtkGetStringMacro(BalloonHelpString);
  virtual void SetBalloonHelpIcon(vtkKWIcon *icon);
  vtkGetObjectMacro(BalloonHelpIcon, vtkKWIcon);

  // Description:
  // Set/Get the balloon help manager.
  // If the widget has been created, this returns the application
  // balloon help manager. Be aware that changing its settings will
  // affect all widgets. 
  // Setting the manager to a different instance allows a widget to use
  // specific balloon help settings (say, a different delay or color)
  // without affecting the other widgets. This has to be done before
  // calling Create().
  // This is an advanced feature, SetBalloonHelpString or
  // SetBalloonHelpIcon are the only methods that are really needed to setup
  // a proper tooltip 99% of the time.
  virtual vtkKWBalloonHelpManager *GetBalloonHelpManager();
  virtual void SetBalloonHelpManager(vtkKWBalloonHelpManager *mgr);

  // Description:
  // Query if there are drag and drop targets between this widget and
  // other widgets. Get the targets.
  // IMPORTANT: the vtkKWDragAndDropTargetSet object is lazy-allocated, i.e.
  // allocated only when it is needed, as GetDragAndDropTargetSet() is called.
  // Therefore, to check if the instance *has* drag and drop targets, use 
  // HasDragAndDropTargetSet(), not GetDragAndDropTargetSet().
  virtual int HasDragAndDropTargetSet();
  virtual vtkKWDragAndDropTargetSet* GetDragAndDropTargetSet();

  // Description:
  // Grab the widget (locally)
  virtual void Grab();
  virtual void ReleaseGrab();
  virtual int IsGrabbed();

  // Description:
  // Update the "enable" state of the object and its internal parts.
  // Depending on different Ivars (this->Enabled, the application's 
  // Limited Edition Mode, etc.), the "enable" state of the object is updated
  // and propagated to its internal parts/subwidgets. This will, for example,
  // enable/disable parts of the widget UI, enable/disable the visibility
  // of 3D widgets, etc.
  virtual void UpdateEnableState();

  // Description::
  // Override Unregister since widgets have loops.
  virtual void UnRegister(vtkObjectBase *o);

  // Description:
  // Get the net reference count of this widget. That is the
  // reference count of this widget minus its children.
  virtual int  GetNetReferenceCount();

  // Description:
  // Query children from this widget
  virtual int HasChild(vtkKWWidget *w);
  virtual int GetNumberOfChildren();
  virtual vtkKWWidget* GetNthChild(int rank);
  virtual vtkKWWidget* GetChildWidgetWithName(const char *);
  virtual void RemoveAllChildren();

  // Description:
  // Events.
  // The WidgetCreatedEvent is sent after Create() is called.
  //BTX
  enum
  {
    WidgetCreatedEvent = 30000
  };
  //ETX


protected:
  vtkKWWidget();
  ~vtkKWWidget();

  // Description:
  // Add/Remove a child to/from this widget
  virtual void AddChild(vtkKWWidget *w);
  virtual void RemoveChild(vtkKWWidget *w);

  // Description:
  // The name of the underlying Tk widget being used.
  char *WidgetName;

  // Description:
  // The parent of the widget
  vtkKWWidget *Parent;

  // Description:
  // The tooltip associated to the widget, and the balloon help manager
  char *BalloonHelpString;
  vtkKWIcon *BalloonHelpIcon;
  vtkKWBalloonHelpManager *BalloonHelpManager;
  virtual void AddBalloonHelpBindings();

  // Description:
  // PIMPL Encapsulation for STL containers
  vtkKWWidgetInternals *Internals;

  // Description:
  // Propagates the Enabled state of the instance to another subwidget
  // (preferably a sub-widget).
  // It calls SetEnabled(this->GetEnabled()) on the 'widget' parameter
  virtual void PropagateEnableState(vtkKWWidget* widget);

  // Description:
  // Create the widget. This is the method that should be implemented to
  // create the widget itself, as well as its internal widgets if any.
  // Subclasses should re-implement this method (do *not* re-implement the
  // public Create() method).
  virtual void CreateWidget();

  // Description:
  // Create a specific Tk widget of type 'type', with optional arguments 
  // 'args' and map it to an object 'obj'.
  // This method should only be used to from a subclass to implement a
  // specific kind of pure Tk widget as a vtkKWWidget subclass, or  to map
  // an external pure Tk widget into a vtkKWWidget.
  // If 'type' is NULL, this method will still perform some checkings and
  // set the proper flags indicating that the widget has been created. 
  // Ideally, the 'args' parameter should only be used to specify options that
  // can *not* be changed using Tk's 'configure' 
  // (i.e. SetConfigurationOptions()), and therefore that have to be passed
  // at widget's creation time. For example the -visual and -class options 
  // of the 'toplevel' widget.
  // Return 1 on success, 0 otherwise.
  static int CreateSpecificTkWidget(
    vtkKWWidget *obj, const char *type, const char *args = NULL);

  // Description:
  // Set/add/remove a binding to a target, i.e. the command that is invoked
  // whenever the 'event' is triggered on the target.
  // The target here could be a tag, a widget name, etc. It is NOT, by 
  // default, the widget this method was called on. This method technically
  // should be static, but we need a pointer to the application, etc.
  virtual void SetGenericBinding(
    const char *target, const char *event, 
    vtkObject *object, const char *method);
  virtual void AddGenericBinding(
    const char *target, const char *event, 
    vtkObject *object, const char *method);
  virtual void RemoveGenericBinding(
    const char *target, const char *event);
  virtual void RemoveGenericBinding(
    const char *target, const char *event, 
    vtkObject *object, const char *method);

private:
  
  // Description:
  // The Drag & Drop targets, if any. In private: so that it can be
  // lazy-created
  vtkKWDragAndDropTargetSet* DragAndDropTargetSet;

  int WidgetIsCreated;
  int Enabled;

  static int UseClassNameInWidgetName;

  virtual unsigned long GetNextAvailableChildID();

  vtkKWWidget(const vtkKWWidget&); // Not implemented
  void operator=(const vtkKWWidget&); // Not implemented
};

#endif