Slicer  4.8
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 
46  static bool isCLILoadableModule(const QString& filePath);
47 
51  static bool isLoadableModule(const QString& filePath);
52 
57  static QString searchTargetInIntDir(const QString& directory, const QString& target);
58 
61  static QString executableExtension();
62 
64  //static QString libraryExtension();
65 
71  static QString extractModuleNameFromLibraryName(const QString& libraryName);
72 
76  static QString extractModuleNameFromClassName(const QString& className);
77 
82  static bool isPluginInstalled(const QString& filePath, const QString& applicationHomeDir);
83 
85  static bool isPluginBuiltIn(const QString& filePath, const QString& applicationHomeDir);
86 
160  static QString pathWithoutIntDir(const QString& path, const QString& subDirWithoutIntDir);
161  static QString pathWithoutIntDir(const QString& path, const QString& subDirWithoutIntDir, QString& intDir);
162 
164  static bool pathEndsWith(const QString& inputPath, const QString& path);
165 
166 
174  static bool setPermissionsRecursively(const QString &path,
175  QFile::Permissions directoryPermissions,
176  QFile::Permissions filePermissions);
177 
197  static QString replaceWikiUrlVersion(const QString& text, const QString& version);
198 
199 private:
201  qSlicerUtils(){}
202  virtual ~qSlicerUtils(){}
203 
204 };
205 
206 #endif
qSlicerUtils Self
Definition: qSlicerUtils.h:33