Skip to content

Commit

Permalink
Merge branch 'feature/#296' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
HuguesDelorme committed Oct 16, 2024
2 parents c3dc0eb + 7cb8c39 commit ea757f7
Showing 1 changed file with 15 additions and 30 deletions.
45 changes: 15 additions & 30 deletions src/app/widget_gui_document.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -127,22 +127,10 @@ WidgetGuiDocument::WidgetGuiDocument(GuiDocument* guiDoc, QWidget* parent)
view->FitAll(this->guiDocument()->graphicsBoundingBox(bndBoxFlags));
});
});
QObject::connect(
m_btnGrid, &ButtonFlat::checked,
this, &WidgetGuiDocument::toggleWidgetGrid
);
QObject::connect(
m_btnEditClipping, &ButtonFlat::checked,
this, &WidgetGuiDocument::toggleWidgetClipPlanes
);
QObject::connect(
m_btnExplode, &ButtonFlat::checked,
this, &WidgetGuiDocument::toggleWidgetExplode
);
QObject::connect(
m_btnMeasure, &ButtonFlat::checked,
this, &WidgetGuiDocument::toggleWidgetMeasure
);
QObject::connect(m_btnGrid, &ButtonFlat::checked, this, &WidgetGuiDocument::toggleWidgetGrid);
QObject::connect(m_btnEditClipping, &ButtonFlat::checked, this, &WidgetGuiDocument::toggleWidgetClipPlanes);
QObject::connect(m_btnExplode, &ButtonFlat::checked, this, &WidgetGuiDocument::toggleWidgetExplode);
QObject::connect(m_btnMeasure, &ButtonFlat::checked, this, &WidgetGuiDocument::toggleWidgetMeasure);
m_controller->signalDynamicActionStarted.connectSlot([=]{ m_guiDoc->stopViewCameraAnimation(); });
m_controller->signalViewScaled.connectSlot([=]{ m_guiDoc->stopViewCameraAnimation(); });
m_controller->signalMouseButtonClicked.connectSlot([=](Aspect_VKeyMouse btn) {
Expand Down Expand Up @@ -218,9 +206,9 @@ void WidgetGuiDocument::toggleWidgetGrid(bool on)
m_widgetGrid = new WidgetGrid(m_guiDoc->graphicsView());
auto container = this->createWidgetPanelContainer(m_widgetGrid);
QObject::connect(
m_widgetGrid, &WidgetGrid::sizeAdjustmentRequested,
container, [=]{ adjustWidgetSize(m_widgetGrid); },
Qt::QueuedConnection
m_widgetGrid, &WidgetGrid::sizeAdjustmentRequested,
container, [=]{ adjustWidgetSize(m_widgetGrid); },
Qt::QueuedConnection
);
}

Expand All @@ -229,10 +217,7 @@ void WidgetGuiDocument::toggleWidgetGrid(bool on)

void WidgetGuiDocument::toggleWidgetClipPlanes(bool on)
{
if (m_widgetClipPlanes) {
m_widgetClipPlanes->setClippingOn(on);
}
else if (on) {
if (!m_widgetClipPlanes && on) {
m_widgetClipPlanes = new WidgetClipPlanes(m_guiDoc->graphicsView());
this->createWidgetPanelContainer(m_widgetClipPlanes);
m_guiDoc->signalGraphicsBoundingBoxChanged.connectSlot(&WidgetClipPlanes::setRanges, m_widgetClipPlanes);
Expand All @@ -258,9 +243,9 @@ void WidgetGuiDocument::toggleWidgetMeasure(bool on)
m_widgetMeasure = new WidgetMeasure(m_guiDoc);
auto container = this->createWidgetPanelContainer(m_widgetMeasure);
QObject::connect(
m_widgetMeasure, &WidgetMeasure::sizeAdjustmentRequested,
container, [=]{ adjustWidgetSize(m_widgetMeasure); },
Qt::QueuedConnection
m_widgetMeasure, &WidgetMeasure::sizeAdjustmentRequested,
container, [=]{ adjustWidgetSize(m_widgetMeasure); },
Qt::QueuedConnection
);
}

Expand Down Expand Up @@ -313,10 +298,10 @@ void WidgetGuiDocument::layoutWidgetPanel(QWidget* panel)
ButtonFlat* WidgetGuiDocument::createViewBtn(QWidget* parent, Theme::Icon icon, const QString& tooltip) const
{
const QColor bkgndColor =
m_qtOccView->supportsWidgetOpacity() ?
Qt::transparent :
mayoTheme()->color(Theme::Color::ButtonView3d_Background)
;
m_qtOccView->supportsWidgetOpacity() ?
Qt::transparent :
mayoTheme()->color(Theme::Color::ButtonView3d_Background)
;

auto btn = new ButtonFlat(parent);
btn->setBackgroundBrush(bkgndColor);
Expand Down

0 comments on commit ea757f7

Please sign in to comment.