|
|
|
@ -179,51 +179,51 @@ UBGraphicsItemDelegate::UBGraphicsItemDelegate(QGraphicsItem* pDelegated, QObjec |
|
|
|
|
|
|
|
|
|
void UBGraphicsItemDelegate::init() |
|
|
|
|
{ |
|
|
|
|
// if (mToolBarUsed)
|
|
|
|
|
// mToolBarItem = new UBGraphicsToolBarItem(mDelegated);
|
|
|
|
|
|
|
|
|
|
// mFrame = new UBGraphicsDelegateFrame(this, QRectF(0, 0, 0, 0), mFrameWidth, mRespectRatio);
|
|
|
|
|
// mFrame->hide();
|
|
|
|
|
// mFrame->setFlag(QGraphicsItem::ItemIsSelectable, true);
|
|
|
|
|
|
|
|
|
|
// mDeleteButton = new DelegateButton(":/images/close.svg", mDelegated, mFrame, Qt::TopLeftSection);
|
|
|
|
|
// mButtons << mDeleteButton;
|
|
|
|
|
// connect(mDeleteButton, SIGNAL(clicked()), this, SLOT(remove()));
|
|
|
|
|
// if (canDuplicate()){
|
|
|
|
|
// mDuplicateButton = new DelegateButton(":/images/duplicate.svg", mDelegated, mFrame, Qt::TopLeftSection);
|
|
|
|
|
// connect(mDuplicateButton, SIGNAL(clicked(bool)), this, SLOT(duplicate()));
|
|
|
|
|
// mButtons << mDuplicateButton;
|
|
|
|
|
// }
|
|
|
|
|
// mMenuButton = new DelegateButton(":/images/menu.svg", mDelegated, mFrame, Qt::TopLeftSection);
|
|
|
|
|
// connect(mMenuButton, SIGNAL(clicked()), this, SLOT(showMenu()));
|
|
|
|
|
// mButtons << mMenuButton;
|
|
|
|
|
|
|
|
|
|
// mZOrderUpButton = new DelegateButton(":/images/z_layer_up.svg", mDelegated, mFrame, Qt::BottomLeftSection);
|
|
|
|
|
// mZOrderUpButton->setShowProgressIndicator(true);
|
|
|
|
|
// connect(mZOrderUpButton, SIGNAL(clicked()), this, SLOT(increaseZLevelUp()));
|
|
|
|
|
// connect(mZOrderUpButton, SIGNAL(longClicked()), this, SLOT(increaseZlevelTop()));
|
|
|
|
|
// mButtons << mZOrderUpButton;
|
|
|
|
|
|
|
|
|
|
// mZOrderDownButton = new DelegateButton(":/images/z_layer_down.svg", mDelegated, mFrame, Qt::BottomLeftSection);
|
|
|
|
|
// mZOrderDownButton->setShowProgressIndicator(true);
|
|
|
|
|
// connect(mZOrderDownButton, SIGNAL(clicked()), this, SLOT(increaseZLevelDown()));
|
|
|
|
|
// connect(mZOrderDownButton, SIGNAL(longClicked()), this, SLOT(increaseZlevelBottom()));
|
|
|
|
|
// mButtons << mZOrderDownButton;
|
|
|
|
|
|
|
|
|
|
// buildButtons();
|
|
|
|
|
|
|
|
|
|
// foreach(DelegateButton* button, mButtons)
|
|
|
|
|
// {
|
|
|
|
|
// if (button->getSection() != Qt::TitleBarArea)
|
|
|
|
|
// {
|
|
|
|
|
// button->hide();
|
|
|
|
|
// button->setFlag(QGraphicsItem::ItemIsSelectable, true);
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
// //Wrapper function. Use it to set correct data() to QGraphicsItem as well
|
|
|
|
|
// setFlippable(false);
|
|
|
|
|
// setRotatable(false);
|
|
|
|
|
if (mToolBarUsed) |
|
|
|
|
mToolBarItem = new UBGraphicsToolBarItem(mDelegated); |
|
|
|
|
|
|
|
|
|
mFrame = new UBGraphicsDelegateFrame(this, QRectF(0, 0, 0, 0), mFrameWidth, mRespectRatio); |
|
|
|
|
mFrame->hide(); |
|
|
|
|
mFrame->setFlag(QGraphicsItem::ItemIsSelectable, true); |
|
|
|
|
|
|
|
|
|
mDeleteButton = new DelegateButton(":/images/close.svg", mDelegated, mFrame, Qt::TopLeftSection); |
|
|
|
|
mButtons << mDeleteButton; |
|
|
|
|
connect(mDeleteButton, SIGNAL(clicked()), this, SLOT(remove())); |
|
|
|
|
if (canDuplicate()){ |
|
|
|
|
mDuplicateButton = new DelegateButton(":/images/duplicate.svg", mDelegated, mFrame, Qt::TopLeftSection); |
|
|
|
|
connect(mDuplicateButton, SIGNAL(clicked(bool)), this, SLOT(duplicate())); |
|
|
|
|
mButtons << mDuplicateButton; |
|
|
|
|
} |
|
|
|
|
mMenuButton = new DelegateButton(":/images/menu.svg", mDelegated, mFrame, Qt::TopLeftSection); |
|
|
|
|
connect(mMenuButton, SIGNAL(clicked()), this, SLOT(showMenu())); |
|
|
|
|
mButtons << mMenuButton; |
|
|
|
|
|
|
|
|
|
mZOrderUpButton = new DelegateButton(":/images/z_layer_up.svg", mDelegated, mFrame, Qt::BottomLeftSection); |
|
|
|
|
mZOrderUpButton->setShowProgressIndicator(true); |
|
|
|
|
connect(mZOrderUpButton, SIGNAL(clicked()), this, SLOT(increaseZLevelUp())); |
|
|
|
|
connect(mZOrderUpButton, SIGNAL(longClicked()), this, SLOT(increaseZlevelTop())); |
|
|
|
|
mButtons << mZOrderUpButton; |
|
|
|
|
|
|
|
|
|
mZOrderDownButton = new DelegateButton(":/images/z_layer_down.svg", mDelegated, mFrame, Qt::BottomLeftSection); |
|
|
|
|
mZOrderDownButton->setShowProgressIndicator(true); |
|
|
|
|
connect(mZOrderDownButton, SIGNAL(clicked()), this, SLOT(increaseZLevelDown())); |
|
|
|
|
connect(mZOrderDownButton, SIGNAL(longClicked()), this, SLOT(increaseZlevelBottom())); |
|
|
|
|
mButtons << mZOrderDownButton; |
|
|
|
|
|
|
|
|
|
buildButtons(); |
|
|
|
|
|
|
|
|
|
foreach(DelegateButton* button, mButtons) |
|
|
|
|
{ |
|
|
|
|
if (button->getSection() != Qt::TitleBarArea) |
|
|
|
|
{ |
|
|
|
|
button->hide(); |
|
|
|
|
button->setFlag(QGraphicsItem::ItemIsSelectable, true); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//Wrapper function. Use it to set correct data() to QGraphicsItem as well
|
|
|
|
|
setFlippable(false); |
|
|
|
|
setRotatable(false); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -236,53 +236,6 @@ UBGraphicsItemDelegate::~UBGraphicsItemDelegate() |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void UBGraphicsItemDelegate::decorate() |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
if (mToolBarUsed) |
|
|
|
|
mToolBarItem = new UBGraphicsToolBarItem(mDelegated); |
|
|
|
|
|
|
|
|
|
if(!mFrame){ |
|
|
|
|
mFrame = new UBGraphicsDelegateFrame(this, QRectF(0, 0, 0, 0), mFrameWidth, mRespectRatio); |
|
|
|
|
mFrame->hide(); |
|
|
|
|
mFrame->setFlag(QGraphicsItem::ItemIsSelectable, true); |
|
|
|
|
|
|
|
|
|
mDeleteButton = new DelegateButton(":/images/close.svg", mDelegated, mFrame, Qt::TopLeftSection); |
|
|
|
|
mButtons << mDeleteButton; |
|
|
|
|
connect(mDeleteButton, SIGNAL(clicked()), this, SLOT(remove())); |
|
|
|
|
if (canDuplicate()){ |
|
|
|
|
mDuplicateButton = new DelegateButton(":/images/duplicate.svg", mDelegated, mFrame, Qt::TopLeftSection); |
|
|
|
|
connect(mDuplicateButton, SIGNAL(clicked(bool)), this, SLOT(duplicate())); |
|
|
|
|
mButtons << mDuplicateButton; |
|
|
|
|
} |
|
|
|
|
mMenuButton = new DelegateButton(":/images/menu.svg", mDelegated, mFrame, Qt::TopLeftSection); |
|
|
|
|
connect(mMenuButton, SIGNAL(clicked()), this, SLOT(showMenu())); |
|
|
|
|
mButtons << mMenuButton; |
|
|
|
|
|
|
|
|
|
mZOrderUpButton = new DelegateButton(":/images/z_layer_up.svg", mDelegated, mFrame, Qt::BottomLeftSection); |
|
|
|
|
mZOrderUpButton->setShowProgressIndicator(true); |
|
|
|
|
connect(mZOrderUpButton, SIGNAL(clicked()), this, SLOT(increaseZLevelUp())); |
|
|
|
|
connect(mZOrderUpButton, SIGNAL(longClicked()), this, SLOT(increaseZlevelTop())); |
|
|
|
|
mButtons << mZOrderUpButton; |
|
|
|
|
|
|
|
|
|
mZOrderDownButton = new DelegateButton(":/images/z_layer_down.svg", mDelegated, mFrame, Qt::BottomLeftSection); |
|
|
|
|
mZOrderDownButton->setShowProgressIndicator(true); |
|
|
|
|
connect(mZOrderDownButton, SIGNAL(clicked()), this, SLOT(increaseZLevelDown())); |
|
|
|
|
connect(mZOrderDownButton, SIGNAL(longClicked()), this, SLOT(increaseZlevelBottom())); |
|
|
|
|
mButtons << mZOrderDownButton; |
|
|
|
|
|
|
|
|
|
buildButtons(); |
|
|
|
|
|
|
|
|
|
foreach(DelegateButton* button, mButtons) |
|
|
|
|
{ |
|
|
|
|
if (button->getSection() != Qt::TitleBarArea) |
|
|
|
|
{ |
|
|
|
|
button->hide(); |
|
|
|
|
button->setFlag(QGraphicsItem::ItemIsSelectable, true); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
QVariant UBGraphicsItemDelegate::itemChange(QGraphicsItem::GraphicsItemChange change, const QVariant &value) |
|
|
|
|
{ |
|
|
|
@ -736,11 +689,8 @@ bool UBGraphicsItemDelegate::isFlippable() |
|
|
|
|
|
|
|
|
|
void UBGraphicsItemDelegate::updateFrame() |
|
|
|
|
{ |
|
|
|
|
decorate(); |
|
|
|
|
if (mFrame && !mFrame->scene() && mDelegated->scene()) |
|
|
|
|
{ |
|
|
|
|
mDelegated->scene()->addItem(mFrame); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
mFrame->setAntiScale(mAntiScaleRatio); |
|
|
|
|
mFrame->positionHandles(); |
|
|
|
|