1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
|
// SPDX-FileCopyrightText: 2003 Dominique Devriese <devriese@kde.org>
// SPDX-License-Identifier: GPL-2.0-or-later
#include "object_drawer.h"
#include "../misc/kigpainter.h"
#include "object_imp.h"
#include <QPen>
#include <cassert>
#include <qnamespace.h>
void ObjectDrawer::draw(const ObjectImp &imp, KigPainter &p, bool sel) const
{
bool nv = p.getNightVision();
if (mshown || nv) {
p.setBrushStyle(Qt::NoBrush);
p.setBrushColor(sel ? Qt::red : (mshown ? mcolor : Qt::gray));
p.setPen(QPen(sel ? Qt::red : (mshown ? mcolor : Qt::gray), 1));
p.setWidth(mwidth);
p.setStyle(mstyle);
p.setPointStyle(mpointstyle);
p.setFont(mfont);
p.setSelected(sel);
imp.draw(p);
}
}
bool ObjectDrawer::contains(const ObjectImp &imp, const Coordinate &pt, const KigWidget &w, bool nv) const
{
bool shownornv = mshown || nv;
return shownornv && imp.contains(pt, mwidth, w);
}
bool ObjectDrawer::shown() const
{
return mshown;
}
QColor ObjectDrawer::color() const
{
return mcolor;
}
ObjectDrawer *ObjectDrawer::getCopyShown(bool s) const
{
ObjectDrawer *ret = new ObjectDrawer;
ret->mcolor = mcolor;
ret->mshown = s;
ret->mwidth = mwidth;
ret->mstyle = mstyle;
ret->mpointstyle = mpointstyle;
ret->mfont = mfont;
return ret;
}
ObjectDrawer *ObjectDrawer::getCopyColor(const QColor &c) const
{
ObjectDrawer *ret = new ObjectDrawer;
ret->mcolor = c;
ret->mshown = mshown;
ret->mwidth = mwidth;
ret->mstyle = mstyle;
ret->mpointstyle = mpointstyle;
ret->mfont = mfont;
return ret;
}
ObjectDrawer *ObjectDrawer::getCopyWidth(int w) const
{
ObjectDrawer *ret = new ObjectDrawer;
ret->mcolor = mcolor;
ret->mshown = mshown;
ret->mwidth = w;
ret->mstyle = mstyle;
ret->mpointstyle = mpointstyle;
ret->mfont = mfont;
return ret;
}
ObjectDrawer *ObjectDrawer::getCopyStyle(Qt::PenStyle s) const
{
ObjectDrawer *ret = new ObjectDrawer;
ret->mcolor = mcolor;
ret->mshown = mshown;
ret->mwidth = mwidth;
ret->mstyle = s;
ret->mpointstyle = mpointstyle;
ret->mfont = mfont;
return ret;
}
ObjectDrawer *ObjectDrawer::getCopyPointStyle(Kig::PointStyle p) const
{
ObjectDrawer *ret = new ObjectDrawer;
ret->mcolor = mcolor;
ret->mshown = mshown;
ret->mwidth = mwidth;
ret->mstyle = mstyle;
ret->mpointstyle = p;
ret->mfont = mfont;
return ret;
}
ObjectDrawer *ObjectDrawer::getCopyFont(const QFont &f) const
{
ObjectDrawer *ret = new ObjectDrawer;
ret->mcolor = mcolor;
ret->mshown = mshown;
ret->mwidth = mwidth;
ret->mstyle = mstyle;
ret->mpointstyle = mpointstyle;
ret->mfont = f;
return ret;
}
int ObjectDrawer::width() const
{
return mwidth;
}
Qt::PenStyle ObjectDrawer::style() const
{
return mstyle;
}
Kig::PointStyle ObjectDrawer::pointStyle() const
{
return mpointstyle;
}
QFont ObjectDrawer::font() const
{
return mfont;
}
ObjectDrawer::ObjectDrawer(const QColor &color, int width, bool shown, Qt::PenStyle style, Kig::PointStyle pointStyle, const QFont &f)
: mcolor(color)
, mshown(shown)
, mwidth(width)
, mstyle(style)
, mpointstyle(pointStyle)
, mfont(f)
{
}
ObjectDrawer::ObjectDrawer()
: mcolor(Qt::blue)
, mshown(true)
, mwidth(-1)
, mstyle(Qt::SolidLine)
, mpointstyle(Kig::Round)
, mfont(QFont())
{
}
bool ObjectDrawer::inRect(const ObjectImp &imp, const Rect &r, const KigWidget &w) const
{
return mshown && imp.inRect(r, mwidth, w);
}
Qt::PenStyle ObjectDrawer::styleFromString(const QString &style)
{
if (style == QLatin1String("SolidLine"))
return Qt::SolidLine;
else if (style == QLatin1String("DashLine"))
return Qt::DashLine;
else if (style == QLatin1String("DotLine"))
return Qt::DotLine;
else if (style == QLatin1String("DashDotLine"))
return Qt::DashDotLine;
else if (style == QLatin1String("DashDotDotLine"))
return Qt::DashDotDotLine;
else
return Qt::SolidLine;
}
QString ObjectDrawer::styleToString() const
{
if (mstyle == Qt::SolidLine)
return QStringLiteral("SolidLine");
else if (mstyle == Qt::DashLine)
return QStringLiteral("DashLine");
else if (mstyle == Qt::DotLine)
return QStringLiteral("DotLine");
else if (mstyle == Qt::DashDotLine)
return QStringLiteral("DashDotLine");
else if (mstyle == Qt::DashDotDotLine)
return QStringLiteral("DashDotDotLine");
return QStringLiteral("SolidLine");
}
|