180 lines
5.4 KiB
C++
180 lines
5.4 KiB
C++
/***************************************************************************
|
|
* Copyright (c) 2013 Luke Parry <l.parry@warwick.ac.uk> *
|
|
* *
|
|
* 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 <assert.h>
|
|
#include <QGraphicsScene>
|
|
#include <QGraphicsSceneHoverEvent>
|
|
#include <QMouseEvent>
|
|
#include <QPainter>
|
|
#include <QPainterPathStroker>
|
|
#include <QStyleOptionGraphicsItem>
|
|
#endif
|
|
|
|
#include <App/Application.h>
|
|
#include <App/Material.h>
|
|
#include <Base/Console.h>
|
|
#include <Base/Parameter.h>
|
|
|
|
#include <qmath.h>
|
|
#include "QGIView.h"
|
|
#include "QGIEdge.h"
|
|
|
|
using namespace TechDrawGui;
|
|
|
|
QGIEdge::QGIEdge(int index) :
|
|
projIndex(index)
|
|
{
|
|
setCacheMode(QGraphicsItem::NoCache);
|
|
setFlag(QGraphicsItem::ItemIsSelectable, true);
|
|
setFlag(QGraphicsItem::ItemSendsScenePositionChanges, true);
|
|
setFlag(QGraphicsItem::ItemSendsGeometryChanges,true);
|
|
setAcceptHoverEvents(true);
|
|
|
|
strokeWidth = 1.;
|
|
|
|
isCosmetic = false;
|
|
isHighlighted = false;
|
|
isHiddenEdge = false;
|
|
isSmoothEdge = false;
|
|
|
|
Base::Reference<ParameterGrp> hGrp = App::GetApplication().GetUserParameter()
|
|
.GetGroup("BaseApp")->GetGroup("Preferences")->GetGroup("Mod/TechDraw/Colors");
|
|
App::Color fcColor = App::Color((uint32_t) hGrp->GetUnsigned("NormalColor", 0x00000000));
|
|
m_colNormal = fcColor.asQColor();
|
|
fcColor.setPackedValue(hGrp->GetUnsigned("SelectColor", 0x0000FF00));
|
|
m_colSel = fcColor.asQColor();
|
|
fcColor.setPackedValue(hGrp->GetUnsigned("PreSelectColor", 0x00080800));
|
|
m_colPre = fcColor.asQColor();
|
|
fcColor.setPackedValue(hGrp->GetUnsigned("HiddenColor", 0x08080800));
|
|
m_colHid = fcColor.asQColor();
|
|
|
|
m_pen.setStyle(Qt::SolidLine);
|
|
m_pen.setCapStyle(Qt::RoundCap);
|
|
|
|
m_pen.setCosmetic(isCosmetic);
|
|
setPrettyNormal();
|
|
}
|
|
|
|
QRectF QGIEdge::boundingRect() const
|
|
{
|
|
return shape().controlPointRect();
|
|
}
|
|
|
|
QPainterPath QGIEdge::shape() const
|
|
{
|
|
QPainterPath outline;
|
|
QPainterPathStroker stroker;
|
|
stroker.setWidth(2.0);
|
|
outline = stroker.createStroke(path());
|
|
return outline;
|
|
}
|
|
|
|
|
|
QVariant QGIEdge::itemChange(GraphicsItemChange change, const QVariant &value)
|
|
{
|
|
if (change == ItemSelectedHasChanged && scene()) {
|
|
if(isSelected()) {
|
|
setPrettySel();
|
|
} else {
|
|
setPrettyNormal();
|
|
}
|
|
}
|
|
return QGraphicsItem::itemChange(change, value);
|
|
}
|
|
|
|
void QGIEdge::hoverEnterEvent(QGraphicsSceneHoverEvent *event)
|
|
{
|
|
setPrettyPre();
|
|
QGraphicsPathItem::hoverEnterEvent(event);
|
|
}
|
|
|
|
void QGIEdge::hoverLeaveEvent(QGraphicsSceneHoverEvent *event)
|
|
{
|
|
QGIView *view = dynamic_cast<QGIView *> (parentItem()); //this is temp for debug??
|
|
assert(view != 0);
|
|
|
|
if(!isSelected() && !isHighlighted) {
|
|
setPrettyNormal();
|
|
}
|
|
QGraphicsPathItem::hoverLeaveEvent(event);
|
|
}
|
|
|
|
void QGIEdge::setCosmetic(bool state)
|
|
{
|
|
m_pen.setCosmetic(state);
|
|
update();
|
|
}
|
|
|
|
void QGIEdge::setHighlighted(bool b)
|
|
{
|
|
isHighlighted = b;
|
|
if(isHighlighted) {
|
|
setPrettySel();
|
|
} else {
|
|
setPrettyNormal();
|
|
}
|
|
}
|
|
|
|
void QGIEdge::setPrettyNormal() {
|
|
if (isHiddenEdge) {
|
|
m_colCurrent = m_colHid;
|
|
} else {
|
|
m_colCurrent = m_colNormal;
|
|
}
|
|
update();
|
|
}
|
|
|
|
void QGIEdge::setPrettyPre() {
|
|
m_colCurrent = m_colPre;
|
|
update();
|
|
}
|
|
|
|
void QGIEdge::setPrettySel() {
|
|
m_colCurrent = m_colSel;
|
|
update();
|
|
}
|
|
|
|
void QGIEdge::setStrokeWidth(float width) {
|
|
strokeWidth = width;
|
|
update();
|
|
}
|
|
|
|
void QGIEdge::setHiddenEdge(bool b) {
|
|
isHiddenEdge = b;
|
|
if (b) m_colCurrent = m_colHid;
|
|
update();
|
|
//TODO: need some fiddling here so hidden edges don't get selected?? is it ok to select a hidden edge?
|
|
//wf: probably bad drafing practice to dimension a hidden line
|
|
}
|
|
|
|
void QGIEdge::paint ( QPainter * painter, const QStyleOptionGraphicsItem * option, QWidget * widget) {
|
|
QStyleOptionGraphicsItem myOption(*option);
|
|
myOption.state &= ~QStyle::State_Selected;
|
|
|
|
m_pen.setWidthF(strokeWidth);
|
|
m_pen.setColor(m_colCurrent);
|
|
setPen(m_pen);
|
|
QGraphicsPathItem::paint (painter, &myOption, widget);
|
|
}
|