diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | e9ae80694875f869892f13f4fcaf1170a00dea41 (patch) | |
tree | aa2f8d8a217e2d376224c8d46b7397b68d35de2d /kfilereplace/kfilereplacelib.h | |
download | tdewebdev-e9ae80694875f869892f13f4fcaf1170a00dea41.tar.gz tdewebdev-e9ae80694875f869892f13f4fcaf1170a00dea41.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdewebdev@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kfilereplace/kfilereplacelib.h')
-rw-r--r-- | kfilereplace/kfilereplacelib.h | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/kfilereplace/kfilereplacelib.h b/kfilereplace/kfilereplacelib.h new file mode 100644 index 00000000..e5c14c72 --- /dev/null +++ b/kfilereplace/kfilereplacelib.h @@ -0,0 +1,65 @@ +/*************************************************************************** + kfilereplacelib.h - File library, derived from filelib.h + ------------------- + begin : lun mai 3 20:19:52 CEST 1999 + + copyright : (C) 1999 by François Dupoux + (C) 2003 Andras Mantia <amantia@kde.org> + (C) 2004 Emiliano Gulmini <emi_barbarossa@yahoo.it> + email : dupoux@dupoux.com + ***************************************************************************/ + +/*************************************************************************** + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + ***************************************************************************/ + +#ifndef KFILEREPLACELIB_H +#define KFILEREPLACELIB_H + +// KDE +#include <klocale.h> +class KlistView; + +// local +#include "configurationclasses.h" + +class KFileReplaceLib +{ + public: + + /** + Format a path, from a path and a filename, or another sub-path (avoid double '/' risks) + Parameters::.....* basePath: fist path (can be "/" if root, or "/usr/bin/" or "/usr/bin" for example) + .................* filename: second path (can be "/doc/html/", or "doc/html/" or "doc/html/index.html" for example) + Return values:...* Full valid path (without double "/") + */ + static QString formatFullPath(const QString& basePath, const QString& fileName); + + /** + Add an extension to a filename, or a filepath + Parameters::.....* filename: filename or filepath (it can have already the extension) + .................* extension: extension to add without "." (ex: "html", "kfr") + Return values:...* Filename / Filepath with the extension + */ + static QString addExtension(const QString& fileName, const QString& extension); + + static QString formatFileSize(double size); + + /** + converts the old kfr format file in the new xml-based format. + */ + static void convertOldToNewKFRFormat(const QString& fileName, KListView* stringView); + /** + Verifies that files, which we are scanning, respect some + conditions + */ + static bool isAnAccessibleFile(const QString& filePath, const QString& fileName, RCOptions* info); + + static void setIconForFileEntry(QListViewItem* item, QString path); +}; +#endif // KFILEREPLACEFILELIB_H |