1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

scaling still isn't quite right...

This commit is contained in:
dubslow 2014-09-15 08:48:17 -05:00 committed by Tux3 / Mlkj / !Lev.uXFMLA
parent 575862f25f
commit 9d36833a8b
5 changed files with 6 additions and 6 deletions

View File

@ -19,7 +19,7 @@
AVForm::AVForm()
{
prep();
icon.addFile(":/img/settings/av.png");
icon.setPixmap(QPixmap(":/img/settings/av.png").scaledToHeight(headLayout.sizeHint().height(), Qt::SmoothTransformation));
label.setText(tr("Audio/Video settings"));
}

View File

@ -20,7 +20,7 @@
GeneralForm::GeneralForm()
{
prep();
icon.addFile(":/img/settings/general.png");
icon.setPixmap(QPixmap(":/img/settings/general.png").scaledToHeight(headLayout.sizeHint().height(), Qt::SmoothTransformation));
label.setText(tr("General settings"));
group = new QGroupBox(tr("General Settings"));
enableIPv6 = new QCheckBox();

View File

@ -19,6 +19,7 @@
#include <QObject>
#include <QVBoxLayout>
#include <QLabel>
#include "widget/form/settingswidget.h"
class GenericForm : public QObject
@ -36,8 +37,7 @@ public:
protected:
QVBoxLayout layout;
QHBoxLayout headLayout;
QIcon icon;
QLabel label;
QLabel label, icon;
QWidget head, body;
void prep() // call in subclass constructor
{

View File

@ -22,7 +22,7 @@
IdentityForm::IdentityForm()
{
prep();
icon.addFile(":/img/settings/identity.png");
icon.setPixmap(QPixmap(":/img/settings/identity.png").scaledToHeight(headLayout.sizeHint().height(), Qt::SmoothTransformation));
label.setText(tr("Your identity"));
toxGroup = new QGroupBox(tr("Tox ID"));
QLabel* toxIdLabel = new QLabel(tr("Your Tox ID"));

View File

@ -20,7 +20,7 @@
PrivacyForm::PrivacyForm()
{
prep();
icon.addFile(":/img/settings/privacy.png");
icon.setPixmap(QPixmap(":/img/settings/privacy.png").scaledToHeight(headLayout.sizeHint().height(), Qt::SmoothTransformation));
label.setText(tr("Privacy settings"));
}