You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.7 KiB
55 lines
1.7 KiB
/* This file is part of the KDE project
|
|
Copyright (C) 2005 Johannes Schaub <litb_devel@web.de>
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Library General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
This library 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
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public License
|
|
along with this library; see the file COPYING.LIB. If not, write to
|
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#ifndef _KOZOOMMODE_H_
|
|
#define _KOZOOMMODE_H_
|
|
|
|
#include <tqstring.h>
|
|
#include "koffice_export.h"
|
|
|
|
/**
|
|
* The ZoomMode container
|
|
*/
|
|
class KOFFICEUI_EXPORT KoZoomMode
|
|
{
|
|
public:
|
|
enum Mode
|
|
{
|
|
ZOOM_WIDTH = 0, ///< zoom pagewidth
|
|
ZOOM_PAGE = 1, ///< zoom to pagesize
|
|
ZOOM_CONSTANT = 2 ///< zoom x %
|
|
};
|
|
|
|
/// \param mode the mode name
|
|
/// \return the to Mode converted TQString \c mode
|
|
static Mode toMode(const TQString& mode);
|
|
|
|
/// \return the to TQString converted and translated Mode \c mode
|
|
static TQString toString(Mode mode);
|
|
|
|
/// \param mode the mode name
|
|
/// \return true if \c mode isn't dependent on windowsize
|
|
static bool isConstant(const TQString& mode)
|
|
{ return toMode(mode) == ZOOM_CONSTANT; }
|
|
private:
|
|
static const char * modes[];
|
|
};
|
|
|
|
#endif
|