mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
Correct symbol widget text
This commit is contained in:
parent
4929b4125c
commit
0d69b6a679
@ -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);
|
||||
|
@ -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
|
||||
}
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user