Slicer  4.10
Slicer is a multi-platform, free and open source software package for visualization and medical image computing
qSlicerUtils.h
Go to the documentation of this file.
1 /*==============================================================================
2 
3  Program: 3D Slicer
4 
5  Copyright (c) Kitware Inc.
6 
7  See COPYRIGHT.txt
8  or http://www.slicer.org/copyright/copyright.txt for details.
9 
10  Unless required by applicable law or agreed to in writing, software
11  distributed under the License is distributed on an "AS IS" BASIS,
12  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  See the License for the specific language governing permissions and
14  limitations under the License.
15 
16  This file was originally developed by Jean-Christophe Fillion-Robin, Kitware Inc.
17  and was partially funded by NIH grant 3P41RR013218-12S1
18 
19 ==============================================================================*/
20 
21 #ifndef __qSlicerUtils_h
22 #define __qSlicerUtils_h
23 
24 #include <QFile>
25 #include <QString>
26 
27 #include "qSlicerBaseQTCoreExport.h"
28 
29 class Q_SLICER_BASE_QTCORE_EXPORT qSlicerUtils
30 {
31 
32 public:
33  typedef qSlicerUtils Self;
34 
38  static bool isExecutableName(const QString& name);
39 
41  static bool isCLIExecutable(const QString& filePath);
42 
44  static bool isCLIScriptedExecutable(const QString& filePath);
45 
49  static bool isCLILoadableModule(const QString& filePath);
50 
54  static bool isLoadableModule(const QString& filePath);
55 
60  static QString searchTargetInIntDir(const QString& directory, const QString& target);
61 
64  static QString executableExtension();
65 
67  //static QString libraryExtension();
68 
74  static QString extractModuleNameFromLibraryName(const QString& libraryName);
75 
79  static QString extractModuleNameFromClassName(const QString& className);
80 
85  static bool isPluginInstalled(const QString& filePath, const QString& applicationHomeDir);
86 
88  static bool isPluginBuiltIn(const QString& filePath, const QString& applicationHomeDir);
89 
163  static QString pathWithoutIntDir(const QString& path, const QString& subDirWithoutIntDir);
164  static QString pathWithoutIntDir(const QString& path, const QString& subDirWithoutIntDir, QString& intDir);
165 
167  static bool pathEndsWith(const QString& inputPath, const QString& path);
168 
169 
177  static bool setPermissionsRecursively(const QString &path,
178  QFile::Permissions directoryPermissions,
179  QFile::Permissions filePermissions);
180 
200  static QString replaceWikiUrlVersion(const QString& text, const QString& version);
201 
202 private:
204  qSlicerUtils(){}
205  virtual ~qSlicerUtils(){}
206 
207 };
208 
209 #endif
qSlicerUtils Self
Definition: qSlicerUtils.h:33