| 547 | } |
| 548 | |
| 549 | void bigIconButton::setScale(qreal scale){ |
| 550 | iconImg = new QPixmap(iconImg->scaled(iconImg->size() * scale, Qt::IgnoreAspectRatio, Qt::SmoothTransformation)); |
| 551 | icon->setPixmap(*iconImg); |
| 552 | } |
| 553 | |
| 554 | textInputItem::textInputItem(const QString &name, QWidget *parent) : |
| 555 | QWidget(parent) |