/*************************************************************************** * Copyright (c) 2015 WandererFan * * * * This file is part of the FreeCAD CAx development system. * * * * 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., 59 Temple Place, * * Suite 330, Boston, MA 02111-1307, USA * * * ***************************************************************************/ #include "PreCompiled.h" #ifndef _PreComp_ #include #include #include #include #include #include #include #include #include #endif #include #include #include #include #include #include #include "Rez.h" #include "ZVALUE.h" #include "DrawGuiUtil.h" #include "QGICMark.h" #include "QGIView.h" #include "QGCustomText.h" using namespace TechDrawGui; QGCustomText::QGCustomText() { setCacheMode(QGraphicsItem::NoCache); setAcceptHoverEvents(false); setFlag(QGraphicsItem::ItemIsSelectable, false); setFlag(QGraphicsItem::ItemIsMovable, false); isHighlighted = false; m_colCurrent = getNormalColor(); m_colNormal = m_colCurrent; } void QGCustomText::centerAt(QPointF centerPos) { centerAt(centerPos.x(),centerPos.y()); // QRectF box = boundingRect(); // double width = box.width(); // double height = box.height(); // double newX = centerPos.x() - width/2.; // double newY = centerPos.y() - height/2.; // setPos(newX,newY); } void QGCustomText::centerAt(double cX, double cY) { QRectF box = boundingRect(); double width = box.width(); double height = box.height(); double newX = cX - width/2.; double newY = cY - height/2.; setPos(newX,newY); } QVariant QGCustomText::itemChange(GraphicsItemChange change, const QVariant &value) { if (change == ItemSelectedHasChanged && scene()) { if(isSelected()) { setPrettySel(); } else { setPrettyNormal(); } } return QGraphicsTextItem::itemChange(change, value); } void QGCustomText::hoverEnterEvent(QGraphicsSceneHoverEvent *event) { if (!isSelected()) { setPrettyPre(); } QGraphicsTextItem::hoverEnterEvent(event); } void QGCustomText::hoverLeaveEvent(QGraphicsSceneHoverEvent *event) { if(!isSelected() && !isHighlighted) { setPrettyNormal(); } QGraphicsTextItem::hoverLeaveEvent(event); } void QGCustomText::setPrettyNormal() { // m_colCurrent = getNormalColor(); m_colCurrent = m_colNormal; update(); } void QGCustomText::setPrettyPre() { m_colCurrent = getPreColor(); update(); } void QGCustomText::setPrettySel() { m_colCurrent = getSelectColor(); update(); } void QGCustomText::paint ( QPainter * painter, const QStyleOptionGraphicsItem * option, QWidget * widget) { QStyleOptionGraphicsItem myOption(*option); myOption.state &= ~QStyle::State_Selected; //svg text is much larger than screen text. scene units(mm or 0.1mm in hirez) vs points. //need to scale text if going to svg. //TODO: magic translation happens. why? approx: right ~8mm down: 12mm + (3mm per mm of text height) //SVG transform matrix translation values are different for same font size + different fonts (Sans vs Ubuntu vs Arial)??? // scale values are same for same font size + different fonts. //calculate dots/mm //in hirez - say factor = 10, we have 10 dpmm in scene space. // so 254dpi / 72pts/in => 3.53 dppt double dpmm = 3.53; //dots/pt double svgMagicX = Rez::guiX(8.0); //8mm -> 80 gui dots double svgMagicY = Rez::guiX(12.0); double svgMagicYoffset = Rez::guiX(3.0); // 3mm per mm of font size => 30gunits / mm of font size double fontSize = Rez::appX(font().pointSizeF()); //gui pts 4mm text * 10 scunits/mm = size 40 text but still only 4mm double ty = svgMagicY + (svgMagicYoffset*fontSize)/dpmm; // 12mm (in gunits) + [3mm (in gunits) * (# of mm)]/ [dots per mm] works out to dots? QPointF svgMove(-svgMagicX/dpmm,ty); QPaintDevice* hw = painter->device(); QSvgGenerator* svg = dynamic_cast(hw); if (svg) { painter->scale(Rez::appX(dpmm),Rez::appX(dpmm)); painter->translate(svgMove); } else { painter->scale(1.0,1.0); } // painter->drawRect(boundingRect()); //good for debugging setDefaultTextColor(m_colCurrent); QGraphicsTextItem::paint (painter, &myOption, widget); } QColor QGCustomText::getNormalColor() { QColor result; QGIView *parent; QGraphicsItem* qparent = parentItem(); if (qparent == nullptr) { parent = nullptr; } else { parent = dynamic_cast (qparent); } if (parent != nullptr) { result = parent->getNormalColor(); } else { Base::Reference hGrp = getParmGroup(); App::Color fcColor; fcColor.setPackedValue(hGrp->GetUnsigned("NormalColor", 0x00000000)); result = fcColor.asValue(); } return result; } QColor QGCustomText::getPreColor() { Base::Reference hGrp = getParmGroup(); App::Color fcColor; fcColor.setPackedValue(hGrp->GetUnsigned("PreSelectColor", 0xFFFF0000)); return fcColor.asValue(); } QColor QGCustomText::getSelectColor() { Base::Reference hGrp = getParmGroup(); App::Color fcColor; fcColor.setPackedValue(hGrp->GetUnsigned("SelectColor", 0x00FF0000)); return fcColor.asValue(); } Base::Reference QGCustomText::getParmGroup() { Base::Reference hGrp = App::GetApplication().GetUserParameter() .GetGroup("BaseApp")->GetGroup("Preferences")->GetGroup("Mod/TechDraw/Colors"); return hGrp; } void QGCustomText::makeMark(double x, double y) { QGICMark* cmItem = new QGICMark(-1); cmItem->setParentItem(this); cmItem->setPos(x,y); cmItem->setThick(1.0); cmItem->setSize(40.0); cmItem->setZValue(ZVALUE::VERTEX); } void QGCustomText::makeMark(Base::Vector3d v) { makeMark(v.x,v.y); }