mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
Rename Schematic::sizeOfSelection()
This commit is contained in:
parent
cbfb060786
commit
1ac773f4f2
@ -124,7 +124,7 @@ int ImageWriter::print(QWidget *doc)
|
||||
int h = all.height();
|
||||
|
||||
|
||||
QRect selected = sch->sizeOfSelection().bounds;
|
||||
QRect selected = sch->currentSelection().bounds;
|
||||
int wsel = selected.width();
|
||||
int hsel = selected.height();
|
||||
|
||||
|
@ -749,7 +749,7 @@ void Schematic::print(QPrinter*, QPainter* painter, bool printAll,
|
||||
const QRectF pageSize{0, 0, static_cast<double>(painter->device()->width()),
|
||||
static_cast<double>(painter->device()->height())};
|
||||
|
||||
QRect printedArea = printAll ? allBoundingRect() : sizeOfSelection().bounds;
|
||||
QRect printedArea = printAll ? allBoundingRect() : currentSelection().bounds;
|
||||
|
||||
if (printAll && a_showFrame) {
|
||||
int frame_width, frame_height;
|
||||
@ -977,7 +977,7 @@ void Schematic::zoomToSelection() {
|
||||
return;
|
||||
}
|
||||
|
||||
const QRect selectedBoundingRect{ sizeOfSelection().bounds };
|
||||
const QRect selectedBoundingRect{ currentSelection().bounds };
|
||||
|
||||
// Working with raw coordinates is clumsy, abstract them out
|
||||
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 ymin = INT_MAX;
|
||||
int xmax = INT_MIN;
|
||||
|
@ -115,7 +115,7 @@ public:
|
||||
std::vector<Node*> nodes;
|
||||
};
|
||||
|
||||
Selection sizeOfSelection() const;
|
||||
Selection currentSelection() const;
|
||||
bool rotateElements();
|
||||
bool mirrorXComponents();
|
||||
bool mirrorYComponents();
|
||||
|
Loading…
x
Reference in New Issue
Block a user