VTK
vtkSortFileNames.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkSortFileNames.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
33 #ifndef vtkSortFileNames_h
34 #define vtkSortFileNames_h
35 
36 #include "vtkIOCoreModule.h" // For export macro
37 #include "vtkObject.h"
38 
39 class vtkStringArray;
40 
41 //BTX
42 // this is a helper class defined in the .cxx file
43 class vtkStringArrayVector;
44 //ETX
45 
47 {
48 public:
49 
50  vtkTypeMacro(vtkSortFileNames,vtkObject);
51  void PrintSelf(ostream& os, vtkIndent indent);
52  static vtkSortFileNames *New();
53 
55 
59  vtkSetMacro(Grouping, int);
60  vtkGetMacro(Grouping, int);
61  vtkBooleanMacro(Grouping, int);
63 
65 
70  vtkSetMacro(NumericSort, int);
71  vtkGetMacro(NumericSort, int);
72  vtkBooleanMacro(NumericSort, int);
74 
76 
78  vtkSetMacro(IgnoreCase, int);
79  vtkGetMacro(IgnoreCase, int);
80  vtkBooleanMacro(IgnoreCase, int);
82 
84 
87  vtkSetMacro(SkipDirectories, int);
88  vtkGetMacro(SkipDirectories, int);
89  vtkBooleanMacro(SkipDirectories, int);
91 
93 
94  void SetInputFileNames(vtkStringArray *input);
95  vtkGetObjectMacro(InputFileNames, vtkStringArray);
97 
99  virtual vtkStringArray *GetFileNames();
100 
105  virtual int GetNumberOfGroups();
106 
109  virtual vtkStringArray *GetNthGroup(int i);
110 
114  virtual void Update();
115 
116 protected:
118  ~vtkSortFileNames();
119 
122  int Grouping;
124 
126 
129  vtkStringArrayVector *Groups;
130 
132  virtual void Execute();
133 
135  virtual void SortFileNames(vtkStringArray *input, vtkStringArray *output);
136 
138 
139  virtual void GroupFileNames(vtkStringArray *input,
140  vtkStringArrayVector *output);
142 
143 
144 private:
145  vtkSortFileNames(const vtkSortFileNames&); // Not implemented.
146  void operator=(const vtkSortFileNames&); // Not implemented.
147 };
148 
149 #endif
vtkTimeStamp UpdateTime
abstract base class for most VTK objects
Definition: vtkObject.h:61
vtkStringArray * FileNames
record modification and/or execution time
Definition: vtkTimeStamp.h:34
a vtkAbstractArray subclass for strings
virtual void Update()
#define VTKIOCORE_EXPORT
virtual void PrintSelf(ostream &os, vtkIndent indent)
a simple class to control print indentation
Definition: vtkIndent.h:38
Group and sort a set of filenames.
vtkStringArray * InputFileNames
vtkStringArrayVector * Groups
static vtkObject * New()