Krazy/EBN: fix i18n warnings
[kphotoalbum.git] / ImageManager / RawImageDecoder.h
blobb5d14f33c10a1865b8bc84ba7fd62762c138d219
1 /* Copyright (C) 2003-2006 Jesper K. Pedersen <blackie@kde.org>
3 This program is free software; you can redistribute it and/or
4 modify it under the terms of the GNU General Public
5 License as published by the Free Software Foundation; either
6 version 2 of the License, or (at your option) any later version.
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 General Public License for more details.
13 You should have received a copy of the GNU General Public License
14 along with this program; see the file COPYING. If not, write to
15 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
16 Boston, MA 02110-1301, USA.
18 #ifndef RAWIMAGEDECODER_H
19 #define RAWIMAGEDECODER_H
21 #include "ImageDecoder.h"
22 #include <QSet>
23 #include <QStringList>
25 namespace ImageManager
28 class RAWImageDecoder : public ImageDecoder {
29 public:
30 virtual bool _decode(QImage *img, const QString& imageFile, QSize* fullSize, int dim=-1);
31 virtual bool _mightDecode( const QString& imageFile );
32 virtual bool _skipThisFile( const QSet<QString>& loadedFiles, const QString& imageFile ) const;
34 private:
35 bool _fileExistsWithExtensions( const QString& fileName, const QStringList& extensionList ) const;
36 bool _fileEndsWithExtensions( const QString& fileName, const QStringList& extensionList ) const;
37 bool _fileIsKnownWithExtensions( const QSet<QString>& files, const QString& fileName, const QStringList& extensionList ) const;
38 void _initializeExtensionLists( QStringList& rawExtensions, QStringList& standardExtensions, QStringList& ignoredExtensions ) const;
43 #endif /* RAWIMAGEDECODER_H */