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
|
/***************************************************************************
kfilereplacelib.h - File library, derived from filelib.h
-------------------
begin : lun mai 3 20:19:52 CEST 1999
copyright : (C) 1999 by Franois 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
#include <unistd.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/param.h>
#include <qdir.h>
#include <qfileinfo.h>
#include <klocale.h>
typedef unsigned long long int QWORD; // 64 bits
typedef unsigned long int DWORD; // 32 bits
typedef unsigned short UINT; // 16 bits
class KFileReplaceLib
{
private:
KFileReplaceLib() {};
KFileReplaceLib(const KFileReplaceLib&) {}
private:
//static KFileReplaceLib KFRLib;
public:
static KFileReplaceLib* instance() { return (new KFileReplaceLib()) ; }
/**
Create the text with a size in Bytes, KiloBytes, MegaBytes, GigaBytes, TeraBytes from a 64 bits number
Parameters::.....* qwSize: 64 bits number of the size in bytes
Return values:...* formatted text size
*/
QString formatSize(QWORD qwSize);
/**
Format a path, from a path and a filename, or another sub-path (avoid double '/' risks)
Parameters::.....* szBasePath: fist path (can be "/" if root, or "/usr/bin/" or "/usr/bin" for example)
.................* szFilename: second path (can be "/doc/html/", or "doc/html/" or "doc/html/index.html" for example)
Return values:...* Full valid path (without double "/")
*/
QString formatFullPath(const QString& szBasePath, const QString& szFilename);
/**
Add an extension to a filename, or a filepath
Parameters::.....* strFilename: filename or filepath (it can have already the extension)
.................* szExtension: extension to add without "." (ex: "html", "kfr")
Return values:...* Filename / Filepath with the extension
*/
QString addFilenameExtension(const QString& strFilename, const QString& szExtension);
};
#endif // KFILEREPLACEFILELIB_H
|