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();
|
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();
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
@ -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();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user