File indexing completed on 2024-04-28 04:18:53

0001 // vim: set tabstop=4 shiftwidth=4 expandtab:
0002 /*
0003 Gwenview: an image viewer
0004 Copyright 2008 Aurélien Gâteau <agateau@kde.org>
0005 Copyright 2014 John Zaitseff <J.Zaitseff@zap.org.au>
0006 
0007 This program is free software; you can redistribute it and/or modify it
0008 under the terms of the GNU General Public License as published by the
0009 Free Software Foundation; either version 2 of the License, or (at your
0010 option) any later version.
0011 
0012 This program is distributed in the hope that it will be useful,
0013 but WITHOUT ANY WARRANTY; without even the implied warranty of
0014 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
0015 GNU General Public License for more details.
0016 
0017 You should have received a copy of the GNU General Public License along
0018 with this program; if not, write to the Free Software Foundation, Inc.,
0019 51 Franklin Street, Fifth Floor, Cambridge, MA 02110-1301, USA.
0020 
0021 */
0022 #ifndef ZOOMMODE_H
0023 #define ZOOMMODE_H
0024 
0025 // Qt
0026 
0027 // KF
0028 
0029 // Local
0030 
0031 namespace Gwenview
0032 {
0033 namespace ZoomMode
0034 {
0035 /**
0036  * This enum represents the different zoom modes.
0037  */
0038 enum Enum {
0039     Autofit,
0040     KeepSame,
0041     Individual,
0042 };
0043 
0044 } // namespace ZoomMode
0045 
0046 } // namespace Gwenview
0047 
0048 #endif /* ZOOMMODE_H */