mirror of
https://github.com/leozide/leocad
synced 2024-12-26 21:58:44 +01:00
Multiple rows/columns instructions.
This commit is contained in:
parent
e6d2c6bdce
commit
39af536301
11 changed files with 303 additions and 90 deletions
|
@ -73,6 +73,7 @@ typedef std::map<const PieceInfo*, std::map<int, int>> lcPartsList;
|
|||
struct lcModelPartsEntry;
|
||||
struct lcMinifig;
|
||||
enum class lcViewpoint;
|
||||
class lcInstructions;
|
||||
|
||||
class lcVector2;
|
||||
class lcVector3;
|
||||
|
|
125
common/lc_instructions.cpp
Normal file
125
common/lc_instructions.cpp
Normal file
|
@ -0,0 +1,125 @@
|
|||
#include "lc_global.h"
|
||||
#include "lc_instructions.h"
|
||||
#include "project.h"
|
||||
#include "lc_model.h"
|
||||
#include "piece.h"
|
||||
#include "pieceinf.h"
|
||||
|
||||
lcInstructions::lcInstructions(Project* Project)
|
||||
: mProject(Project)
|
||||
{
|
||||
mPageSettings.Rows = 1;
|
||||
mPageSettings.Columns = 1;
|
||||
mPageSettings.Direction = lcInstructionsDirection::Horizontal;
|
||||
|
||||
CreatePages();
|
||||
}
|
||||
|
||||
void lcInstructions::SetDefaultPageSettings(const lcInstructionsPageSettings& PageSettings)
|
||||
{
|
||||
mPageSettings = PageSettings;
|
||||
|
||||
CreatePages();
|
||||
}
|
||||
|
||||
void lcInstructions::CreatePages()
|
||||
{
|
||||
mPages.clear();
|
||||
|
||||
if (mProject)
|
||||
{
|
||||
std::vector<const lcModel*> AddedModels;
|
||||
|
||||
lcModel* Model = mProject->GetMainModel();
|
||||
|
||||
if (Model)
|
||||
AddDefaultPages(Model, AddedModels);
|
||||
}
|
||||
}
|
||||
|
||||
void lcInstructions::AddDefaultPages(lcModel* Model, std::vector<const lcModel*>& AddedModels)
|
||||
{
|
||||
if (std::find(AddedModels.begin(), AddedModels.end(), Model) != AddedModels.end())
|
||||
return;
|
||||
|
||||
AddedModels.push_back(Model);
|
||||
|
||||
const lcStep LastStep = Model->GetLastStep();
|
||||
lcInstructionsPage Page;
|
||||
int Row = 0, Column = 0;
|
||||
|
||||
for (lcStep Step = 1; Step <= LastStep; Step++)
|
||||
{
|
||||
std::set<lcModel*> StepSubModels;
|
||||
|
||||
for (lcPiece* Piece : Model->GetPieces())
|
||||
{
|
||||
if (!Piece->IsHidden() && Piece->GetStepShow() == Step && Piece->mPieceInfo->IsModel())
|
||||
{
|
||||
lcModel* SubModel = Piece->mPieceInfo->GetModel();
|
||||
|
||||
if (std::find(AddedModels.begin(), AddedModels.end(), SubModel) != AddedModels.end())
|
||||
StepSubModels.insert(SubModel);
|
||||
}
|
||||
}
|
||||
|
||||
if (!StepSubModels.empty())
|
||||
{
|
||||
if (!Page.Steps.empty())
|
||||
{
|
||||
mPages.emplace_back(std::move(Page));
|
||||
Row = 0;
|
||||
Column = 0;
|
||||
}
|
||||
|
||||
for (lcModel* SubModel : StepSubModels)
|
||||
AddDefaultPages(SubModel, AddedModels);
|
||||
}
|
||||
|
||||
lcInstructionsStep InstructionsStep;
|
||||
|
||||
InstructionsStep.Model = Model;
|
||||
InstructionsStep.Step = Step;
|
||||
|
||||
const double Width = 1.0 / (double)mPageSettings.Columns;
|
||||
const double Height = 1.0 / (double)mPageSettings.Rows;
|
||||
InstructionsStep.Rect = QRectF(Column * Width, Row * Height, Width, Height);
|
||||
|
||||
Page.Steps.push_back(std::move(InstructionsStep));
|
||||
|
||||
if (mPageSettings.Direction == lcInstructionsDirection::Horizontal)
|
||||
{
|
||||
Column++;
|
||||
|
||||
if (Column == mPageSettings.Columns)
|
||||
{
|
||||
Row++;
|
||||
Column = 0;
|
||||
}
|
||||
|
||||
if (Row == mPageSettings.Rows)
|
||||
{
|
||||
mPages.emplace_back(std::move(Page));
|
||||
Row = 0;
|
||||
Column = 0;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
Row++;
|
||||
|
||||
if (Row == mPageSettings.Rows)
|
||||
{
|
||||
Row = 0;
|
||||
Column++;
|
||||
}
|
||||
|
||||
if (Column == mPageSettings.Columns)
|
||||
{
|
||||
mPages.emplace_back(std::move(Page));
|
||||
Row = 0;
|
||||
Column = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
46
common/lc_instructions.h
Normal file
46
common/lc_instructions.h
Normal file
|
@ -0,0 +1,46 @@
|
|||
#pragma once
|
||||
|
||||
#include "object.h"
|
||||
|
||||
enum class lcInstructionsDirection
|
||||
{
|
||||
Horizontal,
|
||||
Vertical
|
||||
};
|
||||
|
||||
struct lcInstructionsPageSettings
|
||||
{
|
||||
int Rows;
|
||||
int Columns;
|
||||
lcInstructionsDirection Direction;
|
||||
};
|
||||
|
||||
struct lcInstructionsStep
|
||||
{
|
||||
QRectF Rect;
|
||||
lcModel* Model;
|
||||
lcStep Step;
|
||||
};
|
||||
|
||||
struct lcInstructionsPage
|
||||
{
|
||||
// lcInstructionsPageSettings Settings;
|
||||
std::vector<lcInstructionsStep> Steps;
|
||||
};
|
||||
|
||||
class lcInstructions
|
||||
{
|
||||
public:
|
||||
lcInstructions(Project* Project = nullptr);
|
||||
|
||||
void SetDefaultPageSettings(const lcInstructionsPageSettings& PageSettings);
|
||||
|
||||
std::vector<lcInstructionsPage> mPages;
|
||||
lcInstructionsPageSettings mPageSettings;
|
||||
|
||||
protected:
|
||||
void CreatePages();
|
||||
void AddDefaultPages(lcModel* Model, std::vector<const lcModel*>& AddedModels);
|
||||
|
||||
Project* mProject = nullptr;
|
||||
};
|
|
@ -3,29 +3,37 @@
|
|||
#include "project.h"
|
||||
#include "lc_model.h"
|
||||
|
||||
lcInstructionsPageWidget::lcInstructionsPageWidget(QWidget* Parent, Project* Project)
|
||||
lcInstructionsPageWidget::lcInstructionsPageWidget(QWidget* Parent)
|
||||
: QGraphicsView(Parent)
|
||||
{
|
||||
}
|
||||
|
||||
void lcInstructionsPageWidget::SetCurrentPage(lcInstructionsPageLayout* PageLayout)
|
||||
void lcInstructionsPageWidget::SetCurrentPage(const lcInstructionsPage* Page)
|
||||
{
|
||||
QGraphicsScene* Scene = new QGraphicsScene(this);
|
||||
setScene(Scene);
|
||||
Scene->setSceneRect(0, 0, 1000, 1000);
|
||||
// Scene->setBackgroundBrush(Qt::black);
|
||||
|
||||
QImage StepImage = PageLayout->Model->GetStepImage(false, 500, 500, PageLayout->Step);
|
||||
QGraphicsPixmapItem* StepImageItem = Scene->addPixmap(QPixmap::fromImage(StepImage));
|
||||
StepImageItem->setFlags(QGraphicsItem::ItemIsMovable | QGraphicsItem::ItemIsSelectable | QGraphicsItem::ItemIsFocusable);
|
||||
if (Page)
|
||||
{
|
||||
for (const lcInstructionsStep& Step : Page->Steps)
|
||||
{
|
||||
QImage StepImage = Step.Model->GetStepImage(false, 500, 500, Step.Step);
|
||||
QGraphicsPixmapItem* StepImageItem = Scene->addPixmap(QPixmap::fromImage(StepImage));
|
||||
StepImageItem->setFlags(QGraphicsItem::ItemIsMovable | QGraphicsItem::ItemIsSelectable | QGraphicsItem::ItemIsFocusable);
|
||||
StepImageItem->setPos(1000.0 * Step.Rect.x(), 1000.0 * Step.Rect.y());
|
||||
|
||||
QGraphicsSimpleTextItem* StepNumberItem = Scene->addSimpleText(QString::number(PageLayout->Step), QFont("Helvetica", 96));
|
||||
StepNumberItem->setFlags(QGraphicsItem::ItemIsMovable | QGraphicsItem::ItemIsSelectable | QGraphicsItem::ItemIsFocusable);
|
||||
QGraphicsSimpleTextItem* StepNumberItem = Scene->addSimpleText(QString::number(Step.Step), QFont("Helvetica", 96));
|
||||
StepNumberItem->setFlags(QGraphicsItem::ItemIsMovable | QGraphicsItem::ItemIsSelectable | QGraphicsItem::ItemIsFocusable);
|
||||
StepNumberItem->setPos(1000.0 * Step.Rect.x(), 1000.0 * Step.Rect.y());
|
||||
|
||||
QImage PartsImage = PageLayout->Model->GetPartsListImage(300, PageLayout->Step);
|
||||
QGraphicsPixmapItem* PartsImageItem = Scene->addPixmap(QPixmap::fromImage(PartsImage));
|
||||
PartsImageItem->setFlags(QGraphicsItem::ItemIsMovable | QGraphicsItem::ItemIsSelectable | QGraphicsItem::ItemIsFocusable);
|
||||
PartsImageItem->setPos(StepNumberItem->pos() + QPointF(StepNumberItem->sceneBoundingRect().width(), 0));
|
||||
QImage PartsImage = Step.Model->GetPartsListImage(300, Step.Step);
|
||||
QGraphicsPixmapItem* PartsImageItem = Scene->addPixmap(QPixmap::fromImage(PartsImage));
|
||||
PartsImageItem->setFlags(QGraphicsItem::ItemIsMovable | QGraphicsItem::ItemIsSelectable | QGraphicsItem::ItemIsFocusable);
|
||||
PartsImageItem->setPos(StepNumberItem->pos() + QPointF(StepNumberItem->sceneBoundingRect().width(), 0));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
lcInstructionsDialog::lcInstructionsDialog(QWidget* Parent, Project* Project)
|
||||
|
@ -36,6 +44,7 @@ lcInstructionsDialog::lcInstructionsDialog(QWidget* Parent, Project* Project)
|
|||
setWindowTitle(tr("Instructions"));
|
||||
|
||||
QVBoxLayout* Layout = new QVBoxLayout(CentralWidget);
|
||||
Layout->setContentsMargins(0, 0, 0, 0);
|
||||
|
||||
QSplitter* Splitter = new QSplitter(CentralWidget);
|
||||
Splitter->setOrientation(Qt::Horizontal);
|
||||
|
@ -44,19 +53,99 @@ lcInstructionsDialog::lcInstructionsDialog(QWidget* Parent, Project* Project)
|
|||
mThumbnailsWidget = new QListWidget(Splitter);
|
||||
Splitter->addWidget(mThumbnailsWidget);
|
||||
|
||||
mPageWidget = new lcInstructionsPageWidget(Splitter, mProject);
|
||||
mPageWidget = new lcInstructionsPageWidget(Splitter);
|
||||
Splitter->addWidget(mPageWidget);
|
||||
|
||||
mPageLayouts = mProject->GetPageLayouts();
|
||||
mInstructions = mProject->GetInstructions();
|
||||
|
||||
for (size_t PageNumber = 0; PageNumber < mPageLayouts.size(); PageNumber++)
|
||||
mPageSettingsToolBar = addToolBar(tr("Page Settings"));
|
||||
mPageSettingsToolBar->setObjectName("PageSettings");
|
||||
mPageSettingsToolBar->setFloatable(false);
|
||||
mPageSettingsToolBar->setMovable(false);
|
||||
|
||||
mVerticalPageAction = mPageSettingsToolBar->addAction("Vertical");
|
||||
mVerticalPageAction->setCheckable(true);
|
||||
mHorizontalPageAction = mPageSettingsToolBar->addAction("Horizontal");
|
||||
mHorizontalPageAction->setCheckable(true);
|
||||
|
||||
mRowsSpinBox = new QSpinBox(mPageSettingsToolBar);
|
||||
mPageSettingsToolBar->addWidget(mRowsSpinBox);
|
||||
|
||||
mColumnsSpinBox = new QSpinBox(mPageSettingsToolBar);
|
||||
mPageSettingsToolBar->addWidget(mColumnsSpinBox);
|
||||
|
||||
QActionGroup* PageDirectionGroup = new QActionGroup(mPageSettingsToolBar);
|
||||
PageDirectionGroup->addAction(mVerticalPageAction);
|
||||
PageDirectionGroup->addAction(mHorizontalPageAction);
|
||||
|
||||
for (size_t PageNumber = 0; PageNumber < mInstructions.mPages.size(); PageNumber++)
|
||||
mThumbnailsWidget->addItem(QString("Page %1").arg(PageNumber + 1));
|
||||
|
||||
connect(mThumbnailsWidget, SIGNAL(currentRowChanged(int)), this, SLOT(CurrentThumbnailChanged(int)));
|
||||
mThumbnailsWidget->setCurrentRow(0);
|
||||
|
||||
connect(mVerticalPageAction, SIGNAL(checked()), this, SLOT(UpdatePageSettings()));
|
||||
connect(mHorizontalPageAction, SIGNAL(checked()), this, SLOT(UpdatePageSettings()));
|
||||
connect(mRowsSpinBox, SIGNAL(valueChanged(int)), this, SLOT(UpdatePageSettings()));
|
||||
connect(mColumnsSpinBox, SIGNAL(valueChanged(int)), this, SLOT(UpdatePageSettings()));
|
||||
}
|
||||
|
||||
void lcInstructionsDialog::UpdatePageSettings()
|
||||
{
|
||||
lcInstructionsPageSettings PageSettings;
|
||||
|
||||
PageSettings.Rows = mRowsSpinBox->value();
|
||||
PageSettings.Columns = mColumnsSpinBox->value();
|
||||
|
||||
if (mHorizontalPageAction->isChecked())
|
||||
PageSettings.Direction = lcInstructionsDirection::Horizontal;
|
||||
else
|
||||
PageSettings.Direction = lcInstructionsDirection::Vertical;
|
||||
|
||||
mInstructions.SetDefaultPageSettings(PageSettings);
|
||||
// lcInstructionsPage* Page = &mInstructions.mPages[mThumbnailsWidget->currentIndex().row()];
|
||||
|
||||
mThumbnailsWidget->clear();
|
||||
for (size_t PageNumber = 0; PageNumber < mInstructions.mPages.size(); PageNumber++)
|
||||
mThumbnailsWidget->addItem(QString("Page %1").arg(PageNumber + 1));
|
||||
|
||||
// mThumbnailsWidget->setCurrentRow(0);
|
||||
|
||||
// mPageWidget->SetCurrentPage(Page);
|
||||
}
|
||||
|
||||
void lcInstructionsDialog::CurrentThumbnailChanged(int Index)
|
||||
{
|
||||
mPageWidget->SetCurrentPage(&mPageLayouts[Index]);
|
||||
if (Index < 0 || Index >= mInstructions.mPages.size())
|
||||
{
|
||||
mPageWidget->SetCurrentPage(nullptr);
|
||||
return;
|
||||
}
|
||||
|
||||
const lcInstructionsPage* Page = &mInstructions.mPages[Index];
|
||||
// const lcInstructionsPageSettings& PageSettings = Page->Settings;
|
||||
const lcInstructionsPageSettings& PageSettings = mInstructions.mPageSettings;
|
||||
|
||||
mPageWidget->SetCurrentPage(Page);
|
||||
|
||||
if (PageSettings.Direction == lcInstructionsDirection::Horizontal)
|
||||
{
|
||||
mHorizontalPageAction->blockSignals(true);
|
||||
mHorizontalPageAction->setChecked(true);
|
||||
mHorizontalPageAction->blockSignals(false);
|
||||
}
|
||||
else
|
||||
{
|
||||
mVerticalPageAction->blockSignals(true);
|
||||
mVerticalPageAction->setChecked(true);
|
||||
mVerticalPageAction->blockSignals(false);
|
||||
}
|
||||
|
||||
mRowsSpinBox->blockSignals(true);
|
||||
mRowsSpinBox->setValue(PageSettings.Rows);
|
||||
mRowsSpinBox->blockSignals(false);
|
||||
|
||||
mColumnsSpinBox->blockSignals(true);
|
||||
mColumnsSpinBox->setValue(PageSettings.Columns);
|
||||
mColumnsSpinBox->blockSignals(false);
|
||||
}
|
||||
|
|
|
@ -1,16 +1,15 @@
|
|||
#pragma once
|
||||
|
||||
//struct lcInstructionsPageLayout;
|
||||
#include "lc_model.h"
|
||||
#include "lc_instructions.h"
|
||||
|
||||
class lcInstructionsPageWidget : public QGraphicsView
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
lcInstructionsPageWidget(QWidget* Parent, Project* Project);
|
||||
lcInstructionsPageWidget(QWidget* Parent);
|
||||
|
||||
void SetCurrentPage(lcInstructionsPageLayout* PageLayout);
|
||||
void SetCurrentPage(const lcInstructionsPage* Page);
|
||||
};
|
||||
|
||||
class lcInstructionsDialog : public QMainWindow
|
||||
|
@ -21,14 +20,21 @@ public:
|
|||
lcInstructionsDialog(QWidget* Parent, Project* Project);
|
||||
|
||||
protected slots:
|
||||
void UpdatePageSettings();
|
||||
void CurrentThumbnailChanged(int Index);
|
||||
|
||||
protected:
|
||||
Project* mProject;
|
||||
Project* mProject = nullptr;
|
||||
|
||||
int mCurrentPageNumber;
|
||||
std::vector<lcInstructionsPageLayout> mPageLayouts;
|
||||
lcInstructions mInstructions;
|
||||
|
||||
QListWidget* mThumbnailsWidget;
|
||||
lcInstructionsPageWidget* mPageWidget;
|
||||
QListWidget* mThumbnailsWidget = nullptr;
|
||||
lcInstructionsPageWidget* mPageWidget = nullptr ;
|
||||
|
||||
QToolBar* mPageSettingsToolBar = nullptr;
|
||||
QAction* mVerticalPageAction = nullptr;
|
||||
QAction* mHorizontalPageAction = nullptr;
|
||||
QSpinBox* mRowsSpinBox = nullptr;
|
||||
QSpinBox* mColumnsSpinBox = nullptr;
|
||||
};
|
||||
|
|
|
@ -1144,8 +1144,8 @@ void lcMainWindow::Print(QPrinter* Printer)
|
|||
int DocCopies;
|
||||
int PageCopies;
|
||||
|
||||
std::vector<lcInstructionsPageLayout> PageLayouts = lcGetActiveProject()->GetPageLayouts();
|
||||
const int PageCount = static_cast<int>(PageLayouts.size());
|
||||
lcInstructions Instructions = lcGetActiveProject()->GetInstructions();
|
||||
const int PageCount = static_cast<int>(Instructions.mPages.size());
|
||||
|
||||
if (Printer->collateCopies())
|
||||
{
|
||||
|
@ -1214,8 +1214,9 @@ void lcMainWindow::Print(QPrinter* Printer)
|
|||
int StepWidth = MarginRect.width();
|
||||
int StepHeight = MarginRect.height();
|
||||
|
||||
lcModel* Model = PageLayouts[Page - 1].Model;
|
||||
lcStep Step = PageLayouts[Page - 1].Step;
|
||||
const lcInstructionsPage& PageLayout = Instructions.mPages[Page - 1];
|
||||
lcModel* Model = PageLayout.Steps[0].Model;
|
||||
lcStep Step = PageLayout.Steps[0].Step;
|
||||
QImage Image = Model->GetStepImage(false, StepWidth, StepHeight, Step);
|
||||
|
||||
Painter.drawImage(MarginRect.left(), MarginRect.top(), Image);
|
||||
|
@ -1319,7 +1320,7 @@ void lcMainWindow::ShowInstructionsDialog()
|
|||
void lcMainWindow::ShowPrintDialog()
|
||||
{
|
||||
#ifndef QT_NO_PRINTER
|
||||
int PageCount = static_cast<int>(lcGetActiveProject()->GetPageLayouts().size());
|
||||
int PageCount = static_cast<int>(lcGetActiveProject()->GetInstructions().mPages.size());
|
||||
|
||||
QPrinter Printer(QPrinter::HighResolution);
|
||||
Printer.setFromTo(1, PageCount + 1);
|
||||
|
@ -1943,7 +1944,7 @@ void lcMainWindow::TogglePrintPreview()
|
|||
#ifndef QT_NO_PRINTER
|
||||
// todo: print preview inside main window
|
||||
|
||||
int PageCount = static_cast<int>(lcGetActiveProject()->GetPageLayouts().size());
|
||||
int PageCount = static_cast<int>(lcGetActiveProject()->GetInstructions().mPages.size());
|
||||
|
||||
QPrinter Printer(QPrinter::ScreenResolution);
|
||||
Printer.setFromTo(1, PageCount + 1);
|
||||
|
|
|
@ -1547,48 +1547,6 @@ void lcModel::SaveStepImages(const QString& BaseName, bool AddStepSuffix, bool Z
|
|||
}
|
||||
}
|
||||
|
||||
std::vector<lcInstructionsPageLayout> lcModel::GetPageLayouts(std::vector<const lcModel*>& AddedModels)
|
||||
{
|
||||
std::vector<lcInstructionsPageLayout> PageLayouts;
|
||||
|
||||
if (std::find(AddedModels.begin(), AddedModels.end(), this) != AddedModels.end())
|
||||
return PageLayouts;
|
||||
|
||||
AddedModels.push_back(this);
|
||||
|
||||
std::map<lcStep, std::vector<lcPiece*>> StepPieces;
|
||||
|
||||
for (lcPiece* Piece : mPieces)
|
||||
if (!Piece->IsHidden())
|
||||
StepPieces[Piece->GetStepShow()].push_back(Piece);
|
||||
|
||||
lcStep CurrentStep = 1;
|
||||
|
||||
for (const std::pair<lcStep, std::vector<lcPiece*>>& StepIt : StepPieces)
|
||||
{
|
||||
while (StepIt.first > CurrentStep)
|
||||
{
|
||||
PageLayouts.emplace_back(lcInstructionsPageLayout{ this, CurrentStep });
|
||||
CurrentStep++;
|
||||
}
|
||||
|
||||
for (lcPiece* Piece : StepIt.second)
|
||||
{
|
||||
if (Piece->mPieceInfo->IsModel())
|
||||
{
|
||||
lcModel* SubModel = Piece->mPieceInfo->GetModel();
|
||||
std::vector<lcInstructionsPageLayout> SubModelLayouts = SubModel->GetPageLayouts(AddedModels);
|
||||
PageLayouts.insert(PageLayouts.end(), std::make_move_iterator(SubModelLayouts.begin()), std::make_move_iterator(SubModelLayouts.end()));
|
||||
}
|
||||
}
|
||||
|
||||
PageLayouts.emplace_back(lcInstructionsPageLayout{ this, CurrentStep });
|
||||
CurrentStep++;
|
||||
}
|
||||
|
||||
return PageLayouts;
|
||||
}
|
||||
|
||||
void lcModel::RayTest(lcObjectRayTest& ObjectRayTest) const
|
||||
{
|
||||
for (lcPiece* Piece : mPieces)
|
||||
|
|
|
@ -18,12 +18,6 @@
|
|||
#define LC_SEL_CAN_ADD_CONTROL_POINT 0x0800 // Can add control points to focused piece
|
||||
#define LC_SEL_CAN_REMOVE_CONTROL_POINT 0x1000 // Can remove control points from focused piece
|
||||
|
||||
struct lcInstructionsPageLayout
|
||||
{
|
||||
lcModel* Model;
|
||||
lcStep Step;
|
||||
};
|
||||
|
||||
enum class lcSelectionMode
|
||||
{
|
||||
Single,
|
||||
|
@ -243,7 +237,6 @@ public:
|
|||
QImage GetStepImage(bool Zoom, int Width, int Height, lcStep Step);
|
||||
QImage GetPartsListImage(int MaxWidth, lcStep Step) const;
|
||||
void SaveStepImages(const QString& BaseName, bool AddStepSuffix, bool Zoom, int Width, int Height, lcStep Start, lcStep End);
|
||||
std::vector<lcInstructionsPageLayout> GetPageLayouts(std::vector<const lcModel*>& AddedModels);
|
||||
|
||||
void RayTest(lcObjectRayTest& ObjectRayTest) const;
|
||||
void BoxTest(lcObjectBoxTest& ObjectBoxTest) const;
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
#include "pieceinf.h"
|
||||
#include "camera.h"
|
||||
#include "project.h"
|
||||
#include "lc_instructions.h"
|
||||
#include "image.h"
|
||||
#include "lc_mainwindow.h"
|
||||
#include "lc_view.h"
|
||||
|
@ -1501,14 +1502,9 @@ void Project::ExportCSV()
|
|||
}
|
||||
}
|
||||
|
||||
std::vector<lcInstructionsPageLayout> Project::GetPageLayouts() const
|
||||
lcInstructions Project::GetInstructions()
|
||||
{
|
||||
std::vector<const lcModel*> AddedModels;
|
||||
|
||||
if (!mModels.IsEmpty())
|
||||
return mModels[0]->GetPageLayouts(AddedModels);
|
||||
|
||||
return std::vector<lcInstructionsPageLayout>();
|
||||
return lcInstructions(this);
|
||||
}
|
||||
|
||||
void Project::ExportHTML(const lcHTMLExportOptions& Options)
|
||||
|
|
|
@ -29,8 +29,6 @@ public:
|
|||
bool PartsListEnd;
|
||||
};
|
||||
|
||||
struct lcInstructionsPageLayout;
|
||||
|
||||
class Project
|
||||
{
|
||||
public:
|
||||
|
@ -38,9 +36,7 @@ public:
|
|||
~Project();
|
||||
|
||||
Project(const Project&) = delete;
|
||||
Project(Project&&) = delete;
|
||||
Project& operator=(const Project&) = delete;
|
||||
Project& operator=(Project&&) = delete;
|
||||
|
||||
const lcArray<lcModel*>& GetModels() const
|
||||
{
|
||||
|
@ -75,7 +71,7 @@ public:
|
|||
|
||||
QString GetImageFileName(bool AllowCurrentFolder) const;
|
||||
|
||||
std::vector<lcInstructionsPageLayout> GetPageLayouts() const;
|
||||
lcInstructions GetInstructions();
|
||||
|
||||
void SetActiveModel(int ModelIndex);
|
||||
void SetActiveModel(const QString& FileName);
|
||||
|
|
|
@ -186,6 +186,7 @@ SOURCES += \
|
|||
common/lc_file.cpp \
|
||||
common/lc_glextensions.cpp \
|
||||
common/lc_http.cpp \
|
||||
common/lc_instructions.cpp \
|
||||
common/lc_instructionsdialog.cpp \
|
||||
common/lc_library.cpp \
|
||||
common/lc_lxf.cpp \
|
||||
|
@ -252,6 +253,7 @@ HEADERS += \
|
|||
common/lc_glextensions.h \
|
||||
common/lc_global.h \
|
||||
common/lc_http.h \
|
||||
common/lc_instructions.h \
|
||||
common/lc_instructionsdialog.h \
|
||||
common/lc_library.h \
|
||||
common/lc_lxf.h \
|
||||
|
|
Loading…
Reference in a new issue