~ubuntu-branches/ubuntu/saucy/digikam/saucy

« back to all changes in this revision

Viewing changes to utilities/queuemanager/basetools/color/convert16to8.h

  • Committer: Bazaar Package Importer
  • Author(s): Christian Mangold
  • Date: 2010-04-09 21:30:01 UTC
  • mfrom: (1.2.28 upstream)
  • Revision ID: james.westby@ubuntu.com-20100409213001-4bfyibrd359rn7o3
Tags: 2:1.2.0-0ubuntu1
* New upstream release (LP: #560576)
* Remove all patches, fixed upstream
  - Remove quilt build-depend

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* ============================================================
 
2
 *
 
3
 * This file is a part of digiKam project
 
4
 * http://www.digikam.org
 
5
 *
 
6
 * Date        : 2010-03-16
 
7
 * Description : 16 to 8 bits color depth converter batch tool.
 
8
 *
 
9
 * Copyright (C) 2010 by Gilles Caulier <caulier dot gilles at gmail dot com>
 
10
 *
 
11
 * This program is free software; you can redistribute it
 
12
 * and/or modify it under the terms of the GNU General
 
13
 * Public License as published by the Free Software Foundation;
 
14
 * either version 2, or (at your option)
 
15
 * any later version.
 
16
 *
 
17
 * This program is distributed in the hope that it will be useful,
 
18
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
19
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
20
 * GNU General Public License for more details.
 
21
 *
 
22
 * ============================================================ */
 
23
 
 
24
#ifndef CONVERT16TO8_H
 
25
#define CONVERT16TO8_H
 
26
 
 
27
// Local includes
 
28
 
 
29
#include "batchtool.h"
 
30
 
 
31
namespace Digikam
 
32
{
 
33
 
 
34
class Convert16to8 : public BatchTool
 
35
{
 
36
    Q_OBJECT
 
37
 
 
38
public:
 
39
 
 
40
    Convert16to8(QObject* parent=0);
 
41
    ~Convert16to8();
 
42
 
 
43
    BatchToolSettings defaultSettings(){ return BatchToolSettings(); };
 
44
 
 
45
private:
 
46
 
 
47
    bool toolOperations();
 
48
 
 
49
private Q_SLOTS:
 
50
 
 
51
    void slotAssignSettings2Widget(){};
 
52
    void slotSettingsChanged(){};
 
53
};
 
54
 
 
55
}  // namespace Digikam
 
56
 
 
57
#endif /* CONVERT16TO8_H */