Correct symbol widget text

This commit is contained in:
Vadim Kuznetsov 2024-06-21 14:58:04 +03:00
parent 4929b4125c
commit 0d69b6a679
3 changed files with 11 additions and 0 deletions

View File

@ -93,6 +93,7 @@ SpiceLibCompDialog::SpiceLibCompDialog(Component *pc, Schematic *sch) : QDialog{
symbol = new SymbolWidget;
symbol->disableDragNDrop();
symbol->enableShowPinNumbers();
symbol->setPaintText("");
tbwPinsTable = new QTableWidget;
tbwPinsTable->setColumnCount(2);
@ -290,6 +291,7 @@ void SpiceLibCompDialog::slotSetSymbol()
QString s1 = "";
QString s2 = "SpLib";
symbol->setSymbol(s1, s1, s2);
symbol->setWarning(tr("No symbol loaded"));
symbolPinsCount = 0;
} else if (rbSymFromTemplate->isChecked()) {
tbwPinsTable->setEnabled(true);

View File

@ -744,3 +744,10 @@ bool SymbolWidget::getBrush(const QString& s, QBrush& Brush, int i)
return true;
}
void SymbolWidget::setPaintText(const QString &txt)
{
PaintText = txt;
QFontMetrics metrics(QucsSettings.font, 0); // use the the screen-compatible metric
TextWidth = metrics.size(0,PaintText).width() + 4; // get size of text
}

View File

@ -55,6 +55,8 @@ public:
void disableShowPinNumbers() { showPinNumbers = false; }
bool showPinNumbersEnabled() { return showPinNumbers; }
int getPortsNumber() { return portsNumber; }
void setPaintText(const QString &txt);
void setWarning(const QString &warn) { Warning = warn; }
// component properties
int Text_x, Text_y;
QString Prefix, LibraryPath, ComponentName;