summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/jpeglossless/utils.h
blob: 0b9571a21f4361e46ed9b37c53c8adc3874ff063 (plain)
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
78
79
80
81
82
83
/* ============================================================
 *
 * This file is a part of kipi-plugins project
 * http://www.kipi-plugins.org
 *
 * Date        : 2003-12-03
 * Description : misc utils to used in batch process
 * 
 * Copyright (C) 2003-2005 by Renchi Raju <renchi@pooh.tam.uiuc.edu>
 * Copyright (C) 2004-2007 by Marcel Wiesweg <marcel dot wiesweg at gmx dot de>
 * Copyright (C) 2006-2007 by Gilles Caulier <caulier dot gilles at gmail dot 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, or (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * ============================================================ */

#ifndef UTILS_H
#define UTILS_H

// TQt includes.

#include <tqobject.h>
#include <tqstring.h>

class KProcess;

namespace KIPIJPEGLossLessPlugin
{

class Utils : public TQObject
{
    Q_OBJECT
  

public:

    Utils(TQObject *parent);
    ~Utils();

    bool updateMetadataImageMagick(const TQString& src, TQString& err);

public: // Static methods.

    /** Test if a file is a JPEG file.
    */
    static bool isJPEG(const TQString& file);
    
    /** Test if a file is a RAW file supported by dcraw.
    */
    static bool isRAW(const TQString& file);
    
    /** POSIX Compliant File Copy and Move -
        Can't use KIO based operations as we need to use these in a thread
    */
    
    static bool CopyFile(const TQString& src, const TQString& dst);
    static bool MoveFile(const TQString& src, const TQString& dst);
    
    /** Thread-safe recursive dir deletion.
    */
    
    static bool deleteDir(const TQString& dirPath);

private slots:

    void slotReadStderr(KProcess*, char*, int);

private:

    TQString m_stdErr;
};

}  // NameSpace KIPIJPEGLossLessPlugin

#endif /* UTILS_H */