Hide rotation controls while exporting.
This commit is contained in:
parent
7b134d8b62
commit
addfcd94ad
|
@ -133,7 +133,7 @@ void VPLayout::RefreshScenePieces() const
|
||||||
{
|
{
|
||||||
if (not sheet.isNull())
|
if (not sheet.isNull())
|
||||||
{
|
{
|
||||||
sheet->SceneData()->RefreshPieces(sheet);
|
sheet->SceneData()->RefreshPieces();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -41,7 +41,8 @@
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
VPSheetSceneData::VPSheetSceneData(const VPLayoutPtr &layout, const QUuid &sheetUuid)
|
VPSheetSceneData::VPSheetSceneData(const VPLayoutPtr &layout, const QUuid &sheetUuid)
|
||||||
: m_layout(layout),
|
: m_layout(layout),
|
||||||
m_scene(new VMainGraphicsScene())
|
m_scene(new VMainGraphicsScene()),
|
||||||
|
m_sheetUuid(sheetUuid)
|
||||||
{
|
{
|
||||||
SCASSERT(not layout.isNull())
|
SCASSERT(not layout.isNull())
|
||||||
|
|
||||||
|
@ -49,7 +50,7 @@ VPSheetSceneData::VPSheetSceneData(const VPLayoutPtr &layout, const QUuid &sheet
|
||||||
m_graphicsSheet->setPos(0, 0);
|
m_graphicsSheet->setPos(0, 0);
|
||||||
m_scene->addItem(m_graphicsSheet);
|
m_scene->addItem(m_graphicsSheet);
|
||||||
|
|
||||||
m_graphicsTileGrid = new VPGraphicsTileGrid(layout, sheetUuid);
|
m_graphicsTileGrid = new VPGraphicsTileGrid(layout, m_sheetUuid);
|
||||||
m_scene->addItem(m_graphicsTileGrid);
|
m_scene->addItem(m_graphicsTileGrid);
|
||||||
|
|
||||||
m_rotationControls = new VPGraphicsPieceControls(layout);
|
m_rotationControls = new VPGraphicsPieceControls(layout);
|
||||||
|
@ -89,11 +90,18 @@ void VPSheetSceneData::RefreshLayout()
|
||||||
}
|
}
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
void VPSheetSceneData::RefreshPieces(const VPSheetPtr &sheet)
|
void VPSheetSceneData::RefreshPieces()
|
||||||
{
|
{
|
||||||
qDeleteAll(m_graphicsPieces);
|
qDeleteAll(m_graphicsPieces);
|
||||||
m_graphicsPieces.clear();
|
m_graphicsPieces.clear();
|
||||||
|
|
||||||
|
VPLayoutPtr layout = m_layout.toStrongRef();
|
||||||
|
if(layout.isNull())
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
VPSheetPtr sheet = layout->GetSheet(m_sheetUuid);
|
||||||
if (not sheet.isNull())
|
if (not sheet.isNull())
|
||||||
{
|
{
|
||||||
QList<VPPiecePtr> pieces = sheet->GetPieces();
|
QList<VPPiecePtr> pieces = sheet->GetPieces();
|
||||||
|
@ -118,6 +126,9 @@ void VPSheetSceneData::PrepareForExport()
|
||||||
m_graphicsSheet->SetShowBorder(false);
|
m_graphicsSheet->SetShowBorder(false);
|
||||||
m_graphicsSheet->SetShowMargin(false);
|
m_graphicsSheet->SetShowMargin(false);
|
||||||
|
|
||||||
|
m_rotationControls->setVisible(false);
|
||||||
|
m_rotationOrigin->setVisible(false);
|
||||||
|
|
||||||
VPLayoutPtr layout = m_layout.toStrongRef();
|
VPLayoutPtr layout = m_layout.toStrongRef();
|
||||||
if (not layout.isNull())
|
if (not layout.isNull())
|
||||||
{
|
{
|
||||||
|
@ -126,9 +137,21 @@ void VPSheetSceneData::PrepareForExport()
|
||||||
|
|
||||||
m_showTilesTmp = layout->LayoutSettings().GetShowTiles();
|
m_showTilesTmp = layout->LayoutSettings().GetShowTiles();
|
||||||
layout->LayoutSettings().SetShowTiles(false);
|
layout->LayoutSettings().SetShowTiles(false);
|
||||||
|
|
||||||
|
VPSheetPtr sheet = layout->GetSheet(m_sheetUuid);
|
||||||
|
m_slectedPiecesTmp = sheet->GetSelectedPieces();
|
||||||
|
|
||||||
|
for (const auto& piece : m_slectedPiecesTmp)
|
||||||
|
{
|
||||||
|
if (not piece.isNull())
|
||||||
|
{
|
||||||
|
piece->SetSelected(false);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
RefreshLayout();
|
RefreshLayout();
|
||||||
|
RefreshPieces();
|
||||||
}
|
}
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
@ -142,9 +165,19 @@ void VPSheetSceneData::CleanAfterExport()
|
||||||
{
|
{
|
||||||
layout->LayoutSettings().SetShowGrid(m_showGridTmp);
|
layout->LayoutSettings().SetShowGrid(m_showGridTmp);
|
||||||
layout->LayoutSettings().SetShowTiles(m_showTilesTmp);
|
layout->LayoutSettings().SetShowTiles(m_showTilesTmp);
|
||||||
|
|
||||||
|
for (const auto& piece : m_slectedPiecesTmp)
|
||||||
|
{
|
||||||
|
if (not piece.isNull())
|
||||||
|
{
|
||||||
|
piece->SetSelected(true);
|
||||||
|
emit layout->PieceSelectionChanged(piece);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
RefreshLayout();
|
RefreshLayout();
|
||||||
|
RefreshPieces();
|
||||||
}
|
}
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
@ -612,7 +645,7 @@ void VPSheet::ClearSelection() const
|
||||||
VPLayoutPtr layout = GetLayout();
|
VPLayoutPtr layout = GetLayout();
|
||||||
if (not layout.isNull())
|
if (not layout.isNull())
|
||||||
{
|
{
|
||||||
emit GetLayout()->PieceSelectionChanged(VPPiecePtr());
|
emit layout->PieceSelectionChanged(VPPiecePtr());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -60,7 +60,7 @@ public:
|
||||||
*/
|
*/
|
||||||
void RefreshLayout();
|
void RefreshLayout();
|
||||||
|
|
||||||
void RefreshPieces(const VPSheetPtr &sheet);
|
void RefreshPieces();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief PrepareForExport prepares the graphic for an export (i.e hide margin etc)
|
* @brief PrepareForExport prepares the graphic for an export (i.e hide margin etc)
|
||||||
|
@ -110,6 +110,10 @@ private:
|
||||||
*/
|
*/
|
||||||
bool m_showGridTmp{false};
|
bool m_showGridTmp{false};
|
||||||
|
|
||||||
|
QUuid m_sheetUuid;
|
||||||
|
|
||||||
|
QList<VPPiecePtr> m_slectedPiecesTmp{};
|
||||||
|
|
||||||
void ConnectPiece(VPGraphicsPiece *piece);
|
void ConnectPiece(VPGraphicsPiece *piece);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -104,7 +104,7 @@ void VPMainGraphicsView::RefreshPieces()
|
||||||
VPSheetPtr sheet = layout->GetFocusedSheet();
|
VPSheetPtr sheet = layout->GetFocusedSheet();
|
||||||
if (not sheet.isNull())
|
if (not sheet.isNull())
|
||||||
{
|
{
|
||||||
sheet->SceneData()->RefreshPieces(sheet);
|
sheet->SceneData()->RefreshPieces();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user