This file is indexed.

/usr/include/KWWidgets/vtkKWFavoriteDirectoriesFrame.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
/*=========================================================================

  Module:    $RCSfile: vtkKWFavoriteDirectoriesFrame.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 vtkKWFavoriteDirectoriesFrame - A favorite directories frame
// .SECTION Description
// Used as part of a file browser widget, this class includes a toolbar to 
// add a favorite directory, and a frame to store all the favorite 
// directories as pushbuttons.
// .SECTION Thanks
// This work is part of the National Alliance for Medical Image
// Computing (NAMIC), funded by the National Institutes of Health
// through the NIH Roadmap for Medical Research, Grant U54 EB005149.
// Information on the National Centers for Biomedical Computing
// can be obtained from http://nihroadmap.nih.gov/bioinformatics.
// .SECTION See Also
// vtkKWFileBrowserDialog vtkKWFileBrowserWidget

#ifndef __vtkKWFavoriteDirectoriesFrame_h
#define __vtkKWFavoriteDirectoriesFrame_h

#include "vtkKWCompositeWidget.h"

class vtkKWPushButton;
class vtkKWToolbar;
class vtkKWFrameWithScrollbar;
class vtkKWFavoriteDirectoriesFrameInternals;
class vtkKWMenu;

class KWWidgets_EXPORT vtkKWFavoriteDirectoriesFrame : public vtkKWCompositeWidget
{
public:
  static vtkKWFavoriteDirectoriesFrame* New();
  vtkTypeRevisionMacro(vtkKWFavoriteDirectoriesFrame,vtkKWCompositeWidget);
  void PrintSelf(ostream& os, vtkIndent indent);
   
  // Description:
  // Add a directory to the favorite directories, 
  // given the path of the directory and the name to display.
  virtual void AddFavoriteDirectory(const char *path, const char *name);

  // Description:
  // Set/Get the path or name of a favorite directory
  virtual void SetFavoriteDirectoryPath(
    const char* oldpath, const char* newpath);
  virtual void SetFavoriteDirectoryName(
    const char* oldname, const char* newname);
  
  // Description:
  // Remove/relocate a favorite directory.
  virtual void RemoveFavoriteDirectory(const char *path);
   
  // Description:
  // Select a favorite directory, if it is in the favorite directories list;
  // otherwise, de-select all the favorite directories.
  virtual void SelectFavoriteDirectory(const char *path);
  virtual int IsFavoriteDirectorySelected(const char *path);
  
  // Description:
  // Get the selected favorite directory within the frame
  virtual const char* GetSelectedFavoriteDirectory();

  // Description
  // Check if the given directory has already been added
  virtual int HasFavoriteDirectory(const char* path);
  
  // Description
  // Check if the given favorite name is already used 
  virtual int HasFavoriteDirectoryWithName(const char *name);

  // Description:
  // Set/Get the maximum number of favorite directories to store in the 
  // registry.
  virtual void SetMaximumNumberOfFavoriteDirectoriesInRegistry(int);
  vtkGetMacro(MaximumNumberOfFavoriteDirectoriesInRegistry, int);
  
  // Description:
  // Restore the favorite directories from the registry
  virtual void RestoreFavoriteDirectoriesFromRegistry();

  // Description:
  // Convenience method to Set/Get the background color of the container
  // frame, i.e. the frame that old all the favorite directories button.
  virtual void GetContainerFrameBackgroundColor(
    double *r, double *g, double *b);
  virtual double* GetContainerFrameBackgroundColor();
  virtual void SetContainerFrameBackgroundColor(
    double r, double g, double b);
  virtual void SetContainerFrameBackgroundColor(double rgb[3])
    { this->SetContainerFrameBackgroundColor(rgb[0], rgb[1], rgb[2]); };

  // Description:
  // Specifies commands to associate with the widget.
  // This command will be called from when the "AddFavorites" button is 
  // clicked. Since this widget does not know by itself what directory to add,
  // this callback gives you the opportunity to call 'AddFavoriteDirectory' to
  // add a new favorite directory given your application context.
  // 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 SetAddFavoriteDirectoryCommand(
    vtkObject *obj, const char *method);
  
  // Description:
  // Specifies commands to associate with the widget.
  // This command is called when a favorite directory is selected.
  // 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. 
  // The following parameters are also passed to the command:
  // - the path to the favorite: const char*
  // - the name of the favorite: const char*
  virtual void SetFavoriteDirectorySelectedCommand(
    vtkObject *obj, const char *method);

  // Description:
  // Get the toolbar object.
  vtkGetObjectMacro(Toolbar, vtkKWToolbar);

  // Description:
  // Set/Get if the system default favorites should be ignored. 
  // On Windows OS, there are system defined Places bar on common 
  // dialogs to show favorite places. If this ivar is OFF, those
  // system defined Places will NOT be read or modified by this class; 
  // otherwise, those system defined Places will be replaced by
  // favorites defined by this class. Default is ON. 
  //BTX 
  vtkSetMacro(UseSystemDefaultPlaces, int);
  vtkGetMacro(UseSystemDefaultPlaces, int);
  vtkBooleanMacro(UseSystemDefaultPlaces, int);
  //ETX

  // Description:
  // Get the add favorite directory button objects. 
  // DO NOT modify the callbacks, this accessor is provided to change
  // the button icon, for example.
  vtkGetObjectMacro(AddFavoriteDirectoryButton, vtkKWPushButton);

  // 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();
  virtual void Update();
  
  // Description:
  // Callbacks, do NOT use
  // When the "Add Favorites" button is clicked, the function will 
  // be called and a dialog will popup prompt user for a name of the directory
  // that will be added to the frame. The default name is the displayed text
  // of the directory.
  virtual void AddFavoriteDirectoryCallback();

  // Description:
  // Callback, do NOT use. 
  virtual void SelectFavoriteDirectoryCallback(
    const char* path, const char*name);
  virtual void PopupFavoriteDirectoryCallback(
    const char* path, int x, int y);
  
  // Description:
  // Callback, do NOT use. 
  // Rename directory callback from right-click context menu.
  virtual void RenameFavoriteDirectoryCallback(const char* path);
  
  // Description:
  // Callback, do NOT use. 
  // Launch native explorer callback from right-click context menu.
  virtual void ExploreFavoriteDirectoryCallback(const char* path);
  
  // Description:
  // Callbacks, do NOT use
  // A dialog will popup for user confirmation of the deleting action.
  // If user confirms the action, the favorite folder will be removed from
  // the places bar of the dialog.
  virtual void RemoveFavoriteDirectoryCallback(const char* path);

protected:
  vtkKWFavoriteDirectoriesFrame();
  ~vtkKWFavoriteDirectoriesFrame();

  // Description:
  // Create the widget.
  virtual void CreateWidget();

  // Description:
  // Get the name of a favorite directory given its path (NULL if not found)
  virtual const char* GetNameOfFavoriteDirectory(const char *path);
  virtual vtkKWPushButton* GetButtonOfFavoriteDirectoryWithName(
    const char *name);

  // Description:
  // Load/Save up to 'maximum_number' favorite dirs 
  // from/to the registry under the application's 'reg_key'.
  // Subkeys are "Place[n][type]"
  // The parameter-less methods use RegistryKey as 'reg_key' and
  // MaximumNumberOfFavoriteDirectoriesInRegistry as 'maximum_number'.
  virtual void RestoreFavoriteDirectoriesFromSystemRegistry();
  virtual void RestoreFavoriteDirectoriesFromUserRegistry(
    const char *reg_key, int max_nb);
  virtual void WriteFavoriteDirectoriesToRegistry();
  virtual void WriteFavoriteDirectoriesToRegistry(
    const char *reg_key, int max_nb);
  virtual void WriteFavoriteDirectoriesToSystemRegistry();
  
  // Description:
  // Update favorite directory entries in Registry according to the
  // MaximumNumberOfFavoriteDirectoriesInRegistry
  virtual void PruneFavoriteDirectoriesInRegistry();
  
  // Description:
  // Add the special folders from Win32 registry to the favorite dirs list,
  // such as "My Documents", "Desktop"
  virtual int AddSpecialFavoriteFolder(int csidl);
      
  // Description:
  // Add a favorite button to the favorite frame
  virtual void AddFavoriteDirectoryToFrame(
    const char *path,
    const char *name); 
  virtual void UpdateFavoriteDirectoryButton(
    vtkKWPushButton *button, const char *path, const char *name); 

  // Description:
  // Select a favorite directory given its name
  virtual void SelectFavoriteDirectoryWithName(const char* path);
  
  // Description:
  // Get the selected favorite directory given its name
  const char* GetSelectedFavoriteDirectoryWithName(const char* name);

  // Description:
  // Remove a directory node from the most recent history list
  virtual void PopulateContextMenu(vtkKWMenu *menu, const char* path);

  // Description:
  // Clear pointers from internal list
  virtual void ClearInternalList();

  // Description:
  // Reset favorite frame/buttons state to unselected
  virtual void ClearFavoriteDirectorySelection();

  // Description:
  // Set/Get the default registry key the favorite dirs are saved to or
  // loaded from.
  vtkGetStringMacro(RegistryKey);
  vtkSetStringMacro(RegistryKey);
    
  // Description:
  // Commands
  char *AddFavoriteDirectoryCommand;
  char *FavoriteDirectorySelectedCommand;
  virtual void InvokeAddFavoriteDirectoryCommand();
  virtual void InvokeFavoriteDirectorySelectedCommand(
    const char* path, const char *name);
  
  // Description:
  // Internal PIMPL class for STL purposes.
  vtkKWFavoriteDirectoriesFrameInternals *Internals;
  
  // Description:
  // GUI
  vtkKWToolbar            *Toolbar;
  vtkKWFrameWithScrollbar *ContainerFrame;
  vtkKWPushButton         *AddFavoriteDirectoryButton;
  vtkKWMenu               *ContextMenu;

  // Description:
  // Member variables
  char *RegistryKey;
  int MaximumNumberOfFavoriteDirectoriesInRegistry;
  int UseSystemDefaultPlaces;
  
private:

  vtkKWFavoriteDirectoriesFrame(const vtkKWFavoriteDirectoriesFrame&); // Not implemented
  void operator=(const vtkKWFavoriteDirectoriesFrame&); // Not implemented
};
#endif