Rename Schematic::sizeOfSelection()

This commit is contained in:
Andrey Kalmykov 2025-02-09 09:11:22 +01:00
parent cbfb060786
commit 1ac773f4f2
3 changed files with 5 additions and 5 deletions

View File

@ -124,7 +124,7 @@ int ImageWriter::print(QWidget *doc)
int h = all.height(); int h = all.height();
QRect selected = sch->sizeOfSelection().bounds; QRect selected = sch->currentSelection().bounds;
int wsel = selected.width(); int wsel = selected.width();
int hsel = selected.height(); int hsel = selected.height();

View File

@ -749,7 +749,7 @@ void Schematic::print(QPrinter*, QPainter* painter, bool printAll,
const QRectF pageSize{0, 0, static_cast<double>(painter->device()->width()), const QRectF pageSize{0, 0, static_cast<double>(painter->device()->width()),
static_cast<double>(painter->device()->height())}; static_cast<double>(painter->device()->height())};
QRect printedArea = printAll ? allBoundingRect() : sizeOfSelection().bounds; QRect printedArea = printAll ? allBoundingRect() : currentSelection().bounds;
if (printAll && a_showFrame) { if (printAll && a_showFrame) {
int frame_width, frame_height; int frame_width, frame_height;
@ -977,7 +977,7 @@ void Schematic::zoomToSelection() {
return; return;
} }
const QRect selectedBoundingRect{ sizeOfSelection().bounds }; const QRect selectedBoundingRect{ currentSelection().bounds };
// Working with raw coordinates is clumsy, abstract them out // Working with raw coordinates is clumsy, abstract them out
const QRect usedBoundingRect{a_UsedX1, a_UsedY1, a_UsedX2 - a_UsedX1, a_UsedY2 - a_UsedY1}; const QRect usedBoundingRect{a_UsedX1, a_UsedY1, a_UsedX2 - a_UsedX1, a_UsedY2 - a_UsedY1};
@ -1280,7 +1280,7 @@ void Schematic::sizeOfAll(int &xmin, int &ymin, int &xmax, int &ymax)
} }
} }
Schematic::Selection Schematic::sizeOfSelection() const { Schematic::Selection Schematic::currentSelection() const {
int xmin = INT_MAX; int xmin = INT_MAX;
int ymin = INT_MAX; int ymin = INT_MAX;
int xmax = INT_MIN; int xmax = INT_MIN;

View File

@ -115,7 +115,7 @@ public:
std::vector<Node*> nodes; std::vector<Node*> nodes;
}; };
Selection sizeOfSelection() const; Selection currentSelection() const;
bool rotateElements(); bool rotateElements();
bool mirrorXComponents(); bool mirrorXComponents();
bool mirrorYComponents(); bool mirrorYComponents();