File indexing completed on 2024-05-05 16:39:00

0001 /* This file is part of the KDE project
0002    Copyright (C) 1998-2009 Carsten Pfeiffer <pfeiffer@kde.org>
0003 
0004    This program is free software; you can redistribute it and/or
0005    modify it under the terms of the GNU General Public
0006    License as published by the Free Software Foundation, version 2.
0007 
0008    This program is distributed in the hope that it will be useful,
0009    but WITHOUT ANY WARRANTY; without even the implied warranty of
0010    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
0011     General Public License for more details.
0012 
0013    You should have received a copy of the GNU General Public License
0014    along with this program; see the file COPYING.  If not, write to
0015    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
0016    Boston, MA 02110-1301, USA.
0017 */
0018 
0019 #ifndef IMAGE_MODS_H
0020 #define IMAGE_MODS_H
0021 
0022 #include <QCache>
0023 #include <QUrl>
0024 
0025 #include "imlibwidget.h"
0026 #include "kuickimage.h"
0027 
0028 class ImData;
0029 
0030 
0031 class ImageMods
0032 {
0033 public:
0034     static void rememberFor(KuickImage *kuim);
0035     static bool restoreFor(KuickImage *kuim, ImData *idata);
0036 
0037 private:
0038     static QCache<QUrl, ImageMods>* s_modifications;
0039     static QCache<QUrl, ImageMods>* getInstance();
0040 
0041     int           width;
0042     int           height;
0043 
0044     Rotation      rotation;
0045     FlipMode      flipMode;
0046 };
0047 
0048 
0049 
0050 #endif // IMAGE_MODS_H