Refactor templates SetToolButton and SetToolButtonWithApply.
These templates do almost the same. Uniting them looks like a good idea. --HG-- branch : feature
This commit is contained in:
parent
a32be533ec
commit
c5e8a6a529
|
@ -541,13 +541,28 @@ void MainWindow::SetToolButton(bool checked, Tool t, const QString &cursor, cons
|
||||||
CancelTool();
|
CancelTool();
|
||||||
emit EnableItemMove(false);
|
emit EnableItemMove(false);
|
||||||
currentTool = lastUsedTool = t;
|
currentTool = lastUsedTool = t;
|
||||||
QPixmap pixmap(cursor);
|
auto cursorResource = cursor;
|
||||||
|
if (qApp->devicePixelRatio() >= 2)
|
||||||
|
{
|
||||||
|
// Try to load HiDPI versions of the cursors if availible
|
||||||
|
auto cursorHidpiResource = QString(cursor).replace(".png", "@2x.png");
|
||||||
|
if (QFileInfo(cursorResource).exists())
|
||||||
|
{
|
||||||
|
cursorResource = cursorHidpiResource;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
QPixmap pixmap(cursorResource);
|
||||||
QCursor cur(pixmap, 2, 3);
|
QCursor cur(pixmap, 2, 3);
|
||||||
ui->view->setCursor(cur);
|
ui->view->setCursor(cur);
|
||||||
helpLabel->setText(toolTip);
|
helpLabel->setText(toolTip);
|
||||||
ui->view->setShowToolOptions(false);
|
ui->view->setShowToolOptions(false);
|
||||||
dialogTool = new Dialog(pattern, 0, this);
|
dialogTool = new Dialog(pattern, 0, this);
|
||||||
|
|
||||||
|
if (t == Tool::Midpoint)
|
||||||
|
{
|
||||||
|
dialogTool->Build(t);
|
||||||
|
}
|
||||||
|
|
||||||
VMainGraphicsScene *scene = qobject_cast<VMainGraphicsScene *>(currentScene);
|
VMainGraphicsScene *scene = qobject_cast<VMainGraphicsScene *>(currentScene);
|
||||||
SCASSERT(scene != nullptr);
|
SCASSERT(scene != nullptr);
|
||||||
|
|
||||||
|
@ -555,6 +570,7 @@ void MainWindow::SetToolButton(bool checked, Tool t, const QString &cursor, cons
|
||||||
connect(scene, &VMainGraphicsScene::SelectedObject, dialogTool.data(), &DialogTool::SelectedObject);
|
connect(scene, &VMainGraphicsScene::SelectedObject, dialogTool.data(), &DialogTool::SelectedObject);
|
||||||
connect(dialogTool.data(), &DialogTool::DialogClosed, this, closeDialogSlot);
|
connect(dialogTool.data(), &DialogTool::DialogClosed, this, closeDialogSlot);
|
||||||
connect(dialogTool.data(), &DialogTool::ToolTip, this, &MainWindow::ShowToolTip);
|
connect(dialogTool.data(), &DialogTool::ToolTip, this, &MainWindow::ShowToolTip);
|
||||||
|
connect(ui->view, &VMainGraphicsView::MouseRelease, [this](){EndVisualization(true);});
|
||||||
ui->view->itemClicked(nullptr);
|
ui->view->itemClicked(nullptr);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -582,41 +598,9 @@ void MainWindow::SetToolButtonWithApply(bool checked, Tool t, const QString &cur
|
||||||
{
|
{
|
||||||
if (checked)
|
if (checked)
|
||||||
{
|
{
|
||||||
CancelTool();
|
SetToolButton<Dialog>(checked, t, cursor, toolTip, closeDialogSlot);
|
||||||
emit EnableItemMove(false);
|
|
||||||
currentTool = lastUsedTool = t;
|
|
||||||
auto cursorResource = cursor;
|
|
||||||
if (qApp->devicePixelRatio() >= 2)
|
|
||||||
{
|
|
||||||
// Try to load HiDPI versions of the cursors if availible
|
|
||||||
auto cursorHidpiResource = QString(cursor).replace(".png", "@2x.png");
|
|
||||||
if (QFileInfo(cursorResource).exists())
|
|
||||||
{
|
|
||||||
cursorResource = cursorHidpiResource;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
QPixmap pixmap(cursorResource);
|
|
||||||
QCursor cur(pixmap, 2, 3);
|
|
||||||
ui->view->setCursor(cur);
|
|
||||||
ui->view->setShowToolOptions(false);
|
|
||||||
helpLabel->setText(toolTip);
|
|
||||||
dialogTool = new Dialog(pattern, NULL_ID, this);
|
|
||||||
|
|
||||||
if (t == Tool::Midpoint)
|
|
||||||
{
|
|
||||||
dialogTool->Build(t);
|
|
||||||
}
|
|
||||||
|
|
||||||
VMainGraphicsScene *scene = qobject_cast<VMainGraphicsScene *>(currentScene);
|
|
||||||
SCASSERT(scene != nullptr);
|
|
||||||
|
|
||||||
connect(scene, &VMainGraphicsScene::ChoosedObject, dialogTool.data(), &DialogTool::ChosenObject);
|
|
||||||
connect(scene, &VMainGraphicsScene::SelectedObject, dialogTool.data(), &DialogTool::SelectedObject);
|
|
||||||
connect(dialogTool.data(), &DialogTool::DialogClosed, this, closeDialogSlot);
|
|
||||||
connect(dialogTool.data(), &DialogTool::DialogApplied, this, applyDialogSlot);
|
connect(dialogTool.data(), &DialogTool::DialogApplied, this, applyDialogSlot);
|
||||||
connect(dialogTool.data(), &DialogTool::ToolTip, this, &MainWindow::ShowToolTip);
|
|
||||||
connect(ui->view, &VMainGraphicsView::MouseRelease, [this](){EndVisualization(true);});
|
|
||||||
ui->view->itemClicked(nullptr);
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue
Block a user