00001 /* This file is part of the KDE project 00002 * Copyright (C) 2006 Thomas Zander <zander@kde.org> 00003 * 00004 * This library is free software; you can redistribute it and/or 00005 * modify it under the terms of the GNU Library General Public 00006 * License as published by the Free Software Foundation; either 00007 * version 2 of the License, or (at your option) any later version. 00008 * 00009 * This library is distributed in the hope that it will be useful, 00010 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00012 * Library General Public License for more details. 00013 * 00014 * You should have received a copy of the GNU Library General Public License 00015 * along with this library; see the file COPYING.LIB. If not, write to 00016 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00017 * Boston, MA 02110-1301, USA. 00018 */ 00019 00020 #include "KoLineBorder.h" 00021 #include "KoViewConverter.h" 00022 #include "KoShape.h" 00023 00024 #include <QPainterPath> 00025 00026 KoLineBorder::KoLineBorder() 00027 : m_lineSize(-1) 00028 , m_color(Qt::black) 00029 { 00030 } 00031 00032 KoLineBorder::KoLineBorder(double lineSize, QColor color) 00033 : m_lineSize(lineSize) 00034 , m_color(color) 00035 { 00036 } 00037 00038 KoInsets* KoLineBorder::borderInsets(const KoShape *shape, KoInsets &insets) { 00039 Q_UNUSED(shape); 00040 double lineSize = m_lineSize; 00041 if(lineSize < 0) 00042 lineSize = 1; 00043 lineSize /= 2; // since we draw a line half inside, and half outside the object. 00044 insets.top = lineSize; 00045 insets.bottom = lineSize; 00046 insets.left = lineSize; 00047 insets.right = lineSize; 00048 return &insets; 00049 } 00050 00051 bool KoLineBorder::hasTransparency() { 00052 return m_color.alpha() > 0; 00053 } 00054 00055 void KoLineBorder::paintBorder(KoShape *shape, QPainter &painter, const KoViewConverter &converter) { 00056 KoShape::applyConversion( painter, converter ); 00057 00058 QPen pen; 00059 pen.setColor(m_color); 00060 pen.setWidthF(qMax(0.0, m_lineSize)); 00061 pen.setJoinStyle(Qt::MiterJoin); 00062 painter.strokePath( shape->outline(), pen ); 00063 }