kde-workspace/kcontrol/kfontinst/viewpart/FontPreview.cpp

181 lines
4.3 KiB
C++
Raw Normal View History

2014-11-13 19:30:51 +02:00
/*
* KFontInst - KDE Font Installer
*
* Copyright 2003-2007 Craig Drummond <craig@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; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "FontPreview.h"
#include "FcEngine.h"
#include "CharTip.h"
#include <KApplication>
#include <KLocale>
2014-11-13 19:30:51 +02:00
#include <QtGui/QPainter>
#include <QtGui/qevent.h>
#include <QtGui/qevent.h>
#include <QtGui/qevent.h>
2014-11-13 19:30:51 +02:00
#include <stdlib.h>
namespace KFI
{
static const int constBorder=4;
static const int constStepSize=16;
CFontPreview::CFontPreview(QWidget *parent)
: QWidget(parent),
itsCurrentFace(1),
itsLastWidth(0),
itsLastHeight(0),
itsStyleInfo(KFI_NO_STYLE_INFO),
itsTip(NULL)
{
itsEngine=new CFcEngine;
}
CFontPreview::~CFontPreview()
{
delete itsTip;
delete itsEngine;
}
void CFontPreview::showFont(const QString &name, unsigned long styleInfo,
int face)
{
itsFontName=name;
itsStyleInfo=styleInfo;
showFace(face);
}
void CFontPreview::showFace(int face)
{
itsCurrentFace=face;
showFont();
}
void CFontPreview::showFont()
{
itsLastWidth=width()+constStepSize;
itsLastHeight=height()+constStepSize;
itsImage=itsEngine->draw(itsFontName, itsStyleInfo, itsCurrentFace,
palette().text().color(), palette().base().color(),
itsLastWidth, itsLastHeight,
false, itsRange, &itsChars);
if(!itsImage.isNull())
{
itsLastChar=CFcEngine::TChar();
setMouseTracking(itsChars.count()>0);
update();
emit status(true);
emit atMax(itsEngine->atMax());
emit atMin(itsEngine->atMin());
}
else
{
itsLastChar=CFcEngine::TChar();
setMouseTracking(false);
update();
emit status(false);
emit atMax(true);
emit atMin(true);
}
}
void CFontPreview::zoomIn()
{
itsEngine->zoomIn();
showFont();
emit atMax(itsEngine->atMax());
}
void CFontPreview::zoomOut()
{
itsEngine->zoomOut();
showFont();
emit atMin(itsEngine->atMin());
}
void CFontPreview::setUnicodeRange(const QList<CFcEngine::TRange> &r)
{
itsRange=r;
showFont();
}
void CFontPreview::paintEvent(QPaintEvent *)
{
QPainter paint(this);
paint.fillRect(rect(), palette().base());
if(!itsImage.isNull())
{
if(abs(width()-itsLastWidth)>constStepSize || abs(height()-itsLastHeight)>constStepSize)
showFont();
else
paint.drawImage(QPoint(constBorder, constBorder), itsImage,
QRect(0, 0, width()-(constBorder*2), height()-(constBorder*2)));
}
}
void CFontPreview::mouseMoveEvent(QMouseEvent *event)
{
if(itsChars.size())
{
QList<CFcEngine::TChar>::ConstIterator end(itsChars.end());
if(itsLastChar.isNull() || !itsLastChar.contains(event->pos()))
for(QList<CFcEngine::TChar>::ConstIterator it(itsChars.begin()); it!=end; ++it)
if((*it).contains(event->pos()))
{
if(!itsTip)
itsTip=new CCharTip(this);
itsTip->setItem(*it);
itsLastChar=*it;
break;
}
}
}
void CFontPreview::wheelEvent(QWheelEvent *e)
{
if(e->delta()>0)
zoomIn();
else if(e->delta()<0)
zoomOut();
e->accept();
}
QSize CFontPreview::sizeHint() const
{
return QSize(132, 132);
}
QSize CFontPreview::minimumSizeHint() const
{
return QSize(32, 32);
}
}
2015-02-27 09:28:46 +00:00
#include "moc_FontPreview.cpp"