parent
f6c3ee89b7
commit
cd9820ab8b
@ -0,0 +1,36 @@ |
||||
#include "UBDockPaletteWidget.h" |
||||
|
||||
UBDockPaletteWidget::UBDockPaletteWidget(const char *name, QWidget *parent):QWidget(parent) |
||||
, mpWidget(NULL) |
||||
{ |
||||
setObjectName(name); |
||||
|
||||
} |
||||
|
||||
UBDockPaletteWidget::~UBDockPaletteWidget() |
||||
{ |
||||
if(NULL != mpWidget) |
||||
{ |
||||
delete mpWidget; |
||||
mpWidget = NULL; |
||||
} |
||||
} |
||||
|
||||
QWidget* UBDockPaletteWidget::widget() |
||||
{ |
||||
return mpWidget; |
||||
} |
||||
|
||||
QIcon UBDockPaletteWidget::icon() |
||||
{ |
||||
return mIcon; |
||||
} |
||||
|
||||
QIcon UBDockPaletteWidget::collapsedIcon() |
||||
{ |
||||
return mCollapsedIcon; |
||||
} |
||||
QString UBDockPaletteWidget::name() |
||||
{ |
||||
return mName; |
||||
} |
@ -0,0 +1,27 @@ |
||||
#ifndef UBDOCKPALETTEWIDGET_H |
||||
#define UBDOCKPALETTEWIDGET_H |
||||
|
||||
#include <QWidget> |
||||
#include <QIcon> |
||||
#include <QString> |
||||
|
||||
class UBDockPaletteWidget : public QWidget |
||||
{ |
||||
public: |
||||
UBDockPaletteWidget(const char* name="UBDockPaletteWidget", QWidget* parent=0); |
||||
~UBDockPaletteWidget(); |
||||
|
||||
QWidget* widget(); |
||||
QIcon icon(); |
||||
QIcon collapsedIcon(); |
||||
QString name(); |
||||
|
||||
protected: |
||||
QWidget* mpWidget; |
||||
QIcon mIcon; |
||||
QIcon mCollapsedIcon; |
||||
QString mName; |
||||
|
||||
}; |
||||
|
||||
#endif // UBDOCKPALETTEWIDGET_H
|
@ -0,0 +1,142 @@ |
||||
/*
|
||||
* 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 3 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. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/ |
||||
#include <QDebug> |
||||
|
||||
#include "UBGraphicsCache.h" |
||||
|
||||
#include "core/UBApplication.h" |
||||
|
||||
#include "board/UBBoardController.h" |
||||
#include "board/UBBoardView.h" |
||||
#include "domain/UBGraphicsScene.h" |
||||
|
||||
|
||||
UBGraphicsCache::UBGraphicsCache():QGraphicsRectItem() |
||||
, mMaskColor(Qt::black) |
||||
, mMaskShape(eMaskShape_Circle) |
||||
, mShapeWidth(100) |
||||
, mDrawMask(false) |
||||
{ |
||||
// Get the board size and pass it to the shape
|
||||
QRect boardRect = UBApplication::boardController->displayView()->rect(); |
||||
setRect(-15*boardRect.width(), -15*boardRect.height(), 30*boardRect.width(), 30*boardRect.height()); |
||||
setZValue(CACHE_ZVALUE); |
||||
} |
||||
|
||||
UBGraphicsCache::~UBGraphicsCache() |
||||
{ |
||||
|
||||
} |
||||
|
||||
UBItem* UBGraphicsCache::deepCopy() const |
||||
{ |
||||
UBGraphicsCache* copy = new UBGraphicsCache(); |
||||
|
||||
copy->setPos(this->pos()); |
||||
copy->setRect(this->rect()); |
||||
copy->setZValue(this->zValue()); |
||||
copy->setTransform(this->transform()); |
||||
|
||||
// TODO UB 4.7 ... complete all members ?
|
||||
|
||||
return copy; |
||||
} |
||||
|
||||
QColor UBGraphicsCache::maskColor() |
||||
{ |
||||
return mMaskColor; |
||||
} |
||||
|
||||
void UBGraphicsCache::setMaskColor(QColor color) |
||||
{ |
||||
mMaskColor = color; |
||||
} |
||||
|
||||
eMaskShape UBGraphicsCache::maskshape() |
||||
{ |
||||
return mMaskShape; |
||||
} |
||||
|
||||
void UBGraphicsCache::setMaskShape(eMaskShape shape) |
||||
{ |
||||
mMaskShape = shape; |
||||
} |
||||
|
||||
void UBGraphicsCache::init() |
||||
{ |
||||
setFlag(QGraphicsItem::ItemIsMovable, true); |
||||
setFlag(QGraphicsItem::ItemIsSelectable, true); |
||||
setFlag(QGraphicsItem::ItemSendsGeometryChanges, true); |
||||
} |
||||
|
||||
void UBGraphicsCache::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) |
||||
{ |
||||
Q_UNUSED(option); |
||||
Q_UNUSED(widget); |
||||
|
||||
setZValue(CACHE_ZVALUE); |
||||
|
||||
painter->setBrush(mMaskColor); |
||||
painter->setPen(mMaskColor); |
||||
|
||||
QPainterPath path; |
||||
path.addRect(rect()); |
||||
|
||||
if(mDrawMask) |
||||
{ |
||||
if(eMaskShape_Circle == mMaskShape) |
||||
{ |
||||
path.addEllipse(mShapePos, mShapeWidth, mShapeWidth); |
||||
} |
||||
else if(eMaskShap_Rectangle == mMaskShape) |
||||
{ |
||||
path.addRect(mShapePos.x(), mShapePos.y(), mShapeWidth, mShapeWidth); |
||||
} |
||||
path.setFillRule(Qt::OddEvenFill); |
||||
} |
||||
|
||||
painter->drawPath(path); |
||||
} |
||||
|
||||
void UBGraphicsCache::mousePressEvent(QGraphicsSceneMouseEvent *event) |
||||
{ |
||||
Q_UNUSED(event); |
||||
mShapePos = event->pos(); |
||||
mDrawMask = true; |
||||
update(); |
||||
} |
||||
|
||||
void UBGraphicsCache::mouseMoveEvent(QGraphicsSceneMouseEvent *event) |
||||
{ |
||||
mShapePos = event->pos(); |
||||
update(); |
||||
} |
||||
|
||||
void UBGraphicsCache::mouseReleaseEvent(QGraphicsSceneMouseEvent *event) |
||||
{ |
||||
Q_UNUSED(event); |
||||
mDrawMask = false; |
||||
update(); |
||||
} |
||||
|
||||
int UBGraphicsCache::shapeWidth() |
||||
{ |
||||
return mShapeWidth; |
||||
} |
||||
|
||||
void UBGraphicsCache::setShapeWidth(int width) |
||||
{ |
||||
mShapeWidth = width; |
||||
} |
@ -0,0 +1,61 @@ |
||||
/*
|
||||
* 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 3 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. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/ |
||||
#ifndef UBGRAPHICSCACHE_H |
||||
#define UBGRAPHICSCACHE_H |
||||
|
||||
#include <QColor> |
||||
#include <QGraphicsSceneMouseEvent> |
||||
|
||||
#include "domain/UBItem.h" |
||||
|
||||
#define CACHE_ZVALUE 100000 |
||||
|
||||
typedef enum |
||||
{ |
||||
eMaskShape_Circle, |
||||
eMaskShap_Rectangle |
||||
}eMaskShape; |
||||
|
||||
class UBGraphicsCache : public QGraphicsRectItem, public UBItem |
||||
{ |
||||
public: |
||||
UBGraphicsCache(); |
||||
~UBGraphicsCache(); |
||||
virtual UBItem* deepCopy() const; |
||||
|
||||
QColor maskColor(); |
||||
void setMaskColor(QColor color); |
||||
eMaskShape maskshape(); |
||||
void setMaskShape(eMaskShape shape); |
||||
int shapeWidth(); |
||||
void setShapeWidth(int width); |
||||
|
||||
protected: |
||||
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget); |
||||
void mouseMoveEvent(QGraphicsSceneMouseEvent *event); |
||||
void mousePressEvent(QGraphicsSceneMouseEvent *event); |
||||
void mouseReleaseEvent(QGraphicsSceneMouseEvent *event); |
||||
|
||||
private: |
||||
void init(); |
||||
|
||||
QColor mMaskColor; |
||||
eMaskShape mMaskShape; |
||||
int mShapeWidth; |
||||
bool mDrawMask; |
||||
QPointF mShapePos; |
||||
}; |
||||
|
||||
#endif // UBGRAPHICSCACHE_H
|
@ -1,18 +1,20 @@ |
||||
|
||||
HEADERS += src/tools/UBGraphicsRuler.h \ |
||||
src/tools/UBGraphicsTriangle.h \ |
||||
src/tools/UBGraphicsProtractor.h \ |
||||
src/tools/UBGraphicsCompass.h \ |
||||
src/tools/UBToolsManager.h \ |
||||
src/tools/UBGraphicsCurtainItem.h \ |
||||
src/tools/UBGraphicsCurtainItemDelegate.h \ |
||||
src/tools/UBAbstractDrawRuler.h |
||||
|
||||
SOURCES += src/tools/UBGraphicsRuler.cpp \ |
||||
src/tools/UBGraphicsTriangle.cpp \ |
||||
src/tools/UBGraphicsProtractor.cpp \ |
||||
src/tools/UBGraphicsCompass.cpp \ |
||||
src/tools/UBToolsManager.cpp \ |
||||
src/tools/UBGraphicsCurtainItem.cpp \ |
||||
src/tools/UBGraphicsCurtainItemDelegate.cpp \ |
||||
src/tools/UBAbstractDrawRuler.cpp |
||||
|
||||
HEADERS += src/tools/UBGraphicsRuler.h \ |
||||
src/tools/UBGraphicsTriangle.h \ |
||||
src/tools/UBGraphicsProtractor.h \ |
||||
src/tools/UBGraphicsCompass.h \ |
||||
src/tools/UBToolsManager.h \ |
||||
src/tools/UBGraphicsCurtainItem.h \ |
||||
src/tools/UBGraphicsCurtainItemDelegate.h \ |
||||
src/tools/UBAbstractDrawRuler.h \ |
||||
src/tools/UBGraphicsCache.h |
||||
|
||||
SOURCES += src/tools/UBGraphicsRuler.cpp \ |
||||
src/tools/UBGraphicsTriangle.cpp \ |
||||
src/tools/UBGraphicsProtractor.cpp \ |
||||
src/tools/UBGraphicsCompass.cpp \ |
||||
src/tools/UBToolsManager.cpp \ |
||||
src/tools/UBGraphicsCurtainItem.cpp \ |
||||
src/tools/UBGraphicsCurtainItemDelegate.cpp \ |
||||
src/tools/UBAbstractDrawRuler.cpp \ |
||||
src/tools/UBGraphicsCache.cpp |
||||
|
Loading…
Reference in new issue