kde-extraapps/gwenview/lib/zoomwidget.cpp

214 lines
6.2 KiB
C++
Raw Permalink Normal View History

// vim: set tabstop=4 shiftwidth=4 expandtab:
/*
Gwenview: an image viewer
Copyright 2008 Aurélien Gâteau <agateau@kde.org>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Cambridge, MA 02110-1301, USA.
*/
// Self
2015-02-27 11:02:43 +00:00
#include "moc_zoomwidget.cpp"
// stdc++
#include <cmath>
// Qt
#include <QAction>
#include <QApplication>
#include <QLabel>
#include <QHBoxLayout>
#include <QSlider>
// KDE
#include <KDebug>
#include <KIcon>
// Local
#include "zoomslider.h"
#include "signalblocker.h"
#include "statusbartoolbutton.h"
namespace Gwenview
{
static const qreal MAGIC_K = 1.04;
static const qreal MAGIC_OFFSET = 16.;
static const qreal PRECISION = 100.;
inline int sliderValueForZoom(qreal zoom)
{
return int(PRECISION * (log(zoom) / log(MAGIC_K) + MAGIC_OFFSET));
}
inline qreal zoomForSliderValue(int sliderValue)
{
return pow(MAGIC_K, sliderValue / PRECISION - MAGIC_OFFSET);
}
struct ZoomWidgetPrivate
{
ZoomWidget* q;
StatusBarToolButton* mZoomToFitButton;
StatusBarToolButton* mActualSizeButton;
QLabel* mZoomLabel;
ZoomSlider* mZoomSlider;
QAction* mZoomToFitAction;
QAction* mActualSizeAction;
QToolButton* mLockZoomButton;
bool mZoomUpdatedBySlider;
void emitZoomChanged()
{
// Use QSlider::sliderPosition(), not QSlider::value() because when we are
// called from slotZoomSliderActionTriggered(), QSlider::value() has not
// been updated yet.
qreal zoom = zoomForSliderValue(mZoomSlider->slider()->sliderPosition());
mZoomUpdatedBySlider = true;
emit q->zoomChanged(zoom);
mZoomUpdatedBySlider = false;
}
};
ZoomWidget::ZoomWidget(QWidget* parent)
: QFrame(parent)
, d(new ZoomWidgetPrivate)
{
d->q = this;
d->mZoomUpdatedBySlider = false;
setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Minimum);
d->mZoomToFitButton = new StatusBarToolButton;
d->mActualSizeButton = new StatusBarToolButton;
if (QApplication::isLeftToRight()) {
d->mZoomToFitButton->setGroupPosition(StatusBarToolButton::GroupLeft);
d->mActualSizeButton->setGroupPosition(StatusBarToolButton::GroupRight);
} else {
d->mActualSizeButton->setGroupPosition(StatusBarToolButton::GroupLeft);
d->mZoomToFitButton->setGroupPosition(StatusBarToolButton::GroupRight);
}
d->mZoomLabel = new QLabel;
d->mZoomLabel->setFixedWidth(d->mZoomLabel->fontMetrics().width(" 1000% "));
d->mZoomLabel->setAlignment(Qt::AlignCenter);
d->mZoomSlider = new ZoomSlider;
d->mZoomSlider->setMinimumWidth(150);
d->mZoomSlider->slider()->setSingleStep(int(PRECISION));
d->mZoomSlider->slider()->setPageStep(3 * int(PRECISION));
connect(d->mZoomSlider->slider(), SIGNAL(actionTriggered(int)), SLOT(slotZoomSliderActionTriggered()));
d->mLockZoomButton = new QToolButton;
d->mLockZoomButton->setAutoRaise(true);
d->mLockZoomButton->setCheckable(true);
updateLockZoomButton();
connect(d->mLockZoomButton, SIGNAL(toggled(bool)), SLOT(updateLockZoomButton()));
// Layout
QHBoxLayout* layout = new QHBoxLayout(this);
layout->setMargin(0);
layout->setSpacing(0);
layout->addWidget(d->mZoomToFitButton);
layout->addWidget(d->mActualSizeButton);
layout->addWidget(d->mZoomSlider);
layout->addWidget(d->mZoomLabel);
layout->addWidget(d->mLockZoomButton);
}
ZoomWidget::~ZoomWidget()
{
delete d;
}
void ZoomWidget::setActions(QAction* zoomToFitAction, QAction* actualSizeAction, QAction* zoomInAction, QAction* zoomOutAction)
{
d->mZoomToFitAction = zoomToFitAction;
d->mActualSizeAction = actualSizeAction;
d->mZoomToFitButton->setDefaultAction(zoomToFitAction);
d->mActualSizeButton->setDefaultAction(actualSizeAction);
d->mZoomSlider->setZoomInAction(zoomInAction);
d->mZoomSlider->setZoomOutAction(zoomOutAction);
// Adjust sizes
int width = qMax(d->mZoomToFitButton->sizeHint().width(), d->mActualSizeButton->sizeHint().width());
d->mZoomToFitButton->setFixedWidth(width);
d->mActualSizeButton->setFixedWidth(width);
}
void ZoomWidget::slotZoomSliderActionTriggered()
{
// The slider value changed because of the user (not because of range
// changes). In this case disable zoom and apply slider value.
d->emitZoomChanged();
}
void ZoomWidget::setZoom(qreal zoom)
{
int intZoom = qRound(zoom * 100);
d->mZoomLabel->setText(QString("%1%").arg(intZoom));
// Don't change slider value if we come here because the slider change,
// avoids choppy sliding scroll.
if (!d->mZoomUpdatedBySlider) {
QSlider* slider = d->mZoomSlider->slider();
SignalBlocker blocker(slider);
int value = sliderValueForZoom(zoom);
if (value < slider->minimum()) {
// It is possible that we are called *before* setMinimumZoom() as
// been called. In this case, define the minimum ourself.
d->mZoomSlider->setMinimum(value);
}
d->mZoomSlider->setValue(value);
}
}
void ZoomWidget::setMinimumZoom(qreal minimumZoom)
{
d->mZoomSlider->setMinimum(sliderValueForZoom(minimumZoom));
}
void ZoomWidget::setMaximumZoom(qreal zoom)
{
d->mZoomSlider->setMaximum(sliderValueForZoom(zoom));
}
bool ZoomWidget::isZoomLocked() const
{
return d->mLockZoomButton->isVisible() && d->mLockZoomButton->isChecked();
}
void ZoomWidget::setZoomLocked(bool locked)
{
d->mLockZoomButton->setChecked(locked);
}
void ZoomWidget::setLockZoomButtonVisible(bool visible)
{
d->mLockZoomButton->setVisible(visible);
}
void ZoomWidget::updateLockZoomButton()
{
d->mLockZoomButton->setIcon(KIcon(d->mLockZoomButton->isChecked() ? "object-locked" : "object-unlocked"));
}
} // namespace