uic: Revert the microoptimization patch introducing QStringLiteral

This reverts the following commits:
d12d2949d1
26c3bec09b
49b08f96e8

We can't easily predict all code paths for QDesigner
with such a microoptimization. We also don't want
to generate three different string constructions
depending on some sophisticated heuristics.

[ChangeLog][uic] The -no-stringliteral option is now deprecated and
UIC will not generate QStringLiteral anymore.

Task-number: QTBUG-65251
Task-number: QTBUG-51602
Change-Id: I34a5a1934a8df19c5c84ac2ba8e5168ce5665037
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
This commit is contained in:
Jarek Kobus 2018-07-13 09:02:14 +00:00
parent 519fcb38a2
commit ff18b02f21
112 changed files with 1630 additions and 1641 deletions

View File

@ -3,8 +3,6 @@ qtPrepareTool(QMAKE_UIC, uic, _DEP)
isEmpty(UI_DIR):UI_DIR = . isEmpty(UI_DIR):UI_DIR = .
isEmpty(QMAKE_MOD_UIC):QMAKE_MOD_UIC = ui_ isEmpty(QMAKE_MOD_UIC):QMAKE_MOD_UIC = ui_
contains(TEMPLATE, .*lib):dll: QMAKE_UIC_FLAGS += -no-stringliteral
uic.depends += $$QMAKE_UIC_EXE uic.depends += $$QMAKE_UIC_EXE
uic.commands = $$QMAKE_UIC $$QMAKE_UIC_FLAGS ${QMAKE_FILE_IN} -o ${QMAKE_FILE_OUT} uic.commands = $$QMAKE_UIC $$QMAKE_UIC_FLAGS ${QMAKE_FILE_IN} -o ${QMAKE_FILE_OUT}
uic.depend_command = $$QMAKE_UIC_DEP -d ${QMAKE_FILE_IN} uic.depend_command = $$QMAKE_UIC_DEP -d ${QMAKE_FILE_IN}

View File

@ -2355,9 +2355,7 @@
This variable is used to customize the list of options passed to the This variable is used to customize the list of options passed to the
\l{uic}{User Interface Compiler} in each of the build rules where it is \l{uic}{User Interface Compiler} in each of the build rules where it is
used. For example, \c{-no-stringliteral} can be passed to use QLatin1String used.
instead of QStringLiteral in generated code (which is the default for
dynamic libraries).
\section1 QMAKE_WATCHOS_DEPLOYMENT_TARGET \section1 QMAKE_WATCHOS_DEPLOYMENT_TARGET

View File

@ -475,21 +475,6 @@ WriteInitialization::WriteInitialization(Uic *uic) :
{ {
} }
QString WriteInitialization::writeString(const QString &s, const QString &indent) const
{
unsigned flags = 0;
const QString ret = fixString(s, indent, &flags);
if (flags & Utf8String)
return QLatin1String("QString::fromUtf8(") + ret + QLatin1Char(')');
// MSVC cannot concat L"foo" "bar" (C2308: concatenating mismatched strings),
// use QLatin1String instead (all platforms to avoid cross-compiling issues).
if (flags & MultiLineString)
return QLatin1String("QLatin1String(") + ret + QLatin1Char(')');
const QLatin1String stringWrapper = m_uic->option().stringLiteral ?
QLatin1String("QStringLiteral(") : QLatin1String("QLatin1String(");
return stringWrapper + ret + QLatin1Char(')');
}
void WriteInitialization::acceptUI(DomUI *node) void WriteInitialization::acceptUI(DomUI *node)
{ {
m_actionGroupChain.push(0); m_actionGroupChain.push(0);
@ -529,7 +514,7 @@ void WriteInitialization::acceptUI(DomUI *node)
continue; continue;
const QString varConn = connection + QLatin1String("Connection"); const QString varConn = connection + QLatin1String("Connection");
m_output << m_indent << varConn << " = QSqlDatabase::database(" << writeString(connection, m_dindent) << ");\n"; m_output << m_indent << varConn << " = QSqlDatabase::database(" << fixString(connection, m_dindent) << ");\n";
} }
acceptWidget(node->elementWidget()); acceptWidget(node->elementWidget());
@ -1141,7 +1126,7 @@ QString WriteInitialization::writeStringListProperty(const DomStringList *list)
str << '\n' << m_indent << " << " << trCall(values.at(i), comment); str << '\n' << m_indent << " << " << trCall(values.at(i), comment);
} else { } else {
for (int i = 0; i < values.size(); ++i) for (int i = 0; i < values.size(); ++i)
str << " << " << writeString(values.at(i), m_dindent); str << " << QString::fromUtf8(" << fixString(values.at(i), m_dindent) << ')';
} }
return propertyValue; return propertyValue;
} }
@ -1156,8 +1141,8 @@ void WriteInitialization::writeProperties(const QString &varName,
if (m_uic->customWidgetsInfo()->extends(className, QLatin1String("QAxWidget"))) { if (m_uic->customWidgetsInfo()->extends(className, QLatin1String("QAxWidget"))) {
DomPropertyMap properties = propertyMap(lst); DomPropertyMap properties = propertyMap(lst);
if (DomProperty *p = properties.value(QLatin1String("control"))) { if (DomProperty *p = properties.value(QLatin1String("control"))) {
m_output << m_indent << varName << "->setControl(" m_output << m_indent << varName << "->setControl(QString::fromUtf8("
<< writeString(toString(p->elementString()), m_dindent) << ");\n"; << fixString(toString(p->elementString()), m_dindent) << "));\n";
} }
} }
@ -1168,7 +1153,7 @@ void WriteInitialization::writeProperties(const QString &varName,
} }
if (!(flags & WritePropertyIgnoreObjectName)) if (!(flags & WritePropertyIgnoreObjectName))
m_output << m_indent << indent << varName m_output << m_indent << indent << varName
<< "->setObjectName(" << writeString(varName, m_dindent) << ");\n"; << "->setObjectName(QString::fromUtf8(" << fixString(varName, m_dindent) << "));\n";
int leftMargin, topMargin, rightMargin, bottomMargin; int leftMargin, topMargin, rightMargin, bottomMargin;
leftMargin = topMargin = rightMargin = bottomMargin = -1; leftMargin = topMargin = rightMargin = bottomMargin = -1;
@ -1467,8 +1452,8 @@ void WriteInitialization::writeProperties(const QString &varName,
case DomProperty::Url: { case DomProperty::Url: {
const DomUrl* u = p->elementUrl(); const DomUrl* u = p->elementUrl();
propertyValue = QString::fromLatin1("QUrl(%1)") propertyValue = QString::fromLatin1("QUrl(QString::fromUtf8(%1))")
.arg(writeString(u->elementString()->text(), m_dindent)); .arg(fixString(u->elementString()->text(), m_dindent));
break; break;
} }
case DomProperty::Brush: case DomProperty::Brush:
@ -1572,8 +1557,8 @@ QString WriteInitialization::writeFontProperties(const DomFont *f)
m_output << m_indent << "QFont " << fontName << ";\n"; m_output << m_indent << "QFont " << fontName << ";\n";
if (f->hasElementFamily() && !f->elementFamily().isEmpty()) { if (f->hasElementFamily() && !f->elementFamily().isEmpty()) {
m_output << m_indent << fontName << ".setFamily(" << writeString(f->elementFamily(), m_dindent) m_output << m_indent << fontName << ".setFamily(QString::fromUtf8("
<< ");\n"; << fixString(f->elementFamily(), m_dindent) << "));\n";
} }
if (f->hasElementPointSize() && f->elementPointSize() > 0) { if (f->hasElementPointSize() && f->elementPointSize() > 0) {
m_output << m_indent << fontName << ".setPointSize(" << f->elementPointSize() m_output << m_indent << fontName << ".setPointSize(" << f->elementPointSize()
@ -1616,27 +1601,51 @@ QString WriteInitialization::writeFontProperties(const DomFont *f)
} }
// Post 4.4 write resource icon // Post 4.4 write resource icon
void WriteInitialization::writeResourceIcon(QTextStream &output, static void writeResourceIcon(QTextStream &output,
const QString &iconName, const QString &iconName,
const QString &indent, const QString &indent,
const DomResourceIcon *i) const const DomResourceIcon *i)
{ {
if (i->hasElementNormalOff()) if (i->hasElementNormalOff()) {
output << indent << iconName << ".addFile(" << writeString(i->elementNormalOff()->text(), indent) << ", QSize(), QIcon::Normal, QIcon::Off);\n"; output << indent << iconName << ".addFile(QString::fromUtf8("
if (i->hasElementNormalOn()) << fixString(i->elementNormalOff()->text(), indent)
output << indent << iconName << ".addFile(" << writeString(i->elementNormalOn()->text(), indent) << ", QSize(), QIcon::Normal, QIcon::On);\n"; << "), QSize(), QIcon::Normal, QIcon::Off);\n";
if (i->hasElementDisabledOff()) }
output << indent << iconName << ".addFile(" << writeString(i->elementDisabledOff()->text(), indent) << ", QSize(), QIcon::Disabled, QIcon::Off);\n"; if (i->hasElementNormalOn()) {
if (i->hasElementDisabledOn()) output << indent << iconName << ".addFile(QString::fromUtf8("
output << indent << iconName << ".addFile(" << writeString(i->elementDisabledOn()->text(), indent) << ", QSize(), QIcon::Disabled, QIcon::On);\n"; << fixString(i->elementNormalOn()->text(), indent)
if (i->hasElementActiveOff()) << "), QSize(), QIcon::Normal, QIcon::On);\n";
output << indent << iconName << ".addFile(" << writeString(i->elementActiveOff()->text(), indent) << ", QSize(), QIcon::Active, QIcon::Off);\n"; }
if (i->hasElementActiveOn()) if (i->hasElementDisabledOff()) {
output << indent << iconName << ".addFile(" << writeString(i->elementActiveOn()->text(), indent) << ", QSize(), QIcon::Active, QIcon::On);\n"; output << indent << iconName << ".addFile(QString::fromUtf8("
if (i->hasElementSelectedOff()) << fixString(i->elementDisabledOff()->text(), indent)
output << indent << iconName << ".addFile(" << writeString(i->elementSelectedOff()->text(), indent) << ", QSize(), QIcon::Selected, QIcon::Off);\n"; << "), QSize(), QIcon::Disabled, QIcon::Off);\n";
if (i->hasElementSelectedOn()) }
output << indent << iconName << ".addFile(" << writeString(i->elementSelectedOn()->text(), indent) << ", QSize(), QIcon::Selected, QIcon::On);\n"; if (i->hasElementDisabledOn()) {
output << indent << iconName << ".addFile(QString::fromUtf8("
<< fixString(i->elementDisabledOn()->text(), indent)
<< "), QSize(), QIcon::Disabled, QIcon::On);\n";
}
if (i->hasElementActiveOff()) {
output << indent << iconName << ".addFile(QString::fromUtf8("
<< fixString(i->elementActiveOff()->text(), indent)
<< "), QSize(), QIcon::Active, QIcon::Off);\n";
}
if (i->hasElementActiveOn()) {
output << indent << iconName << ".addFile(QString::fromUtf8("
<< fixString(i->elementActiveOn()->text(), indent)
<< "), QSize(), QIcon::Active, QIcon::On);\n";
}
if (i->hasElementSelectedOff()) {
output << indent << iconName << ".addFile(QString::fromUtf8("
<< fixString(i->elementSelectedOff()->text(), indent)
<< "), QSize(), QIcon::Selected, QIcon::Off);\n";
}
if (i->hasElementSelectedOn()) {
output << indent << iconName << ".addFile(QString::fromUtf8("
<< fixString(i->elementSelectedOn()->text(), indent)
<< "), QSize(), QIcon::Selected, QIcon::On);\n";
}
} }
QString WriteInitialization::writeIconProperties(const DomResourceIcon *i) QString WriteInitialization::writeIconProperties(const DomResourceIcon *i)
@ -1658,7 +1667,7 @@ QString WriteInitialization::writeIconProperties(const DomResourceIcon *i)
writeResourceIcon(m_output, iconName, m_indent, i); writeResourceIcon(m_output, iconName, m_indent, i);
} else { } else {
// Theme: Generate code to check the theme and default to resource // Theme: Generate code to check the theme and default to resource
const QString themeIconName = writeString(i->attributeTheme(), QString()); const QString themeIconName = fixString(i->attributeTheme(), QString());
if (iconHasStatePixmaps(i)) { if (iconHasStatePixmaps(i)) {
// Theme + default state pixmaps: // Theme + default state pixmaps:
// Generate code to check the theme and default to state pixmaps // Generate code to check the theme and default to state pixmaps
@ -1670,8 +1679,8 @@ QString WriteInitialization::writeIconProperties(const DomResourceIcon *i)
m_output << "QString "; m_output << "QString ";
m_firstThemeIcon = false; m_firstThemeIcon = false;
} }
m_output << themeNameStringVariableC << " = " m_output << themeNameStringVariableC << " = QString::fromUtf8("
<< themeIconName << ";\n"; << themeIconName << ");\n";
m_output << m_indent << "if (QIcon::hasThemeIcon(" m_output << m_indent << "if (QIcon::hasThemeIcon("
<< themeNameStringVariableC << themeNameStringVariableC
<< ")) {\n" << ")) {\n"
@ -1682,8 +1691,8 @@ QString WriteInitialization::writeIconProperties(const DomResourceIcon *i)
} else { } else {
// Theme, but no state pixmaps: Construct from theme directly. // Theme, but no state pixmaps: Construct from theme directly.
m_output << m_indent << "QIcon " << iconName m_output << m_indent << "QIcon " << iconName
<< "(QIcon::fromTheme(" << "(QIcon::fromTheme(QString::fromUtf8("
<< themeIconName << "));\n"; << themeIconName << ")));\n";
} // Theme, but not state } // Theme, but not state
} // >= 4.4 } // >= 4.4
} else { // pre-4.4 legacy } else { // pre-4.4 legacy
@ -2323,7 +2332,10 @@ QString WriteInitialization::noTrCall(DomString *str, const QString &defaultStri
return QString(); return QString();
if (str) if (str)
value = str->text(); value = str->text();
return writeString(value, m_dindent); QString ret = QLatin1String("QString::fromUtf8(");
ret += fixString(value, m_dindent);
ret += QLatin1Char(')');
return ret;
} }
QString WriteInitialization::autoTrCall(DomString *str, const QString &defaultString) const QString WriteInitialization::autoTrCall(DomString *str, const QString &defaultString) const

View File

@ -139,8 +139,6 @@ struct WriteInitialization : public TreeWalker
private: private:
static QString domColor2QString(const DomColor *c); static QString domColor2QString(const DomColor *c);
QString writeString(const QString &s, const QString &indent) const;
QString iconCall(const DomProperty *prop); QString iconCall(const DomProperty *prop);
QString pixCall(const DomProperty *prop) const; QString pixCall(const DomProperty *prop) const;
QString pixCall(const QString &type, const QString &text) const; QString pixCall(const QString &type, const QString &text) const;
@ -230,7 +228,6 @@ private:
private: private:
QString writeFontProperties(const DomFont *f); QString writeFontProperties(const DomFont *f);
void writeResourceIcon(QTextStream &output, const QString &iconName, const QString &indent, const DomResourceIcon *i) const;
QString writeIconProperties(const DomResourceIcon *i); QString writeIconProperties(const DomResourceIcon *i);
QString writeSizePolicy(const DomSizePolicy *sp); QString writeSizePolicy(const DomSizePolicy *sp);
QString writeBrushInitialization(const DomBrush *brush); QString writeBrushInitialization(const DomBrush *brush);

View File

@ -76,7 +76,7 @@ int runUic(int argc, char *argv[])
parser.addOption(noImplicitIncludesOption); parser.addOption(noImplicitIncludesOption);
QCommandLineOption noStringLiteralOption(QStringList() << QStringLiteral("s") << QStringLiteral("no-stringliteral")); QCommandLineOption noStringLiteralOption(QStringList() << QStringLiteral("s") << QStringLiteral("no-stringliteral"));
noStringLiteralOption.setDescription(QStringLiteral("Use QLatin1String instead of QStringLiteral in generated code.")); noStringLiteralOption.setDescription(QStringLiteral("Deprecated. The use of this option won't take any effect."));
parser.addOption(noStringLiteralOption); parser.addOption(noStringLiteralOption);
QCommandLineOption postfixOption(QStringLiteral("postfix")); QCommandLineOption postfixOption(QStringLiteral("postfix"));
@ -111,13 +111,15 @@ int runUic(int argc, char *argv[])
driver.option().outputFile = parser.value(outputOption); driver.option().outputFile = parser.value(outputOption);
driver.option().headerProtection = !parser.isSet(noProtOption); driver.option().headerProtection = !parser.isSet(noProtOption);
driver.option().implicitIncludes = !parser.isSet(noImplicitIncludesOption); driver.option().implicitIncludes = !parser.isSet(noImplicitIncludesOption);
driver.option().stringLiteral = !parser.isSet(noStringLiteralOption);
driver.option().idBased = parser.isSet(idBasedOption); driver.option().idBased = parser.isSet(idBasedOption);
driver.option().postfix = parser.value(postfixOption); driver.option().postfix = parser.value(postfixOption);
driver.option().translateFunction = parser.value(translateOption); driver.option().translateFunction = parser.value(translateOption);
driver.option().includeFile = parser.value(includeOption); driver.option().includeFile = parser.value(includeOption);
driver.option().generator = (parser.value(generatorOption).toLower() == QLatin1String("java")) ? Option::JavaGenerator : Option::CppGenerator; driver.option().generator = (parser.value(generatorOption).toLower() == QLatin1String("java")) ? Option::JavaGenerator : Option::CppGenerator;
if (parser.isSet(noStringLiteralOption))
fprintf(stderr, "The -s, --no-stringliteral option is deprecated and it won't take any effect.\n");
QString inputFile; QString inputFile;
if (!parser.positionalArguments().isEmpty()) if (!parser.positionalArguments().isEmpty())
inputFile = parser.positionalArguments().at(0); inputFile = parser.positionalArguments().at(0);

View File

@ -51,7 +51,6 @@ struct Option
unsigned int limitXPM_LineLength : 1; unsigned int limitXPM_LineLength : 1;
unsigned int implicitIncludes: 1; unsigned int implicitIncludes: 1;
unsigned int idBased: 1; unsigned int idBased: 1;
unsigned int stringLiteral: 1;
Generator generator; Generator generator;
QString inputFile; QString inputFile;
@ -77,7 +76,6 @@ struct Option
limitXPM_LineLength(0), limitXPM_LineLength(0),
implicitIncludes(1), implicitIncludes(1),
idBased(0), idBased(0),
stringLiteral(1),
generator(CppGenerator), generator(CppGenerator),
prefix(QLatin1String("Ui_")) prefix(QLatin1String("Ui_"))
{ indent.fill(QLatin1Char(' '), 4); } { indent.fill(QLatin1Char(' '), 4); }

View File

@ -42,27 +42,18 @@ inline bool toBool(const QString &str)
inline QString toString(const DomString *str) inline QString toString(const DomString *str)
{ return str ? str->text() : QString(); } { return str ? str->text() : QString(); }
enum StringFlags { inline QString fixString(const QString &str, const QString &indent)
Utf8String = 0x1,
MultiLineString = 0x2
};
inline QString fixString(const QString &str, const QString &indent,
unsigned *stringFlags = 0)
{ {
QString cursegment; QString cursegment;
QStringList result; QStringList result;
const QByteArray utf8 = str.toUtf8(); const QByteArray utf8 = str.toUtf8();
const int utf8Length = utf8.length(); const int utf8Length = utf8.length();
unsigned flags = 0;
for (int i = 0; i < utf8Length; ++i) { for (int i = 0; i < utf8Length; ++i) {
const uchar cbyte = utf8.at(i); const uchar cbyte = utf8.at(i);
if (cbyte >= 0x80) { if (cbyte >= 0x80) {
cursegment += QLatin1Char('\\'); cursegment += QLatin1Char('\\');
cursegment += QString::number(cbyte, 8); cursegment += QString::number(cbyte, 8);
flags |= Utf8String;
} else { } else {
switch(cbyte) { switch(cbyte) {
case '\\': case '\\':
@ -72,7 +63,6 @@ inline QString fixString(const QString &str, const QString &indent,
case '\r': case '\r':
break; break;
case '\n': case '\n':
flags |= MultiLineString;
cursegment += QLatin1String("\\n\"\n\""); break; cursegment += QLatin1String("\\n\"\n\""); break;
default: default:
cursegment += QLatin1Char(cbyte); cursegment += QLatin1Char(cbyte);
@ -98,12 +88,6 @@ inline QString fixString(const QString &str, const QString &indent,
rc += result.join(joinstr); rc += result.join(joinstr);
rc += QLatin1Char('"'); rc += QLatin1Char('"');
if (result.size() > 1)
flags |= MultiLineString;
if (stringFlags)
*stringFlags = flags;
return rc; return rc;
} }

View File

@ -24,10 +24,10 @@ public:
void setupUi(QDialog *Dialog) void setupUi(QDialog *Dialog)
{ {
if (Dialog->objectName().isEmpty()) if (Dialog->objectName().isEmpty())
Dialog->setObjectName(QStringLiteral("Dialog")); Dialog->setObjectName(QString::fromUtf8("Dialog"));
Dialog->resize(400, 300); Dialog->resize(400, 300);
buttonBox = new QDialogButtonBox(Dialog); buttonBox = new QDialogButtonBox(Dialog);
buttonBox->setObjectName(QStringLiteral("buttonBox")); buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setGeometry(QRect(30, 240, 341, 32)); buttonBox->setGeometry(QRect(30, 240, 341, 32));
buttonBox->setOrientation(Qt::Horizontal); buttonBox->setOrientation(Qt::Horizontal);
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok); buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);

View File

@ -24,10 +24,10 @@ public:
void setupUi(QDialog *Dialog) void setupUi(QDialog *Dialog)
{ {
if (Dialog->objectName().isEmpty()) if (Dialog->objectName().isEmpty())
Dialog->setObjectName(QStringLiteral("Dialog")); Dialog->setObjectName(QString::fromUtf8("Dialog"));
Dialog->resize(400, 300); Dialog->resize(400, 300);
buttonBox = new QDialogButtonBox(Dialog); buttonBox = new QDialogButtonBox(Dialog);
buttonBox->setObjectName(QStringLiteral("buttonBox")); buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setGeometry(QRect(290, 20, 81, 241)); buttonBox->setGeometry(QRect(290, 20, 81, 241));
buttonBox->setOrientation(Qt::Vertical); buttonBox->setOrientation(Qt::Vertical);
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok); buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);

View File

@ -22,7 +22,7 @@ public:
void setupUi(QDialog *Dialog) void setupUi(QDialog *Dialog)
{ {
if (Dialog->objectName().isEmpty()) if (Dialog->objectName().isEmpty())
Dialog->setObjectName(QStringLiteral("Dialog")); Dialog->setObjectName(QString::fromUtf8("Dialog"));
Dialog->resize(400, 300); Dialog->resize(400, 300);
retranslateUi(Dialog); retranslateUi(Dialog);

View File

@ -28,16 +28,16 @@ public:
void setupUi(QMainWindow *MainWindow) void setupUi(QMainWindow *MainWindow)
{ {
if (MainWindow->objectName().isEmpty()) if (MainWindow->objectName().isEmpty())
MainWindow->setObjectName(QStringLiteral("MainWindow")); MainWindow->setObjectName(QString::fromUtf8("MainWindow"));
MainWindow->resize(800, 600); MainWindow->resize(800, 600);
menubar = new QMenuBar(MainWindow); menubar = new QMenuBar(MainWindow);
menubar->setObjectName(QStringLiteral("menubar")); menubar->setObjectName(QString::fromUtf8("menubar"));
MainWindow->setMenuBar(menubar); MainWindow->setMenuBar(menubar);
centralwidget = new QWidget(MainWindow); centralwidget = new QWidget(MainWindow);
centralwidget->setObjectName(QStringLiteral("centralwidget")); centralwidget->setObjectName(QString::fromUtf8("centralwidget"));
MainWindow->setCentralWidget(centralwidget); MainWindow->setCentralWidget(centralwidget);
statusbar = new QStatusBar(MainWindow); statusbar = new QStatusBar(MainWindow);
statusbar->setObjectName(QStringLiteral("statusbar")); statusbar->setObjectName(QString::fromUtf8("statusbar"));
MainWindow->setStatusBar(statusbar); MainWindow->setStatusBar(statusbar);
retranslateUi(MainWindow); retranslateUi(MainWindow);

View File

@ -30,22 +30,22 @@ public:
void setupUi(QWidget *Form) void setupUi(QWidget *Form)
{ {
if (Form->objectName().isEmpty()) if (Form->objectName().isEmpty())
Form->setObjectName(QStringLiteral("Form")); Form->setObjectName(QString::fromUtf8("Form"));
Form->resize(400, 300); Form->resize(400, 300);
vboxLayout = new QVBoxLayout(Form); vboxLayout = new QVBoxLayout(Form);
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
Alabel = new QLabel(Form); Alabel = new QLabel(Form);
Alabel->setObjectName(QStringLiteral("Alabel")); Alabel->setObjectName(QString::fromUtf8("Alabel"));
vboxLayout->addWidget(Alabel); vboxLayout->addWidget(Alabel);
groupBox = new QGroupBox(Form); groupBox = new QGroupBox(Form);
groupBox->setObjectName(QStringLiteral("groupBox")); groupBox->setObjectName(QString::fromUtf8("groupBox"));
vboxLayout->addWidget(groupBox); vboxLayout->addWidget(groupBox);
pushButton = new QPushButton(Form); pushButton = new QPushButton(Form);
pushButton->setObjectName(QStringLiteral("pushButton")); pushButton->setObjectName(QString::fromUtf8("pushButton"));
vboxLayout->addWidget(pushButton); vboxLayout->addWidget(pushButton);

View File

@ -38,31 +38,31 @@ public:
void setupUi(QDialog *AddLinkDialog) void setupUi(QDialog *AddLinkDialog)
{ {
if (AddLinkDialog->objectName().isEmpty()) if (AddLinkDialog->objectName().isEmpty())
AddLinkDialog->setObjectName(QStringLiteral("AddLinkDialog")); AddLinkDialog->setObjectName(QString::fromUtf8("AddLinkDialog"));
AddLinkDialog->setSizeGripEnabled(false); AddLinkDialog->setSizeGripEnabled(false);
AddLinkDialog->setModal(true); AddLinkDialog->setModal(true);
verticalLayout = new QVBoxLayout(AddLinkDialog); verticalLayout = new QVBoxLayout(AddLinkDialog);
verticalLayout->setObjectName(QStringLiteral("verticalLayout")); verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
formLayout = new QFormLayout(); formLayout = new QFormLayout();
formLayout->setObjectName(QStringLiteral("formLayout")); formLayout->setObjectName(QString::fromUtf8("formLayout"));
label = new QLabel(AddLinkDialog); label = new QLabel(AddLinkDialog);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
formLayout->setWidget(0, QFormLayout::LabelRole, label); formLayout->setWidget(0, QFormLayout::LabelRole, label);
titleInput = new QLineEdit(AddLinkDialog); titleInput = new QLineEdit(AddLinkDialog);
titleInput->setObjectName(QStringLiteral("titleInput")); titleInput->setObjectName(QString::fromUtf8("titleInput"));
titleInput->setMinimumSize(QSize(337, 0)); titleInput->setMinimumSize(QSize(337, 0));
formLayout->setWidget(0, QFormLayout::FieldRole, titleInput); formLayout->setWidget(0, QFormLayout::FieldRole, titleInput);
label_2 = new QLabel(AddLinkDialog); label_2 = new QLabel(AddLinkDialog);
label_2->setObjectName(QStringLiteral("label_2")); label_2->setObjectName(QString::fromUtf8("label_2"));
formLayout->setWidget(1, QFormLayout::LabelRole, label_2); formLayout->setWidget(1, QFormLayout::LabelRole, label_2);
urlInput = new QLineEdit(AddLinkDialog); urlInput = new QLineEdit(AddLinkDialog);
urlInput->setObjectName(QStringLiteral("urlInput")); urlInput->setObjectName(QString::fromUtf8("urlInput"));
formLayout->setWidget(1, QFormLayout::FieldRole, urlInput); formLayout->setWidget(1, QFormLayout::FieldRole, urlInput);
@ -74,14 +74,14 @@ public:
verticalLayout->addItem(verticalSpacer); verticalLayout->addItem(verticalSpacer);
line = new QFrame(AddLinkDialog); line = new QFrame(AddLinkDialog);
line->setObjectName(QStringLiteral("line")); line->setObjectName(QString::fromUtf8("line"));
line->setFrameShape(QFrame::HLine); line->setFrameShape(QFrame::HLine);
line->setFrameShadow(QFrame::Sunken); line->setFrameShadow(QFrame::Sunken);
verticalLayout->addWidget(line); verticalLayout->addWidget(line);
buttonBox = new QDialogButtonBox(AddLinkDialog); buttonBox = new QDialogButtonBox(AddLinkDialog);
buttonBox->setObjectName(QStringLiteral("buttonBox")); buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setOrientation(Qt::Horizontal); buttonBox->setOrientation(Qt::Horizontal);
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok); buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);

View File

@ -56,7 +56,7 @@ public:
void setupUi(QDialog *AddTorrentFile) void setupUi(QDialog *AddTorrentFile)
{ {
if (AddTorrentFile->objectName().isEmpty()) if (AddTorrentFile->objectName().isEmpty())
AddTorrentFile->setObjectName(QStringLiteral("AddTorrentFile")); AddTorrentFile->setObjectName(QString::fromUtf8("AddTorrentFile"));
AddTorrentFile->resize(464, 385); AddTorrentFile->resize(464, 385);
AddTorrentFile->setSizeGripEnabled(false); AddTorrentFile->setSizeGripEnabled(false);
AddTorrentFile->setModal(true); AddTorrentFile->setModal(true);
@ -65,56 +65,56 @@ public:
vboxLayout->setSpacing(6); vboxLayout->setSpacing(6);
#endif #endif
vboxLayout->setContentsMargins(8, 8, 8, 8); vboxLayout->setContentsMargins(8, 8, 8, 8);
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
groupBox = new QGroupBox(AddTorrentFile); groupBox = new QGroupBox(AddTorrentFile);
groupBox->setObjectName(QStringLiteral("groupBox")); groupBox->setObjectName(QString::fromUtf8("groupBox"));
widget = new QWidget(groupBox); widget = new QWidget(groupBox);
widget->setObjectName(QStringLiteral("widget")); widget->setObjectName(QString::fromUtf8("widget"));
widget->setGeometry(QRect(10, 40, 364, 33)); widget->setGeometry(QRect(10, 40, 364, 33));
gridLayout = new QGridLayout(groupBox); gridLayout = new QGridLayout(groupBox);
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
gridLayout->setSpacing(6); gridLayout->setSpacing(6);
#endif #endif
gridLayout->setContentsMargins(8, 8, 8, 8); gridLayout->setContentsMargins(8, 8, 8, 8);
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
label_4 = new QLabel(groupBox); label_4 = new QLabel(groupBox);
label_4->setObjectName(QStringLiteral("label_4")); label_4->setObjectName(QString::fromUtf8("label_4"));
gridLayout->addWidget(label_4, 6, 0, 1, 1); gridLayout->addWidget(label_4, 6, 0, 1, 1);
torrentFile = new QLineEdit(groupBox); torrentFile = new QLineEdit(groupBox);
torrentFile->setObjectName(QStringLiteral("torrentFile")); torrentFile->setObjectName(QString::fromUtf8("torrentFile"));
gridLayout->addWidget(torrentFile, 0, 1, 1, 2); gridLayout->addWidget(torrentFile, 0, 1, 1, 2);
label_2 = new QLabel(groupBox); label_2 = new QLabel(groupBox);
label_2->setObjectName(QStringLiteral("label_2")); label_2->setObjectName(QString::fromUtf8("label_2"));
gridLayout->addWidget(label_2, 1, 0, 1, 1); gridLayout->addWidget(label_2, 1, 0, 1, 1);
browseTorrents = new QPushButton(groupBox); browseTorrents = new QPushButton(groupBox);
browseTorrents->setObjectName(QStringLiteral("browseTorrents")); browseTorrents->setObjectName(QString::fromUtf8("browseTorrents"));
gridLayout->addWidget(browseTorrents, 0, 3, 1, 1); gridLayout->addWidget(browseTorrents, 0, 3, 1, 1);
label_5 = new QLabel(groupBox); label_5 = new QLabel(groupBox);
label_5->setObjectName(QStringLiteral("label_5")); label_5->setObjectName(QString::fromUtf8("label_5"));
label_5->setAlignment(Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop); label_5->setAlignment(Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop);
gridLayout->addWidget(label_5, 5, 0, 1, 1); gridLayout->addWidget(label_5, 5, 0, 1, 1);
label_3 = new QLabel(groupBox); label_3 = new QLabel(groupBox);
label_3->setObjectName(QStringLiteral("label_3")); label_3->setObjectName(QString::fromUtf8("label_3"));
gridLayout->addWidget(label_3, 4, 0, 1, 1); gridLayout->addWidget(label_3, 4, 0, 1, 1);
label_6 = new QLabel(groupBox); label_6 = new QLabel(groupBox);
label_6->setObjectName(QStringLiteral("label_6")); label_6->setObjectName(QString::fromUtf8("label_6"));
gridLayout->addWidget(label_6, 2, 0, 1, 1); gridLayout->addWidget(label_6, 2, 0, 1, 1);
torrentContents = new QTextEdit(groupBox); torrentContents = new QTextEdit(groupBox);
torrentContents->setObjectName(QStringLiteral("torrentContents")); torrentContents->setObjectName(QString::fromUtf8("torrentContents"));
torrentContents->setFocusPolicy(Qt::NoFocus); torrentContents->setFocusPolicy(Qt::NoFocus);
torrentContents->setTabChangesFocus(true); torrentContents->setTabChangesFocus(true);
torrentContents->setLineWrapMode(QTextEdit::NoWrap); torrentContents->setLineWrapMode(QTextEdit::NoWrap);
@ -123,43 +123,43 @@ public:
gridLayout->addWidget(torrentContents, 5, 1, 1, 3); gridLayout->addWidget(torrentContents, 5, 1, 1, 3);
destinationFolder = new QLineEdit(groupBox); destinationFolder = new QLineEdit(groupBox);
destinationFolder->setObjectName(QStringLiteral("destinationFolder")); destinationFolder->setObjectName(QString::fromUtf8("destinationFolder"));
destinationFolder->setFocusPolicy(Qt::StrongFocus); destinationFolder->setFocusPolicy(Qt::StrongFocus);
gridLayout->addWidget(destinationFolder, 6, 1, 1, 2); gridLayout->addWidget(destinationFolder, 6, 1, 1, 2);
announceUrl = new QLabel(groupBox); announceUrl = new QLabel(groupBox);
announceUrl->setObjectName(QStringLiteral("announceUrl")); announceUrl->setObjectName(QString::fromUtf8("announceUrl"));
gridLayout->addWidget(announceUrl, 1, 1, 1, 3); gridLayout->addWidget(announceUrl, 1, 1, 1, 3);
label = new QLabel(groupBox); label = new QLabel(groupBox);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
gridLayout->addWidget(label, 0, 0, 1, 1); gridLayout->addWidget(label, 0, 0, 1, 1);
browseDestination = new QPushButton(groupBox); browseDestination = new QPushButton(groupBox);
browseDestination->setObjectName(QStringLiteral("browseDestination")); browseDestination->setObjectName(QString::fromUtf8("browseDestination"));
gridLayout->addWidget(browseDestination, 6, 3, 1, 1); gridLayout->addWidget(browseDestination, 6, 3, 1, 1);
label_7 = new QLabel(groupBox); label_7 = new QLabel(groupBox);
label_7->setObjectName(QStringLiteral("label_7")); label_7->setObjectName(QString::fromUtf8("label_7"));
gridLayout->addWidget(label_7, 3, 0, 1, 1); gridLayout->addWidget(label_7, 3, 0, 1, 1);
commentLabel = new QLabel(groupBox); commentLabel = new QLabel(groupBox);
commentLabel->setObjectName(QStringLiteral("commentLabel")); commentLabel->setObjectName(QString::fromUtf8("commentLabel"));
gridLayout->addWidget(commentLabel, 3, 1, 1, 3); gridLayout->addWidget(commentLabel, 3, 1, 1, 3);
creatorLabel = new QLabel(groupBox); creatorLabel = new QLabel(groupBox);
creatorLabel->setObjectName(QStringLiteral("creatorLabel")); creatorLabel->setObjectName(QString::fromUtf8("creatorLabel"));
gridLayout->addWidget(creatorLabel, 2, 1, 1, 3); gridLayout->addWidget(creatorLabel, 2, 1, 1, 3);
sizeLabel = new QLabel(groupBox); sizeLabel = new QLabel(groupBox);
sizeLabel->setObjectName(QStringLiteral("sizeLabel")); sizeLabel->setObjectName(QString::fromUtf8("sizeLabel"));
gridLayout->addWidget(sizeLabel, 4, 1, 1, 3); gridLayout->addWidget(sizeLabel, 4, 1, 1, 3);
@ -171,19 +171,19 @@ public:
hboxLayout->setSpacing(6); hboxLayout->setSpacing(6);
#endif #endif
hboxLayout->setContentsMargins(0, 0, 0, 0); hboxLayout->setContentsMargins(0, 0, 0, 0);
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
spacerItem = new QSpacerItem(131, 31, QSizePolicy::Expanding, QSizePolicy::Minimum); spacerItem = new QSpacerItem(131, 31, QSizePolicy::Expanding, QSizePolicy::Minimum);
hboxLayout->addItem(spacerItem); hboxLayout->addItem(spacerItem);
okButton = new QPushButton(AddTorrentFile); okButton = new QPushButton(AddTorrentFile);
okButton->setObjectName(QStringLiteral("okButton")); okButton->setObjectName(QString::fromUtf8("okButton"));
okButton->setEnabled(false); okButton->setEnabled(false);
hboxLayout->addWidget(okButton); hboxLayout->addWidget(okButton);
cancelButton = new QPushButton(AddTorrentFile); cancelButton = new QPushButton(AddTorrentFile);
cancelButton->setObjectName(QStringLiteral("cancelButton")); cancelButton->setObjectName(QString::fromUtf8("cancelButton"));
hboxLayout->addWidget(cancelButton); hboxLayout->addWidget(cancelButton);

View File

@ -37,50 +37,50 @@ public:
void setupUi(QDialog *Dialog) void setupUi(QDialog *Dialog)
{ {
if (Dialog->objectName().isEmpty()) if (Dialog->objectName().isEmpty())
Dialog->setObjectName(QStringLiteral("Dialog")); Dialog->setObjectName(QString::fromUtf8("Dialog"));
Dialog->resize(389, 243); Dialog->resize(389, 243);
gridLayout = new QGridLayout(Dialog); gridLayout = new QGridLayout(Dialog);
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
label = new QLabel(Dialog); label = new QLabel(Dialog);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
label->setWordWrap(false); label->setWordWrap(false);
gridLayout->addWidget(label, 0, 0, 1, 2); gridLayout->addWidget(label, 0, 0, 1, 2);
label_2 = new QLabel(Dialog); label_2 = new QLabel(Dialog);
label_2->setObjectName(QStringLiteral("label_2")); label_2->setObjectName(QString::fromUtf8("label_2"));
gridLayout->addWidget(label_2, 2, 0, 1, 1); gridLayout->addWidget(label_2, 2, 0, 1, 1);
userEdit = new QLineEdit(Dialog); userEdit = new QLineEdit(Dialog);
userEdit->setObjectName(QStringLiteral("userEdit")); userEdit->setObjectName(QString::fromUtf8("userEdit"));
gridLayout->addWidget(userEdit, 2, 1, 1, 1); gridLayout->addWidget(userEdit, 2, 1, 1, 1);
label_3 = new QLabel(Dialog); label_3 = new QLabel(Dialog);
label_3->setObjectName(QStringLiteral("label_3")); label_3->setObjectName(QString::fromUtf8("label_3"));
gridLayout->addWidget(label_3, 3, 0, 1, 1); gridLayout->addWidget(label_3, 3, 0, 1, 1);
passwordEdit = new QLineEdit(Dialog); passwordEdit = new QLineEdit(Dialog);
passwordEdit->setObjectName(QStringLiteral("passwordEdit")); passwordEdit->setObjectName(QString::fromUtf8("passwordEdit"));
gridLayout->addWidget(passwordEdit, 3, 1, 1, 1); gridLayout->addWidget(passwordEdit, 3, 1, 1, 1);
buttonBox = new QDialogButtonBox(Dialog); buttonBox = new QDialogButtonBox(Dialog);
buttonBox->setObjectName(QStringLiteral("buttonBox")); buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setOrientation(Qt::Horizontal); buttonBox->setOrientation(Qt::Horizontal);
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok); buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
gridLayout->addWidget(buttonBox, 5, 0, 1, 2); gridLayout->addWidget(buttonBox, 5, 0, 1, 2);
label_4 = new QLabel(Dialog); label_4 = new QLabel(Dialog);
label_4->setObjectName(QStringLiteral("label_4")); label_4->setObjectName(QString::fromUtf8("label_4"));
gridLayout->addWidget(label_4, 1, 0, 1, 1); gridLayout->addWidget(label_4, 1, 0, 1, 1);
siteDescription = new QLabel(Dialog); siteDescription = new QLabel(Dialog);
siteDescription->setObjectName(QStringLiteral("siteDescription")); siteDescription->setObjectName(QString::fromUtf8("siteDescription"));
QFont font; QFont font;
font.setBold(true); font.setBold(true);
font.setWeight(75); font.setWeight(75);

View File

@ -47,47 +47,47 @@ public:
void setupUi(QWidget *BackSide) void setupUi(QWidget *BackSide)
{ {
if (BackSide->objectName().isEmpty()) if (BackSide->objectName().isEmpty())
BackSide->setObjectName(QStringLiteral("BackSide")); BackSide->setObjectName(QString::fromUtf8("BackSide"));
BackSide->resize(378, 385); BackSide->resize(378, 385);
verticalLayout_2 = new QVBoxLayout(BackSide); verticalLayout_2 = new QVBoxLayout(BackSide);
verticalLayout_2->setObjectName(QStringLiteral("verticalLayout_2")); verticalLayout_2->setObjectName(QString::fromUtf8("verticalLayout_2"));
groupBox = new QGroupBox(BackSide); groupBox = new QGroupBox(BackSide);
groupBox->setObjectName(QStringLiteral("groupBox")); groupBox->setObjectName(QString::fromUtf8("groupBox"));
groupBox->setFlat(true); groupBox->setFlat(true);
groupBox->setCheckable(true); groupBox->setCheckable(true);
gridLayout = new QGridLayout(groupBox); gridLayout = new QGridLayout(groupBox);
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
label = new QLabel(groupBox); label = new QLabel(groupBox);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
gridLayout->addWidget(label, 0, 0, 1, 1); gridLayout->addWidget(label, 0, 0, 1, 1);
hostName = new QLineEdit(groupBox); hostName = new QLineEdit(groupBox);
hostName->setObjectName(QStringLiteral("hostName")); hostName->setObjectName(QString::fromUtf8("hostName"));
gridLayout->addWidget(hostName, 0, 1, 1, 1); gridLayout->addWidget(hostName, 0, 1, 1, 1);
label_2 = new QLabel(groupBox); label_2 = new QLabel(groupBox);
label_2->setObjectName(QStringLiteral("label_2")); label_2->setObjectName(QString::fromUtf8("label_2"));
gridLayout->addWidget(label_2, 1, 0, 1, 1); gridLayout->addWidget(label_2, 1, 0, 1, 1);
label_3 = new QLabel(groupBox); label_3 = new QLabel(groupBox);
label_3->setObjectName(QStringLiteral("label_3")); label_3->setObjectName(QString::fromUtf8("label_3"));
gridLayout->addWidget(label_3, 2, 0, 1, 1); gridLayout->addWidget(label_3, 2, 0, 1, 1);
horizontalLayout = new QHBoxLayout(); horizontalLayout = new QHBoxLayout();
horizontalLayout->setObjectName(QStringLiteral("horizontalLayout")); horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
horizontalSlider = new QSlider(groupBox); horizontalSlider = new QSlider(groupBox);
horizontalSlider->setObjectName(QStringLiteral("horizontalSlider")); horizontalSlider->setObjectName(QString::fromUtf8("horizontalSlider"));
horizontalSlider->setValue(42); horizontalSlider->setValue(42);
horizontalSlider->setOrientation(Qt::Horizontal); horizontalSlider->setOrientation(Qt::Horizontal);
horizontalLayout->addWidget(horizontalSlider); horizontalLayout->addWidget(horizontalSlider);
spinBox = new QSpinBox(groupBox); spinBox = new QSpinBox(groupBox);
spinBox->setObjectName(QStringLiteral("spinBox")); spinBox->setObjectName(QString::fromUtf8("spinBox"));
spinBox->setValue(42); spinBox->setValue(42);
horizontalLayout->addWidget(spinBox); horizontalLayout->addWidget(spinBox);
@ -96,7 +96,7 @@ public:
gridLayout->addLayout(horizontalLayout, 2, 1, 1, 1); gridLayout->addLayout(horizontalLayout, 2, 1, 1, 1);
dateTimeEdit = new QDateTimeEdit(groupBox); dateTimeEdit = new QDateTimeEdit(groupBox);
dateTimeEdit->setObjectName(QStringLiteral("dateTimeEdit")); dateTimeEdit->setObjectName(QString::fromUtf8("dateTimeEdit"));
gridLayout->addWidget(dateTimeEdit, 1, 1, 1, 1); gridLayout->addWidget(dateTimeEdit, 1, 1, 1, 1);
@ -104,11 +104,11 @@ public:
verticalLayout_2->addWidget(groupBox); verticalLayout_2->addWidget(groupBox);
groupBox_2 = new QGroupBox(BackSide); groupBox_2 = new QGroupBox(BackSide);
groupBox_2->setObjectName(QStringLiteral("groupBox_2")); groupBox_2->setObjectName(QString::fromUtf8("groupBox_2"));
groupBox_2->setFlat(true); groupBox_2->setFlat(true);
groupBox_2->setCheckable(true); groupBox_2->setCheckable(true);
horizontalLayout_2 = new QHBoxLayout(groupBox_2); horizontalLayout_2 = new QHBoxLayout(groupBox_2);
horizontalLayout_2->setObjectName(QStringLiteral("horizontalLayout_2")); horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2"));
treeWidget = new QTreeWidget(groupBox_2); treeWidget = new QTreeWidget(groupBox_2);
QTreeWidgetItem *__qtreewidgetitem = new QTreeWidgetItem(treeWidget); QTreeWidgetItem *__qtreewidgetitem = new QTreeWidgetItem(treeWidget);
QTreeWidgetItem *__qtreewidgetitem1 = new QTreeWidgetItem(__qtreewidgetitem); QTreeWidgetItem *__qtreewidgetitem1 = new QTreeWidgetItem(__qtreewidgetitem);
@ -121,7 +121,7 @@ public:
QTreeWidgetItem *__qtreewidgetitem4 = new QTreeWidgetItem(treeWidget); QTreeWidgetItem *__qtreewidgetitem4 = new QTreeWidgetItem(treeWidget);
QTreeWidgetItem *__qtreewidgetitem5 = new QTreeWidgetItem(__qtreewidgetitem4); QTreeWidgetItem *__qtreewidgetitem5 = new QTreeWidgetItem(__qtreewidgetitem4);
new QTreeWidgetItem(__qtreewidgetitem5); new QTreeWidgetItem(__qtreewidgetitem5);
treeWidget->setObjectName(QStringLiteral("treeWidget")); treeWidget->setObjectName(QString::fromUtf8("treeWidget"));
horizontalLayout_2->addWidget(treeWidget); horizontalLayout_2->addWidget(treeWidget);

View File

@ -78,7 +78,7 @@ public:
void setupUi(QDialog *databaseTranslationDialog) void setupUi(QDialog *databaseTranslationDialog)
{ {
if (databaseTranslationDialog->objectName().isEmpty()) if (databaseTranslationDialog->objectName().isEmpty())
databaseTranslationDialog->setObjectName(QStringLiteral("databaseTranslationDialog")); databaseTranslationDialog->setObjectName(QString::fromUtf8("databaseTranslationDialog"));
databaseTranslationDialog->resize(425, 370); databaseTranslationDialog->resize(425, 370);
vboxLayout = new QVBoxLayout(databaseTranslationDialog); vboxLayout = new QVBoxLayout(databaseTranslationDialog);
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
@ -87,9 +87,9 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout->setContentsMargins(9, 9, 9, 9); vboxLayout->setContentsMargins(9, 9, 9, 9);
#endif #endif
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
groupBox = new QGroupBox(databaseTranslationDialog); groupBox = new QGroupBox(databaseTranslationDialog);
groupBox->setObjectName(QStringLiteral("groupBox")); groupBox->setObjectName(QString::fromUtf8("groupBox"));
QSizePolicy sizePolicy(static_cast<QSizePolicy::Policy>(5), static_cast<QSizePolicy::Policy>(4)); QSizePolicy sizePolicy(static_cast<QSizePolicy::Policy>(5), static_cast<QSizePolicy::Policy>(4));
sizePolicy.setHorizontalStretch(0); sizePolicy.setHorizontalStretch(0);
sizePolicy.setVerticalStretch(0); sizePolicy.setVerticalStretch(0);
@ -102,15 +102,15 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout1->setContentsMargins(9, 9, 9, 9); vboxLayout1->setContentsMargins(9, 9, 9, 9);
#endif #endif
vboxLayout1->setObjectName(QStringLiteral("vboxLayout1")); vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1"));
ckOnlyUntranslated = new QCheckBox(groupBox); ckOnlyUntranslated = new QCheckBox(groupBox);
ckOnlyUntranslated->setObjectName(QStringLiteral("ckOnlyUntranslated")); ckOnlyUntranslated->setObjectName(QString::fromUtf8("ckOnlyUntranslated"));
ckOnlyUntranslated->setChecked(true); ckOnlyUntranslated->setChecked(true);
vboxLayout1->addWidget(ckOnlyUntranslated); vboxLayout1->addWidget(ckOnlyUntranslated);
ckMarkFinished = new QCheckBox(groupBox); ckMarkFinished = new QCheckBox(groupBox);
ckMarkFinished->setObjectName(QStringLiteral("ckMarkFinished")); ckMarkFinished->setObjectName(QString::fromUtf8("ckMarkFinished"));
ckMarkFinished->setChecked(true); ckMarkFinished->setChecked(true);
vboxLayout1->addWidget(ckMarkFinished); vboxLayout1->addWidget(ckMarkFinished);
@ -119,7 +119,7 @@ public:
vboxLayout->addWidget(groupBox); vboxLayout->addWidget(groupBox);
groupBox_2 = new QGroupBox(databaseTranslationDialog); groupBox_2 = new QGroupBox(databaseTranslationDialog);
groupBox_2->setObjectName(QStringLiteral("groupBox_2")); groupBox_2->setObjectName(QString::fromUtf8("groupBox_2"));
QSizePolicy sizePolicy1(static_cast<QSizePolicy::Policy>(5), static_cast<QSizePolicy::Policy>(1)); QSizePolicy sizePolicy1(static_cast<QSizePolicy::Policy>(5), static_cast<QSizePolicy::Policy>(1));
sizePolicy1.setHorizontalStretch(0); sizePolicy1.setHorizontalStretch(0);
sizePolicy1.setVerticalStretch(0); sizePolicy1.setVerticalStretch(0);
@ -132,7 +132,7 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout2->setContentsMargins(9, 9, 9, 9); vboxLayout2->setContentsMargins(9, 9, 9, 9);
#endif #endif
vboxLayout2->setObjectName(QStringLiteral("vboxLayout2")); vboxLayout2->setObjectName(QString::fromUtf8("vboxLayout2"));
hboxLayout = new QHBoxLayout(); hboxLayout = new QHBoxLayout();
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
hboxLayout->setSpacing(6); hboxLayout->setSpacing(6);
@ -140,9 +140,9 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
hboxLayout->setContentsMargins(0, 0, 0, 0); hboxLayout->setContentsMargins(0, 0, 0, 0);
#endif #endif
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
phrasebookList = new QListView(groupBox_2); phrasebookList = new QListView(groupBox_2);
phrasebookList->setObjectName(QStringLiteral("phrasebookList")); phrasebookList->setObjectName(QString::fromUtf8("phrasebookList"));
phrasebookList->setUniformItemSizes(true); phrasebookList->setUniformItemSizes(true);
hboxLayout->addWidget(phrasebookList); hboxLayout->addWidget(phrasebookList);
@ -152,14 +152,14 @@ public:
vboxLayout3->setSpacing(6); vboxLayout3->setSpacing(6);
#endif #endif
vboxLayout3->setContentsMargins(0, 0, 0, 0); vboxLayout3->setContentsMargins(0, 0, 0, 0);
vboxLayout3->setObjectName(QStringLiteral("vboxLayout3")); vboxLayout3->setObjectName(QString::fromUtf8("vboxLayout3"));
moveUpButton = new QPushButton(groupBox_2); moveUpButton = new QPushButton(groupBox_2);
moveUpButton->setObjectName(QStringLiteral("moveUpButton")); moveUpButton->setObjectName(QString::fromUtf8("moveUpButton"));
vboxLayout3->addWidget(moveUpButton); vboxLayout3->addWidget(moveUpButton);
moveDownButton = new QPushButton(groupBox_2); moveDownButton = new QPushButton(groupBox_2);
moveDownButton->setObjectName(QStringLiteral("moveDownButton")); moveDownButton->setObjectName(QString::fromUtf8("moveDownButton"));
vboxLayout3->addWidget(moveDownButton); vboxLayout3->addWidget(moveDownButton);
@ -174,7 +174,7 @@ public:
vboxLayout2->addLayout(hboxLayout); vboxLayout2->addLayout(hboxLayout);
label = new QLabel(groupBox_2); label = new QLabel(groupBox_2);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
label->setWordWrap(true); label->setWordWrap(true);
vboxLayout2->addWidget(label); vboxLayout2->addWidget(label);
@ -187,18 +187,18 @@ public:
hboxLayout1->setSpacing(6); hboxLayout1->setSpacing(6);
#endif #endif
hboxLayout1->setContentsMargins(0, 0, 0, 0); hboxLayout1->setContentsMargins(0, 0, 0, 0);
hboxLayout1->setObjectName(QStringLiteral("hboxLayout1")); hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
spacerItem1 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); spacerItem1 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
hboxLayout1->addItem(spacerItem1); hboxLayout1->addItem(spacerItem1);
runButton = new QPushButton(databaseTranslationDialog); runButton = new QPushButton(databaseTranslationDialog);
runButton->setObjectName(QStringLiteral("runButton")); runButton->setObjectName(QString::fromUtf8("runButton"));
hboxLayout1->addWidget(runButton); hboxLayout1->addWidget(runButton);
cancelButton = new QPushButton(databaseTranslationDialog); cancelButton = new QPushButton(databaseTranslationDialog);
cancelButton->setObjectName(QStringLiteral("cancelButton")); cancelButton->setObjectName(QString::fromUtf8("cancelButton"));
hboxLayout1->addWidget(cancelButton); hboxLayout1->addWidget(cancelButton);

View File

@ -48,7 +48,7 @@ public:
void setupUi(QDialog *BookmarkDialog) void setupUi(QDialog *BookmarkDialog)
{ {
if (BookmarkDialog->objectName().isEmpty()) if (BookmarkDialog->objectName().isEmpty())
BookmarkDialog->setObjectName(QStringLiteral("BookmarkDialog")); BookmarkDialog->setObjectName(QString::fromUtf8("BookmarkDialog"));
BookmarkDialog->resize(450, 135); BookmarkDialog->resize(450, 135);
QSizePolicy sizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred); QSizePolicy sizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred);
sizePolicy.setHorizontalStretch(0); sizePolicy.setHorizontalStretch(0);
@ -56,18 +56,18 @@ public:
sizePolicy.setHeightForWidth(BookmarkDialog->sizePolicy().hasHeightForWidth()); sizePolicy.setHeightForWidth(BookmarkDialog->sizePolicy().hasHeightForWidth());
BookmarkDialog->setSizePolicy(sizePolicy); BookmarkDialog->setSizePolicy(sizePolicy);
verticalLayout_3 = new QVBoxLayout(BookmarkDialog); verticalLayout_3 = new QVBoxLayout(BookmarkDialog);
verticalLayout_3->setObjectName(QStringLiteral("verticalLayout_3")); verticalLayout_3->setObjectName(QString::fromUtf8("verticalLayout_3"));
horizontalLayout = new QHBoxLayout(); horizontalLayout = new QHBoxLayout();
horizontalLayout->setObjectName(QStringLiteral("horizontalLayout")); horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
verticalLayout_2 = new QVBoxLayout(); verticalLayout_2 = new QVBoxLayout();
verticalLayout_2->setObjectName(QStringLiteral("verticalLayout_2")); verticalLayout_2->setObjectName(QString::fromUtf8("verticalLayout_2"));
label = new QLabel(BookmarkDialog); label = new QLabel(BookmarkDialog);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
verticalLayout_2->addWidget(label); verticalLayout_2->addWidget(label);
label_2 = new QLabel(BookmarkDialog); label_2 = new QLabel(BookmarkDialog);
label_2->setObjectName(QStringLiteral("label_2")); label_2->setObjectName(QString::fromUtf8("label_2"));
verticalLayout_2->addWidget(label_2); verticalLayout_2->addWidget(label_2);
@ -75,14 +75,14 @@ public:
horizontalLayout->addLayout(verticalLayout_2); horizontalLayout->addLayout(verticalLayout_2);
verticalLayout = new QVBoxLayout(); verticalLayout = new QVBoxLayout();
verticalLayout->setObjectName(QStringLiteral("verticalLayout")); verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
bookmarkEdit = new QLineEdit(BookmarkDialog); bookmarkEdit = new QLineEdit(BookmarkDialog);
bookmarkEdit->setObjectName(QStringLiteral("bookmarkEdit")); bookmarkEdit->setObjectName(QString::fromUtf8("bookmarkEdit"));
verticalLayout->addWidget(bookmarkEdit); verticalLayout->addWidget(bookmarkEdit);
bookmarkFolders = new QComboBox(BookmarkDialog); bookmarkFolders = new QComboBox(BookmarkDialog);
bookmarkFolders->setObjectName(QStringLiteral("bookmarkFolders")); bookmarkFolders->setObjectName(QString::fromUtf8("bookmarkFolders"));
verticalLayout->addWidget(bookmarkFolders); verticalLayout->addWidget(bookmarkFolders);
@ -93,15 +93,15 @@ public:
verticalLayout_3->addLayout(horizontalLayout); verticalLayout_3->addLayout(horizontalLayout);
horizontalLayout_3 = new QHBoxLayout(); horizontalLayout_3 = new QHBoxLayout();
horizontalLayout_3->setObjectName(QStringLiteral("horizontalLayout_3")); horizontalLayout_3->setObjectName(QString::fromUtf8("horizontalLayout_3"));
toolButton = new QToolButton(BookmarkDialog); toolButton = new QToolButton(BookmarkDialog);
toolButton->setObjectName(QStringLiteral("toolButton")); toolButton->setObjectName(QString::fromUtf8("toolButton"));
toolButton->setMinimumSize(QSize(25, 20)); toolButton->setMinimumSize(QSize(25, 20));
horizontalLayout_3->addWidget(toolButton); horizontalLayout_3->addWidget(toolButton);
line = new QFrame(BookmarkDialog); line = new QFrame(BookmarkDialog);
line->setObjectName(QStringLiteral("line")); line->setObjectName(QString::fromUtf8("line"));
line->setFrameShape(QFrame::HLine); line->setFrameShape(QFrame::HLine);
line->setFrameShadow(QFrame::Sunken); line->setFrameShadow(QFrame::Sunken);
@ -111,7 +111,7 @@ public:
verticalLayout_3->addLayout(horizontalLayout_3); verticalLayout_3->addLayout(horizontalLayout_3);
bookmarkWidget = new BookmarkWidget(BookmarkDialog); bookmarkWidget = new BookmarkWidget(BookmarkDialog);
bookmarkWidget->setObjectName(QStringLiteral("bookmarkWidget")); bookmarkWidget->setObjectName(QString::fromUtf8("bookmarkWidget"));
bookmarkWidget->setEnabled(true); bookmarkWidget->setEnabled(true);
QSizePolicy sizePolicy1(QSizePolicy::Expanding, QSizePolicy::Ignored); QSizePolicy sizePolicy1(QSizePolicy::Expanding, QSizePolicy::Ignored);
sizePolicy1.setHorizontalStretch(0); sizePolicy1.setHorizontalStretch(0);
@ -122,14 +122,14 @@ public:
verticalLayout_3->addWidget(bookmarkWidget); verticalLayout_3->addWidget(bookmarkWidget);
horizontalLayout_4 = new QHBoxLayout(); horizontalLayout_4 = new QHBoxLayout();
horizontalLayout_4->setObjectName(QStringLiteral("horizontalLayout_4")); horizontalLayout_4->setObjectName(QString::fromUtf8("horizontalLayout_4"));
newFolderButton = new QPushButton(BookmarkDialog); newFolderButton = new QPushButton(BookmarkDialog);
newFolderButton->setObjectName(QStringLiteral("newFolderButton")); newFolderButton->setObjectName(QString::fromUtf8("newFolderButton"));
horizontalLayout_4->addWidget(newFolderButton); horizontalLayout_4->addWidget(newFolderButton);
buttonBox = new QDialogButtonBox(BookmarkDialog); buttonBox = new QDialogButtonBox(BookmarkDialog);
buttonBox->setObjectName(QStringLiteral("buttonBox")); buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setOrientation(Qt::Horizontal); buttonBox->setOrientation(Qt::Horizontal);
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok); buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);

View File

@ -49,10 +49,10 @@ public:
void setupUi(QMainWindow *BookWindow) void setupUi(QMainWindow *BookWindow)
{ {
if (BookWindow->objectName().isEmpty()) if (BookWindow->objectName().isEmpty())
BookWindow->setObjectName(QStringLiteral("BookWindow")); BookWindow->setObjectName(QString::fromUtf8("BookWindow"));
BookWindow->resize(601, 420); BookWindow->resize(601, 420);
centralWidget = new QWidget(BookWindow); centralWidget = new QWidget(BookWindow);
centralWidget->setObjectName(QStringLiteral("centralWidget")); centralWidget->setObjectName(QString::fromUtf8("centralWidget"));
vboxLayout = new QVBoxLayout(centralWidget); vboxLayout = new QVBoxLayout(centralWidget);
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout->setSpacing(6); vboxLayout->setSpacing(6);
@ -60,9 +60,9 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout->setContentsMargins(9, 9, 9, 9); vboxLayout->setContentsMargins(9, 9, 9, 9);
#endif #endif
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
groupBox = new QGroupBox(centralWidget); groupBox = new QGroupBox(centralWidget);
groupBox->setObjectName(QStringLiteral("groupBox")); groupBox->setObjectName(QString::fromUtf8("groupBox"));
vboxLayout1 = new QVBoxLayout(groupBox); vboxLayout1 = new QVBoxLayout(groupBox);
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout1->setSpacing(6); vboxLayout1->setSpacing(6);
@ -70,57 +70,57 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout1->setContentsMargins(9, 9, 9, 9); vboxLayout1->setContentsMargins(9, 9, 9, 9);
#endif #endif
vboxLayout1->setObjectName(QStringLiteral("vboxLayout1")); vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1"));
bookTable = new QTableView(groupBox); bookTable = new QTableView(groupBox);
bookTable->setObjectName(QStringLiteral("bookTable")); bookTable->setObjectName(QString::fromUtf8("bookTable"));
bookTable->setSelectionBehavior(QAbstractItemView::SelectRows); bookTable->setSelectionBehavior(QAbstractItemView::SelectRows);
vboxLayout1->addWidget(bookTable); vboxLayout1->addWidget(bookTable);
groupBox_2 = new QGroupBox(groupBox); groupBox_2 = new QGroupBox(groupBox);
groupBox_2->setObjectName(QStringLiteral("groupBox_2")); groupBox_2->setObjectName(QString::fromUtf8("groupBox_2"));
formLayout = new QFormLayout(groupBox_2); formLayout = new QFormLayout(groupBox_2);
formLayout->setObjectName(QStringLiteral("formLayout")); formLayout->setObjectName(QString::fromUtf8("formLayout"));
label_5 = new QLabel(groupBox_2); label_5 = new QLabel(groupBox_2);
label_5->setObjectName(QStringLiteral("label_5")); label_5->setObjectName(QString::fromUtf8("label_5"));
formLayout->setWidget(0, QFormLayout::LabelRole, label_5); formLayout->setWidget(0, QFormLayout::LabelRole, label_5);
titleEdit = new QLineEdit(groupBox_2); titleEdit = new QLineEdit(groupBox_2);
titleEdit->setObjectName(QStringLiteral("titleEdit")); titleEdit->setObjectName(QString::fromUtf8("titleEdit"));
titleEdit->setEnabled(true); titleEdit->setEnabled(true);
formLayout->setWidget(0, QFormLayout::FieldRole, titleEdit); formLayout->setWidget(0, QFormLayout::FieldRole, titleEdit);
label_2_2_2_2 = new QLabel(groupBox_2); label_2_2_2_2 = new QLabel(groupBox_2);
label_2_2_2_2->setObjectName(QStringLiteral("label_2_2_2_2")); label_2_2_2_2->setObjectName(QString::fromUtf8("label_2_2_2_2"));
formLayout->setWidget(1, QFormLayout::LabelRole, label_2_2_2_2); formLayout->setWidget(1, QFormLayout::LabelRole, label_2_2_2_2);
authorEdit = new QComboBox(groupBox_2); authorEdit = new QComboBox(groupBox_2);
authorEdit->setObjectName(QStringLiteral("authorEdit")); authorEdit->setObjectName(QString::fromUtf8("authorEdit"));
authorEdit->setEnabled(true); authorEdit->setEnabled(true);
formLayout->setWidget(1, QFormLayout::FieldRole, authorEdit); formLayout->setWidget(1, QFormLayout::FieldRole, authorEdit);
label_3 = new QLabel(groupBox_2); label_3 = new QLabel(groupBox_2);
label_3->setObjectName(QStringLiteral("label_3")); label_3->setObjectName(QString::fromUtf8("label_3"));
formLayout->setWidget(2, QFormLayout::LabelRole, label_3); formLayout->setWidget(2, QFormLayout::LabelRole, label_3);
genreEdit = new QComboBox(groupBox_2); genreEdit = new QComboBox(groupBox_2);
genreEdit->setObjectName(QStringLiteral("genreEdit")); genreEdit->setObjectName(QString::fromUtf8("genreEdit"));
genreEdit->setEnabled(true); genreEdit->setEnabled(true);
formLayout->setWidget(2, QFormLayout::FieldRole, genreEdit); formLayout->setWidget(2, QFormLayout::FieldRole, genreEdit);
label_4 = new QLabel(groupBox_2); label_4 = new QLabel(groupBox_2);
label_4->setObjectName(QStringLiteral("label_4")); label_4->setObjectName(QString::fromUtf8("label_4"));
formLayout->setWidget(3, QFormLayout::LabelRole, label_4); formLayout->setWidget(3, QFormLayout::LabelRole, label_4);
yearEdit = new QSpinBox(groupBox_2); yearEdit = new QSpinBox(groupBox_2);
yearEdit->setObjectName(QStringLiteral("yearEdit")); yearEdit->setObjectName(QString::fromUtf8("yearEdit"));
yearEdit->setEnabled(true); yearEdit->setEnabled(true);
yearEdit->setMaximum(2100); yearEdit->setMaximum(2100);
yearEdit->setMinimum(-1000); yearEdit->setMinimum(-1000);
@ -128,12 +128,12 @@ public:
formLayout->setWidget(3, QFormLayout::FieldRole, yearEdit); formLayout->setWidget(3, QFormLayout::FieldRole, yearEdit);
label = new QLabel(groupBox_2); label = new QLabel(groupBox_2);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
formLayout->setWidget(4, QFormLayout::LabelRole, label); formLayout->setWidget(4, QFormLayout::LabelRole, label);
ratingEdit = new QSpinBox(groupBox_2); ratingEdit = new QSpinBox(groupBox_2);
ratingEdit->setObjectName(QStringLiteral("ratingEdit")); ratingEdit->setObjectName(QString::fromUtf8("ratingEdit"));
ratingEdit->setMaximum(5); ratingEdit->setMaximum(5);
formLayout->setWidget(4, QFormLayout::FieldRole, ratingEdit); formLayout->setWidget(4, QFormLayout::FieldRole, ratingEdit);

View File

@ -46,22 +46,22 @@ public:
void setupUi(QWidget *Browser) void setupUi(QWidget *Browser)
{ {
if (Browser->objectName().isEmpty()) if (Browser->objectName().isEmpty())
Browser->setObjectName(QStringLiteral("Browser")); Browser->setObjectName(QString::fromUtf8("Browser"));
Browser->resize(765, 515); Browser->resize(765, 515);
insertRowAction = new QAction(Browser); insertRowAction = new QAction(Browser);
insertRowAction->setObjectName(QStringLiteral("insertRowAction")); insertRowAction->setObjectName(QString::fromUtf8("insertRowAction"));
insertRowAction->setEnabled(false); insertRowAction->setEnabled(false);
deleteRowAction = new QAction(Browser); deleteRowAction = new QAction(Browser);
deleteRowAction->setObjectName(QStringLiteral("deleteRowAction")); deleteRowAction->setObjectName(QString::fromUtf8("deleteRowAction"));
deleteRowAction->setEnabled(false); deleteRowAction->setEnabled(false);
vboxLayout = new QVBoxLayout(Browser); vboxLayout = new QVBoxLayout(Browser);
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout->setSpacing(6); vboxLayout->setSpacing(6);
#endif #endif
vboxLayout->setContentsMargins(8, 8, 8, 8); vboxLayout->setContentsMargins(8, 8, 8, 8);
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
splitter_2 = new QSplitter(Browser); splitter_2 = new QSplitter(Browser);
splitter_2->setObjectName(QStringLiteral("splitter_2")); splitter_2->setObjectName(QString::fromUtf8("splitter_2"));
QSizePolicy sizePolicy(static_cast<QSizePolicy::Policy>(7), static_cast<QSizePolicy::Policy>(7)); QSizePolicy sizePolicy(static_cast<QSizePolicy::Policy>(7), static_cast<QSizePolicy::Policy>(7));
sizePolicy.setHorizontalStretch(0); sizePolicy.setHorizontalStretch(0);
sizePolicy.setVerticalStretch(0); sizePolicy.setVerticalStretch(0);
@ -69,7 +69,7 @@ public:
splitter_2->setSizePolicy(sizePolicy); splitter_2->setSizePolicy(sizePolicy);
splitter_2->setOrientation(Qt::Horizontal); splitter_2->setOrientation(Qt::Horizontal);
connectionWidget = new ConnectionWidget(splitter_2); connectionWidget = new ConnectionWidget(splitter_2);
connectionWidget->setObjectName(QStringLiteral("connectionWidget")); connectionWidget->setObjectName(QString::fromUtf8("connectionWidget"));
QSizePolicy sizePolicy1(static_cast<QSizePolicy::Policy>(13), static_cast<QSizePolicy::Policy>(7)); QSizePolicy sizePolicy1(static_cast<QSizePolicy::Policy>(13), static_cast<QSizePolicy::Policy>(7));
sizePolicy1.setHorizontalStretch(1); sizePolicy1.setHorizontalStretch(1);
sizePolicy1.setVerticalStretch(0); sizePolicy1.setVerticalStretch(0);
@ -77,7 +77,7 @@ public:
connectionWidget->setSizePolicy(sizePolicy1); connectionWidget->setSizePolicy(sizePolicy1);
splitter_2->addWidget(connectionWidget); splitter_2->addWidget(connectionWidget);
table = new QTableView(splitter_2); table = new QTableView(splitter_2);
table->setObjectName(QStringLiteral("table")); table->setObjectName(QString::fromUtf8("table"));
QSizePolicy sizePolicy2(static_cast<QSizePolicy::Policy>(7), static_cast<QSizePolicy::Policy>(7)); QSizePolicy sizePolicy2(static_cast<QSizePolicy::Policy>(7), static_cast<QSizePolicy::Policy>(7));
sizePolicy2.setHorizontalStretch(2); sizePolicy2.setHorizontalStretch(2);
sizePolicy2.setVerticalStretch(0); sizePolicy2.setVerticalStretch(0);
@ -90,7 +90,7 @@ public:
vboxLayout->addWidget(splitter_2); vboxLayout->addWidget(splitter_2);
groupBox = new QGroupBox(Browser); groupBox = new QGroupBox(Browser);
groupBox->setObjectName(QStringLiteral("groupBox")); groupBox->setObjectName(QString::fromUtf8("groupBox"));
QSizePolicy sizePolicy3(static_cast<QSizePolicy::Policy>(5), static_cast<QSizePolicy::Policy>(3)); QSizePolicy sizePolicy3(static_cast<QSizePolicy::Policy>(5), static_cast<QSizePolicy::Policy>(3));
sizePolicy3.setHorizontalStretch(0); sizePolicy3.setHorizontalStretch(0);
sizePolicy3.setVerticalStretch(0); sizePolicy3.setVerticalStretch(0);
@ -104,9 +104,9 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout1->setContentsMargins(9, 9, 9, 9); vboxLayout1->setContentsMargins(9, 9, 9, 9);
#endif #endif
vboxLayout1->setObjectName(QStringLiteral("vboxLayout1")); vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1"));
sqlEdit = new QTextEdit(groupBox); sqlEdit = new QTextEdit(groupBox);
sqlEdit->setObjectName(QStringLiteral("sqlEdit")); sqlEdit->setObjectName(QString::fromUtf8("sqlEdit"));
QSizePolicy sizePolicy4(static_cast<QSizePolicy::Policy>(7), static_cast<QSizePolicy::Policy>(3)); QSizePolicy sizePolicy4(static_cast<QSizePolicy::Policy>(7), static_cast<QSizePolicy::Policy>(3));
sizePolicy4.setHorizontalStretch(0); sizePolicy4.setHorizontalStretch(0);
sizePolicy4.setVerticalStretch(0); sizePolicy4.setVerticalStretch(0);
@ -122,18 +122,18 @@ public:
hboxLayout->setSpacing(6); hboxLayout->setSpacing(6);
#endif #endif
hboxLayout->setContentsMargins(1, 1, 1, 1); hboxLayout->setContentsMargins(1, 1, 1, 1);
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
spacerItem = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); spacerItem = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
hboxLayout->addItem(spacerItem); hboxLayout->addItem(spacerItem);
clearButton = new QPushButton(groupBox); clearButton = new QPushButton(groupBox);
clearButton->setObjectName(QStringLiteral("clearButton")); clearButton->setObjectName(QString::fromUtf8("clearButton"));
hboxLayout->addWidget(clearButton); hboxLayout->addWidget(clearButton);
submitButton = new QPushButton(groupBox); submitButton = new QPushButton(groupBox);
submitButton->setObjectName(QStringLiteral("submitButton")); submitButton->setObjectName(QString::fromUtf8("submitButton"));
hboxLayout->addWidget(submitButton); hboxLayout->addWidget(submitButton);

View File

@ -29,19 +29,19 @@ public:
void setupUi(QDialog *Dialog) void setupUi(QDialog *Dialog)
{ {
if (Dialog->objectName().isEmpty()) if (Dialog->objectName().isEmpty())
Dialog->setObjectName(QStringLiteral("Dialog")); Dialog->setObjectName(QString::fromUtf8("Dialog"));
Dialog->resize(400, 300); Dialog->resize(400, 300);
gridLayout = new QGridLayout(Dialog); gridLayout = new QGridLayout(Dialog);
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
treeWidget = new QTreeWidget(Dialog); treeWidget = new QTreeWidget(Dialog);
treeWidget->headerItem()->setText(0, QString()); treeWidget->headerItem()->setText(0, QString());
treeWidget->headerItem()->setText(2, QString()); treeWidget->headerItem()->setText(2, QString());
treeWidget->setObjectName(QStringLiteral("treeWidget")); treeWidget->setObjectName(QString::fromUtf8("treeWidget"));
gridLayout->addWidget(treeWidget, 0, 0, 1, 1); gridLayout->addWidget(treeWidget, 0, 0, 1, 1);
buttonBox = new QDialogButtonBox(Dialog); buttonBox = new QDialogButtonBox(Dialog);
buttonBox->setObjectName(QStringLiteral("buttonBox")); buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setOrientation(Qt::Horizontal); buttonBox->setOrientation(Qt::Horizontal);
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok); buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);

View File

@ -51,12 +51,12 @@ public:
void setupUi(QWidget *Form) void setupUi(QWidget *Form)
{ {
if (Form->objectName().isEmpty()) if (Form->objectName().isEmpty())
Form->setObjectName(QStringLiteral("Form")); Form->setObjectName(QString::fromUtf8("Form"));
Form->resize(545, 471); Form->resize(545, 471);
gridLayout = new QGridLayout(Form); gridLayout = new QGridLayout(Form);
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
easingCurvePicker = new QListWidget(Form); easingCurvePicker = new QListWidget(Form);
easingCurvePicker->setObjectName(QStringLiteral("easingCurvePicker")); easingCurvePicker->setObjectName(QString::fromUtf8("easingCurvePicker"));
QSizePolicy sizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred); QSizePolicy sizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred);
sizePolicy.setHorizontalStretch(0); sizePolicy.setHorizontalStretch(0);
sizePolicy.setVerticalStretch(0); sizePolicy.setVerticalStretch(0);
@ -72,17 +72,17 @@ public:
gridLayout->addWidget(easingCurvePicker, 0, 0, 1, 2); gridLayout->addWidget(easingCurvePicker, 0, 0, 1, 2);
verticalLayout = new QVBoxLayout(); verticalLayout = new QVBoxLayout();
verticalLayout->setObjectName(QStringLiteral("verticalLayout")); verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
groupBox_2 = new QGroupBox(Form); groupBox_2 = new QGroupBox(Form);
groupBox_2->setObjectName(QStringLiteral("groupBox_2")); groupBox_2->setObjectName(QString::fromUtf8("groupBox_2"));
groupBox_2->setMaximumSize(QSize(16777215, 16777215)); groupBox_2->setMaximumSize(QSize(16777215, 16777215));
gridLayout_2 = new QGridLayout(groupBox_2); gridLayout_2 = new QGridLayout(groupBox_2);
gridLayout_2->setObjectName(QStringLiteral("gridLayout_2")); gridLayout_2->setObjectName(QString::fromUtf8("gridLayout_2"));
lineRadio = new QRadioButton(groupBox_2); lineRadio = new QRadioButton(groupBox_2);
buttonGroup = new QButtonGroup(Form); buttonGroup = new QButtonGroup(Form);
buttonGroup->setObjectName(QStringLiteral("buttonGroup")); buttonGroup->setObjectName(QString::fromUtf8("buttonGroup"));
buttonGroup->addButton(lineRadio); buttonGroup->addButton(lineRadio);
lineRadio->setObjectName(QStringLiteral("lineRadio")); lineRadio->setObjectName(QString::fromUtf8("lineRadio"));
lineRadio->setMaximumSize(QSize(16777215, 40)); lineRadio->setMaximumSize(QSize(16777215, 40));
lineRadio->setLayoutDirection(Qt::LeftToRight); lineRadio->setLayoutDirection(Qt::LeftToRight);
lineRadio->setChecked(true); lineRadio->setChecked(true);
@ -91,7 +91,7 @@ public:
circleRadio = new QRadioButton(groupBox_2); circleRadio = new QRadioButton(groupBox_2);
buttonGroup->addButton(circleRadio); buttonGroup->addButton(circleRadio);
circleRadio->setObjectName(QStringLiteral("circleRadio")); circleRadio->setObjectName(QString::fromUtf8("circleRadio"));
circleRadio->setMaximumSize(QSize(16777215, 40)); circleRadio->setMaximumSize(QSize(16777215, 40));
gridLayout_2->addWidget(circleRadio, 1, 0, 1, 1); gridLayout_2->addWidget(circleRadio, 1, 0, 1, 1);
@ -100,17 +100,17 @@ public:
verticalLayout->addWidget(groupBox_2); verticalLayout->addWidget(groupBox_2);
groupBox = new QGroupBox(Form); groupBox = new QGroupBox(Form);
groupBox->setObjectName(QStringLiteral("groupBox")); groupBox->setObjectName(QString::fromUtf8("groupBox"));
QSizePolicy sizePolicy1(QSizePolicy::Fixed, QSizePolicy::Preferred); QSizePolicy sizePolicy1(QSizePolicy::Fixed, QSizePolicy::Preferred);
sizePolicy1.setHorizontalStretch(0); sizePolicy1.setHorizontalStretch(0);
sizePolicy1.setVerticalStretch(0); sizePolicy1.setVerticalStretch(0);
sizePolicy1.setHeightForWidth(groupBox->sizePolicy().hasHeightForWidth()); sizePolicy1.setHeightForWidth(groupBox->sizePolicy().hasHeightForWidth());
groupBox->setSizePolicy(sizePolicy1); groupBox->setSizePolicy(sizePolicy1);
formLayout = new QFormLayout(groupBox); formLayout = new QFormLayout(groupBox);
formLayout->setObjectName(QStringLiteral("formLayout")); formLayout->setObjectName(QString::fromUtf8("formLayout"));
formLayout->setFieldGrowthPolicy(QFormLayout::AllNonFixedFieldsGrow); formLayout->setFieldGrowthPolicy(QFormLayout::AllNonFixedFieldsGrow);
label = new QLabel(groupBox); label = new QLabel(groupBox);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
QSizePolicy sizePolicy2(QSizePolicy::Preferred, QSizePolicy::Preferred); QSizePolicy sizePolicy2(QSizePolicy::Preferred, QSizePolicy::Preferred);
sizePolicy2.setHorizontalStretch(0); sizePolicy2.setHorizontalStretch(0);
sizePolicy2.setVerticalStretch(0); sizePolicy2.setVerticalStretch(0);
@ -121,7 +121,7 @@ public:
formLayout->setWidget(0, QFormLayout::LabelRole, label); formLayout->setWidget(0, QFormLayout::LabelRole, label);
periodSpinBox = new QDoubleSpinBox(groupBox); periodSpinBox = new QDoubleSpinBox(groupBox);
periodSpinBox->setObjectName(QStringLiteral("periodSpinBox")); periodSpinBox->setObjectName(QString::fromUtf8("periodSpinBox"));
periodSpinBox->setEnabled(false); periodSpinBox->setEnabled(false);
QSizePolicy sizePolicy3(QSizePolicy::Minimum, QSizePolicy::Fixed); QSizePolicy sizePolicy3(QSizePolicy::Minimum, QSizePolicy::Fixed);
sizePolicy3.setHorizontalStretch(0); sizePolicy3.setHorizontalStretch(0);
@ -136,7 +136,7 @@ public:
formLayout->setWidget(0, QFormLayout::FieldRole, periodSpinBox); formLayout->setWidget(0, QFormLayout::FieldRole, periodSpinBox);
amplitudeSpinBox = new QDoubleSpinBox(groupBox); amplitudeSpinBox = new QDoubleSpinBox(groupBox);
amplitudeSpinBox->setObjectName(QStringLiteral("amplitudeSpinBox")); amplitudeSpinBox->setObjectName(QString::fromUtf8("amplitudeSpinBox"));
amplitudeSpinBox->setEnabled(false); amplitudeSpinBox->setEnabled(false);
amplitudeSpinBox->setMinimumSize(QSize(0, 30)); amplitudeSpinBox->setMinimumSize(QSize(0, 30));
amplitudeSpinBox->setMinimum(-1); amplitudeSpinBox->setMinimum(-1);
@ -146,13 +146,13 @@ public:
formLayout->setWidget(2, QFormLayout::FieldRole, amplitudeSpinBox); formLayout->setWidget(2, QFormLayout::FieldRole, amplitudeSpinBox);
label_3 = new QLabel(groupBox); label_3 = new QLabel(groupBox);
label_3->setObjectName(QStringLiteral("label_3")); label_3->setObjectName(QString::fromUtf8("label_3"));
label_3->setMinimumSize(QSize(0, 30)); label_3->setMinimumSize(QSize(0, 30));
formLayout->setWidget(4, QFormLayout::LabelRole, label_3); formLayout->setWidget(4, QFormLayout::LabelRole, label_3);
overshootSpinBox = new QDoubleSpinBox(groupBox); overshootSpinBox = new QDoubleSpinBox(groupBox);
overshootSpinBox->setObjectName(QStringLiteral("overshootSpinBox")); overshootSpinBox->setObjectName(QString::fromUtf8("overshootSpinBox"));
overshootSpinBox->setEnabled(false); overshootSpinBox->setEnabled(false);
overshootSpinBox->setMinimumSize(QSize(0, 30)); overshootSpinBox->setMinimumSize(QSize(0, 30));
overshootSpinBox->setMinimum(-1); overshootSpinBox->setMinimum(-1);
@ -162,7 +162,7 @@ public:
formLayout->setWidget(4, QFormLayout::FieldRole, overshootSpinBox); formLayout->setWidget(4, QFormLayout::FieldRole, overshootSpinBox);
label_2 = new QLabel(groupBox); label_2 = new QLabel(groupBox);
label_2->setObjectName(QStringLiteral("label_2")); label_2->setObjectName(QString::fromUtf8("label_2"));
label_2->setMinimumSize(QSize(0, 30)); label_2->setMinimumSize(QSize(0, 30));
formLayout->setWidget(2, QFormLayout::LabelRole, label_2); formLayout->setWidget(2, QFormLayout::LabelRole, label_2);
@ -178,7 +178,7 @@ public:
gridLayout->addLayout(verticalLayout, 1, 0, 1, 1); gridLayout->addLayout(verticalLayout, 1, 0, 1, 1);
graphicsView = new QGraphicsView(Form); graphicsView = new QGraphicsView(Form);
graphicsView->setObjectName(QStringLiteral("graphicsView")); graphicsView->setObjectName(QString::fromUtf8("graphicsView"));
QSizePolicy sizePolicy4(QSizePolicy::Expanding, QSizePolicy::Expanding); QSizePolicy sizePolicy4(QSizePolicy::Expanding, QSizePolicy::Expanding);
sizePolicy4.setHorizontalStretch(0); sizePolicy4.setHorizontalStretch(0);
sizePolicy4.setVerticalStretch(0); sizePolicy4.setVerticalStretch(0);

View File

@ -52,7 +52,7 @@ public:
void setupUi(QWidget *Calculator) void setupUi(QWidget *Calculator)
{ {
if (Calculator->objectName().isEmpty()) if (Calculator->objectName().isEmpty())
Calculator->setObjectName(QStringLiteral("Calculator")); Calculator->setObjectName(QString::fromUtf8("Calculator"));
Calculator->resize(314, 301); Calculator->resize(314, 301);
QSizePolicy sizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed); QSizePolicy sizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
sizePolicy.setHorizontalStretch(0); sizePolicy.setHorizontalStretch(0);
@ -62,88 +62,88 @@ public:
Calculator->setMinimumSize(QSize(314, 301)); Calculator->setMinimumSize(QSize(314, 301));
Calculator->setMaximumSize(QSize(314, 301)); Calculator->setMaximumSize(QSize(314, 301));
backspaceButton = new QToolButton(Calculator); backspaceButton = new QToolButton(Calculator);
backspaceButton->setObjectName(QStringLiteral("backspaceButton")); backspaceButton->setObjectName(QString::fromUtf8("backspaceButton"));
backspaceButton->setGeometry(QRect(10, 50, 91, 41)); backspaceButton->setGeometry(QRect(10, 50, 91, 41));
clearButton = new QToolButton(Calculator); clearButton = new QToolButton(Calculator);
clearButton->setObjectName(QStringLiteral("clearButton")); clearButton->setObjectName(QString::fromUtf8("clearButton"));
clearButton->setGeometry(QRect(110, 50, 91, 41)); clearButton->setGeometry(QRect(110, 50, 91, 41));
clearAllButton = new QToolButton(Calculator); clearAllButton = new QToolButton(Calculator);
clearAllButton->setObjectName(QStringLiteral("clearAllButton")); clearAllButton->setObjectName(QString::fromUtf8("clearAllButton"));
clearAllButton->setGeometry(QRect(210, 50, 91, 41)); clearAllButton->setGeometry(QRect(210, 50, 91, 41));
clearMemoryButton = new QToolButton(Calculator); clearMemoryButton = new QToolButton(Calculator);
clearMemoryButton->setObjectName(QStringLiteral("clearMemoryButton")); clearMemoryButton->setObjectName(QString::fromUtf8("clearMemoryButton"));
clearMemoryButton->setGeometry(QRect(10, 100, 41, 41)); clearMemoryButton->setGeometry(QRect(10, 100, 41, 41));
readMemoryButton = new QToolButton(Calculator); readMemoryButton = new QToolButton(Calculator);
readMemoryButton->setObjectName(QStringLiteral("readMemoryButton")); readMemoryButton->setObjectName(QString::fromUtf8("readMemoryButton"));
readMemoryButton->setGeometry(QRect(10, 150, 41, 41)); readMemoryButton->setGeometry(QRect(10, 150, 41, 41));
setMemoryButton = new QToolButton(Calculator); setMemoryButton = new QToolButton(Calculator);
setMemoryButton->setObjectName(QStringLiteral("setMemoryButton")); setMemoryButton->setObjectName(QString::fromUtf8("setMemoryButton"));
setMemoryButton->setGeometry(QRect(10, 200, 41, 41)); setMemoryButton->setGeometry(QRect(10, 200, 41, 41));
addToMemoryButton = new QToolButton(Calculator); addToMemoryButton = new QToolButton(Calculator);
addToMemoryButton->setObjectName(QStringLiteral("addToMemoryButton")); addToMemoryButton->setObjectName(QString::fromUtf8("addToMemoryButton"));
addToMemoryButton->setGeometry(QRect(10, 250, 41, 41)); addToMemoryButton->setGeometry(QRect(10, 250, 41, 41));
sevenButton = new QToolButton(Calculator); sevenButton = new QToolButton(Calculator);
sevenButton->setObjectName(QStringLiteral("sevenButton")); sevenButton->setObjectName(QString::fromUtf8("sevenButton"));
sevenButton->setGeometry(QRect(60, 100, 41, 41)); sevenButton->setGeometry(QRect(60, 100, 41, 41));
eightButton = new QToolButton(Calculator); eightButton = new QToolButton(Calculator);
eightButton->setObjectName(QStringLiteral("eightButton")); eightButton->setObjectName(QString::fromUtf8("eightButton"));
eightButton->setGeometry(QRect(110, 100, 41, 41)); eightButton->setGeometry(QRect(110, 100, 41, 41));
nineButton = new QToolButton(Calculator); nineButton = new QToolButton(Calculator);
nineButton->setObjectName(QStringLiteral("nineButton")); nineButton->setObjectName(QString::fromUtf8("nineButton"));
nineButton->setGeometry(QRect(160, 100, 41, 41)); nineButton->setGeometry(QRect(160, 100, 41, 41));
fourButton = new QToolButton(Calculator); fourButton = new QToolButton(Calculator);
fourButton->setObjectName(QStringLiteral("fourButton")); fourButton->setObjectName(QString::fromUtf8("fourButton"));
fourButton->setGeometry(QRect(60, 150, 41, 41)); fourButton->setGeometry(QRect(60, 150, 41, 41));
fiveButton = new QToolButton(Calculator); fiveButton = new QToolButton(Calculator);
fiveButton->setObjectName(QStringLiteral("fiveButton")); fiveButton->setObjectName(QString::fromUtf8("fiveButton"));
fiveButton->setGeometry(QRect(110, 150, 41, 41)); fiveButton->setGeometry(QRect(110, 150, 41, 41));
sixButton = new QToolButton(Calculator); sixButton = new QToolButton(Calculator);
sixButton->setObjectName(QStringLiteral("sixButton")); sixButton->setObjectName(QString::fromUtf8("sixButton"));
sixButton->setGeometry(QRect(160, 150, 41, 41)); sixButton->setGeometry(QRect(160, 150, 41, 41));
oneButton = new QToolButton(Calculator); oneButton = new QToolButton(Calculator);
oneButton->setObjectName(QStringLiteral("oneButton")); oneButton->setObjectName(QString::fromUtf8("oneButton"));
oneButton->setGeometry(QRect(60, 200, 41, 41)); oneButton->setGeometry(QRect(60, 200, 41, 41));
twoButton = new QToolButton(Calculator); twoButton = new QToolButton(Calculator);
twoButton->setObjectName(QStringLiteral("twoButton")); twoButton->setObjectName(QString::fromUtf8("twoButton"));
twoButton->setGeometry(QRect(110, 200, 41, 41)); twoButton->setGeometry(QRect(110, 200, 41, 41));
threeButton = new QToolButton(Calculator); threeButton = new QToolButton(Calculator);
threeButton->setObjectName(QStringLiteral("threeButton")); threeButton->setObjectName(QString::fromUtf8("threeButton"));
threeButton->setGeometry(QRect(160, 200, 41, 41)); threeButton->setGeometry(QRect(160, 200, 41, 41));
zeroButton = new QToolButton(Calculator); zeroButton = new QToolButton(Calculator);
zeroButton->setObjectName(QStringLiteral("zeroButton")); zeroButton->setObjectName(QString::fromUtf8("zeroButton"));
zeroButton->setGeometry(QRect(60, 250, 41, 41)); zeroButton->setGeometry(QRect(60, 250, 41, 41));
pointButton = new QToolButton(Calculator); pointButton = new QToolButton(Calculator);
pointButton->setObjectName(QStringLiteral("pointButton")); pointButton->setObjectName(QString::fromUtf8("pointButton"));
pointButton->setGeometry(QRect(110, 250, 41, 41)); pointButton->setGeometry(QRect(110, 250, 41, 41));
changeSignButton = new QToolButton(Calculator); changeSignButton = new QToolButton(Calculator);
changeSignButton->setObjectName(QStringLiteral("changeSignButton")); changeSignButton->setObjectName(QString::fromUtf8("changeSignButton"));
changeSignButton->setGeometry(QRect(160, 250, 41, 41)); changeSignButton->setGeometry(QRect(160, 250, 41, 41));
plusButton = new QToolButton(Calculator); plusButton = new QToolButton(Calculator);
plusButton->setObjectName(QStringLiteral("plusButton")); plusButton->setObjectName(QString::fromUtf8("plusButton"));
plusButton->setGeometry(QRect(210, 250, 41, 41)); plusButton->setGeometry(QRect(210, 250, 41, 41));
divisionButton = new QToolButton(Calculator); divisionButton = new QToolButton(Calculator);
divisionButton->setObjectName(QStringLiteral("divisionButton")); divisionButton->setObjectName(QString::fromUtf8("divisionButton"));
divisionButton->setGeometry(QRect(210, 100, 41, 41)); divisionButton->setGeometry(QRect(210, 100, 41, 41));
timesButton = new QToolButton(Calculator); timesButton = new QToolButton(Calculator);
timesButton->setObjectName(QStringLiteral("timesButton")); timesButton->setObjectName(QString::fromUtf8("timesButton"));
timesButton->setGeometry(QRect(210, 150, 41, 41)); timesButton->setGeometry(QRect(210, 150, 41, 41));
minusButton = new QToolButton(Calculator); minusButton = new QToolButton(Calculator);
minusButton->setObjectName(QStringLiteral("minusButton")); minusButton->setObjectName(QString::fromUtf8("minusButton"));
minusButton->setGeometry(QRect(210, 200, 41, 41)); minusButton->setGeometry(QRect(210, 200, 41, 41));
squareRootButton = new QToolButton(Calculator); squareRootButton = new QToolButton(Calculator);
squareRootButton->setObjectName(QStringLiteral("squareRootButton")); squareRootButton->setObjectName(QString::fromUtf8("squareRootButton"));
squareRootButton->setGeometry(QRect(260, 100, 41, 41)); squareRootButton->setGeometry(QRect(260, 100, 41, 41));
powerButton = new QToolButton(Calculator); powerButton = new QToolButton(Calculator);
powerButton->setObjectName(QStringLiteral("powerButton")); powerButton->setObjectName(QString::fromUtf8("powerButton"));
powerButton->setGeometry(QRect(260, 150, 41, 41)); powerButton->setGeometry(QRect(260, 150, 41, 41));
reciprocalButton = new QToolButton(Calculator); reciprocalButton = new QToolButton(Calculator);
reciprocalButton->setObjectName(QStringLiteral("reciprocalButton")); reciprocalButton->setObjectName(QString::fromUtf8("reciprocalButton"));
reciprocalButton->setGeometry(QRect(260, 200, 41, 41)); reciprocalButton->setGeometry(QRect(260, 200, 41, 41));
equalButton = new QToolButton(Calculator); equalButton = new QToolButton(Calculator);
equalButton->setObjectName(QStringLiteral("equalButton")); equalButton->setObjectName(QString::fromUtf8("equalButton"));
equalButton->setGeometry(QRect(260, 250, 41, 41)); equalButton->setGeometry(QRect(260, 250, 41, 41));
display = new QLineEdit(Calculator); display = new QLineEdit(Calculator);
display->setObjectName(QStringLiteral("display")); display->setObjectName(QString::fromUtf8("display"));
display->setGeometry(QRect(10, 10, 291, 31)); display->setGeometry(QRect(10, 10, 291, 31));
display->setMaxLength(15); display->setMaxLength(15);
display->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter); display->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);

View File

@ -43,7 +43,7 @@ public:
void setupUi(QWidget *CalculatorForm) void setupUi(QWidget *CalculatorForm)
{ {
if (CalculatorForm->objectName().isEmpty()) if (CalculatorForm->objectName().isEmpty())
CalculatorForm->setObjectName(QStringLiteral("CalculatorForm")); CalculatorForm->setObjectName(QString::fromUtf8("CalculatorForm"));
CalculatorForm->resize(276, 98); CalculatorForm->resize(276, 98);
QSizePolicy sizePolicy(static_cast<QSizePolicy::Policy>(5), static_cast<QSizePolicy::Policy>(5)); QSizePolicy sizePolicy(static_cast<QSizePolicy::Policy>(5), static_cast<QSizePolicy::Policy>(5));
sizePolicy.setHorizontalStretch(0); sizePolicy.setHorizontalStretch(0);
@ -57,30 +57,30 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
gridLayout->setContentsMargins(9, 9, 9, 9); gridLayout->setContentsMargins(9, 9, 9, 9);
#endif #endif
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
gridLayout->setObjectName(QStringLiteral("")); gridLayout->setObjectName(QString::fromUtf8(""));
hboxLayout = new QHBoxLayout(); hboxLayout = new QHBoxLayout();
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
hboxLayout->setSpacing(6); hboxLayout->setSpacing(6);
#endif #endif
hboxLayout->setContentsMargins(1, 1, 1, 1); hboxLayout->setContentsMargins(1, 1, 1, 1);
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
hboxLayout->setObjectName(QStringLiteral("")); hboxLayout->setObjectName(QString::fromUtf8(""));
vboxLayout = new QVBoxLayout(); vboxLayout = new QVBoxLayout();
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout->setSpacing(6); vboxLayout->setSpacing(6);
#endif #endif
vboxLayout->setContentsMargins(1, 1, 1, 1); vboxLayout->setContentsMargins(1, 1, 1, 1);
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
vboxLayout->setObjectName(QStringLiteral("")); vboxLayout->setObjectName(QString::fromUtf8(""));
label = new QLabel(CalculatorForm); label = new QLabel(CalculatorForm);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
label->setGeometry(QRect(1, 1, 45, 19)); label->setGeometry(QRect(1, 1, 45, 19));
vboxLayout->addWidget(label); vboxLayout->addWidget(label);
inputSpinBox1 = new QSpinBox(CalculatorForm); inputSpinBox1 = new QSpinBox(CalculatorForm);
inputSpinBox1->setObjectName(QStringLiteral("inputSpinBox1")); inputSpinBox1->setObjectName(QString::fromUtf8("inputSpinBox1"));
inputSpinBox1->setGeometry(QRect(1, 26, 45, 25)); inputSpinBox1->setGeometry(QRect(1, 26, 45, 25));
inputSpinBox1->setMouseTracking(true); inputSpinBox1->setMouseTracking(true);
@ -90,7 +90,7 @@ public:
hboxLayout->addLayout(vboxLayout); hboxLayout->addLayout(vboxLayout);
label_3 = new QLabel(CalculatorForm); label_3 = new QLabel(CalculatorForm);
label_3->setObjectName(QStringLiteral("label_3")); label_3->setObjectName(QString::fromUtf8("label_3"));
label_3->setGeometry(QRect(54, 1, 7, 52)); label_3->setGeometry(QRect(54, 1, 7, 52));
label_3->setAlignment(Qt::AlignCenter); label_3->setAlignment(Qt::AlignCenter);
@ -101,16 +101,16 @@ public:
vboxLayout1->setSpacing(6); vboxLayout1->setSpacing(6);
#endif #endif
vboxLayout1->setContentsMargins(1, 1, 1, 1); vboxLayout1->setContentsMargins(1, 1, 1, 1);
vboxLayout1->setObjectName(QStringLiteral("vboxLayout1")); vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1"));
vboxLayout1->setObjectName(QStringLiteral("")); vboxLayout1->setObjectName(QString::fromUtf8(""));
label_2 = new QLabel(CalculatorForm); label_2 = new QLabel(CalculatorForm);
label_2->setObjectName(QStringLiteral("label_2")); label_2->setObjectName(QString::fromUtf8("label_2"));
label_2->setGeometry(QRect(1, 1, 45, 19)); label_2->setGeometry(QRect(1, 1, 45, 19));
vboxLayout1->addWidget(label_2); vboxLayout1->addWidget(label_2);
inputSpinBox2 = new QSpinBox(CalculatorForm); inputSpinBox2 = new QSpinBox(CalculatorForm);
inputSpinBox2->setObjectName(QStringLiteral("inputSpinBox2")); inputSpinBox2->setObjectName(QString::fromUtf8("inputSpinBox2"));
inputSpinBox2->setGeometry(QRect(1, 26, 45, 25)); inputSpinBox2->setGeometry(QRect(1, 26, 45, 25));
inputSpinBox2->setMouseTracking(true); inputSpinBox2->setMouseTracking(true);
@ -120,7 +120,7 @@ public:
hboxLayout->addLayout(vboxLayout1); hboxLayout->addLayout(vboxLayout1);
label_3_2 = new QLabel(CalculatorForm); label_3_2 = new QLabel(CalculatorForm);
label_3_2->setObjectName(QStringLiteral("label_3_2")); label_3_2->setObjectName(QString::fromUtf8("label_3_2"));
label_3_2->setGeometry(QRect(120, 1, 7, 52)); label_3_2->setGeometry(QRect(120, 1, 7, 52));
label_3_2->setAlignment(Qt::AlignCenter); label_3_2->setAlignment(Qt::AlignCenter);
@ -131,16 +131,16 @@ public:
vboxLayout2->setSpacing(6); vboxLayout2->setSpacing(6);
#endif #endif
vboxLayout2->setContentsMargins(1, 1, 1, 1); vboxLayout2->setContentsMargins(1, 1, 1, 1);
vboxLayout2->setObjectName(QStringLiteral("vboxLayout2")); vboxLayout2->setObjectName(QString::fromUtf8("vboxLayout2"));
vboxLayout2->setObjectName(QStringLiteral("")); vboxLayout2->setObjectName(QString::fromUtf8(""));
label_2_2_2 = new QLabel(CalculatorForm); label_2_2_2 = new QLabel(CalculatorForm);
label_2_2_2->setObjectName(QStringLiteral("label_2_2_2")); label_2_2_2->setObjectName(QString::fromUtf8("label_2_2_2"));
label_2_2_2->setGeometry(QRect(1, 1, 37, 17)); label_2_2_2->setGeometry(QRect(1, 1, 37, 17));
vboxLayout2->addWidget(label_2_2_2); vboxLayout2->addWidget(label_2_2_2);
outputWidget = new QLabel(CalculatorForm); outputWidget = new QLabel(CalculatorForm);
outputWidget->setObjectName(QStringLiteral("outputWidget")); outputWidget->setObjectName(QString::fromUtf8("outputWidget"));
outputWidget->setGeometry(QRect(1, 24, 37, 27)); outputWidget->setGeometry(QRect(1, 24, 37, 27));
outputWidget->setFrameShape(QFrame::Box); outputWidget->setFrameShape(QFrame::Box);
outputWidget->setFrameShadow(QFrame::Sunken); outputWidget->setFrameShadow(QFrame::Sunken);

View File

@ -38,16 +38,16 @@ public:
void setupUi(QDialog *CertificateInfo) void setupUi(QDialog *CertificateInfo)
{ {
if (CertificateInfo->objectName().isEmpty()) if (CertificateInfo->objectName().isEmpty())
CertificateInfo->setObjectName(QStringLiteral("CertificateInfo")); CertificateInfo->setObjectName(QString::fromUtf8("CertificateInfo"));
CertificateInfo->resize(400, 397); CertificateInfo->resize(400, 397);
vboxLayout = new QVBoxLayout(CertificateInfo); vboxLayout = new QVBoxLayout(CertificateInfo);
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
groupBox = new QGroupBox(CertificateInfo); groupBox = new QGroupBox(CertificateInfo);
groupBox->setObjectName(QStringLiteral("groupBox")); groupBox->setObjectName(QString::fromUtf8("groupBox"));
hboxLayout = new QHBoxLayout(groupBox); hboxLayout = new QHBoxLayout(groupBox);
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
certificationPathView = new QListWidget(groupBox); certificationPathView = new QListWidget(groupBox);
certificationPathView->setObjectName(QStringLiteral("certificationPathView")); certificationPathView->setObjectName(QString::fromUtf8("certificationPathView"));
hboxLayout->addWidget(certificationPathView); hboxLayout->addWidget(certificationPathView);
@ -55,11 +55,11 @@ public:
vboxLayout->addWidget(groupBox); vboxLayout->addWidget(groupBox);
groupBox_2 = new QGroupBox(CertificateInfo); groupBox_2 = new QGroupBox(CertificateInfo);
groupBox_2->setObjectName(QStringLiteral("groupBox_2")); groupBox_2->setObjectName(QString::fromUtf8("groupBox_2"));
hboxLayout1 = new QHBoxLayout(groupBox_2); hboxLayout1 = new QHBoxLayout(groupBox_2);
hboxLayout1->setObjectName(QStringLiteral("hboxLayout1")); hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
certificateInfoView = new QListWidget(groupBox_2); certificateInfoView = new QListWidget(groupBox_2);
certificateInfoView->setObjectName(QStringLiteral("certificateInfoView")); certificateInfoView->setObjectName(QString::fromUtf8("certificateInfoView"));
hboxLayout1->addWidget(certificateInfoView); hboxLayout1->addWidget(certificateInfoView);
@ -67,13 +67,13 @@ public:
vboxLayout->addWidget(groupBox_2); vboxLayout->addWidget(groupBox_2);
hboxLayout2 = new QHBoxLayout(); hboxLayout2 = new QHBoxLayout();
hboxLayout2->setObjectName(QStringLiteral("hboxLayout2")); hboxLayout2->setObjectName(QString::fromUtf8("hboxLayout2"));
spacerItem = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); spacerItem = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
hboxLayout2->addItem(spacerItem); hboxLayout2->addItem(spacerItem);
buttonBox = new QDialogButtonBox(CertificateInfo); buttonBox = new QDialogButtonBox(CertificateInfo);
buttonBox->setObjectName(QStringLiteral("buttonBox")); buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setStandardButtons(QDialogButtonBox::Close); buttonBox->setStandardButtons(QDialogButtonBox::Close);
hboxLayout2->addWidget(buttonBox); hboxLayout2->addWidget(buttonBox);

View File

@ -35,7 +35,7 @@ public:
void setupUi(QDialog *ChatDialog) void setupUi(QDialog *ChatDialog)
{ {
if (ChatDialog->objectName().isEmpty()) if (ChatDialog->objectName().isEmpty())
ChatDialog->setObjectName(QStringLiteral("ChatDialog")); ChatDialog->setObjectName(QString::fromUtf8("ChatDialog"));
ChatDialog->resize(513, 349); ChatDialog->resize(513, 349);
vboxLayout = new QVBoxLayout(ChatDialog); vboxLayout = new QVBoxLayout(ChatDialog);
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
@ -44,7 +44,7 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout->setContentsMargins(9, 9, 9, 9); vboxLayout->setContentsMargins(9, 9, 9, 9);
#endif #endif
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
hboxLayout = new QHBoxLayout(); hboxLayout = new QHBoxLayout();
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
hboxLayout->setSpacing(6); hboxLayout->setSpacing(6);
@ -52,16 +52,16 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
hboxLayout->setContentsMargins(0, 0, 0, 0); hboxLayout->setContentsMargins(0, 0, 0, 0);
#endif #endif
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
textEdit = new QTextEdit(ChatDialog); textEdit = new QTextEdit(ChatDialog);
textEdit->setObjectName(QStringLiteral("textEdit")); textEdit->setObjectName(QString::fromUtf8("textEdit"));
textEdit->setFocusPolicy(Qt::NoFocus); textEdit->setFocusPolicy(Qt::NoFocus);
textEdit->setReadOnly(true); textEdit->setReadOnly(true);
hboxLayout->addWidget(textEdit); hboxLayout->addWidget(textEdit);
listWidget = new QListWidget(ChatDialog); listWidget = new QListWidget(ChatDialog);
listWidget->setObjectName(QStringLiteral("listWidget")); listWidget->setObjectName(QString::fromUtf8("listWidget"));
listWidget->setMaximumSize(QSize(180, 16777215)); listWidget->setMaximumSize(QSize(180, 16777215));
listWidget->setFocusPolicy(Qt::NoFocus); listWidget->setFocusPolicy(Qt::NoFocus);
@ -75,14 +75,14 @@ public:
hboxLayout1->setSpacing(6); hboxLayout1->setSpacing(6);
#endif #endif
hboxLayout1->setContentsMargins(0, 0, 0, 0); hboxLayout1->setContentsMargins(0, 0, 0, 0);
hboxLayout1->setObjectName(QStringLiteral("hboxLayout1")); hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
label = new QLabel(ChatDialog); label = new QLabel(ChatDialog);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
hboxLayout1->addWidget(label); hboxLayout1->addWidget(label);
lineEdit = new QLineEdit(ChatDialog); lineEdit = new QLineEdit(ChatDialog);
lineEdit->setObjectName(QStringLiteral("lineEdit")); lineEdit->setObjectName(QString::fromUtf8("lineEdit"));
hboxLayout1->addWidget(lineEdit); hboxLayout1->addWidget(lineEdit);

View File

@ -48,16 +48,16 @@ public:
void setupUi(QMainWindow *ChatMainWindow) void setupUi(QMainWindow *ChatMainWindow)
{ {
if (ChatMainWindow->objectName().isEmpty()) if (ChatMainWindow->objectName().isEmpty())
ChatMainWindow->setObjectName(QStringLiteral("ChatMainWindow")); ChatMainWindow->setObjectName(QString::fromUtf8("ChatMainWindow"));
ChatMainWindow->resize(800, 600); ChatMainWindow->resize(800, 600);
actionQuit = new QAction(ChatMainWindow); actionQuit = new QAction(ChatMainWindow);
actionQuit->setObjectName(QStringLiteral("actionQuit")); actionQuit->setObjectName(QString::fromUtf8("actionQuit"));
actionAboutQt = new QAction(ChatMainWindow); actionAboutQt = new QAction(ChatMainWindow);
actionAboutQt->setObjectName(QStringLiteral("actionAboutQt")); actionAboutQt->setObjectName(QString::fromUtf8("actionAboutQt"));
actionChangeNickname = new QAction(ChatMainWindow); actionChangeNickname = new QAction(ChatMainWindow);
actionChangeNickname->setObjectName(QStringLiteral("actionChangeNickname")); actionChangeNickname->setObjectName(QString::fromUtf8("actionChangeNickname"));
centralwidget = new QWidget(ChatMainWindow); centralwidget = new QWidget(ChatMainWindow);
centralwidget->setObjectName(QStringLiteral("centralwidget")); centralwidget->setObjectName(QString::fromUtf8("centralwidget"));
hboxLayout = new QHBoxLayout(centralwidget); hboxLayout = new QHBoxLayout(centralwidget);
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
hboxLayout->setSpacing(6); hboxLayout->setSpacing(6);
@ -65,7 +65,7 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
hboxLayout->setContentsMargins(9, 9, 9, 9); hboxLayout->setContentsMargins(9, 9, 9, 9);
#endif #endif
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
vboxLayout = new QVBoxLayout(); vboxLayout = new QVBoxLayout();
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout->setSpacing(6); vboxLayout->setSpacing(6);
@ -73,9 +73,9 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout->setContentsMargins(0, 0, 0, 0); vboxLayout->setContentsMargins(0, 0, 0, 0);
#endif #endif
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
chatHistory = new QTextBrowser(centralwidget); chatHistory = new QTextBrowser(centralwidget);
chatHistory->setObjectName(QStringLiteral("chatHistory")); chatHistory->setObjectName(QString::fromUtf8("chatHistory"));
chatHistory->setAcceptDrops(false); chatHistory->setAcceptDrops(false);
chatHistory->setAcceptRichText(true); chatHistory->setAcceptRichText(true);
@ -86,19 +86,19 @@ public:
hboxLayout1->setSpacing(6); hboxLayout1->setSpacing(6);
#endif #endif
hboxLayout1->setContentsMargins(0, 0, 0, 0); hboxLayout1->setContentsMargins(0, 0, 0, 0);
hboxLayout1->setObjectName(QStringLiteral("hboxLayout1")); hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
label = new QLabel(centralwidget); label = new QLabel(centralwidget);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
hboxLayout1->addWidget(label); hboxLayout1->addWidget(label);
messageLineEdit = new QLineEdit(centralwidget); messageLineEdit = new QLineEdit(centralwidget);
messageLineEdit->setObjectName(QStringLiteral("messageLineEdit")); messageLineEdit->setObjectName(QString::fromUtf8("messageLineEdit"));
hboxLayout1->addWidget(messageLineEdit); hboxLayout1->addWidget(messageLineEdit);
sendButton = new QPushButton(centralwidget); sendButton = new QPushButton(centralwidget);
sendButton->setObjectName(QStringLiteral("sendButton")); sendButton->setObjectName(QString::fromUtf8("sendButton"));
QSizePolicy sizePolicy(static_cast<QSizePolicy::Policy>(1), static_cast<QSizePolicy::Policy>(0)); QSizePolicy sizePolicy(static_cast<QSizePolicy::Policy>(1), static_cast<QSizePolicy::Policy>(0));
sizePolicy.setHorizontalStretch(0); sizePolicy.setHorizontalStretch(0);
sizePolicy.setVerticalStretch(0); sizePolicy.setVerticalStretch(0);
@ -115,15 +115,15 @@ public:
ChatMainWindow->setCentralWidget(centralwidget); ChatMainWindow->setCentralWidget(centralwidget);
menubar = new QMenuBar(ChatMainWindow); menubar = new QMenuBar(ChatMainWindow);
menubar->setObjectName(QStringLiteral("menubar")); menubar->setObjectName(QString::fromUtf8("menubar"));
menubar->setGeometry(QRect(0, 0, 800, 31)); menubar->setGeometry(QRect(0, 0, 800, 31));
menuQuit = new QMenu(menubar); menuQuit = new QMenu(menubar);
menuQuit->setObjectName(QStringLiteral("menuQuit")); menuQuit->setObjectName(QString::fromUtf8("menuQuit"));
menuFile = new QMenu(menubar); menuFile = new QMenu(menubar);
menuFile->setObjectName(QStringLiteral("menuFile")); menuFile->setObjectName(QString::fromUtf8("menuFile"));
ChatMainWindow->setMenuBar(menubar); ChatMainWindow->setMenuBar(menubar);
statusbar = new QStatusBar(ChatMainWindow); statusbar = new QStatusBar(ChatMainWindow);
statusbar->setObjectName(QStringLiteral("statusbar")); statusbar->setObjectName(QString::fromUtf8("statusbar"));
ChatMainWindow->setStatusBar(statusbar); ChatMainWindow->setStatusBar(statusbar);
#ifndef QT_NO_SHORTCUT #ifndef QT_NO_SHORTCUT
label->setBuddy(messageLineEdit); label->setBuddy(messageLineEdit);

View File

@ -37,7 +37,7 @@ public:
void setupUi(QDialog *NicknameDialog) void setupUi(QDialog *NicknameDialog)
{ {
if (NicknameDialog->objectName().isEmpty()) if (NicknameDialog->objectName().isEmpty())
NicknameDialog->setObjectName(QStringLiteral("NicknameDialog")); NicknameDialog->setObjectName(QString::fromUtf8("NicknameDialog"));
NicknameDialog->resize(396, 105); NicknameDialog->resize(396, 105);
QSizePolicy sizePolicy(static_cast<QSizePolicy::Policy>(1), static_cast<QSizePolicy::Policy>(1)); QSizePolicy sizePolicy(static_cast<QSizePolicy::Policy>(1), static_cast<QSizePolicy::Policy>(1));
sizePolicy.setHorizontalStretch(0); sizePolicy.setHorizontalStretch(0);
@ -51,7 +51,7 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout->setContentsMargins(9, 9, 9, 9); vboxLayout->setContentsMargins(9, 9, 9, 9);
#endif #endif
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
vboxLayout1 = new QVBoxLayout(); vboxLayout1 = new QVBoxLayout();
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout1->setSpacing(6); vboxLayout1->setSpacing(6);
@ -59,16 +59,16 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout1->setContentsMargins(0, 0, 0, 0); vboxLayout1->setContentsMargins(0, 0, 0, 0);
#endif #endif
vboxLayout1->setObjectName(QStringLiteral("vboxLayout1")); vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1"));
label = new QLabel(NicknameDialog); label = new QLabel(NicknameDialog);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
sizePolicy.setHeightForWidth(label->sizePolicy().hasHeightForWidth()); sizePolicy.setHeightForWidth(label->sizePolicy().hasHeightForWidth());
label->setSizePolicy(sizePolicy); label->setSizePolicy(sizePolicy);
vboxLayout1->addWidget(label); vboxLayout1->addWidget(label);
nickname = new QLineEdit(NicknameDialog); nickname = new QLineEdit(NicknameDialog);
nickname->setObjectName(QStringLiteral("nickname")); nickname->setObjectName(QString::fromUtf8("nickname"));
vboxLayout1->addWidget(nickname); vboxLayout1->addWidget(nickname);
@ -80,18 +80,18 @@ public:
hboxLayout->setSpacing(6); hboxLayout->setSpacing(6);
#endif #endif
hboxLayout->setContentsMargins(0, 0, 0, 0); hboxLayout->setContentsMargins(0, 0, 0, 0);
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
spacerItem = new QSpacerItem(131, 31, QSizePolicy::Expanding, QSizePolicy::Minimum); spacerItem = new QSpacerItem(131, 31, QSizePolicy::Expanding, QSizePolicy::Minimum);
hboxLayout->addItem(spacerItem); hboxLayout->addItem(spacerItem);
okButton = new QPushButton(NicknameDialog); okButton = new QPushButton(NicknameDialog);
okButton->setObjectName(QStringLiteral("okButton")); okButton->setObjectName(QString::fromUtf8("okButton"));
hboxLayout->addWidget(okButton); hboxLayout->addWidget(okButton);
cancelButton = new QPushButton(NicknameDialog); cancelButton = new QPushButton(NicknameDialog);
cancelButton->setObjectName(QStringLiteral("cancelButton")); cancelButton->setObjectName(QString::fromUtf8("cancelButton"));
hboxLayout->addWidget(cancelButton); hboxLayout->addWidget(cancelButton);

View File

@ -118,20 +118,20 @@ public:
void setupUi(QDialog *Config) void setupUi(QDialog *Config)
{ {
if (Config->objectName().isEmpty()) if (Config->objectName().isEmpty())
Config->setObjectName(QStringLiteral("Config")); Config->setObjectName(QString::fromUtf8("Config"));
Config->resize(600, 650); Config->resize(600, 650);
Config->setSizeGripEnabled(true); Config->setSizeGripEnabled(true);
vboxLayout = new QVBoxLayout(Config); vboxLayout = new QVBoxLayout(Config);
vboxLayout->setSpacing(6); vboxLayout->setSpacing(6);
vboxLayout->setContentsMargins(11, 11, 11, 11); vboxLayout->setContentsMargins(11, 11, 11, 11);
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
vboxLayout->setContentsMargins(8, 8, 8, 8); vboxLayout->setContentsMargins(8, 8, 8, 8);
hboxLayout = new QHBoxLayout(); hboxLayout = new QHBoxLayout();
hboxLayout->setSpacing(6); hboxLayout->setSpacing(6);
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
hboxLayout->setContentsMargins(0, 0, 0, 0); hboxLayout->setContentsMargins(0, 0, 0, 0);
ButtonGroup1 = new QGroupBox(Config); ButtonGroup1 = new QGroupBox(Config);
ButtonGroup1->setObjectName(QStringLiteral("ButtonGroup1")); ButtonGroup1->setObjectName(QString::fromUtf8("ButtonGroup1"));
QSizePolicy sizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred); QSizePolicy sizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred);
sizePolicy.setHorizontalStretch(0); sizePolicy.setHorizontalStretch(0);
sizePolicy.setVerticalStretch(0); sizePolicy.setVerticalStretch(0);
@ -140,44 +140,44 @@ public:
vboxLayout1 = new QVBoxLayout(ButtonGroup1); vboxLayout1 = new QVBoxLayout(ButtonGroup1);
vboxLayout1->setSpacing(6); vboxLayout1->setSpacing(6);
vboxLayout1->setContentsMargins(11, 11, 11, 11); vboxLayout1->setContentsMargins(11, 11, 11, 11);
vboxLayout1->setObjectName(QStringLiteral("vboxLayout1")); vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1"));
vboxLayout1->setContentsMargins(11, 11, 11, 11); vboxLayout1->setContentsMargins(11, 11, 11, 11);
size_176_220 = new QRadioButton(ButtonGroup1); size_176_220 = new QRadioButton(ButtonGroup1);
size_176_220->setObjectName(QStringLiteral("size_176_220")); size_176_220->setObjectName(QString::fromUtf8("size_176_220"));
vboxLayout1->addWidget(size_176_220); vboxLayout1->addWidget(size_176_220);
size_240_320 = new QRadioButton(ButtonGroup1); size_240_320 = new QRadioButton(ButtonGroup1);
size_240_320->setObjectName(QStringLiteral("size_240_320")); size_240_320->setObjectName(QString::fromUtf8("size_240_320"));
vboxLayout1->addWidget(size_240_320); vboxLayout1->addWidget(size_240_320);
size_320_240 = new QRadioButton(ButtonGroup1); size_320_240 = new QRadioButton(ButtonGroup1);
size_320_240->setObjectName(QStringLiteral("size_320_240")); size_320_240->setObjectName(QString::fromUtf8("size_320_240"));
vboxLayout1->addWidget(size_320_240); vboxLayout1->addWidget(size_320_240);
size_640_480 = new QRadioButton(ButtonGroup1); size_640_480 = new QRadioButton(ButtonGroup1);
size_640_480->setObjectName(QStringLiteral("size_640_480")); size_640_480->setObjectName(QString::fromUtf8("size_640_480"));
vboxLayout1->addWidget(size_640_480); vboxLayout1->addWidget(size_640_480);
size_800_600 = new QRadioButton(ButtonGroup1); size_800_600 = new QRadioButton(ButtonGroup1);
size_800_600->setObjectName(QStringLiteral("size_800_600")); size_800_600->setObjectName(QString::fromUtf8("size_800_600"));
vboxLayout1->addWidget(size_800_600); vboxLayout1->addWidget(size_800_600);
size_1024_768 = new QRadioButton(ButtonGroup1); size_1024_768 = new QRadioButton(ButtonGroup1);
size_1024_768->setObjectName(QStringLiteral("size_1024_768")); size_1024_768->setObjectName(QString::fromUtf8("size_1024_768"));
vboxLayout1->addWidget(size_1024_768); vboxLayout1->addWidget(size_1024_768);
hboxLayout1 = new QHBoxLayout(); hboxLayout1 = new QHBoxLayout();
hboxLayout1->setSpacing(6); hboxLayout1->setSpacing(6);
hboxLayout1->setObjectName(QStringLiteral("hboxLayout1")); hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
hboxLayout1->setContentsMargins(0, 0, 0, 0); hboxLayout1->setContentsMargins(0, 0, 0, 0);
size_custom = new QRadioButton(ButtonGroup1); size_custom = new QRadioButton(ButtonGroup1);
size_custom->setObjectName(QStringLiteral("size_custom")); size_custom->setObjectName(QString::fromUtf8("size_custom"));
QSizePolicy sizePolicy1(QSizePolicy::Fixed, QSizePolicy::Fixed); QSizePolicy sizePolicy1(QSizePolicy::Fixed, QSizePolicy::Fixed);
sizePolicy1.setHorizontalStretch(0); sizePolicy1.setHorizontalStretch(0);
sizePolicy1.setVerticalStretch(0); sizePolicy1.setVerticalStretch(0);
@ -187,7 +187,7 @@ public:
hboxLayout1->addWidget(size_custom); hboxLayout1->addWidget(size_custom);
size_width = new QSpinBox(ButtonGroup1); size_width = new QSpinBox(ButtonGroup1);
size_width->setObjectName(QStringLiteral("size_width")); size_width->setObjectName(QString::fromUtf8("size_width"));
size_width->setMinimum(1); size_width->setMinimum(1);
size_width->setMaximum(1280); size_width->setMaximum(1280);
size_width->setSingleStep(16); size_width->setSingleStep(16);
@ -196,7 +196,7 @@ public:
hboxLayout1->addWidget(size_width); hboxLayout1->addWidget(size_width);
size_height = new QSpinBox(ButtonGroup1); size_height = new QSpinBox(ButtonGroup1);
size_height->setObjectName(QStringLiteral("size_height")); size_height->setObjectName(QString::fromUtf8("size_height"));
size_height->setMinimum(1); size_height->setMinimum(1);
size_height->setMaximum(1024); size_height->setMaximum(1024);
size_height->setSingleStep(16); size_height->setSingleStep(16);
@ -211,59 +211,59 @@ public:
hboxLayout->addWidget(ButtonGroup1); hboxLayout->addWidget(ButtonGroup1);
ButtonGroup2 = new QGroupBox(Config); ButtonGroup2 = new QGroupBox(Config);
ButtonGroup2->setObjectName(QStringLiteral("ButtonGroup2")); ButtonGroup2->setObjectName(QString::fromUtf8("ButtonGroup2"));
vboxLayout2 = new QVBoxLayout(ButtonGroup2); vboxLayout2 = new QVBoxLayout(ButtonGroup2);
vboxLayout2->setSpacing(6); vboxLayout2->setSpacing(6);
vboxLayout2->setContentsMargins(11, 11, 11, 11); vboxLayout2->setContentsMargins(11, 11, 11, 11);
vboxLayout2->setObjectName(QStringLiteral("vboxLayout2")); vboxLayout2->setObjectName(QString::fromUtf8("vboxLayout2"));
vboxLayout2->setContentsMargins(11, 11, 11, 11); vboxLayout2->setContentsMargins(11, 11, 11, 11);
depth_1 = new QRadioButton(ButtonGroup2); depth_1 = new QRadioButton(ButtonGroup2);
depth_1->setObjectName(QStringLiteral("depth_1")); depth_1->setObjectName(QString::fromUtf8("depth_1"));
vboxLayout2->addWidget(depth_1); vboxLayout2->addWidget(depth_1);
depth_4gray = new QRadioButton(ButtonGroup2); depth_4gray = new QRadioButton(ButtonGroup2);
depth_4gray->setObjectName(QStringLiteral("depth_4gray")); depth_4gray->setObjectName(QString::fromUtf8("depth_4gray"));
vboxLayout2->addWidget(depth_4gray); vboxLayout2->addWidget(depth_4gray);
depth_8 = new QRadioButton(ButtonGroup2); depth_8 = new QRadioButton(ButtonGroup2);
depth_8->setObjectName(QStringLiteral("depth_8")); depth_8->setObjectName(QString::fromUtf8("depth_8"));
vboxLayout2->addWidget(depth_8); vboxLayout2->addWidget(depth_8);
depth_12 = new QRadioButton(ButtonGroup2); depth_12 = new QRadioButton(ButtonGroup2);
depth_12->setObjectName(QStringLiteral("depth_12")); depth_12->setObjectName(QString::fromUtf8("depth_12"));
vboxLayout2->addWidget(depth_12); vboxLayout2->addWidget(depth_12);
depth_15 = new QRadioButton(ButtonGroup2); depth_15 = new QRadioButton(ButtonGroup2);
depth_15->setObjectName(QStringLiteral("depth_15")); depth_15->setObjectName(QString::fromUtf8("depth_15"));
vboxLayout2->addWidget(depth_15); vboxLayout2->addWidget(depth_15);
depth_16 = new QRadioButton(ButtonGroup2); depth_16 = new QRadioButton(ButtonGroup2);
depth_16->setObjectName(QStringLiteral("depth_16")); depth_16->setObjectName(QString::fromUtf8("depth_16"));
vboxLayout2->addWidget(depth_16); vboxLayout2->addWidget(depth_16);
depth_18 = new QRadioButton(ButtonGroup2); depth_18 = new QRadioButton(ButtonGroup2);
depth_18->setObjectName(QStringLiteral("depth_18")); depth_18->setObjectName(QString::fromUtf8("depth_18"));
vboxLayout2->addWidget(depth_18); vboxLayout2->addWidget(depth_18);
depth_24 = new QRadioButton(ButtonGroup2); depth_24 = new QRadioButton(ButtonGroup2);
depth_24->setObjectName(QStringLiteral("depth_24")); depth_24->setObjectName(QString::fromUtf8("depth_24"));
vboxLayout2->addWidget(depth_24); vboxLayout2->addWidget(depth_24);
depth_32 = new QRadioButton(ButtonGroup2); depth_32 = new QRadioButton(ButtonGroup2);
depth_32->setObjectName(QStringLiteral("depth_32")); depth_32->setObjectName(QString::fromUtf8("depth_32"));
vboxLayout2->addWidget(depth_32); vboxLayout2->addWidget(depth_32);
depth_32_argb = new QRadioButton(ButtonGroup2); depth_32_argb = new QRadioButton(ButtonGroup2);
depth_32_argb->setObjectName(QStringLiteral("depth_32_argb")); depth_32_argb->setObjectName(QString::fromUtf8("depth_32_argb"));
vboxLayout2->addWidget(depth_32_argb); vboxLayout2->addWidget(depth_32_argb);
@ -275,16 +275,16 @@ public:
hboxLayout2 = new QHBoxLayout(); hboxLayout2 = new QHBoxLayout();
hboxLayout2->setSpacing(6); hboxLayout2->setSpacing(6);
hboxLayout2->setObjectName(QStringLiteral("hboxLayout2")); hboxLayout2->setObjectName(QString::fromUtf8("hboxLayout2"));
hboxLayout2->setContentsMargins(0, 0, 0, 0); hboxLayout2->setContentsMargins(0, 0, 0, 0);
TextLabel1_3 = new QLabel(Config); TextLabel1_3 = new QLabel(Config);
TextLabel1_3->setObjectName(QStringLiteral("TextLabel1_3")); TextLabel1_3->setObjectName(QString::fromUtf8("TextLabel1_3"));
hboxLayout2->addWidget(TextLabel1_3); hboxLayout2->addWidget(TextLabel1_3);
skin = new QComboBox(Config); skin = new QComboBox(Config);
skin->addItem(QString()); skin->addItem(QString());
skin->setObjectName(QStringLiteral("skin")); skin->setObjectName(QString::fromUtf8("skin"));
QSizePolicy sizePolicy2(QSizePolicy::Expanding, QSizePolicy::Fixed); QSizePolicy sizePolicy2(QSizePolicy::Expanding, QSizePolicy::Fixed);
sizePolicy2.setHorizontalStretch(0); sizePolicy2.setHorizontalStretch(0);
sizePolicy2.setVerticalStretch(0); sizePolicy2.setVerticalStretch(0);
@ -297,12 +297,12 @@ public:
vboxLayout->addLayout(hboxLayout2); vboxLayout->addLayout(hboxLayout2);
touchScreen = new QCheckBox(Config); touchScreen = new QCheckBox(Config);
touchScreen->setObjectName(QStringLiteral("touchScreen")); touchScreen->setObjectName(QString::fromUtf8("touchScreen"));
vboxLayout->addWidget(touchScreen); vboxLayout->addWidget(touchScreen);
lcdScreen = new QCheckBox(Config); lcdScreen = new QCheckBox(Config);
lcdScreen->setObjectName(QStringLiteral("lcdScreen")); lcdScreen->setObjectName(QString::fromUtf8("lcdScreen"));
vboxLayout->addWidget(lcdScreen); vboxLayout->addWidget(lcdScreen);
@ -311,7 +311,7 @@ public:
vboxLayout->addItem(spacerItem); vboxLayout->addItem(spacerItem);
TextLabel1 = new QLabel(Config); TextLabel1 = new QLabel(Config);
TextLabel1->setObjectName(QStringLiteral("TextLabel1")); TextLabel1->setObjectName(QString::fromUtf8("TextLabel1"));
sizePolicy.setHeightForWidth(TextLabel1->sizePolicy().hasHeightForWidth()); sizePolicy.setHeightForWidth(TextLabel1->sizePolicy().hasHeightForWidth());
TextLabel1->setSizePolicy(sizePolicy); TextLabel1->setSizePolicy(sizePolicy);
TextLabel1->setWordWrap(true); TextLabel1->setWordWrap(true);
@ -319,21 +319,21 @@ public:
vboxLayout->addWidget(TextLabel1); vboxLayout->addWidget(TextLabel1);
GroupBox1 = new QGroupBox(Config); GroupBox1 = new QGroupBox(Config);
GroupBox1->setObjectName(QStringLiteral("GroupBox1")); GroupBox1->setObjectName(QString::fromUtf8("GroupBox1"));
gridLayout = new QGridLayout(GroupBox1); gridLayout = new QGridLayout(GroupBox1);
gridLayout->setSpacing(6); gridLayout->setSpacing(6);
gridLayout->setContentsMargins(11, 11, 11, 11); gridLayout->setContentsMargins(11, 11, 11, 11);
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
gridLayout->setHorizontalSpacing(6); gridLayout->setHorizontalSpacing(6);
gridLayout->setVerticalSpacing(6); gridLayout->setVerticalSpacing(6);
gridLayout->setContentsMargins(11, 11, 11, 11); gridLayout->setContentsMargins(11, 11, 11, 11);
TextLabel3 = new QLabel(GroupBox1); TextLabel3 = new QLabel(GroupBox1);
TextLabel3->setObjectName(QStringLiteral("TextLabel3")); TextLabel3->setObjectName(QString::fromUtf8("TextLabel3"));
gridLayout->addWidget(TextLabel3, 6, 0, 1, 1); gridLayout->addWidget(TextLabel3, 6, 0, 1, 1);
bslider = new QSlider(GroupBox1); bslider = new QSlider(GroupBox1);
bslider->setObjectName(QStringLiteral("bslider")); bslider->setObjectName(QString::fromUtf8("bslider"));
QPalette palette; QPalette palette;
QBrush brush(QColor(128, 128, 128, 255)); QBrush brush(QColor(128, 128, 128, 255));
brush.setStyle(Qt::SolidPattern); brush.setStyle(Qt::SolidPattern);
@ -416,17 +416,17 @@ public:
gridLayout->addWidget(bslider, 6, 1, 1, 1); gridLayout->addWidget(bslider, 6, 1, 1, 1);
blabel = new QLabel(GroupBox1); blabel = new QLabel(GroupBox1);
blabel->setObjectName(QStringLiteral("blabel")); blabel->setObjectName(QString::fromUtf8("blabel"));
gridLayout->addWidget(blabel, 6, 2, 1, 1); gridLayout->addWidget(blabel, 6, 2, 1, 1);
TextLabel2 = new QLabel(GroupBox1); TextLabel2 = new QLabel(GroupBox1);
TextLabel2->setObjectName(QStringLiteral("TextLabel2")); TextLabel2->setObjectName(QString::fromUtf8("TextLabel2"));
gridLayout->addWidget(TextLabel2, 4, 0, 1, 1); gridLayout->addWidget(TextLabel2, 4, 0, 1, 1);
gslider = new QSlider(GroupBox1); gslider = new QSlider(GroupBox1);
gslider->setObjectName(QStringLiteral("gslider")); gslider->setObjectName(QString::fromUtf8("gslider"));
QPalette palette1; QPalette palette1;
palette1.setBrush(QPalette::Active, QPalette::WindowText, brush); palette1.setBrush(QPalette::Active, QPalette::WindowText, brush);
QBrush brush11(QColor(0, 255, 0, 255)); QBrush brush11(QColor(0, 255, 0, 255));
@ -497,22 +497,22 @@ public:
gridLayout->addWidget(gslider, 4, 1, 1, 1); gridLayout->addWidget(gslider, 4, 1, 1, 1);
glabel = new QLabel(GroupBox1); glabel = new QLabel(GroupBox1);
glabel->setObjectName(QStringLiteral("glabel")); glabel->setObjectName(QString::fromUtf8("glabel"));
gridLayout->addWidget(glabel, 4, 2, 1, 1); gridLayout->addWidget(glabel, 4, 2, 1, 1);
TextLabel7 = new QLabel(GroupBox1); TextLabel7 = new QLabel(GroupBox1);
TextLabel7->setObjectName(QStringLiteral("TextLabel7")); TextLabel7->setObjectName(QString::fromUtf8("TextLabel7"));
gridLayout->addWidget(TextLabel7, 0, 0, 1, 1); gridLayout->addWidget(TextLabel7, 0, 0, 1, 1);
TextLabel8 = new QLabel(GroupBox1); TextLabel8 = new QLabel(GroupBox1);
TextLabel8->setObjectName(QStringLiteral("TextLabel8")); TextLabel8->setObjectName(QString::fromUtf8("TextLabel8"));
gridLayout->addWidget(TextLabel8, 0, 2, 1, 1); gridLayout->addWidget(TextLabel8, 0, 2, 1, 1);
gammaslider = new QSlider(GroupBox1); gammaslider = new QSlider(GroupBox1);
gammaslider->setObjectName(QStringLiteral("gammaslider")); gammaslider->setObjectName(QString::fromUtf8("gammaslider"));
QPalette palette2; QPalette palette2;
palette2.setBrush(QPalette::Active, QPalette::WindowText, brush); palette2.setBrush(QPalette::Active, QPalette::WindowText, brush);
palette2.setBrush(QPalette::Active, QPalette::Button, brush7); palette2.setBrush(QPalette::Active, QPalette::Button, brush7);
@ -577,17 +577,17 @@ public:
gridLayout->addWidget(gammaslider, 0, 1, 1, 1); gridLayout->addWidget(gammaslider, 0, 1, 1, 1);
TextLabel1_2 = new QLabel(GroupBox1); TextLabel1_2 = new QLabel(GroupBox1);
TextLabel1_2->setObjectName(QStringLiteral("TextLabel1_2")); TextLabel1_2->setObjectName(QString::fromUtf8("TextLabel1_2"));
gridLayout->addWidget(TextLabel1_2, 2, 0, 1, 1); gridLayout->addWidget(TextLabel1_2, 2, 0, 1, 1);
rlabel = new QLabel(GroupBox1); rlabel = new QLabel(GroupBox1);
rlabel->setObjectName(QStringLiteral("rlabel")); rlabel->setObjectName(QString::fromUtf8("rlabel"));
gridLayout->addWidget(rlabel, 2, 2, 1, 1); gridLayout->addWidget(rlabel, 2, 2, 1, 1);
rslider = new QSlider(GroupBox1); rslider = new QSlider(GroupBox1);
rslider->setObjectName(QStringLiteral("rslider")); rslider->setObjectName(QString::fromUtf8("rslider"));
QPalette palette3; QPalette palette3;
palette3.setBrush(QPalette::Active, QPalette::WindowText, brush); palette3.setBrush(QPalette::Active, QPalette::WindowText, brush);
QBrush brush18(QColor(255, 0, 0, 255)); QBrush brush18(QColor(255, 0, 0, 255));
@ -658,12 +658,12 @@ public:
gridLayout->addWidget(rslider, 2, 1, 1, 1); gridLayout->addWidget(rslider, 2, 1, 1, 1);
PushButton3 = new QPushButton(GroupBox1); PushButton3 = new QPushButton(GroupBox1);
PushButton3->setObjectName(QStringLiteral("PushButton3")); PushButton3->setObjectName(QString::fromUtf8("PushButton3"));
gridLayout->addWidget(PushButton3, 8, 0, 1, 3); gridLayout->addWidget(PushButton3, 8, 0, 1, 3);
MyCustomWidget1 = new GammaView(GroupBox1); MyCustomWidget1 = new GammaView(GroupBox1);
MyCustomWidget1->setObjectName(QStringLiteral("MyCustomWidget1")); MyCustomWidget1->setObjectName(QString::fromUtf8("MyCustomWidget1"));
gridLayout->addWidget(MyCustomWidget1, 0, 3, 9, 1); gridLayout->addWidget(MyCustomWidget1, 0, 3, 9, 1);
@ -672,20 +672,20 @@ public:
hboxLayout3 = new QHBoxLayout(); hboxLayout3 = new QHBoxLayout();
hboxLayout3->setSpacing(6); hboxLayout3->setSpacing(6);
hboxLayout3->setObjectName(QStringLiteral("hboxLayout3")); hboxLayout3->setObjectName(QString::fromUtf8("hboxLayout3"));
hboxLayout3->setContentsMargins(0, 0, 0, 0); hboxLayout3->setContentsMargins(0, 0, 0, 0);
spacerItem1 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); spacerItem1 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
hboxLayout3->addItem(spacerItem1); hboxLayout3->addItem(spacerItem1);
buttonOk = new QPushButton(Config); buttonOk = new QPushButton(Config);
buttonOk->setObjectName(QStringLiteral("buttonOk")); buttonOk->setObjectName(QString::fromUtf8("buttonOk"));
buttonOk->setAutoDefault(true); buttonOk->setAutoDefault(true);
hboxLayout3->addWidget(buttonOk); hboxLayout3->addWidget(buttonOk);
buttonCancel = new QPushButton(Config); buttonCancel = new QPushButton(Config);
buttonCancel->setObjectName(QStringLiteral("buttonCancel")); buttonCancel->setObjectName(QString::fromUtf8("buttonCancel"));
buttonCancel->setAutoDefault(true); buttonCancel->setAutoDefault(true);
hboxLayout3->addWidget(buttonCancel); hboxLayout3->addWidget(buttonCancel);

View File

@ -46,24 +46,24 @@ public:
void setupUi(QDialog *ConnectDialog) void setupUi(QDialog *ConnectDialog)
{ {
if (ConnectDialog->objectName().isEmpty()) if (ConnectDialog->objectName().isEmpty())
ConnectDialog->setObjectName(QStringLiteral("ConnectDialog")); ConnectDialog->setObjectName(QString::fromUtf8("ConnectDialog"));
ConnectDialog->resize(585, 361); ConnectDialog->resize(585, 361);
gridLayout = new QGridLayout(ConnectDialog); gridLayout = new QGridLayout(ConnectDialog);
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
signalGroupBox = new QGroupBox(ConnectDialog); signalGroupBox = new QGroupBox(ConnectDialog);
signalGroupBox->setObjectName(QStringLiteral("signalGroupBox")); signalGroupBox->setObjectName(QString::fromUtf8("signalGroupBox"));
vboxLayout = new QVBoxLayout(signalGroupBox); vboxLayout = new QVBoxLayout(signalGroupBox);
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
signalList = new QListWidget(signalGroupBox); signalList = new QListWidget(signalGroupBox);
signalList->setObjectName(QStringLiteral("signalList")); signalList->setObjectName(QString::fromUtf8("signalList"));
signalList->setTextElideMode(Qt::ElideMiddle); signalList->setTextElideMode(Qt::ElideMiddle);
vboxLayout->addWidget(signalList); vboxLayout->addWidget(signalList);
hboxLayout = new QHBoxLayout(); hboxLayout = new QHBoxLayout();
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
editSignalsButton = new QToolButton(signalGroupBox); editSignalsButton = new QToolButton(signalGroupBox);
editSignalsButton->setObjectName(QStringLiteral("editSignalsButton")); editSignalsButton->setObjectName(QString::fromUtf8("editSignalsButton"));
hboxLayout->addWidget(editSignalsButton); hboxLayout->addWidget(editSignalsButton);
@ -78,19 +78,19 @@ public:
gridLayout->addWidget(signalGroupBox, 0, 0, 1, 2); gridLayout->addWidget(signalGroupBox, 0, 0, 1, 2);
slotGroupBox = new QGroupBox(ConnectDialog); slotGroupBox = new QGroupBox(ConnectDialog);
slotGroupBox->setObjectName(QStringLiteral("slotGroupBox")); slotGroupBox->setObjectName(QString::fromUtf8("slotGroupBox"));
vboxLayout1 = new QVBoxLayout(slotGroupBox); vboxLayout1 = new QVBoxLayout(slotGroupBox);
vboxLayout1->setObjectName(QStringLiteral("vboxLayout1")); vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1"));
slotList = new QListWidget(slotGroupBox); slotList = new QListWidget(slotGroupBox);
slotList->setObjectName(QStringLiteral("slotList")); slotList->setObjectName(QString::fromUtf8("slotList"));
slotList->setTextElideMode(Qt::ElideMiddle); slotList->setTextElideMode(Qt::ElideMiddle);
vboxLayout1->addWidget(slotList); vboxLayout1->addWidget(slotList);
hboxLayout1 = new QHBoxLayout(); hboxLayout1 = new QHBoxLayout();
hboxLayout1->setObjectName(QStringLiteral("hboxLayout1")); hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
editSlotsButton = new QToolButton(slotGroupBox); editSlotsButton = new QToolButton(slotGroupBox);
editSlotsButton->setObjectName(QStringLiteral("editSlotsButton")); editSlotsButton->setObjectName(QString::fromUtf8("editSlotsButton"));
hboxLayout1->addWidget(editSlotsButton); hboxLayout1->addWidget(editSlotsButton);
@ -105,12 +105,12 @@ public:
gridLayout->addWidget(slotGroupBox, 0, 2, 1, 1); gridLayout->addWidget(slotGroupBox, 0, 2, 1, 1);
showAllCheckBox = new QCheckBox(ConnectDialog); showAllCheckBox = new QCheckBox(ConnectDialog);
showAllCheckBox->setObjectName(QStringLiteral("showAllCheckBox")); showAllCheckBox->setObjectName(QString::fromUtf8("showAllCheckBox"));
gridLayout->addWidget(showAllCheckBox, 1, 0, 1, 1); gridLayout->addWidget(showAllCheckBox, 1, 0, 1, 1);
buttonBox = new QDialogButtonBox(ConnectDialog); buttonBox = new QDialogButtonBox(ConnectDialog);
buttonBox->setObjectName(QStringLiteral("buttonBox")); buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setOrientation(Qt::Horizontal); buttonBox->setOrientation(Qt::Horizontal);
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::NoButton|QDialogButtonBox::Ok); buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::NoButton|QDialogButtonBox::Ok);

View File

@ -31,7 +31,7 @@ public:
void setupUi(QWidget *Controller) void setupUi(QWidget *Controller)
{ {
if (Controller->objectName().isEmpty()) if (Controller->objectName().isEmpty())
Controller->setObjectName(QStringLiteral("Controller")); Controller->setObjectName(QString::fromUtf8("Controller"));
Controller->resize(255, 111); Controller->resize(255, 111);
gridLayout = new QGridLayout(Controller); gridLayout = new QGridLayout(Controller);
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
@ -40,30 +40,30 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
gridLayout->setContentsMargins(9, 9, 9, 9); gridLayout->setContentsMargins(9, 9, 9, 9);
#endif #endif
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
label = new QLabel(Controller); label = new QLabel(Controller);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
label->setAlignment(Qt::AlignCenter); label->setAlignment(Qt::AlignCenter);
gridLayout->addWidget(label, 1, 1, 1, 1); gridLayout->addWidget(label, 1, 1, 1, 1);
decelerate = new QPushButton(Controller); decelerate = new QPushButton(Controller);
decelerate->setObjectName(QStringLiteral("decelerate")); decelerate->setObjectName(QString::fromUtf8("decelerate"));
gridLayout->addWidget(decelerate, 2, 1, 1, 1); gridLayout->addWidget(decelerate, 2, 1, 1, 1);
accelerate = new QPushButton(Controller); accelerate = new QPushButton(Controller);
accelerate->setObjectName(QStringLiteral("accelerate")); accelerate->setObjectName(QString::fromUtf8("accelerate"));
gridLayout->addWidget(accelerate, 0, 1, 1, 1); gridLayout->addWidget(accelerate, 0, 1, 1, 1);
right = new QPushButton(Controller); right = new QPushButton(Controller);
right->setObjectName(QStringLiteral("right")); right->setObjectName(QString::fromUtf8("right"));
gridLayout->addWidget(right, 1, 2, 1, 1); gridLayout->addWidget(right, 1, 2, 1, 1);
left = new QPushButton(Controller); left = new QPushButton(Controller);
left->setObjectName(QStringLiteral("left")); left->setObjectName(QString::fromUtf8("left"));
gridLayout->addWidget(left, 1, 0, 1, 1); gridLayout->addWidget(left, 1, 0, 1, 1);

View File

@ -39,33 +39,33 @@ public:
void setupUi(QDialog *CookiesDialog) void setupUi(QDialog *CookiesDialog)
{ {
if (CookiesDialog->objectName().isEmpty()) if (CookiesDialog->objectName().isEmpty())
CookiesDialog->setObjectName(QStringLiteral("CookiesDialog")); CookiesDialog->setObjectName(QString::fromUtf8("CookiesDialog"));
CookiesDialog->resize(550, 370); CookiesDialog->resize(550, 370);
gridLayout = new QGridLayout(CookiesDialog); gridLayout = new QGridLayout(CookiesDialog);
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
spacerItem = new QSpacerItem(252, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); spacerItem = new QSpacerItem(252, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
gridLayout->addItem(spacerItem, 0, 0, 1, 1); gridLayout->addItem(spacerItem, 0, 0, 1, 1);
search = new SearchLineEdit(CookiesDialog); search = new SearchLineEdit(CookiesDialog);
search->setObjectName(QStringLiteral("search")); search->setObjectName(QString::fromUtf8("search"));
gridLayout->addWidget(search, 0, 1, 1, 1); gridLayout->addWidget(search, 0, 1, 1, 1);
cookiesTable = new EditTableView(CookiesDialog); cookiesTable = new EditTableView(CookiesDialog);
cookiesTable->setObjectName(QStringLiteral("cookiesTable")); cookiesTable->setObjectName(QString::fromUtf8("cookiesTable"));
gridLayout->addWidget(cookiesTable, 1, 0, 1, 2); gridLayout->addWidget(cookiesTable, 1, 0, 1, 2);
hboxLayout = new QHBoxLayout(); hboxLayout = new QHBoxLayout();
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
removeButton = new QPushButton(CookiesDialog); removeButton = new QPushButton(CookiesDialog);
removeButton->setObjectName(QStringLiteral("removeButton")); removeButton->setObjectName(QString::fromUtf8("removeButton"));
hboxLayout->addWidget(removeButton); hboxLayout->addWidget(removeButton);
removeAllButton = new QPushButton(CookiesDialog); removeAllButton = new QPushButton(CookiesDialog);
removeAllButton->setObjectName(QStringLiteral("removeAllButton")); removeAllButton->setObjectName(QString::fromUtf8("removeAllButton"));
hboxLayout->addWidget(removeAllButton); hboxLayout->addWidget(removeAllButton);
@ -74,7 +74,7 @@ public:
hboxLayout->addItem(spacerItem1); hboxLayout->addItem(spacerItem1);
buttonBox = new QDialogButtonBox(CookiesDialog); buttonBox = new QDialogButtonBox(CookiesDialog);
buttonBox->setObjectName(QStringLiteral("buttonBox")); buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setStandardButtons(QDialogButtonBox::Ok); buttonBox->setStandardButtons(QDialogButtonBox::Ok);
hboxLayout->addWidget(buttonBox); hboxLayout->addWidget(buttonBox);

View File

@ -54,23 +54,23 @@ public:
void setupUi(QDialog *CookiesExceptionsDialog) void setupUi(QDialog *CookiesExceptionsDialog)
{ {
if (CookiesExceptionsDialog->objectName().isEmpty()) if (CookiesExceptionsDialog->objectName().isEmpty())
CookiesExceptionsDialog->setObjectName(QStringLiteral("CookiesExceptionsDialog")); CookiesExceptionsDialog->setObjectName(QString::fromUtf8("CookiesExceptionsDialog"));
CookiesExceptionsDialog->resize(466, 446); CookiesExceptionsDialog->resize(466, 446);
vboxLayout = new QVBoxLayout(CookiesExceptionsDialog); vboxLayout = new QVBoxLayout(CookiesExceptionsDialog);
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
newExceptionGroupBox = new QGroupBox(CookiesExceptionsDialog); newExceptionGroupBox = new QGroupBox(CookiesExceptionsDialog);
newExceptionGroupBox->setObjectName(QStringLiteral("newExceptionGroupBox")); newExceptionGroupBox->setObjectName(QString::fromUtf8("newExceptionGroupBox"));
gridLayout = new QGridLayout(newExceptionGroupBox); gridLayout = new QGridLayout(newExceptionGroupBox);
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
hboxLayout = new QHBoxLayout(); hboxLayout = new QHBoxLayout();
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
label = new QLabel(newExceptionGroupBox); label = new QLabel(newExceptionGroupBox);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
hboxLayout->addWidget(label); hboxLayout->addWidget(label);
domainLineEdit = new QLineEdit(newExceptionGroupBox); domainLineEdit = new QLineEdit(newExceptionGroupBox);
domainLineEdit->setObjectName(QStringLiteral("domainLineEdit")); domainLineEdit->setObjectName(QString::fromUtf8("domainLineEdit"));
hboxLayout->addWidget(domainLineEdit); hboxLayout->addWidget(domainLineEdit);
@ -78,25 +78,25 @@ public:
gridLayout->addLayout(hboxLayout, 0, 0, 1, 1); gridLayout->addLayout(hboxLayout, 0, 0, 1, 1);
hboxLayout1 = new QHBoxLayout(); hboxLayout1 = new QHBoxLayout();
hboxLayout1->setObjectName(QStringLiteral("hboxLayout1")); hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
spacerItem = new QSpacerItem(81, 25, QSizePolicy::Expanding, QSizePolicy::Minimum); spacerItem = new QSpacerItem(81, 25, QSizePolicy::Expanding, QSizePolicy::Minimum);
hboxLayout1->addItem(spacerItem); hboxLayout1->addItem(spacerItem);
blockButton = new QPushButton(newExceptionGroupBox); blockButton = new QPushButton(newExceptionGroupBox);
blockButton->setObjectName(QStringLiteral("blockButton")); blockButton->setObjectName(QString::fromUtf8("blockButton"));
blockButton->setEnabled(false); blockButton->setEnabled(false);
hboxLayout1->addWidget(blockButton); hboxLayout1->addWidget(blockButton);
allowForSessionButton = new QPushButton(newExceptionGroupBox); allowForSessionButton = new QPushButton(newExceptionGroupBox);
allowForSessionButton->setObjectName(QStringLiteral("allowForSessionButton")); allowForSessionButton->setObjectName(QString::fromUtf8("allowForSessionButton"));
allowForSessionButton->setEnabled(false); allowForSessionButton->setEnabled(false);
hboxLayout1->addWidget(allowForSessionButton); hboxLayout1->addWidget(allowForSessionButton);
allowButton = new QPushButton(newExceptionGroupBox); allowButton = new QPushButton(newExceptionGroupBox);
allowButton->setObjectName(QStringLiteral("allowButton")); allowButton->setObjectName(QString::fromUtf8("allowButton"));
allowButton->setEnabled(false); allowButton->setEnabled(false);
hboxLayout1->addWidget(allowButton); hboxLayout1->addWidget(allowButton);
@ -108,30 +108,30 @@ public:
vboxLayout->addWidget(newExceptionGroupBox); vboxLayout->addWidget(newExceptionGroupBox);
ExceptionsGroupBox = new QGroupBox(CookiesExceptionsDialog); ExceptionsGroupBox = new QGroupBox(CookiesExceptionsDialog);
ExceptionsGroupBox->setObjectName(QStringLiteral("ExceptionsGroupBox")); ExceptionsGroupBox->setObjectName(QString::fromUtf8("ExceptionsGroupBox"));
gridLayout1 = new QGridLayout(ExceptionsGroupBox); gridLayout1 = new QGridLayout(ExceptionsGroupBox);
gridLayout1->setObjectName(QStringLiteral("gridLayout1")); gridLayout1->setObjectName(QString::fromUtf8("gridLayout1"));
spacerItem1 = new QSpacerItem(252, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); spacerItem1 = new QSpacerItem(252, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
gridLayout1->addItem(spacerItem1, 0, 0, 1, 3); gridLayout1->addItem(spacerItem1, 0, 0, 1, 3);
search = new SearchLineEdit(ExceptionsGroupBox); search = new SearchLineEdit(ExceptionsGroupBox);
search->setObjectName(QStringLiteral("search")); search->setObjectName(QString::fromUtf8("search"));
gridLayout1->addWidget(search, 0, 3, 1, 1); gridLayout1->addWidget(search, 0, 3, 1, 1);
exceptionTable = new EditTableView(ExceptionsGroupBox); exceptionTable = new EditTableView(ExceptionsGroupBox);
exceptionTable->setObjectName(QStringLiteral("exceptionTable")); exceptionTable->setObjectName(QString::fromUtf8("exceptionTable"));
gridLayout1->addWidget(exceptionTable, 1, 0, 1, 4); gridLayout1->addWidget(exceptionTable, 1, 0, 1, 4);
removeButton = new QPushButton(ExceptionsGroupBox); removeButton = new QPushButton(ExceptionsGroupBox);
removeButton->setObjectName(QStringLiteral("removeButton")); removeButton->setObjectName(QString::fromUtf8("removeButton"));
gridLayout1->addWidget(removeButton, 2, 0, 1, 1); gridLayout1->addWidget(removeButton, 2, 0, 1, 1);
removeAllButton = new QPushButton(ExceptionsGroupBox); removeAllButton = new QPushButton(ExceptionsGroupBox);
removeAllButton->setObjectName(QStringLiteral("removeAllButton")); removeAllButton->setObjectName(QString::fromUtf8("removeAllButton"));
gridLayout1->addWidget(removeAllButton, 2, 1, 1, 1); gridLayout1->addWidget(removeAllButton, 2, 1, 1, 1);
@ -143,7 +143,7 @@ public:
vboxLayout->addWidget(ExceptionsGroupBox); vboxLayout->addWidget(ExceptionsGroupBox);
buttonBox = new QDialogButtonBox(CookiesExceptionsDialog); buttonBox = new QDialogButtonBox(CookiesExceptionsDialog);
buttonBox->setObjectName(QStringLiteral("buttonBox")); buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setOrientation(Qt::Horizontal); buttonBox->setOrientation(Qt::Horizontal);
buttonBox->setStandardButtons(QDialogButtonBox::Ok); buttonBox->setStandardButtons(QDialogButtonBox::Ok);

View File

@ -63,18 +63,18 @@ public:
void setupUi(QMainWindow *MainWindow) void setupUi(QMainWindow *MainWindow)
{ {
if (MainWindow->objectName().isEmpty()) if (MainWindow->objectName().isEmpty())
MainWindow->setObjectName(QStringLiteral("MainWindow")); MainWindow->setObjectName(QString::fromUtf8("MainWindow"));
MainWindow->resize(388, 413); MainWindow->resize(388, 413);
exitAction = new QAction(MainWindow); exitAction = new QAction(MainWindow);
exitAction->setObjectName(QStringLiteral("exitAction")); exitAction->setObjectName(QString::fromUtf8("exitAction"));
aboutQtAction = new QAction(MainWindow); aboutQtAction = new QAction(MainWindow);
aboutQtAction->setObjectName(QStringLiteral("aboutQtAction")); aboutQtAction->setObjectName(QString::fromUtf8("aboutQtAction"));
editStyleAction = new QAction(MainWindow); editStyleAction = new QAction(MainWindow);
editStyleAction->setObjectName(QStringLiteral("editStyleAction")); editStyleAction->setObjectName(QString::fromUtf8("editStyleAction"));
aboutAction = new QAction(MainWindow); aboutAction = new QAction(MainWindow);
aboutAction->setObjectName(QStringLiteral("aboutAction")); aboutAction->setObjectName(QString::fromUtf8("aboutAction"));
centralwidget = new QWidget(MainWindow); centralwidget = new QWidget(MainWindow);
centralwidget->setObjectName(QStringLiteral("centralwidget")); centralwidget->setObjectName(QString::fromUtf8("centralwidget"));
gridLayout = new QGridLayout(centralwidget); gridLayout = new QGridLayout(centralwidget);
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
gridLayout->setSpacing(6); gridLayout->setSpacing(6);
@ -82,9 +82,9 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
gridLayout->setContentsMargins(9, 9, 9, 9); gridLayout->setContentsMargins(9, 9, 9, 9);
#endif #endif
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
nameLabel = new QLabel(centralwidget); nameLabel = new QLabel(centralwidget);
nameLabel->setObjectName(QStringLiteral("nameLabel")); nameLabel->setObjectName(QString::fromUtf8("nameLabel"));
gridLayout->addWidget(nameLabel, 0, 0, 1, 1); gridLayout->addWidget(nameLabel, 0, 0, 1, 1);
@ -93,7 +93,7 @@ public:
nameCombo->addItem(QString()); nameCombo->addItem(QString());
nameCombo->addItem(QString()); nameCombo->addItem(QString());
nameCombo->addItem(QString()); nameCombo->addItem(QString());
nameCombo->setObjectName(QStringLiteral("nameCombo")); nameCombo->setObjectName(QString::fromUtf8("nameCombo"));
nameCombo->setEditable(true); nameCombo->setEditable(true);
gridLayout->addWidget(nameCombo, 0, 1, 1, 3); gridLayout->addWidget(nameCombo, 0, 1, 1, 3);
@ -103,62 +103,62 @@ public:
gridLayout->addItem(spacerItem, 1, 3, 1, 1); gridLayout->addItem(spacerItem, 1, 3, 1, 1);
femaleRadioButton = new QRadioButton(centralwidget); femaleRadioButton = new QRadioButton(centralwidget);
femaleRadioButton->setObjectName(QStringLiteral("femaleRadioButton")); femaleRadioButton->setObjectName(QString::fromUtf8("femaleRadioButton"));
gridLayout->addWidget(femaleRadioButton, 1, 2, 1, 1); gridLayout->addWidget(femaleRadioButton, 1, 2, 1, 1);
agreeCheckBox = new QCheckBox(centralwidget); agreeCheckBox = new QCheckBox(centralwidget);
agreeCheckBox->setObjectName(QStringLiteral("agreeCheckBox")); agreeCheckBox->setObjectName(QString::fromUtf8("agreeCheckBox"));
gridLayout->addWidget(agreeCheckBox, 6, 0, 1, 4); gridLayout->addWidget(agreeCheckBox, 6, 0, 1, 4);
maleRadioButton = new QRadioButton(centralwidget); maleRadioButton = new QRadioButton(centralwidget);
maleRadioButton->setObjectName(QStringLiteral("maleRadioButton")); maleRadioButton->setObjectName(QString::fromUtf8("maleRadioButton"));
gridLayout->addWidget(maleRadioButton, 1, 1, 1, 1); gridLayout->addWidget(maleRadioButton, 1, 1, 1, 1);
genderLabel = new QLabel(centralwidget); genderLabel = new QLabel(centralwidget);
genderLabel->setObjectName(QStringLiteral("genderLabel")); genderLabel->setObjectName(QString::fromUtf8("genderLabel"));
gridLayout->addWidget(genderLabel, 1, 0, 1, 1); gridLayout->addWidget(genderLabel, 1, 0, 1, 1);
ageSpinBox = new QSpinBox(centralwidget); ageSpinBox = new QSpinBox(centralwidget);
ageSpinBox->setObjectName(QStringLiteral("ageSpinBox")); ageSpinBox->setObjectName(QString::fromUtf8("ageSpinBox"));
ageSpinBox->setMinimum(12); ageSpinBox->setMinimum(12);
ageSpinBox->setValue(22); ageSpinBox->setValue(22);
gridLayout->addWidget(ageSpinBox, 2, 1, 1, 3); gridLayout->addWidget(ageSpinBox, 2, 1, 1, 3);
buttonBox = new QDialogButtonBox(centralwidget); buttonBox = new QDialogButtonBox(centralwidget);
buttonBox->setObjectName(QStringLiteral("buttonBox")); buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setOrientation(Qt::Horizontal); buttonBox->setOrientation(Qt::Horizontal);
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::NoButton|QDialogButtonBox::Ok); buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::NoButton|QDialogButtonBox::Ok);
gridLayout->addWidget(buttonBox, 7, 2, 1, 2); gridLayout->addWidget(buttonBox, 7, 2, 1, 2);
ageLabel = new QLabel(centralwidget); ageLabel = new QLabel(centralwidget);
ageLabel->setObjectName(QStringLiteral("ageLabel")); ageLabel->setObjectName(QString::fromUtf8("ageLabel"));
gridLayout->addWidget(ageLabel, 2, 0, 1, 1); gridLayout->addWidget(ageLabel, 2, 0, 1, 1);
passwordLabel = new QLabel(centralwidget); passwordLabel = new QLabel(centralwidget);
passwordLabel->setObjectName(QStringLiteral("passwordLabel")); passwordLabel->setObjectName(QString::fromUtf8("passwordLabel"));
gridLayout->addWidget(passwordLabel, 3, 0, 1, 1); gridLayout->addWidget(passwordLabel, 3, 0, 1, 1);
passwordEdit = new QLineEdit(centralwidget); passwordEdit = new QLineEdit(centralwidget);
passwordEdit->setObjectName(QStringLiteral("passwordEdit")); passwordEdit->setObjectName(QString::fromUtf8("passwordEdit"));
passwordEdit->setEchoMode(QLineEdit::Password); passwordEdit->setEchoMode(QLineEdit::Password);
gridLayout->addWidget(passwordEdit, 3, 1, 1, 3); gridLayout->addWidget(passwordEdit, 3, 1, 1, 3);
label = new QLabel(centralwidget); label = new QLabel(centralwidget);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
gridLayout->addWidget(label, 5, 0, 1, 1); gridLayout->addWidget(label, 5, 0, 1, 1);
countryLabel = new QLabel(centralwidget); countryLabel = new QLabel(centralwidget);
countryLabel->setObjectName(QStringLiteral("countryLabel")); countryLabel->setObjectName(QString::fromUtf8("countryLabel"));
gridLayout->addWidget(countryLabel, 4, 0, 1, 1); gridLayout->addWidget(countryLabel, 4, 0, 1, 1);
@ -166,7 +166,7 @@ public:
new QListWidgetItem(professionList); new QListWidgetItem(professionList);
new QListWidgetItem(professionList); new QListWidgetItem(professionList);
new QListWidgetItem(professionList); new QListWidgetItem(professionList);
professionList->setObjectName(QStringLiteral("professionList")); professionList->setObjectName(QString::fromUtf8("professionList"));
gridLayout->addWidget(professionList, 5, 1, 1, 3); gridLayout->addWidget(professionList, 5, 1, 1, 3);
@ -176,21 +176,21 @@ public:
countryCombo->addItem(QString()); countryCombo->addItem(QString());
countryCombo->addItem(QString()); countryCombo->addItem(QString());
countryCombo->addItem(QString()); countryCombo->addItem(QString());
countryCombo->setObjectName(QStringLiteral("countryCombo")); countryCombo->setObjectName(QString::fromUtf8("countryCombo"));
gridLayout->addWidget(countryCombo, 4, 1, 1, 3); gridLayout->addWidget(countryCombo, 4, 1, 1, 3);
MainWindow->setCentralWidget(centralwidget); MainWindow->setCentralWidget(centralwidget);
menubar = new QMenuBar(MainWindow); menubar = new QMenuBar(MainWindow);
menubar->setObjectName(QStringLiteral("menubar")); menubar->setObjectName(QString::fromUtf8("menubar"));
menubar->setGeometry(QRect(0, 0, 388, 21)); menubar->setGeometry(QRect(0, 0, 388, 21));
menu_File = new QMenu(menubar); menu_File = new QMenu(menubar);
menu_File->setObjectName(QStringLiteral("menu_File")); menu_File->setObjectName(QString::fromUtf8("menu_File"));
menu_Help = new QMenu(menubar); menu_Help = new QMenu(menubar);
menu_Help->setObjectName(QStringLiteral("menu_Help")); menu_Help->setObjectName(QString::fromUtf8("menu_Help"));
MainWindow->setMenuBar(menubar); MainWindow->setMenuBar(menubar);
statusbar = new QStatusBar(MainWindow); statusbar = new QStatusBar(MainWindow);
statusbar->setObjectName(QStringLiteral("statusbar")); statusbar->setObjectName(QString::fromUtf8("statusbar"));
MainWindow->setStatusBar(statusbar); MainWindow->setStatusBar(statusbar);
#ifndef QT_NO_SHORTCUT #ifndef QT_NO_SHORTCUT
nameLabel->setBuddy(nameCombo); nameLabel->setBuddy(nameCombo);

View File

@ -29,24 +29,24 @@ public:
void setupUi(QDialog *Dialog) void setupUi(QDialog *Dialog)
{ {
if (Dialog->objectName().isEmpty()) if (Dialog->objectName().isEmpty())
Dialog->setObjectName(QStringLiteral("Dialog")); Dialog->setObjectName(QString::fromUtf8("Dialog"));
Dialog->resize(451, 322); Dialog->resize(451, 322);
gridLayout = new QGridLayout(Dialog); gridLayout = new QGridLayout(Dialog);
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
loadFromFileButton = new QPushButton(Dialog); loadFromFileButton = new QPushButton(Dialog);
loadFromFileButton->setObjectName(QStringLiteral("loadFromFileButton")); loadFromFileButton->setObjectName(QString::fromUtf8("loadFromFileButton"));
gridLayout->addWidget(loadFromFileButton, 0, 0, 1, 1); gridLayout->addWidget(loadFromFileButton, 0, 0, 1, 1);
label = new QLabel(Dialog); label = new QLabel(Dialog);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
label->setAlignment(Qt::AlignCenter); label->setAlignment(Qt::AlignCenter);
label->setWordWrap(true); label->setWordWrap(true);
gridLayout->addWidget(label, 1, 0, 1, 1); gridLayout->addWidget(label, 1, 0, 1, 1);
loadFromSharedMemoryButton = new QPushButton(Dialog); loadFromSharedMemoryButton = new QPushButton(Dialog);
loadFromSharedMemoryButton->setObjectName(QStringLiteral("loadFromSharedMemoryButton")); loadFromSharedMemoryButton->setObjectName(QString::fromUtf8("loadFromSharedMemoryButton"));
gridLayout->addWidget(loadFromSharedMemoryButton, 2, 0, 1, 1); gridLayout->addWidget(loadFromSharedMemoryButton, 2, 0, 1, 1);

View File

@ -41,13 +41,13 @@ public:
void setupUi(QWidget *DownloadItem) void setupUi(QWidget *DownloadItem)
{ {
if (DownloadItem->objectName().isEmpty()) if (DownloadItem->objectName().isEmpty())
DownloadItem->setObjectName(QStringLiteral("DownloadItem")); DownloadItem->setObjectName(QString::fromUtf8("DownloadItem"));
DownloadItem->resize(423, 110); DownloadItem->resize(423, 110);
horizontalLayout = new QHBoxLayout(DownloadItem); horizontalLayout = new QHBoxLayout(DownloadItem);
horizontalLayout->setContentsMargins(0, 0, 0, 0); horizontalLayout->setContentsMargins(0, 0, 0, 0);
horizontalLayout->setObjectName(QStringLiteral("horizontalLayout")); horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
fileIcon = new QLabel(DownloadItem); fileIcon = new QLabel(DownloadItem);
fileIcon->setObjectName(QStringLiteral("fileIcon")); fileIcon->setObjectName(QString::fromUtf8("fileIcon"));
QSizePolicy sizePolicy(QSizePolicy::Minimum, QSizePolicy::Minimum); QSizePolicy sizePolicy(QSizePolicy::Minimum, QSizePolicy::Minimum);
sizePolicy.setHorizontalStretch(0); sizePolicy.setHorizontalStretch(0);
sizePolicy.setVerticalStretch(0); sizePolicy.setVerticalStretch(0);
@ -57,9 +57,9 @@ public:
horizontalLayout->addWidget(fileIcon); horizontalLayout->addWidget(fileIcon);
verticalLayout_2 = new QVBoxLayout(); verticalLayout_2 = new QVBoxLayout();
verticalLayout_2->setObjectName(QStringLiteral("verticalLayout_2")); verticalLayout_2->setObjectName(QString::fromUtf8("verticalLayout_2"));
fileNameLabel = new SqueezeLabel(DownloadItem); fileNameLabel = new SqueezeLabel(DownloadItem);
fileNameLabel->setObjectName(QStringLiteral("fileNameLabel")); fileNameLabel->setObjectName(QString::fromUtf8("fileNameLabel"));
QSizePolicy sizePolicy1(QSizePolicy::Expanding, QSizePolicy::Preferred); QSizePolicy sizePolicy1(QSizePolicy::Expanding, QSizePolicy::Preferred);
sizePolicy1.setHorizontalStretch(0); sizePolicy1.setHorizontalStretch(0);
sizePolicy1.setVerticalStretch(0); sizePolicy1.setVerticalStretch(0);
@ -69,13 +69,13 @@ public:
verticalLayout_2->addWidget(fileNameLabel); verticalLayout_2->addWidget(fileNameLabel);
progressBar = new QProgressBar(DownloadItem); progressBar = new QProgressBar(DownloadItem);
progressBar->setObjectName(QStringLiteral("progressBar")); progressBar->setObjectName(QString::fromUtf8("progressBar"));
progressBar->setValue(0); progressBar->setValue(0);
verticalLayout_2->addWidget(progressBar); verticalLayout_2->addWidget(progressBar);
downloadInfoLabel = new SqueezeLabel(DownloadItem); downloadInfoLabel = new SqueezeLabel(DownloadItem);
downloadInfoLabel->setObjectName(QStringLiteral("downloadInfoLabel")); downloadInfoLabel->setObjectName(QString::fromUtf8("downloadInfoLabel"));
QSizePolicy sizePolicy2(QSizePolicy::Minimum, QSizePolicy::Preferred); QSizePolicy sizePolicy2(QSizePolicy::Minimum, QSizePolicy::Preferred);
sizePolicy2.setHorizontalStretch(0); sizePolicy2.setHorizontalStretch(0);
sizePolicy2.setVerticalStretch(0); sizePolicy2.setVerticalStretch(0);
@ -88,24 +88,24 @@ public:
horizontalLayout->addLayout(verticalLayout_2); horizontalLayout->addLayout(verticalLayout_2);
verticalLayout = new QVBoxLayout(); verticalLayout = new QVBoxLayout();
verticalLayout->setObjectName(QStringLiteral("verticalLayout")); verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
verticalSpacer = new QSpacerItem(17, 1, QSizePolicy::Minimum, QSizePolicy::Expanding); verticalSpacer = new QSpacerItem(17, 1, QSizePolicy::Minimum, QSizePolicy::Expanding);
verticalLayout->addItem(verticalSpacer); verticalLayout->addItem(verticalSpacer);
tryAgainButton = new QPushButton(DownloadItem); tryAgainButton = new QPushButton(DownloadItem);
tryAgainButton->setObjectName(QStringLiteral("tryAgainButton")); tryAgainButton->setObjectName(QString::fromUtf8("tryAgainButton"));
tryAgainButton->setEnabled(false); tryAgainButton->setEnabled(false);
verticalLayout->addWidget(tryAgainButton); verticalLayout->addWidget(tryAgainButton);
stopButton = new QPushButton(DownloadItem); stopButton = new QPushButton(DownloadItem);
stopButton->setObjectName(QStringLiteral("stopButton")); stopButton->setObjectName(QString::fromUtf8("stopButton"));
verticalLayout->addWidget(stopButton); verticalLayout->addWidget(stopButton);
openButton = new QPushButton(DownloadItem); openButton = new QPushButton(DownloadItem);
openButton->setObjectName(QStringLiteral("openButton")); openButton->setObjectName(QString::fromUtf8("openButton"));
verticalLayout->addWidget(openButton); verticalLayout->addWidget(openButton);

View File

@ -36,21 +36,21 @@ public:
void setupUi(QDialog *DownloadDialog) void setupUi(QDialog *DownloadDialog)
{ {
if (DownloadDialog->objectName().isEmpty()) if (DownloadDialog->objectName().isEmpty())
DownloadDialog->setObjectName(QStringLiteral("DownloadDialog")); DownloadDialog->setObjectName(QString::fromUtf8("DownloadDialog"));
DownloadDialog->resize(332, 252); DownloadDialog->resize(332, 252);
gridLayout = new QGridLayout(DownloadDialog); gridLayout = new QGridLayout(DownloadDialog);
gridLayout->setSpacing(0); gridLayout->setSpacing(0);
gridLayout->setContentsMargins(0, 0, 0, 0); gridLayout->setContentsMargins(0, 0, 0, 0);
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
downloadsView = new EditTableView(DownloadDialog); downloadsView = new EditTableView(DownloadDialog);
downloadsView->setObjectName(QStringLiteral("downloadsView")); downloadsView->setObjectName(QString::fromUtf8("downloadsView"));
gridLayout->addWidget(downloadsView, 0, 0, 1, 3); gridLayout->addWidget(downloadsView, 0, 0, 1, 3);
horizontalLayout = new QHBoxLayout(); horizontalLayout = new QHBoxLayout();
horizontalLayout->setObjectName(QStringLiteral("horizontalLayout")); horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
cleanupButton = new QPushButton(DownloadDialog); cleanupButton = new QPushButton(DownloadDialog);
cleanupButton->setObjectName(QStringLiteral("cleanupButton")); cleanupButton->setObjectName(QString::fromUtf8("cleanupButton"));
cleanupButton->setEnabled(false); cleanupButton->setEnabled(false);
horizontalLayout->addWidget(cleanupButton); horizontalLayout->addWidget(cleanupButton);
@ -63,7 +63,7 @@ public:
gridLayout->addLayout(horizontalLayout, 1, 0, 1, 1); gridLayout->addLayout(horizontalLayout, 1, 0, 1, 1);
itemCount = new QLabel(DownloadDialog); itemCount = new QLabel(DownloadDialog);
itemCount->setObjectName(QStringLiteral("itemCount")); itemCount->setObjectName(QString::fromUtf8("itemCount"));
gridLayout->addWidget(itemCount, 1, 1, 1, 1); gridLayout->addWidget(itemCount, 1, 1, 1, 1);

View File

@ -36,49 +36,49 @@ public:
void setupUi(QDialog *embeddedDialog) void setupUi(QDialog *embeddedDialog)
{ {
if (embeddedDialog->objectName().isEmpty()) if (embeddedDialog->objectName().isEmpty())
embeddedDialog->setObjectName(QStringLiteral("embeddedDialog")); embeddedDialog->setObjectName(QString::fromUtf8("embeddedDialog"));
embeddedDialog->resize(407, 134); embeddedDialog->resize(407, 134);
formLayout = new QFormLayout(embeddedDialog); formLayout = new QFormLayout(embeddedDialog);
formLayout->setObjectName(QStringLiteral("formLayout")); formLayout->setObjectName(QString::fromUtf8("formLayout"));
label = new QLabel(embeddedDialog); label = new QLabel(embeddedDialog);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
formLayout->setWidget(0, QFormLayout::LabelRole, label); formLayout->setWidget(0, QFormLayout::LabelRole, label);
layoutDirection = new QComboBox(embeddedDialog); layoutDirection = new QComboBox(embeddedDialog);
layoutDirection->addItem(QString()); layoutDirection->addItem(QString());
layoutDirection->addItem(QString()); layoutDirection->addItem(QString());
layoutDirection->setObjectName(QStringLiteral("layoutDirection")); layoutDirection->setObjectName(QString::fromUtf8("layoutDirection"));
formLayout->setWidget(0, QFormLayout::FieldRole, layoutDirection); formLayout->setWidget(0, QFormLayout::FieldRole, layoutDirection);
label_2 = new QLabel(embeddedDialog); label_2 = new QLabel(embeddedDialog);
label_2->setObjectName(QStringLiteral("label_2")); label_2->setObjectName(QString::fromUtf8("label_2"));
formLayout->setWidget(1, QFormLayout::LabelRole, label_2); formLayout->setWidget(1, QFormLayout::LabelRole, label_2);
fontComboBox = new QFontComboBox(embeddedDialog); fontComboBox = new QFontComboBox(embeddedDialog);
fontComboBox->setObjectName(QStringLiteral("fontComboBox")); fontComboBox->setObjectName(QString::fromUtf8("fontComboBox"));
formLayout->setWidget(1, QFormLayout::FieldRole, fontComboBox); formLayout->setWidget(1, QFormLayout::FieldRole, fontComboBox);
label_3 = new QLabel(embeddedDialog); label_3 = new QLabel(embeddedDialog);
label_3->setObjectName(QStringLiteral("label_3")); label_3->setObjectName(QString::fromUtf8("label_3"));
formLayout->setWidget(2, QFormLayout::LabelRole, label_3); formLayout->setWidget(2, QFormLayout::LabelRole, label_3);
style = new QComboBox(embeddedDialog); style = new QComboBox(embeddedDialog);
style->setObjectName(QStringLiteral("style")); style->setObjectName(QString::fromUtf8("style"));
formLayout->setWidget(2, QFormLayout::FieldRole, style); formLayout->setWidget(2, QFormLayout::FieldRole, style);
label_4 = new QLabel(embeddedDialog); label_4 = new QLabel(embeddedDialog);
label_4->setObjectName(QStringLiteral("label_4")); label_4->setObjectName(QString::fromUtf8("label_4"));
formLayout->setWidget(3, QFormLayout::LabelRole, label_4); formLayout->setWidget(3, QFormLayout::LabelRole, label_4);
spacing = new QSlider(embeddedDialog); spacing = new QSlider(embeddedDialog);
spacing->setObjectName(QStringLiteral("spacing")); spacing->setObjectName(QString::fromUtf8("spacing"));
spacing->setOrientation(Qt::Horizontal); spacing->setOrientation(Qt::Horizontal);
formLayout->setWidget(3, QFormLayout::FieldRole, spacing); formLayout->setWidget(3, QFormLayout::FieldRole, spacing);

View File

@ -24,10 +24,10 @@ public:
void setupUi(QWidget *Form) void setupUi(QWidget *Form)
{ {
if (Form->objectName().isEmpty()) if (Form->objectName().isEmpty())
Form->setObjectName(QStringLiteral("Form")); Form->setObjectName(QString::fromUtf8("Form"));
Form->resize(400, 300); Form->resize(400, 300);
worldTimeClock = new WorldTimeClock(Form); worldTimeClock = new WorldTimeClock(Form);
worldTimeClock->setObjectName(QStringLiteral("worldTimeClock")); worldTimeClock->setObjectName(QString::fromUtf8("worldTimeClock"));
worldTimeClock->setGeometry(QRect(100, 100, 100, 100)); worldTimeClock->setGeometry(QRect(100, 100, 100, 100));
worldTimeClock->setProperty("penStyle", QVariant::fromValue(Qt::DashDotLine)); worldTimeClock->setProperty("penStyle", QVariant::fromValue(Qt::DashDotLine));

View File

@ -34,23 +34,23 @@ public:
void setupUi(QWidget *FilesPage) void setupUi(QWidget *FilesPage)
{ {
if (FilesPage->objectName().isEmpty()) if (FilesPage->objectName().isEmpty())
FilesPage->setObjectName(QStringLiteral("FilesPage")); FilesPage->setObjectName(QString::fromUtf8("FilesPage"));
FilesPage->resize(417, 242); FilesPage->resize(417, 242);
gridLayout = new QGridLayout(FilesPage); gridLayout = new QGridLayout(FilesPage);
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
fileLabel = new QLabel(FilesPage); fileLabel = new QLabel(FilesPage);
fileLabel->setObjectName(QStringLiteral("fileLabel")); fileLabel->setObjectName(QString::fromUtf8("fileLabel"));
fileLabel->setWordWrap(true); fileLabel->setWordWrap(true);
gridLayout->addWidget(fileLabel, 0, 0, 1, 2); gridLayout->addWidget(fileLabel, 0, 0, 1, 2);
fileListWidget = new QListWidget(FilesPage); fileListWidget = new QListWidget(FilesPage);
fileListWidget->setObjectName(QStringLiteral("fileListWidget")); fileListWidget->setObjectName(QString::fromUtf8("fileListWidget"));
gridLayout->addWidget(fileListWidget, 1, 0, 3, 1); gridLayout->addWidget(fileListWidget, 1, 0, 3, 1);
removeButton = new QPushButton(FilesPage); removeButton = new QPushButton(FilesPage);
removeButton->setObjectName(QStringLiteral("removeButton")); removeButton->setObjectName(QString::fromUtf8("removeButton"));
QSizePolicy sizePolicy(QSizePolicy::Maximum, QSizePolicy::Fixed); QSizePolicy sizePolicy(QSizePolicy::Maximum, QSizePolicy::Fixed);
sizePolicy.setHorizontalStretch(0); sizePolicy.setHorizontalStretch(0);
sizePolicy.setVerticalStretch(0); sizePolicy.setVerticalStretch(0);
@ -60,7 +60,7 @@ public:
gridLayout->addWidget(removeButton, 1, 1, 1, 1); gridLayout->addWidget(removeButton, 1, 1, 1, 1);
removeAllButton = new QPushButton(FilesPage); removeAllButton = new QPushButton(FilesPage);
removeAllButton->setObjectName(QStringLiteral("removeAllButton")); removeAllButton->setObjectName(QString::fromUtf8("removeAllButton"));
gridLayout->addWidget(removeAllButton, 2, 1, 1, 1); gridLayout->addWidget(removeAllButton, 2, 1, 1, 1);

View File

@ -34,24 +34,24 @@ public:
void setupUi(QDialog *FilterNameDialogClass) void setupUi(QDialog *FilterNameDialogClass)
{ {
if (FilterNameDialogClass->objectName().isEmpty()) if (FilterNameDialogClass->objectName().isEmpty())
FilterNameDialogClass->setObjectName(QStringLiteral("FilterNameDialogClass")); FilterNameDialogClass->setObjectName(QString::fromUtf8("FilterNameDialogClass"));
FilterNameDialogClass->resize(312, 95); FilterNameDialogClass->resize(312, 95);
gridLayout = new QGridLayout(FilterNameDialogClass); gridLayout = new QGridLayout(FilterNameDialogClass);
gridLayout->setSpacing(6); gridLayout->setSpacing(6);
gridLayout->setContentsMargins(9, 9, 9, 9); gridLayout->setContentsMargins(9, 9, 9, 9);
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
label = new QLabel(FilterNameDialogClass); label = new QLabel(FilterNameDialogClass);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
gridLayout->addWidget(label, 0, 0, 1, 1); gridLayout->addWidget(label, 0, 0, 1, 1);
lineEdit = new QLineEdit(FilterNameDialogClass); lineEdit = new QLineEdit(FilterNameDialogClass);
lineEdit->setObjectName(QStringLiteral("lineEdit")); lineEdit->setObjectName(QString::fromUtf8("lineEdit"));
gridLayout->addWidget(lineEdit, 0, 1, 1, 2); gridLayout->addWidget(lineEdit, 0, 1, 1, 2);
line = new QFrame(FilterNameDialogClass); line = new QFrame(FilterNameDialogClass);
line->setObjectName(QStringLiteral("line")); line->setObjectName(QString::fromUtf8("line"));
line->setFrameShape(QFrame::HLine); line->setFrameShape(QFrame::HLine);
line->setFrameShadow(QFrame::Sunken); line->setFrameShadow(QFrame::Sunken);
@ -62,7 +62,7 @@ public:
gridLayout->addItem(spacerItem, 2, 0, 1, 2); gridLayout->addItem(spacerItem, 2, 0, 1, 2);
buttonBox = new QDialogButtonBox(FilterNameDialogClass); buttonBox = new QDialogButtonBox(FilterNameDialogClass);
buttonBox->setObjectName(QStringLiteral("buttonBox")); buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setOrientation(Qt::Horizontal); buttonBox->setOrientation(Qt::Horizontal);
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::NoButton|QDialogButtonBox::Ok); buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::NoButton|QDialogButtonBox::Ok);

View File

@ -42,37 +42,37 @@ public:
void setupUi(QWidget *FilterPage) void setupUi(QWidget *FilterPage)
{ {
if (FilterPage->objectName().isEmpty()) if (FilterPage->objectName().isEmpty())
FilterPage->setObjectName(QStringLiteral("FilterPage")); FilterPage->setObjectName(QString::fromUtf8("FilterPage"));
FilterPage->resize(419, 243); FilterPage->resize(419, 243);
gridLayout = new QGridLayout(FilterPage); gridLayout = new QGridLayout(FilterPage);
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
label = new QLabel(FilterPage); label = new QLabel(FilterPage);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
gridLayout->addWidget(label, 1, 0, 1, 1); gridLayout->addWidget(label, 1, 0, 1, 1);
filterLineEdit = new QLineEdit(FilterPage); filterLineEdit = new QLineEdit(FilterPage);
filterLineEdit->setObjectName(QStringLiteral("filterLineEdit")); filterLineEdit->setObjectName(QString::fromUtf8("filterLineEdit"));
gridLayout->addWidget(filterLineEdit, 2, 0, 1, 1); gridLayout->addWidget(filterLineEdit, 2, 0, 1, 1);
groupBox = new QGroupBox(FilterPage); groupBox = new QGroupBox(FilterPage);
groupBox->setObjectName(QStringLiteral("groupBox")); groupBox->setObjectName(QString::fromUtf8("groupBox"));
gridLayout1 = new QGridLayout(groupBox); gridLayout1 = new QGridLayout(groupBox);
gridLayout1->setObjectName(QStringLiteral("gridLayout1")); gridLayout1->setObjectName(QString::fromUtf8("gridLayout1"));
customFilterWidget = new QTreeWidget(groupBox); customFilterWidget = new QTreeWidget(groupBox);
customFilterWidget->setObjectName(QStringLiteral("customFilterWidget")); customFilterWidget->setObjectName(QString::fromUtf8("customFilterWidget"));
customFilterWidget->setColumnCount(2); customFilterWidget->setColumnCount(2);
gridLayout1->addWidget(customFilterWidget, 0, 0, 3, 1); gridLayout1->addWidget(customFilterWidget, 0, 0, 3, 1);
addButton = new QPushButton(groupBox); addButton = new QPushButton(groupBox);
addButton->setObjectName(QStringLiteral("addButton")); addButton->setObjectName(QString::fromUtf8("addButton"));
gridLayout1->addWidget(addButton, 0, 1, 1, 1); gridLayout1->addWidget(addButton, 0, 1, 1, 1);
removeButton = new QPushButton(groupBox); removeButton = new QPushButton(groupBox);
removeButton->setObjectName(QStringLiteral("removeButton")); removeButton->setObjectName(QString::fromUtf8("removeButton"));
gridLayout1->addWidget(removeButton, 1, 1, 1, 1); gridLayout1->addWidget(removeButton, 1, 1, 1, 1);

View File

@ -77,7 +77,7 @@ public:
void setupUi(QDialog *FindDialog) void setupUi(QDialog *FindDialog)
{ {
if (FindDialog->objectName().isEmpty()) if (FindDialog->objectName().isEmpty())
FindDialog->setObjectName(QStringLiteral("FindDialog")); FindDialog->setObjectName(QString::fromUtf8("FindDialog"));
FindDialog->resize(414, 170); FindDialog->resize(414, 170);
QSizePolicy sizePolicy(QSizePolicy::Preferred, QSizePolicy::Maximum); QSizePolicy sizePolicy(QSizePolicy::Preferred, QSizePolicy::Maximum);
sizePolicy.setHorizontalStretch(0); sizePolicy.setHorizontalStretch(0);
@ -87,22 +87,22 @@ public:
hboxLayout = new QHBoxLayout(FindDialog); hboxLayout = new QHBoxLayout(FindDialog);
hboxLayout->setSpacing(6); hboxLayout->setSpacing(6);
hboxLayout->setContentsMargins(11, 11, 11, 11); hboxLayout->setContentsMargins(11, 11, 11, 11);
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
vboxLayout = new QVBoxLayout(); vboxLayout = new QVBoxLayout();
vboxLayout->setSpacing(6); vboxLayout->setSpacing(6);
vboxLayout->setContentsMargins(0, 0, 0, 0); vboxLayout->setContentsMargins(0, 0, 0, 0);
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
hboxLayout1 = new QHBoxLayout(); hboxLayout1 = new QHBoxLayout();
hboxLayout1->setSpacing(6); hboxLayout1->setSpacing(6);
hboxLayout1->setContentsMargins(0, 0, 0, 0); hboxLayout1->setContentsMargins(0, 0, 0, 0);
hboxLayout1->setObjectName(QStringLiteral("hboxLayout1")); hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
findWhat = new QLabel(FindDialog); findWhat = new QLabel(FindDialog);
findWhat->setObjectName(QStringLiteral("findWhat")); findWhat->setObjectName(QString::fromUtf8("findWhat"));
hboxLayout1->addWidget(findWhat); hboxLayout1->addWidget(findWhat);
led = new QLineEdit(FindDialog); led = new QLineEdit(FindDialog);
led->setObjectName(QStringLiteral("led")); led->setObjectName(QString::fromUtf8("led"));
hboxLayout1->addWidget(led); hboxLayout1->addWidget(led);
@ -110,36 +110,36 @@ public:
vboxLayout->addLayout(hboxLayout1); vboxLayout->addLayout(hboxLayout1);
groupBox = new QGroupBox(FindDialog); groupBox = new QGroupBox(FindDialog);
groupBox->setObjectName(QStringLiteral("groupBox")); groupBox->setObjectName(QString::fromUtf8("groupBox"));
gridLayout = new QGridLayout(groupBox); gridLayout = new QGridLayout(groupBox);
gridLayout->setSpacing(6); gridLayout->setSpacing(6);
gridLayout->setContentsMargins(9, 9, 9, 9); gridLayout->setContentsMargins(9, 9, 9, 9);
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
sourceText = new QCheckBox(groupBox); sourceText = new QCheckBox(groupBox);
sourceText->setObjectName(QStringLiteral("sourceText")); sourceText->setObjectName(QString::fromUtf8("sourceText"));
sourceText->setChecked(true); sourceText->setChecked(true);
gridLayout->addWidget(sourceText, 1, 0, 1, 1); gridLayout->addWidget(sourceText, 1, 0, 1, 1);
translations = new QCheckBox(groupBox); translations = new QCheckBox(groupBox);
translations->setObjectName(QStringLiteral("translations")); translations->setObjectName(QString::fromUtf8("translations"));
translations->setChecked(true); translations->setChecked(true);
gridLayout->addWidget(translations, 2, 0, 1, 1); gridLayout->addWidget(translations, 2, 0, 1, 1);
matchCase = new QCheckBox(groupBox); matchCase = new QCheckBox(groupBox);
matchCase->setObjectName(QStringLiteral("matchCase")); matchCase->setObjectName(QString::fromUtf8("matchCase"));
gridLayout->addWidget(matchCase, 0, 1, 1, 1); gridLayout->addWidget(matchCase, 0, 1, 1, 1);
comments = new QCheckBox(groupBox); comments = new QCheckBox(groupBox);
comments->setObjectName(QStringLiteral("comments")); comments->setObjectName(QString::fromUtf8("comments"));
comments->setChecked(true); comments->setChecked(true);
gridLayout->addWidget(comments, 0, 0, 1, 1); gridLayout->addWidget(comments, 0, 0, 1, 1);
ignoreAccelerators = new QCheckBox(groupBox); ignoreAccelerators = new QCheckBox(groupBox);
ignoreAccelerators->setObjectName(QStringLiteral("ignoreAccelerators")); ignoreAccelerators->setObjectName(QString::fromUtf8("ignoreAccelerators"));
ignoreAccelerators->setChecked(true); ignoreAccelerators->setChecked(true);
gridLayout->addWidget(ignoreAccelerators, 1, 1, 1, 1); gridLayout->addWidget(ignoreAccelerators, 1, 1, 1, 1);
@ -153,15 +153,15 @@ public:
vboxLayout1 = new QVBoxLayout(); vboxLayout1 = new QVBoxLayout();
vboxLayout1->setSpacing(6); vboxLayout1->setSpacing(6);
vboxLayout1->setContentsMargins(0, 0, 0, 0); vboxLayout1->setContentsMargins(0, 0, 0, 0);
vboxLayout1->setObjectName(QStringLiteral("vboxLayout1")); vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1"));
findNxt = new QPushButton(FindDialog); findNxt = new QPushButton(FindDialog);
findNxt->setObjectName(QStringLiteral("findNxt")); findNxt->setObjectName(QString::fromUtf8("findNxt"));
findNxt->setFlat(false); findNxt->setFlat(false);
vboxLayout1->addWidget(findNxt); vboxLayout1->addWidget(findNxt);
cancel = new QPushButton(FindDialog); cancel = new QPushButton(FindDialog);
cancel->setObjectName(QStringLiteral("cancel")); cancel->setObjectName(QString::fromUtf8("cancel"));
vboxLayout1->addWidget(cancel); vboxLayout1->addWidget(cancel);

View File

@ -40,7 +40,7 @@ public:
void setupUi(QWidget *WorldTimeForm) void setupUi(QWidget *WorldTimeForm)
{ {
if (WorldTimeForm->objectName().isEmpty()) if (WorldTimeForm->objectName().isEmpty())
WorldTimeForm->setObjectName(QStringLiteral("WorldTimeForm")); WorldTimeForm->setObjectName(QString::fromUtf8("WorldTimeForm"));
WorldTimeForm->resize(400, 300); WorldTimeForm->resize(400, 300);
hboxLayout = new QHBoxLayout(WorldTimeForm); hboxLayout = new QHBoxLayout(WorldTimeForm);
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
@ -49,9 +49,9 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
hboxLayout->setContentsMargins(9, 9, 9, 9); hboxLayout->setContentsMargins(9, 9, 9, 9);
#endif #endif
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
worldTimeClock = new WorldTimeClock(WorldTimeForm); worldTimeClock = new WorldTimeClock(WorldTimeForm);
worldTimeClock->setObjectName(QStringLiteral("worldTimeClock")); worldTimeClock->setObjectName(QString::fromUtf8("worldTimeClock"));
hboxLayout->addWidget(worldTimeClock); hboxLayout->addWidget(worldTimeClock);
@ -60,7 +60,7 @@ public:
vboxLayout->setSpacing(6); vboxLayout->setSpacing(6);
#endif #endif
vboxLayout->setContentsMargins(1, 1, 1, 1); vboxLayout->setContentsMargins(1, 1, 1, 1);
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
spacerItem = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); spacerItem = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding);
vboxLayout->addItem(spacerItem); vboxLayout->addItem(spacerItem);
@ -70,14 +70,14 @@ public:
hboxLayout1->setSpacing(6); hboxLayout1->setSpacing(6);
#endif #endif
hboxLayout1->setContentsMargins(1, 1, 1, 1); hboxLayout1->setContentsMargins(1, 1, 1, 1);
hboxLayout1->setObjectName(QStringLiteral("hboxLayout1")); hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
label = new QLabel(WorldTimeForm); label = new QLabel(WorldTimeForm);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
hboxLayout1->addWidget(label); hboxLayout1->addWidget(label);
timeEdit = new QTimeEdit(WorldTimeForm); timeEdit = new QTimeEdit(WorldTimeForm);
timeEdit->setObjectName(QStringLiteral("timeEdit")); timeEdit->setObjectName(QString::fromUtf8("timeEdit"));
timeEdit->setReadOnly(true); timeEdit->setReadOnly(true);
hboxLayout1->addWidget(timeEdit); hboxLayout1->addWidget(timeEdit);
@ -90,14 +90,14 @@ public:
hboxLayout2->setSpacing(6); hboxLayout2->setSpacing(6);
#endif #endif
hboxLayout2->setContentsMargins(1, 1, 1, 1); hboxLayout2->setContentsMargins(1, 1, 1, 1);
hboxLayout2->setObjectName(QStringLiteral("hboxLayout2")); hboxLayout2->setObjectName(QString::fromUtf8("hboxLayout2"));
label_2 = new QLabel(WorldTimeForm); label_2 = new QLabel(WorldTimeForm);
label_2->setObjectName(QStringLiteral("label_2")); label_2->setObjectName(QString::fromUtf8("label_2"));
hboxLayout2->addWidget(label_2); hboxLayout2->addWidget(label_2);
spinBox = new QSpinBox(WorldTimeForm); spinBox = new QSpinBox(WorldTimeForm);
spinBox->setObjectName(QStringLiteral("spinBox")); spinBox->setObjectName(QString::fromUtf8("spinBox"));
spinBox->setMaximum(12); spinBox->setMaximum(12);
spinBox->setMinimum(-12); spinBox->setMinimum(-12);

View File

@ -92,19 +92,19 @@ public:
void setupUi(QDialog *FormWindowSettings) void setupUi(QDialog *FormWindowSettings)
{ {
if (FormWindowSettings->objectName().isEmpty()) if (FormWindowSettings->objectName().isEmpty())
FormWindowSettings->setObjectName(QStringLiteral("FormWindowSettings")); FormWindowSettings->setObjectName(QString::fromUtf8("FormWindowSettings"));
FormWindowSettings->resize(433, 465); FormWindowSettings->resize(433, 465);
gridLayout = new QGridLayout(FormWindowSettings); gridLayout = new QGridLayout(FormWindowSettings);
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
buttonBox = new QDialogButtonBox(FormWindowSettings); buttonBox = new QDialogButtonBox(FormWindowSettings);
buttonBox->setObjectName(QStringLiteral("buttonBox")); buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setOrientation(Qt::Horizontal); buttonBox->setOrientation(Qt::Horizontal);
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::NoButton|QDialogButtonBox::Ok); buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::NoButton|QDialogButtonBox::Ok);
gridLayout->addWidget(buttonBox, 6, 0, 1, 2); gridLayout->addWidget(buttonBox, 6, 0, 1, 2);
line = new QFrame(FormWindowSettings); line = new QFrame(FormWindowSettings);
line->setObjectName(QStringLiteral("line")); line->setObjectName(QString::fromUtf8("line"));
line->setFrameShape(QFrame::HLine); line->setFrameShape(QFrame::HLine);
line->setFrameShadow(QFrame::Sunken); line->setFrameShadow(QFrame::Sunken);
@ -115,33 +115,33 @@ public:
hboxLayout->setSpacing(6); hboxLayout->setSpacing(6);
#endif #endif
hboxLayout->setContentsMargins(0, 0, 0, 0); hboxLayout->setContentsMargins(0, 0, 0, 0);
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
layoutDefaultGroupBox = new QGroupBox(FormWindowSettings); layoutDefaultGroupBox = new QGroupBox(FormWindowSettings);
layoutDefaultGroupBox->setObjectName(QStringLiteral("layoutDefaultGroupBox")); layoutDefaultGroupBox->setObjectName(QString::fromUtf8("layoutDefaultGroupBox"));
layoutDefaultGroupBox->setCheckable(true); layoutDefaultGroupBox->setCheckable(true);
gridLayout1 = new QGridLayout(layoutDefaultGroupBox); gridLayout1 = new QGridLayout(layoutDefaultGroupBox);
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
gridLayout1->setSpacing(6); gridLayout1->setSpacing(6);
#endif #endif
gridLayout1->setContentsMargins(8, 8, 8, 8); gridLayout1->setContentsMargins(8, 8, 8, 8);
gridLayout1->setObjectName(QStringLiteral("gridLayout1")); gridLayout1->setObjectName(QString::fromUtf8("gridLayout1"));
label_2 = new QLabel(layoutDefaultGroupBox); label_2 = new QLabel(layoutDefaultGroupBox);
label_2->setObjectName(QStringLiteral("label_2")); label_2->setObjectName(QString::fromUtf8("label_2"));
gridLayout1->addWidget(label_2, 1, 0, 1, 1); gridLayout1->addWidget(label_2, 1, 0, 1, 1);
label = new QLabel(layoutDefaultGroupBox); label = new QLabel(layoutDefaultGroupBox);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
gridLayout1->addWidget(label, 0, 0, 1, 1); gridLayout1->addWidget(label, 0, 0, 1, 1);
defaultSpacingSpinBox = new QSpinBox(layoutDefaultGroupBox); defaultSpacingSpinBox = new QSpinBox(layoutDefaultGroupBox);
defaultSpacingSpinBox->setObjectName(QStringLiteral("defaultSpacingSpinBox")); defaultSpacingSpinBox->setObjectName(QString::fromUtf8("defaultSpacingSpinBox"));
gridLayout1->addWidget(defaultSpacingSpinBox, 1, 1, 1, 1); gridLayout1->addWidget(defaultSpacingSpinBox, 1, 1, 1, 1);
defaultMarginSpinBox = new QSpinBox(layoutDefaultGroupBox); defaultMarginSpinBox = new QSpinBox(layoutDefaultGroupBox);
defaultMarginSpinBox->setObjectName(QStringLiteral("defaultMarginSpinBox")); defaultMarginSpinBox->setObjectName(QString::fromUtf8("defaultMarginSpinBox"));
gridLayout1->addWidget(defaultMarginSpinBox, 0, 1, 1, 1); gridLayout1->addWidget(defaultMarginSpinBox, 0, 1, 1, 1);
@ -149,31 +149,31 @@ public:
hboxLayout->addWidget(layoutDefaultGroupBox); hboxLayout->addWidget(layoutDefaultGroupBox);
layoutFunctionGroupBox = new QGroupBox(FormWindowSettings); layoutFunctionGroupBox = new QGroupBox(FormWindowSettings);
layoutFunctionGroupBox->setObjectName(QStringLiteral("layoutFunctionGroupBox")); layoutFunctionGroupBox->setObjectName(QString::fromUtf8("layoutFunctionGroupBox"));
layoutFunctionGroupBox->setCheckable(true); layoutFunctionGroupBox->setCheckable(true);
gridLayout2 = new QGridLayout(layoutFunctionGroupBox); gridLayout2 = new QGridLayout(layoutFunctionGroupBox);
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
gridLayout2->setSpacing(6); gridLayout2->setSpacing(6);
#endif #endif
gridLayout2->setContentsMargins(8, 8, 8, 8); gridLayout2->setContentsMargins(8, 8, 8, 8);
gridLayout2->setObjectName(QStringLiteral("gridLayout2")); gridLayout2->setObjectName(QString::fromUtf8("gridLayout2"));
spacingFunctionLineEdit = new QLineEdit(layoutFunctionGroupBox); spacingFunctionLineEdit = new QLineEdit(layoutFunctionGroupBox);
spacingFunctionLineEdit->setObjectName(QStringLiteral("spacingFunctionLineEdit")); spacingFunctionLineEdit->setObjectName(QString::fromUtf8("spacingFunctionLineEdit"));
gridLayout2->addWidget(spacingFunctionLineEdit, 1, 1, 1, 1); gridLayout2->addWidget(spacingFunctionLineEdit, 1, 1, 1, 1);
marginFunctionLineEdit = new QLineEdit(layoutFunctionGroupBox); marginFunctionLineEdit = new QLineEdit(layoutFunctionGroupBox);
marginFunctionLineEdit->setObjectName(QStringLiteral("marginFunctionLineEdit")); marginFunctionLineEdit->setObjectName(QString::fromUtf8("marginFunctionLineEdit"));
gridLayout2->addWidget(marginFunctionLineEdit, 0, 1, 1, 1); gridLayout2->addWidget(marginFunctionLineEdit, 0, 1, 1, 1);
label_3 = new QLabel(layoutFunctionGroupBox); label_3 = new QLabel(layoutFunctionGroupBox);
label_3->setObjectName(QStringLiteral("label_3")); label_3->setObjectName(QString::fromUtf8("label_3"));
gridLayout2->addWidget(label_3, 0, 0, 1, 1); gridLayout2->addWidget(label_3, 0, 0, 1, 1);
label_3_2 = new QLabel(layoutFunctionGroupBox); label_3_2 = new QLabel(layoutFunctionGroupBox);
label_3_2->setObjectName(QStringLiteral("label_3_2")); label_3_2->setObjectName(QString::fromUtf8("label_3_2"));
gridLayout2->addWidget(label_3_2, 1, 0, 1, 1); gridLayout2->addWidget(label_3_2, 1, 0, 1, 1);
@ -184,15 +184,15 @@ public:
gridLayout->addLayout(hboxLayout, 2, 0, 1, 2); gridLayout->addLayout(hboxLayout, 2, 0, 1, 2);
pixmapFunctionGroupBox_2 = new QGroupBox(FormWindowSettings); pixmapFunctionGroupBox_2 = new QGroupBox(FormWindowSettings);
pixmapFunctionGroupBox_2->setObjectName(QStringLiteral("pixmapFunctionGroupBox_2")); pixmapFunctionGroupBox_2->setObjectName(QString::fromUtf8("pixmapFunctionGroupBox_2"));
vboxLayout = new QVBoxLayout(pixmapFunctionGroupBox_2); vboxLayout = new QVBoxLayout(pixmapFunctionGroupBox_2);
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout->setSpacing(6); vboxLayout->setSpacing(6);
#endif #endif
vboxLayout->setContentsMargins(8, 8, 8, 8); vboxLayout->setContentsMargins(8, 8, 8, 8);
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
authorLineEdit = new QLineEdit(pixmapFunctionGroupBox_2); authorLineEdit = new QLineEdit(pixmapFunctionGroupBox_2);
authorLineEdit->setObjectName(QStringLiteral("authorLineEdit")); authorLineEdit->setObjectName(QString::fromUtf8("authorLineEdit"));
vboxLayout->addWidget(authorLineEdit); vboxLayout->addWidget(authorLineEdit);
@ -200,15 +200,15 @@ public:
gridLayout->addWidget(pixmapFunctionGroupBox_2, 0, 0, 1, 2); gridLayout->addWidget(pixmapFunctionGroupBox_2, 0, 0, 1, 2);
includeHintsGroupBox = new QGroupBox(FormWindowSettings); includeHintsGroupBox = new QGroupBox(FormWindowSettings);
includeHintsGroupBox->setObjectName(QStringLiteral("includeHintsGroupBox")); includeHintsGroupBox->setObjectName(QString::fromUtf8("includeHintsGroupBox"));
vboxLayout1 = new QVBoxLayout(includeHintsGroupBox); vboxLayout1 = new QVBoxLayout(includeHintsGroupBox);
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout1->setSpacing(6); vboxLayout1->setSpacing(6);
#endif #endif
vboxLayout1->setContentsMargins(8, 8, 8, 8); vboxLayout1->setContentsMargins(8, 8, 8, 8);
vboxLayout1->setObjectName(QStringLiteral("vboxLayout1")); vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1"));
includeHintsTextEdit = new QTextEdit(includeHintsGroupBox); includeHintsTextEdit = new QTextEdit(includeHintsGroupBox);
includeHintsTextEdit->setObjectName(QStringLiteral("includeHintsTextEdit")); includeHintsTextEdit->setObjectName(QString::fromUtf8("includeHintsTextEdit"));
vboxLayout1->addWidget(includeHintsTextEdit); vboxLayout1->addWidget(includeHintsTextEdit);
@ -220,18 +220,18 @@ public:
hboxLayout1->setSpacing(6); hboxLayout1->setSpacing(6);
#endif #endif
hboxLayout1->setContentsMargins(0, 0, 0, 0); hboxLayout1->setContentsMargins(0, 0, 0, 0);
hboxLayout1->setObjectName(QStringLiteral("hboxLayout1")); hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
pixmapFunctionGroupBox = new QGroupBox(FormWindowSettings); pixmapFunctionGroupBox = new QGroupBox(FormWindowSettings);
pixmapFunctionGroupBox->setObjectName(QStringLiteral("pixmapFunctionGroupBox")); pixmapFunctionGroupBox->setObjectName(QString::fromUtf8("pixmapFunctionGroupBox"));
pixmapFunctionGroupBox->setCheckable(true); pixmapFunctionGroupBox->setCheckable(true);
vboxLayout2 = new QVBoxLayout(pixmapFunctionGroupBox); vboxLayout2 = new QVBoxLayout(pixmapFunctionGroupBox);
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout2->setSpacing(6); vboxLayout2->setSpacing(6);
#endif #endif
vboxLayout2->setContentsMargins(8, 8, 8, 8); vboxLayout2->setContentsMargins(8, 8, 8, 8);
vboxLayout2->setObjectName(QStringLiteral("vboxLayout2")); vboxLayout2->setObjectName(QString::fromUtf8("vboxLayout2"));
pixmapFunctionLineEdit = new QLineEdit(pixmapFunctionGroupBox); pixmapFunctionLineEdit = new QLineEdit(pixmapFunctionGroupBox);
pixmapFunctionLineEdit->setObjectName(QStringLiteral("pixmapFunctionLineEdit")); pixmapFunctionLineEdit->setObjectName(QString::fromUtf8("pixmapFunctionLineEdit"));
vboxLayout2->addWidget(pixmapFunctionLineEdit); vboxLayout2->addWidget(pixmapFunctionLineEdit);
@ -246,7 +246,7 @@ public:
gridLayout->addItem(spacerItem, 4, 1, 1, 1); gridLayout->addItem(spacerItem, 4, 1, 1, 1);
gridPanel = new qdesigner_internal::GridPanel(FormWindowSettings); gridPanel = new qdesigner_internal::GridPanel(FormWindowSettings);
gridPanel->setObjectName(QStringLiteral("gridPanel")); gridPanel->setObjectName(QString::fromUtf8("gridPanel"));
gridLayout->addWidget(gridPanel, 1, 0, 1, 2); gridLayout->addWidget(gridPanel, 1, 0, 1, 2);

View File

@ -33,27 +33,27 @@ public:
void setupUi(QWidget *GeneralPage) void setupUi(QWidget *GeneralPage)
{ {
if (GeneralPage->objectName().isEmpty()) if (GeneralPage->objectName().isEmpty())
GeneralPage->setObjectName(QStringLiteral("GeneralPage")); GeneralPage->setObjectName(QString::fromUtf8("GeneralPage"));
GeneralPage->resize(417, 243); GeneralPage->resize(417, 243);
gridLayout = new QGridLayout(GeneralPage); gridLayout = new QGridLayout(GeneralPage);
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
label = new QLabel(GeneralPage); label = new QLabel(GeneralPage);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
gridLayout->addWidget(label, 1, 0, 1, 1); gridLayout->addWidget(label, 1, 0, 1, 1);
namespaceLineEdit = new QLineEdit(GeneralPage); namespaceLineEdit = new QLineEdit(GeneralPage);
namespaceLineEdit->setObjectName(QStringLiteral("namespaceLineEdit")); namespaceLineEdit->setObjectName(QString::fromUtf8("namespaceLineEdit"));
gridLayout->addWidget(namespaceLineEdit, 1, 1, 1, 1); gridLayout->addWidget(namespaceLineEdit, 1, 1, 1, 1);
label_2 = new QLabel(GeneralPage); label_2 = new QLabel(GeneralPage);
label_2->setObjectName(QStringLiteral("label_2")); label_2->setObjectName(QString::fromUtf8("label_2"));
gridLayout->addWidget(label_2, 2, 0, 1, 1); gridLayout->addWidget(label_2, 2, 0, 1, 1);
folderLineEdit = new QLineEdit(GeneralPage); folderLineEdit = new QLineEdit(GeneralPage);
folderLineEdit->setObjectName(QStringLiteral("folderLineEdit")); folderLineEdit->setObjectName(QString::fromUtf8("folderLineEdit"));
gridLayout->addWidget(folderLineEdit, 2, 1, 1, 1); gridLayout->addWidget(folderLineEdit, 2, 1, 1, 1);

View File

@ -29,27 +29,27 @@ public:
void setupUi(QWidget *Form) void setupUi(QWidget *Form)
{ {
if (Form->objectName().isEmpty()) if (Form->objectName().isEmpty())
Form->setObjectName(QStringLiteral("Form")); Form->setObjectName(QString::fromUtf8("Form"));
Form->resize(279, 163); Form->resize(279, 163);
gridLayout = new QGridLayout(Form); gridLayout = new QGridLayout(Form);
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
pushButton = new QPushButton(Form); pushButton = new QPushButton(Form);
pushButton->setObjectName(QStringLiteral("pushButton")); pushButton->setObjectName(QString::fromUtf8("pushButton"));
gridLayout->addWidget(pushButton, 0, 0, 1, 1, Qt::AlignLeft); gridLayout->addWidget(pushButton, 0, 0, 1, 1, Qt::AlignLeft);
pushButton_3 = new QPushButton(Form); pushButton_3 = new QPushButton(Form);
pushButton_3->setObjectName(QStringLiteral("pushButton_3")); pushButton_3->setObjectName(QString::fromUtf8("pushButton_3"));
gridLayout->addWidget(pushButton_3, 0, 1, 1, 1, Qt::AlignTop); gridLayout->addWidget(pushButton_3, 0, 1, 1, 1, Qt::AlignTop);
pushButton_2 = new QPushButton(Form); pushButton_2 = new QPushButton(Form);
pushButton_2->setObjectName(QStringLiteral("pushButton_2")); pushButton_2->setObjectName(QString::fromUtf8("pushButton_2"));
gridLayout->addWidget(pushButton_2, 1, 0, 1, 1, Qt::AlignRight); gridLayout->addWidget(pushButton_2, 1, 0, 1, 1, Qt::AlignRight);
pushButton_4 = new QPushButton(Form); pushButton_4 = new QPushButton(Form);
pushButton_4->setObjectName(QStringLiteral("pushButton_4")); pushButton_4->setObjectName(QString::fromUtf8("pushButton_4"));
gridLayout->addWidget(pushButton_4, 1, 1, 1, 1, Qt::AlignBottom); gridLayout->addWidget(pushButton_4, 1, 1, 1, 1, Qt::AlignBottom);

View File

@ -46,17 +46,17 @@ public:
void setupUi(QWidget *qdesigner_internal__GridPanel) void setupUi(QWidget *qdesigner_internal__GridPanel)
{ {
if (qdesigner_internal__GridPanel->objectName().isEmpty()) if (qdesigner_internal__GridPanel->objectName().isEmpty())
qdesigner_internal__GridPanel->setObjectName(QStringLiteral("qdesigner_internal__GridPanel")); qdesigner_internal__GridPanel->setObjectName(QString::fromUtf8("qdesigner_internal__GridPanel"));
qdesigner_internal__GridPanel->resize(393, 110); qdesigner_internal__GridPanel->resize(393, 110);
vboxLayout = new QVBoxLayout(qdesigner_internal__GridPanel); vboxLayout = new QVBoxLayout(qdesigner_internal__GridPanel);
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
vboxLayout->setContentsMargins(0, 0, 0, 0); vboxLayout->setContentsMargins(0, 0, 0, 0);
m_gridGroupBox = new QGroupBox(qdesigner_internal__GridPanel); m_gridGroupBox = new QGroupBox(qdesigner_internal__GridPanel);
m_gridGroupBox->setObjectName(QStringLiteral("m_gridGroupBox")); m_gridGroupBox->setObjectName(QString::fromUtf8("m_gridGroupBox"));
gridLayout = new QGridLayout(m_gridGroupBox); gridLayout = new QGridLayout(m_gridGroupBox);
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
m_visibleCheckBox = new QCheckBox(m_gridGroupBox); m_visibleCheckBox = new QCheckBox(m_gridGroupBox);
m_visibleCheckBox->setObjectName(QStringLiteral("m_visibleCheckBox")); m_visibleCheckBox->setObjectName(QString::fromUtf8("m_visibleCheckBox"));
QSizePolicy sizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Fixed); QSizePolicy sizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Fixed);
sizePolicy.setHorizontalStretch(0); sizePolicy.setHorizontalStretch(0);
sizePolicy.setVerticalStretch(0); sizePolicy.setVerticalStretch(0);
@ -66,28 +66,28 @@ public:
gridLayout->addWidget(m_visibleCheckBox, 0, 0, 1, 1); gridLayout->addWidget(m_visibleCheckBox, 0, 0, 1, 1);
label = new QLabel(m_gridGroupBox); label = new QLabel(m_gridGroupBox);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
gridLayout->addWidget(label, 0, 1, 1, 1); gridLayout->addWidget(label, 0, 1, 1, 1);
m_deltaXSpinBox = new QSpinBox(m_gridGroupBox); m_deltaXSpinBox = new QSpinBox(m_gridGroupBox);
m_deltaXSpinBox->setObjectName(QStringLiteral("m_deltaXSpinBox")); m_deltaXSpinBox->setObjectName(QString::fromUtf8("m_deltaXSpinBox"));
m_deltaXSpinBox->setMinimum(2); m_deltaXSpinBox->setMinimum(2);
m_deltaXSpinBox->setMaximum(100); m_deltaXSpinBox->setMaximum(100);
gridLayout->addWidget(m_deltaXSpinBox, 0, 2, 1, 1); gridLayout->addWidget(m_deltaXSpinBox, 0, 2, 1, 1);
m_snapXCheckBox = new QCheckBox(m_gridGroupBox); m_snapXCheckBox = new QCheckBox(m_gridGroupBox);
m_snapXCheckBox->setObjectName(QStringLiteral("m_snapXCheckBox")); m_snapXCheckBox->setObjectName(QString::fromUtf8("m_snapXCheckBox"));
sizePolicy.setHeightForWidth(m_snapXCheckBox->sizePolicy().hasHeightForWidth()); sizePolicy.setHeightForWidth(m_snapXCheckBox->sizePolicy().hasHeightForWidth());
m_snapXCheckBox->setSizePolicy(sizePolicy); m_snapXCheckBox->setSizePolicy(sizePolicy);
gridLayout->addWidget(m_snapXCheckBox, 0, 3, 1, 1); gridLayout->addWidget(m_snapXCheckBox, 0, 3, 1, 1);
hboxLayout = new QHBoxLayout(); hboxLayout = new QHBoxLayout();
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
m_resetButton = new QPushButton(m_gridGroupBox); m_resetButton = new QPushButton(m_gridGroupBox);
m_resetButton->setObjectName(QStringLiteral("m_resetButton")); m_resetButton->setObjectName(QString::fromUtf8("m_resetButton"));
hboxLayout->addWidget(m_resetButton); hboxLayout->addWidget(m_resetButton);
@ -99,19 +99,19 @@ public:
gridLayout->addLayout(hboxLayout, 1, 0, 1, 1); gridLayout->addLayout(hboxLayout, 1, 0, 1, 1);
label_2 = new QLabel(m_gridGroupBox); label_2 = new QLabel(m_gridGroupBox);
label_2->setObjectName(QStringLiteral("label_2")); label_2->setObjectName(QString::fromUtf8("label_2"));
gridLayout->addWidget(label_2, 1, 1, 1, 1); gridLayout->addWidget(label_2, 1, 1, 1, 1);
m_deltaYSpinBox = new QSpinBox(m_gridGroupBox); m_deltaYSpinBox = new QSpinBox(m_gridGroupBox);
m_deltaYSpinBox->setObjectName(QStringLiteral("m_deltaYSpinBox")); m_deltaYSpinBox->setObjectName(QString::fromUtf8("m_deltaYSpinBox"));
m_deltaYSpinBox->setMinimum(2); m_deltaYSpinBox->setMinimum(2);
m_deltaYSpinBox->setMaximum(100); m_deltaYSpinBox->setMaximum(100);
gridLayout->addWidget(m_deltaYSpinBox, 1, 2, 1, 1); gridLayout->addWidget(m_deltaYSpinBox, 1, 2, 1, 1);
m_snapYCheckBox = new QCheckBox(m_gridGroupBox); m_snapYCheckBox = new QCheckBox(m_gridGroupBox);
m_snapYCheckBox->setObjectName(QStringLiteral("m_snapYCheckBox")); m_snapYCheckBox->setObjectName(QString::fromUtf8("m_snapYCheckBox"));
sizePolicy.setHeightForWidth(m_snapYCheckBox->sizePolicy().hasHeightForWidth()); sizePolicy.setHeightForWidth(m_snapYCheckBox->sizePolicy().hasHeightForWidth());
m_snapYCheckBox->setSizePolicy(sizePolicy); m_snapYCheckBox->setSizePolicy(sizePolicy);

View File

@ -98,26 +98,26 @@ public:
void setupUi(QWidget *HelpDialog) void setupUi(QWidget *HelpDialog)
{ {
if (HelpDialog->objectName().isEmpty()) if (HelpDialog->objectName().isEmpty())
HelpDialog->setObjectName(QStringLiteral("HelpDialog")); HelpDialog->setObjectName(QString::fromUtf8("HelpDialog"));
HelpDialog->resize(274, 417); HelpDialog->resize(274, 417);
vboxLayout = new QVBoxLayout(HelpDialog); vboxLayout = new QVBoxLayout(HelpDialog);
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout->setSpacing(6); vboxLayout->setSpacing(6);
#endif #endif
vboxLayout->setContentsMargins(0, 0, 0, 0); vboxLayout->setContentsMargins(0, 0, 0, 0);
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
tabWidget = new QTabWidget(HelpDialog); tabWidget = new QTabWidget(HelpDialog);
tabWidget->setObjectName(QStringLiteral("tabWidget")); tabWidget->setObjectName(QString::fromUtf8("tabWidget"));
contentPage = new QWidget(); contentPage = new QWidget();
contentPage->setObjectName(QStringLiteral("contentPage")); contentPage->setObjectName(QString::fromUtf8("contentPage"));
vboxLayout1 = new QVBoxLayout(contentPage); vboxLayout1 = new QVBoxLayout(contentPage);
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout1->setSpacing(6); vboxLayout1->setSpacing(6);
#endif #endif
vboxLayout1->setContentsMargins(5, 5, 5, 5); vboxLayout1->setContentsMargins(5, 5, 5, 5);
vboxLayout1->setObjectName(QStringLiteral("vboxLayout1")); vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1"));
listContents = new QTreeWidget(contentPage); listContents = new QTreeWidget(contentPage);
listContents->setObjectName(QStringLiteral("listContents")); listContents->setObjectName(QString::fromUtf8("listContents"));
listContents->setContextMenuPolicy(Qt::CustomContextMenu); listContents->setContextMenuPolicy(Qt::CustomContextMenu);
listContents->setRootIsDecorated(true); listContents->setRootIsDecorated(true);
listContents->setUniformRowHeights(true); listContents->setUniformRowHeights(true);
@ -126,40 +126,40 @@ public:
tabWidget->addTab(contentPage, QString()); tabWidget->addTab(contentPage, QString());
indexPage = new QWidget(); indexPage = new QWidget();
indexPage->setObjectName(QStringLiteral("indexPage")); indexPage->setObjectName(QString::fromUtf8("indexPage"));
vboxLayout2 = new QVBoxLayout(indexPage); vboxLayout2 = new QVBoxLayout(indexPage);
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout2->setSpacing(6); vboxLayout2->setSpacing(6);
#endif #endif
vboxLayout2->setContentsMargins(5, 5, 5, 5); vboxLayout2->setContentsMargins(5, 5, 5, 5);
vboxLayout2->setObjectName(QStringLiteral("vboxLayout2")); vboxLayout2->setObjectName(QString::fromUtf8("vboxLayout2"));
TextLabel1 = new QLabel(indexPage); TextLabel1 = new QLabel(indexPage);
TextLabel1->setObjectName(QStringLiteral("TextLabel1")); TextLabel1->setObjectName(QString::fromUtf8("TextLabel1"));
vboxLayout2->addWidget(TextLabel1); vboxLayout2->addWidget(TextLabel1);
editIndex = new QLineEdit(indexPage); editIndex = new QLineEdit(indexPage);
editIndex->setObjectName(QStringLiteral("editIndex")); editIndex->setObjectName(QString::fromUtf8("editIndex"));
vboxLayout2->addWidget(editIndex); vboxLayout2->addWidget(editIndex);
listIndex = new QListView(indexPage); listIndex = new QListView(indexPage);
listIndex->setObjectName(QStringLiteral("listIndex")); listIndex->setObjectName(QString::fromUtf8("listIndex"));
listIndex->setContextMenuPolicy(Qt::CustomContextMenu); listIndex->setContextMenuPolicy(Qt::CustomContextMenu);
vboxLayout2->addWidget(listIndex); vboxLayout2->addWidget(listIndex);
tabWidget->addTab(indexPage, QString()); tabWidget->addTab(indexPage, QString());
bookmarkPage = new QWidget(); bookmarkPage = new QWidget();
bookmarkPage->setObjectName(QStringLiteral("bookmarkPage")); bookmarkPage->setObjectName(QString::fromUtf8("bookmarkPage"));
vboxLayout3 = new QVBoxLayout(bookmarkPage); vboxLayout3 = new QVBoxLayout(bookmarkPage);
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout3->setSpacing(6); vboxLayout3->setSpacing(6);
#endif #endif
vboxLayout3->setContentsMargins(5, 5, 5, 5); vboxLayout3->setContentsMargins(5, 5, 5, 5);
vboxLayout3->setObjectName(QStringLiteral("vboxLayout3")); vboxLayout3->setObjectName(QString::fromUtf8("vboxLayout3"));
listBookmarks = new QTreeWidget(bookmarkPage); listBookmarks = new QTreeWidget(bookmarkPage);
listBookmarks->setObjectName(QStringLiteral("listBookmarks")); listBookmarks->setObjectName(QString::fromUtf8("listBookmarks"));
listBookmarks->setContextMenuPolicy(Qt::CustomContextMenu); listBookmarks->setContextMenuPolicy(Qt::CustomContextMenu);
listBookmarks->setUniformRowHeights(true); listBookmarks->setUniformRowHeights(true);
@ -170,18 +170,18 @@ public:
hboxLayout->setSpacing(6); hboxLayout->setSpacing(6);
#endif #endif
hboxLayout->setContentsMargins(0, 0, 0, 0); hboxLayout->setContentsMargins(0, 0, 0, 0);
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
spacerItem = new QSpacerItem(20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); spacerItem = new QSpacerItem(20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
hboxLayout->addItem(spacerItem); hboxLayout->addItem(spacerItem);
buttonAdd = new QPushButton(bookmarkPage); buttonAdd = new QPushButton(bookmarkPage);
buttonAdd->setObjectName(QStringLiteral("buttonAdd")); buttonAdd->setObjectName(QString::fromUtf8("buttonAdd"));
hboxLayout->addWidget(buttonAdd); hboxLayout->addWidget(buttonAdd);
buttonRemove = new QPushButton(bookmarkPage); buttonRemove = new QPushButton(bookmarkPage);
buttonRemove->setObjectName(QStringLiteral("buttonRemove")); buttonRemove->setObjectName(QString::fromUtf8("buttonRemove"));
hboxLayout->addWidget(buttonRemove); hboxLayout->addWidget(buttonRemove);
@ -190,35 +190,35 @@ public:
tabWidget->addTab(bookmarkPage, QString()); tabWidget->addTab(bookmarkPage, QString());
searchPage = new QWidget(); searchPage = new QWidget();
searchPage->setObjectName(QStringLiteral("searchPage")); searchPage->setObjectName(QString::fromUtf8("searchPage"));
gridLayout = new QGridLayout(searchPage); gridLayout = new QGridLayout(searchPage);
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
gridLayout->setSpacing(6); gridLayout->setSpacing(6);
#endif #endif
gridLayout->setContentsMargins(5, 5, 5, 5); gridLayout->setContentsMargins(5, 5, 5, 5);
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
spacerItem1 = new QSpacerItem(20, 20, QSizePolicy::Minimum, QSizePolicy::Fixed); spacerItem1 = new QSpacerItem(20, 20, QSizePolicy::Minimum, QSizePolicy::Fixed);
gridLayout->addItem(spacerItem1, 3, 0, 1, 1); gridLayout->addItem(spacerItem1, 3, 0, 1, 1);
TextLabel1_2 = new QLabel(searchPage); TextLabel1_2 = new QLabel(searchPage);
TextLabel1_2->setObjectName(QStringLiteral("TextLabel1_2")); TextLabel1_2->setObjectName(QString::fromUtf8("TextLabel1_2"));
gridLayout->addWidget(TextLabel1_2, 0, 0, 1, 1); gridLayout->addWidget(TextLabel1_2, 0, 0, 1, 1);
termsEdit = new QLineEdit(searchPage); termsEdit = new QLineEdit(searchPage);
termsEdit->setObjectName(QStringLiteral("termsEdit")); termsEdit->setObjectName(QString::fromUtf8("termsEdit"));
gridLayout->addWidget(termsEdit, 1, 0, 1, 1); gridLayout->addWidget(termsEdit, 1, 0, 1, 1);
resultBox = new QListWidget(searchPage); resultBox = new QListWidget(searchPage);
resultBox->setObjectName(QStringLiteral("resultBox")); resultBox->setObjectName(QString::fromUtf8("resultBox"));
resultBox->setContextMenuPolicy(Qt::CustomContextMenu); resultBox->setContextMenuPolicy(Qt::CustomContextMenu);
gridLayout->addWidget(resultBox, 5, 0, 1, 1); gridLayout->addWidget(resultBox, 5, 0, 1, 1);
TextLabel2 = new QLabel(searchPage); TextLabel2 = new QLabel(searchPage);
TextLabel2->setObjectName(QStringLiteral("TextLabel2")); TextLabel2->setObjectName(QString::fromUtf8("TextLabel2"));
gridLayout->addWidget(TextLabel2, 4, 0, 1, 1); gridLayout->addWidget(TextLabel2, 4, 0, 1, 1);
@ -227,9 +227,9 @@ public:
hboxLayout1->setSpacing(6); hboxLayout1->setSpacing(6);
#endif #endif
hboxLayout1->setContentsMargins(1, 1, 1, 1); hboxLayout1->setContentsMargins(1, 1, 1, 1);
hboxLayout1->setObjectName(QStringLiteral("hboxLayout1")); hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
helpButton = new QPushButton(searchPage); helpButton = new QPushButton(searchPage);
helpButton->setObjectName(QStringLiteral("helpButton")); helpButton->setObjectName(QString::fromUtf8("helpButton"));
hboxLayout1->addWidget(helpButton); hboxLayout1->addWidget(helpButton);
@ -238,7 +238,7 @@ public:
hboxLayout1->addItem(spacerItem2); hboxLayout1->addItem(spacerItem2);
searchButton = new QPushButton(searchPage); searchButton = new QPushButton(searchPage);
searchButton->setObjectName(QStringLiteral("searchButton")); searchButton->setObjectName(QString::fromUtf8("searchButton"));
searchButton->setEnabled(false); searchButton->setEnabled(false);
hboxLayout1->addWidget(searchButton); hboxLayout1->addWidget(searchButton);
@ -251,7 +251,7 @@ public:
vboxLayout->addWidget(tabWidget); vboxLayout->addWidget(tabWidget);
framePrepare = new QFrame(HelpDialog); framePrepare = new QFrame(HelpDialog);
framePrepare->setObjectName(QStringLiteral("framePrepare")); framePrepare->setObjectName(QString::fromUtf8("framePrepare"));
framePrepare->setFrameShape(QFrame::StyledPanel); framePrepare->setFrameShape(QFrame::StyledPanel);
framePrepare->setFrameShadow(QFrame::Raised); framePrepare->setFrameShadow(QFrame::Raised);
hboxLayout2 = new QHBoxLayout(framePrepare); hboxLayout2 = new QHBoxLayout(framePrepare);
@ -259,14 +259,14 @@ public:
hboxLayout2->setSpacing(6); hboxLayout2->setSpacing(6);
#endif #endif
hboxLayout2->setContentsMargins(3, 3, 3, 3); hboxLayout2->setContentsMargins(3, 3, 3, 3);
hboxLayout2->setObjectName(QStringLiteral("hboxLayout2")); hboxLayout2->setObjectName(QString::fromUtf8("hboxLayout2"));
labelPrepare = new QLabel(framePrepare); labelPrepare = new QLabel(framePrepare);
labelPrepare->setObjectName(QStringLiteral("labelPrepare")); labelPrepare->setObjectName(QString::fromUtf8("labelPrepare"));
hboxLayout2->addWidget(labelPrepare); hboxLayout2->addWidget(labelPrepare);
progressPrepare = new QProgressBar(framePrepare); progressPrepare = new QProgressBar(framePrepare);
progressPrepare->setObjectName(QStringLiteral("progressPrepare")); progressPrepare->setObjectName(QString::fromUtf8("progressPrepare"));
hboxLayout2->addWidget(progressPrepare); hboxLayout2->addWidget(progressPrepare);

View File

@ -39,33 +39,33 @@ public:
void setupUi(QDialog *HistoryDialog) void setupUi(QDialog *HistoryDialog)
{ {
if (HistoryDialog->objectName().isEmpty()) if (HistoryDialog->objectName().isEmpty())
HistoryDialog->setObjectName(QStringLiteral("HistoryDialog")); HistoryDialog->setObjectName(QString::fromUtf8("HistoryDialog"));
HistoryDialog->resize(758, 450); HistoryDialog->resize(758, 450);
gridLayout = new QGridLayout(HistoryDialog); gridLayout = new QGridLayout(HistoryDialog);
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
spacerItem = new QSpacerItem(252, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); spacerItem = new QSpacerItem(252, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
gridLayout->addItem(spacerItem, 0, 0, 1, 1); gridLayout->addItem(spacerItem, 0, 0, 1, 1);
search = new SearchLineEdit(HistoryDialog); search = new SearchLineEdit(HistoryDialog);
search->setObjectName(QStringLiteral("search")); search->setObjectName(QString::fromUtf8("search"));
gridLayout->addWidget(search, 0, 1, 1, 1); gridLayout->addWidget(search, 0, 1, 1, 1);
tree = new EditTreeView(HistoryDialog); tree = new EditTreeView(HistoryDialog);
tree->setObjectName(QStringLiteral("tree")); tree->setObjectName(QString::fromUtf8("tree"));
gridLayout->addWidget(tree, 1, 0, 1, 2); gridLayout->addWidget(tree, 1, 0, 1, 2);
hboxLayout = new QHBoxLayout(); hboxLayout = new QHBoxLayout();
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
removeButton = new QPushButton(HistoryDialog); removeButton = new QPushButton(HistoryDialog);
removeButton->setObjectName(QStringLiteral("removeButton")); removeButton->setObjectName(QString::fromUtf8("removeButton"));
hboxLayout->addWidget(removeButton); hboxLayout->addWidget(removeButton);
removeAllButton = new QPushButton(HistoryDialog); removeAllButton = new QPushButton(HistoryDialog);
removeAllButton->setObjectName(QStringLiteral("removeAllButton")); removeAllButton->setObjectName(QString::fromUtf8("removeAllButton"));
hboxLayout->addWidget(removeAllButton); hboxLayout->addWidget(removeAllButton);
@ -74,7 +74,7 @@ public:
hboxLayout->addItem(spacerItem1); hboxLayout->addItem(spacerItem1);
buttonBox = new QDialogButtonBox(HistoryDialog); buttonBox = new QDialogButtonBox(HistoryDialog);
buttonBox->setObjectName(QStringLiteral("buttonBox")); buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setStandardButtons(QDialogButtonBox::Ok); buttonBox->setStandardButtons(QDialogButtonBox::Ok);
hboxLayout->addWidget(buttonBox); hboxLayout->addWidget(buttonBox);

View File

@ -29,39 +29,39 @@ public:
void setupUi(QWidget *Form) void setupUi(QWidget *Form)
{ {
if (Form->objectName().isEmpty()) if (Form->objectName().isEmpty())
Form->setObjectName(QStringLiteral("Form")); Form->setObjectName(QString::fromUtf8("Form"));
Form->resize(122, 117); Form->resize(122, 117);
verticalLayout = new QVBoxLayout(Form); verticalLayout = new QVBoxLayout(Form);
verticalLayout->setObjectName(QStringLiteral("verticalLayout")); verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
fileicon = new QPushButton(Form); fileicon = new QPushButton(Form);
fileicon->setObjectName(QStringLiteral("fileicon")); fileicon->setObjectName(QString::fromUtf8("fileicon"));
QIcon icon; QIcon icon;
icon.addFile(QStringLiteral("image1.png"), QSize(), QIcon::Normal, QIcon::Off); icon.addFile(QString::fromUtf8("image1.png"), QSize(), QIcon::Normal, QIcon::Off);
fileicon->setIcon(icon); fileicon->setIcon(icon);
verticalLayout->addWidget(fileicon); verticalLayout->addWidget(fileicon);
fileandthemeicon = new QPushButton(Form); fileandthemeicon = new QPushButton(Form);
fileandthemeicon->setObjectName(QStringLiteral("fileandthemeicon")); fileandthemeicon->setObjectName(QString::fromUtf8("fileandthemeicon"));
QIcon icon1; QIcon icon1;
QString iconThemeName = QStringLiteral("edit-copy"); QString iconThemeName = QString::fromUtf8("edit-copy");
if (QIcon::hasThemeIcon(iconThemeName)) { if (QIcon::hasThemeIcon(iconThemeName)) {
icon1 = QIcon::fromTheme(iconThemeName); icon1 = QIcon::fromTheme(iconThemeName);
} else { } else {
icon1.addFile(QStringLiteral("image7.png"), QSize(), QIcon::Normal, QIcon::Off); icon1.addFile(QString::fromUtf8("image7.png"), QSize(), QIcon::Normal, QIcon::Off);
} }
fileandthemeicon->setIcon(icon1); fileandthemeicon->setIcon(icon1);
verticalLayout->addWidget(fileandthemeicon); verticalLayout->addWidget(fileandthemeicon);
themeicon = new QPushButton(Form); themeicon = new QPushButton(Form);
themeicon->setObjectName(QStringLiteral("themeicon")); themeicon->setObjectName(QString::fromUtf8("themeicon"));
QIcon icon2; QIcon icon2;
iconThemeName = QStringLiteral("edit-copy"); iconThemeName = QString::fromUtf8("edit-copy");
if (QIcon::hasThemeIcon(iconThemeName)) { if (QIcon::hasThemeIcon(iconThemeName)) {
icon2 = QIcon::fromTheme(iconThemeName); icon2 = QIcon::fromTheme(iconThemeName);
} else { } else {
icon2.addFile(QStringLiteral(""), QSize(), QIcon::Normal, QIcon::Off); icon2.addFile(QString::fromUtf8(""), QSize(), QIcon::Normal, QIcon::Off);
} }
themeicon->setIcon(icon2); themeicon->setIcon(icon2);

View File

@ -26,12 +26,12 @@ public:
void setupUi(QWidget *Form) void setupUi(QWidget *Form)
{ {
if (Form->objectName().isEmpty()) if (Form->objectName().isEmpty())
Form->setObjectName(QStringLiteral("Form")); Form->setObjectName(QString::fromUtf8("Form"));
Form->resize(400, 300); Form->resize(400, 300);
verticalLayout = new QVBoxLayout(Form); verticalLayout = new QVBoxLayout(Form);
verticalLayout->setObjectName(QStringLiteral("verticalLayout")); verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
pushButton = new QPushButton(Form); pushButton = new QPushButton(Form);
pushButton->setObjectName(QStringLiteral("pushButton")); pushButton->setObjectName(QString::fromUtf8("pushButton"));
verticalLayout->addWidget(pushButton); verticalLayout->addWidget(pushButton);

View File

@ -36,16 +36,16 @@ public:
void setupUi(QWidget *IdentifierPage) void setupUi(QWidget *IdentifierPage)
{ {
if (IdentifierPage->objectName().isEmpty()) if (IdentifierPage->objectName().isEmpty())
IdentifierPage->setObjectName(QStringLiteral("IdentifierPage")); IdentifierPage->setObjectName(QString::fromUtf8("IdentifierPage"));
IdentifierPage->resize(417, 242); IdentifierPage->resize(417, 242);
gridLayout = new QGridLayout(IdentifierPage); gridLayout = new QGridLayout(IdentifierPage);
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
spacerItem = new QSpacerItem(20, 20, QSizePolicy::Minimum, QSizePolicy::Fixed); spacerItem = new QSpacerItem(20, 20, QSizePolicy::Minimum, QSizePolicy::Fixed);
gridLayout->addItem(spacerItem, 0, 1, 1, 1); gridLayout->addItem(spacerItem, 0, 1, 1, 1);
identifierCheckBox = new QCheckBox(IdentifierPage); identifierCheckBox = new QCheckBox(IdentifierPage);
identifierCheckBox->setObjectName(QStringLiteral("identifierCheckBox")); identifierCheckBox->setObjectName(QString::fromUtf8("identifierCheckBox"));
gridLayout->addWidget(identifierCheckBox, 1, 0, 1, 3); gridLayout->addWidget(identifierCheckBox, 1, 0, 1, 3);
@ -58,20 +58,20 @@ public:
gridLayout->addItem(spacerItem2, 2, 0, 1, 1); gridLayout->addItem(spacerItem2, 2, 0, 1, 1);
globalButton = new QRadioButton(IdentifierPage); globalButton = new QRadioButton(IdentifierPage);
globalButton->setObjectName(QStringLiteral("globalButton")); globalButton->setObjectName(QString::fromUtf8("globalButton"));
globalButton->setEnabled(false); globalButton->setEnabled(false);
globalButton->setChecked(true); globalButton->setChecked(true);
gridLayout->addWidget(globalButton, 2, 1, 1, 1); gridLayout->addWidget(globalButton, 2, 1, 1, 1);
prefixLineEdit = new QLineEdit(IdentifierPage); prefixLineEdit = new QLineEdit(IdentifierPage);
prefixLineEdit->setObjectName(QStringLiteral("prefixLineEdit")); prefixLineEdit->setObjectName(QString::fromUtf8("prefixLineEdit"));
prefixLineEdit->setEnabled(false); prefixLineEdit->setEnabled(false);
gridLayout->addWidget(prefixLineEdit, 2, 2, 1, 1); gridLayout->addWidget(prefixLineEdit, 2, 2, 1, 1);
fileNameButton = new QRadioButton(IdentifierPage); fileNameButton = new QRadioButton(IdentifierPage);
fileNameButton->setObjectName(QStringLiteral("fileNameButton")); fileNameButton->setObjectName(QString::fromUtf8("fileNameButton"));
fileNameButton->setEnabled(false); fileNameButton->setEnabled(false);
gridLayout->addWidget(fileNameButton, 3, 1, 1, 2); gridLayout->addWidget(fileNameButton, 3, 1, 1, 2);

View File

@ -46,8 +46,8 @@ public:
void setupUi(QDialog *dialog) void setupUi(QDialog *dialog)
{ {
if (dialog->objectName().isEmpty()) if (dialog->objectName().isEmpty())
dialog->setObjectName(QStringLiteral("dialog")); dialog->setObjectName(QString::fromUtf8("dialog"));
dialog->setObjectName(QStringLiteral("ImageDialog")); dialog->setObjectName(QString::fromUtf8("ImageDialog"));
dialog->resize(320, 180); dialog->resize(320, 180);
vboxLayout = new QVBoxLayout(dialog); vboxLayout = new QVBoxLayout(dialog);
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
@ -56,17 +56,17 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout->setContentsMargins(9, 9, 9, 9); vboxLayout->setContentsMargins(9, 9, 9, 9);
#endif #endif
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
vboxLayout->setObjectName(QStringLiteral("")); vboxLayout->setObjectName(QString::fromUtf8(""));
gridLayout = new QGridLayout(); gridLayout = new QGridLayout();
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
gridLayout->setSpacing(6); gridLayout->setSpacing(6);
#endif #endif
gridLayout->setContentsMargins(1, 1, 1, 1); gridLayout->setContentsMargins(1, 1, 1, 1);
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
gridLayout->setObjectName(QStringLiteral("")); gridLayout->setObjectName(QString::fromUtf8(""));
widthLabel = new QLabel(dialog); widthLabel = new QLabel(dialog);
widthLabel->setObjectName(QStringLiteral("widthLabel")); widthLabel->setObjectName(QString::fromUtf8("widthLabel"));
widthLabel->setGeometry(QRect(1, 27, 67, 22)); widthLabel->setGeometry(QRect(1, 27, 67, 22));
widthLabel->setFrameShape(QFrame::NoFrame); widthLabel->setFrameShape(QFrame::NoFrame);
widthLabel->setFrameShadow(QFrame::Plain); widthLabel->setFrameShadow(QFrame::Plain);
@ -75,7 +75,7 @@ public:
gridLayout->addWidget(widthLabel, 1, 0, 1, 1); gridLayout->addWidget(widthLabel, 1, 0, 1, 1);
heightLabel = new QLabel(dialog); heightLabel = new QLabel(dialog);
heightLabel->setObjectName(QStringLiteral("heightLabel")); heightLabel->setObjectName(QString::fromUtf8("heightLabel"));
heightLabel->setGeometry(QRect(1, 55, 67, 22)); heightLabel->setGeometry(QRect(1, 55, 67, 22));
heightLabel->setFrameShape(QFrame::NoFrame); heightLabel->setFrameShape(QFrame::NoFrame);
heightLabel->setFrameShadow(QFrame::Plain); heightLabel->setFrameShadow(QFrame::Plain);
@ -84,7 +84,7 @@ public:
gridLayout->addWidget(heightLabel, 2, 0, 1, 1); gridLayout->addWidget(heightLabel, 2, 0, 1, 1);
colorDepthCombo = new QComboBox(dialog); colorDepthCombo = new QComboBox(dialog);
colorDepthCombo->setObjectName(QStringLiteral("colorDepthCombo")); colorDepthCombo->setObjectName(QString::fromUtf8("colorDepthCombo"));
colorDepthCombo->setGeometry(QRect(74, 83, 227, 22)); colorDepthCombo->setGeometry(QRect(74, 83, 227, 22));
QSizePolicy sizePolicy(static_cast<QSizePolicy::Policy>(5), static_cast<QSizePolicy::Policy>(0)); QSizePolicy sizePolicy(static_cast<QSizePolicy::Policy>(5), static_cast<QSizePolicy::Policy>(0));
sizePolicy.setHorizontalStretch(0); sizePolicy.setHorizontalStretch(0);
@ -96,7 +96,7 @@ public:
gridLayout->addWidget(colorDepthCombo, 3, 1, 1, 1); gridLayout->addWidget(colorDepthCombo, 3, 1, 1, 1);
nameLineEdit = new QLineEdit(dialog); nameLineEdit = new QLineEdit(dialog);
nameLineEdit->setObjectName(QStringLiteral("nameLineEdit")); nameLineEdit->setObjectName(QString::fromUtf8("nameLineEdit"));
nameLineEdit->setGeometry(QRect(74, 83, 227, 22)); nameLineEdit->setGeometry(QRect(74, 83, 227, 22));
QSizePolicy sizePolicy1(static_cast<QSizePolicy::Policy>(5), static_cast<QSizePolicy::Policy>(0)); QSizePolicy sizePolicy1(static_cast<QSizePolicy::Policy>(5), static_cast<QSizePolicy::Policy>(0));
sizePolicy1.setHorizontalStretch(1); sizePolicy1.setHorizontalStretch(1);
@ -108,7 +108,7 @@ public:
gridLayout->addWidget(nameLineEdit, 0, 1, 1, 1); gridLayout->addWidget(nameLineEdit, 0, 1, 1, 1);
spinBox = new QSpinBox(dialog); spinBox = new QSpinBox(dialog);
spinBox->setObjectName(QStringLiteral("spinBox")); spinBox->setObjectName(QString::fromUtf8("spinBox"));
spinBox->setGeometry(QRect(74, 1, 227, 20)); spinBox->setGeometry(QRect(74, 1, 227, 20));
sizePolicy.setHeightForWidth(spinBox->sizePolicy().hasHeightForWidth()); sizePolicy.setHeightForWidth(spinBox->sizePolicy().hasHeightForWidth());
spinBox->setSizePolicy(sizePolicy); spinBox->setSizePolicy(sizePolicy);
@ -120,7 +120,7 @@ public:
gridLayout->addWidget(spinBox, 1, 1, 1, 1); gridLayout->addWidget(spinBox, 1, 1, 1, 1);
spinBox_2 = new QSpinBox(dialog); spinBox_2 = new QSpinBox(dialog);
spinBox_2->setObjectName(QStringLiteral("spinBox_2")); spinBox_2->setObjectName(QString::fromUtf8("spinBox_2"));
spinBox_2->setGeometry(QRect(74, 27, 227, 22)); spinBox_2->setGeometry(QRect(74, 27, 227, 22));
sizePolicy.setHeightForWidth(spinBox_2->sizePolicy().hasHeightForWidth()); sizePolicy.setHeightForWidth(spinBox_2->sizePolicy().hasHeightForWidth());
spinBox_2->setSizePolicy(sizePolicy); spinBox_2->setSizePolicy(sizePolicy);
@ -132,7 +132,7 @@ public:
gridLayout->addWidget(spinBox_2, 2, 1, 1, 1); gridLayout->addWidget(spinBox_2, 2, 1, 1, 1);
nameLabel = new QLabel(dialog); nameLabel = new QLabel(dialog);
nameLabel->setObjectName(QStringLiteral("nameLabel")); nameLabel->setObjectName(QString::fromUtf8("nameLabel"));
nameLabel->setGeometry(QRect(1, 1, 67, 20)); nameLabel->setGeometry(QRect(1, 1, 67, 20));
nameLabel->setFrameShape(QFrame::NoFrame); nameLabel->setFrameShape(QFrame::NoFrame);
nameLabel->setFrameShadow(QFrame::Plain); nameLabel->setFrameShadow(QFrame::Plain);
@ -141,7 +141,7 @@ public:
gridLayout->addWidget(nameLabel, 0, 0, 1, 1); gridLayout->addWidget(nameLabel, 0, 0, 1, 1);
colorDepthLabel = new QLabel(dialog); colorDepthLabel = new QLabel(dialog);
colorDepthLabel->setObjectName(QStringLiteral("colorDepthLabel")); colorDepthLabel->setObjectName(QString::fromUtf8("colorDepthLabel"));
colorDepthLabel->setGeometry(QRect(1, 83, 67, 22)); colorDepthLabel->setGeometry(QRect(1, 83, 67, 22));
colorDepthLabel->setFrameShape(QFrame::NoFrame); colorDepthLabel->setFrameShape(QFrame::NoFrame);
colorDepthLabel->setFrameShadow(QFrame::Plain); colorDepthLabel->setFrameShadow(QFrame::Plain);
@ -161,20 +161,20 @@ public:
hboxLayout->setSpacing(6); hboxLayout->setSpacing(6);
#endif #endif
hboxLayout->setContentsMargins(1, 1, 1, 1); hboxLayout->setContentsMargins(1, 1, 1, 1);
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
hboxLayout->setObjectName(QStringLiteral("")); hboxLayout->setObjectName(QString::fromUtf8(""));
spacerItem1 = new QSpacerItem(0, 0, QSizePolicy::Expanding, QSizePolicy::Minimum); spacerItem1 = new QSpacerItem(0, 0, QSizePolicy::Expanding, QSizePolicy::Minimum);
hboxLayout->addItem(spacerItem1); hboxLayout->addItem(spacerItem1);
okButton = new QPushButton(dialog); okButton = new QPushButton(dialog);
okButton->setObjectName(QStringLiteral("okButton")); okButton->setObjectName(QString::fromUtf8("okButton"));
okButton->setGeometry(QRect(135, 1, 80, 24)); okButton->setGeometry(QRect(135, 1, 80, 24));
hboxLayout->addWidget(okButton); hboxLayout->addWidget(okButton);
cancelButton = new QPushButton(dialog); cancelButton = new QPushButton(dialog);
cancelButton->setObjectName(QStringLiteral("cancelButton")); cancelButton->setObjectName(QString::fromUtf8("cancelButton"));
cancelButton->setGeometry(QRect(221, 1, 80, 24)); cancelButton->setGeometry(QRect(221, 1, 80, 24));
hboxLayout->addWidget(cancelButton); hboxLayout->addWidget(cancelButton);

View File

@ -35,16 +35,16 @@ public:
void setupUi(QWidget *InputPage) void setupUi(QWidget *InputPage)
{ {
if (InputPage->objectName().isEmpty()) if (InputPage->objectName().isEmpty())
InputPage->setObjectName(QStringLiteral("InputPage")); InputPage->setObjectName(QString::fromUtf8("InputPage"));
InputPage->resize(417, 242); InputPage->resize(417, 242);
gridLayout = new QGridLayout(InputPage); gridLayout = new QGridLayout(InputPage);
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
spacerItem = new QSpacerItem(20, 20, QSizePolicy::Minimum, QSizePolicy::Fixed); spacerItem = new QSpacerItem(20, 20, QSizePolicy::Minimum, QSizePolicy::Fixed);
gridLayout->addItem(spacerItem, 0, 2, 1, 1); gridLayout->addItem(spacerItem, 0, 2, 1, 1);
label = new QLabel(InputPage); label = new QLabel(InputPage);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
QSizePolicy sizePolicy(QSizePolicy::Maximum, QSizePolicy::Preferred); QSizePolicy sizePolicy(QSizePolicy::Maximum, QSizePolicy::Preferred);
sizePolicy.setHorizontalStretch(0); sizePolicy.setHorizontalStretch(0);
sizePolicy.setVerticalStretch(0); sizePolicy.setVerticalStretch(0);
@ -55,14 +55,14 @@ public:
hboxLayout = new QHBoxLayout(); hboxLayout = new QHBoxLayout();
hboxLayout->setSpacing(0); hboxLayout->setSpacing(0);
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
fileLineEdit = new QLineEdit(InputPage); fileLineEdit = new QLineEdit(InputPage);
fileLineEdit->setObjectName(QStringLiteral("fileLineEdit")); fileLineEdit->setObjectName(QString::fromUtf8("fileLineEdit"));
hboxLayout->addWidget(fileLineEdit); hboxLayout->addWidget(fileLineEdit);
browseButton = new QToolButton(InputPage); browseButton = new QToolButton(InputPage);
browseButton->setObjectName(QStringLiteral("browseButton")); browseButton->setObjectName(QString::fromUtf8("browseButton"));
hboxLayout->addWidget(browseButton); hboxLayout->addWidget(browseButton);

View File

@ -44,32 +44,32 @@ public:
void setupUi(QDialog *InstallDialog) void setupUi(QDialog *InstallDialog)
{ {
if (InstallDialog->objectName().isEmpty()) if (InstallDialog->objectName().isEmpty())
InstallDialog->setObjectName(QStringLiteral("InstallDialog")); InstallDialog->setObjectName(QString::fromUtf8("InstallDialog"));
InstallDialog->resize(436, 245); InstallDialog->resize(436, 245);
gridLayout = new QGridLayout(InstallDialog); gridLayout = new QGridLayout(InstallDialog);
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
label = new QLabel(InstallDialog); label = new QLabel(InstallDialog);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
gridLayout->addWidget(label, 0, 0, 1, 4); gridLayout->addWidget(label, 0, 0, 1, 4);
listWidget = new QListWidget(InstallDialog); listWidget = new QListWidget(InstallDialog);
listWidget->setObjectName(QStringLiteral("listWidget")); listWidget->setObjectName(QString::fromUtf8("listWidget"));
gridLayout->addWidget(listWidget, 1, 0, 4, 4); gridLayout->addWidget(listWidget, 1, 0, 4, 4);
installButton = new QPushButton(InstallDialog); installButton = new QPushButton(InstallDialog);
installButton->setObjectName(QStringLiteral("installButton")); installButton->setObjectName(QString::fromUtf8("installButton"));
gridLayout->addWidget(installButton, 1, 4, 1, 1); gridLayout->addWidget(installButton, 1, 4, 1, 1);
cancelButton = new QPushButton(InstallDialog); cancelButton = new QPushButton(InstallDialog);
cancelButton->setObjectName(QStringLiteral("cancelButton")); cancelButton->setObjectName(QString::fromUtf8("cancelButton"));
gridLayout->addWidget(cancelButton, 2, 4, 1, 1); gridLayout->addWidget(cancelButton, 2, 4, 1, 1);
closeButton = new QPushButton(InstallDialog); closeButton = new QPushButton(InstallDialog);
closeButton->setObjectName(QStringLiteral("closeButton")); closeButton->setObjectName(QString::fromUtf8("closeButton"));
gridLayout->addWidget(closeButton, 3, 4, 1, 1); gridLayout->addWidget(closeButton, 3, 4, 1, 1);
@ -78,34 +78,34 @@ public:
gridLayout->addItem(spacerItem, 4, 4, 1, 1); gridLayout->addItem(spacerItem, 4, 4, 1, 1);
label_4 = new QLabel(InstallDialog); label_4 = new QLabel(InstallDialog);
label_4->setObjectName(QStringLiteral("label_4")); label_4->setObjectName(QString::fromUtf8("label_4"));
gridLayout->addWidget(label_4, 5, 0, 1, 1); gridLayout->addWidget(label_4, 5, 0, 1, 1);
pathLineEdit = new QLineEdit(InstallDialog); pathLineEdit = new QLineEdit(InstallDialog);
pathLineEdit->setObjectName(QStringLiteral("pathLineEdit")); pathLineEdit->setObjectName(QString::fromUtf8("pathLineEdit"));
gridLayout->addWidget(pathLineEdit, 5, 1, 1, 2); gridLayout->addWidget(pathLineEdit, 5, 1, 1, 2);
browseButton = new QToolButton(InstallDialog); browseButton = new QToolButton(InstallDialog);
browseButton->setObjectName(QStringLiteral("browseButton")); browseButton->setObjectName(QString::fromUtf8("browseButton"));
gridLayout->addWidget(browseButton, 5, 3, 1, 1); gridLayout->addWidget(browseButton, 5, 3, 1, 1);
line = new QFrame(InstallDialog); line = new QFrame(InstallDialog);
line->setObjectName(QStringLiteral("line")); line->setObjectName(QString::fromUtf8("line"));
line->setFrameShape(QFrame::HLine); line->setFrameShape(QFrame::HLine);
line->setFrameShadow(QFrame::Sunken); line->setFrameShadow(QFrame::Sunken);
gridLayout->addWidget(line, 6, 0, 1, 5); gridLayout->addWidget(line, 6, 0, 1, 5);
statusLabel = new QLabel(InstallDialog); statusLabel = new QLabel(InstallDialog);
statusLabel->setObjectName(QStringLiteral("statusLabel")); statusLabel->setObjectName(QString::fromUtf8("statusLabel"));
gridLayout->addWidget(statusLabel, 7, 0, 1, 2); gridLayout->addWidget(statusLabel, 7, 0, 1, 2);
progressBar = new QProgressBar(InstallDialog); progressBar = new QProgressBar(InstallDialog);
progressBar->setObjectName(QStringLiteral("progressBar")); progressBar->setObjectName(QString::fromUtf8("progressBar"));
progressBar->setValue(0); progressBar->setValue(0);
progressBar->setOrientation(Qt::Horizontal); progressBar->setOrientation(Qt::Horizontal);

View File

@ -39,50 +39,50 @@ public:
void setupUi(QDialog *LanguagesDialog) void setupUi(QDialog *LanguagesDialog)
{ {
if (LanguagesDialog->objectName().isEmpty()) if (LanguagesDialog->objectName().isEmpty())
LanguagesDialog->setObjectName(QStringLiteral("LanguagesDialog")); LanguagesDialog->setObjectName(QString::fromUtf8("LanguagesDialog"));
LanguagesDialog->resize(400, 300); LanguagesDialog->resize(400, 300);
verticalLayout = new QVBoxLayout(LanguagesDialog); verticalLayout = new QVBoxLayout(LanguagesDialog);
verticalLayout->setObjectName(QStringLiteral("verticalLayout")); verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
languagesList = new QTreeWidget(LanguagesDialog); languagesList = new QTreeWidget(LanguagesDialog);
languagesList->setObjectName(QStringLiteral("languagesList")); languagesList->setObjectName(QString::fromUtf8("languagesList"));
languagesList->setIndentation(0); languagesList->setIndentation(0);
verticalLayout->addWidget(languagesList); verticalLayout->addWidget(languagesList);
hboxLayout = new QHBoxLayout(); hboxLayout = new QHBoxLayout();
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
upButton = new QToolButton(LanguagesDialog); upButton = new QToolButton(LanguagesDialog);
upButton->setObjectName(QStringLiteral("upButton")); upButton->setObjectName(QString::fromUtf8("upButton"));
upButton->setEnabled(false); upButton->setEnabled(false);
QIcon icon; QIcon icon;
icon.addFile(QStringLiteral(":/images/up.png"), QSize(), QIcon::Normal, QIcon::Off); icon.addFile(QString::fromUtf8(":/images/up.png"), QSize(), QIcon::Normal, QIcon::Off);
upButton->setIcon(icon); upButton->setIcon(icon);
hboxLayout->addWidget(upButton); hboxLayout->addWidget(upButton);
downButton = new QToolButton(LanguagesDialog); downButton = new QToolButton(LanguagesDialog);
downButton->setObjectName(QStringLiteral("downButton")); downButton->setObjectName(QString::fromUtf8("downButton"));
downButton->setEnabled(false); downButton->setEnabled(false);
QIcon icon1; QIcon icon1;
icon1.addFile(QStringLiteral(":/images/down.png"), QSize(), QIcon::Normal, QIcon::Off); icon1.addFile(QString::fromUtf8(":/images/down.png"), QSize(), QIcon::Normal, QIcon::Off);
downButton->setIcon(icon1); downButton->setIcon(icon1);
hboxLayout->addWidget(downButton); hboxLayout->addWidget(downButton);
removeButton = new QToolButton(LanguagesDialog); removeButton = new QToolButton(LanguagesDialog);
removeButton->setObjectName(QStringLiteral("removeButton")); removeButton->setObjectName(QString::fromUtf8("removeButton"));
removeButton->setEnabled(false); removeButton->setEnabled(false);
QIcon icon2; QIcon icon2;
icon2.addFile(QStringLiteral(":/images/editdelete.png"), QSize(), QIcon::Normal, QIcon::Off); icon2.addFile(QString::fromUtf8(":/images/editdelete.png"), QSize(), QIcon::Normal, QIcon::Off);
removeButton->setIcon(icon2); removeButton->setIcon(icon2);
hboxLayout->addWidget(removeButton); hboxLayout->addWidget(removeButton);
openFileButton = new QToolButton(LanguagesDialog); openFileButton = new QToolButton(LanguagesDialog);
openFileButton->setObjectName(QStringLiteral("openFileButton")); openFileButton->setObjectName(QString::fromUtf8("openFileButton"));
openFileButton->setEnabled(true); openFileButton->setEnabled(true);
QIcon icon3; QIcon icon3;
icon3.addFile(QStringLiteral(":/images/mac/fileopen.png"), QSize(), QIcon::Normal, QIcon::Off); icon3.addFile(QString::fromUtf8(":/images/mac/fileopen.png"), QSize(), QIcon::Normal, QIcon::Off);
openFileButton->setIcon(icon3); openFileButton->setIcon(icon3);
hboxLayout->addWidget(openFileButton); hboxLayout->addWidget(openFileButton);
@ -92,7 +92,7 @@ public:
hboxLayout->addItem(spacerItem); hboxLayout->addItem(spacerItem);
okButton = new QPushButton(LanguagesDialog); okButton = new QPushButton(LanguagesDialog);
okButton->setObjectName(QStringLiteral("okButton")); okButton->setObjectName(QString::fromUtf8("okButton"));
hboxLayout->addWidget(okButton); hboxLayout->addWidget(okButton);

View File

@ -79,7 +79,7 @@ public:
void setupUi(QDialog *qdesigner_internal__ListWidgetEditor) void setupUi(QDialog *qdesigner_internal__ListWidgetEditor)
{ {
if (qdesigner_internal__ListWidgetEditor->objectName().isEmpty()) if (qdesigner_internal__ListWidgetEditor->objectName().isEmpty())
qdesigner_internal__ListWidgetEditor->setObjectName(QStringLiteral("qdesigner_internal__ListWidgetEditor")); qdesigner_internal__ListWidgetEditor->setObjectName(QString::fromUtf8("qdesigner_internal__ListWidgetEditor"));
qdesigner_internal__ListWidgetEditor->resize(223, 245); qdesigner_internal__ListWidgetEditor->resize(223, 245);
vboxLayout = new QVBoxLayout(qdesigner_internal__ListWidgetEditor); vboxLayout = new QVBoxLayout(qdesigner_internal__ListWidgetEditor);
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
@ -88,25 +88,25 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout->setContentsMargins(9, 9, 9, 9); vboxLayout->setContentsMargins(9, 9, 9, 9);
#endif #endif
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
groupBox = new QGroupBox(qdesigner_internal__ListWidgetEditor); groupBox = new QGroupBox(qdesigner_internal__ListWidgetEditor);
groupBox->setObjectName(QStringLiteral("groupBox")); groupBox->setObjectName(QString::fromUtf8("groupBox"));
gridLayout = new QGridLayout(groupBox); gridLayout = new QGridLayout(groupBox);
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
listWidget = new QListWidget(groupBox); listWidget = new QListWidget(groupBox);
listWidget->setObjectName(QStringLiteral("listWidget")); listWidget->setObjectName(QString::fromUtf8("listWidget"));
gridLayout->addWidget(listWidget, 0, 0, 1, 1); gridLayout->addWidget(listWidget, 0, 0, 1, 1);
horizontalLayout_2 = new QHBoxLayout(); horizontalLayout_2 = new QHBoxLayout();
horizontalLayout_2->setObjectName(QStringLiteral("horizontalLayout_2")); horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2"));
newItemButton = new QToolButton(groupBox); newItemButton = new QToolButton(groupBox);
newItemButton->setObjectName(QStringLiteral("newItemButton")); newItemButton->setObjectName(QString::fromUtf8("newItemButton"));
horizontalLayout_2->addWidget(newItemButton); horizontalLayout_2->addWidget(newItemButton);
deleteItemButton = new QToolButton(groupBox); deleteItemButton = new QToolButton(groupBox);
deleteItemButton->setObjectName(QStringLiteral("deleteItemButton")); deleteItemButton->setObjectName(QString::fromUtf8("deleteItemButton"));
horizontalLayout_2->addWidget(deleteItemButton); horizontalLayout_2->addWidget(deleteItemButton);
@ -115,12 +115,12 @@ public:
horizontalLayout_2->addItem(spacerItem); horizontalLayout_2->addItem(spacerItem);
moveItemUpButton = new QToolButton(groupBox); moveItemUpButton = new QToolButton(groupBox);
moveItemUpButton->setObjectName(QStringLiteral("moveItemUpButton")); moveItemUpButton->setObjectName(QString::fromUtf8("moveItemUpButton"));
horizontalLayout_2->addWidget(moveItemUpButton); horizontalLayout_2->addWidget(moveItemUpButton);
moveItemDownButton = new QToolButton(groupBox); moveItemDownButton = new QToolButton(groupBox);
moveItemDownButton->setObjectName(QStringLiteral("moveItemDownButton")); moveItemDownButton->setObjectName(QString::fromUtf8("moveItemDownButton"));
horizontalLayout_2->addWidget(moveItemDownButton); horizontalLayout_2->addWidget(moveItemDownButton);
@ -128,14 +128,14 @@ public:
gridLayout->addLayout(horizontalLayout_2, 1, 0, 1, 1); gridLayout->addLayout(horizontalLayout_2, 1, 0, 1, 1);
horizontalLayout = new QHBoxLayout(); horizontalLayout = new QHBoxLayout();
horizontalLayout->setObjectName(QStringLiteral("horizontalLayout")); horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
label = new QLabel(groupBox); label = new QLabel(groupBox);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
horizontalLayout->addWidget(label); horizontalLayout->addWidget(label);
itemIconSelector = new qdesigner_internal::IconSelector(groupBox); itemIconSelector = new qdesigner_internal::IconSelector(groupBox);
itemIconSelector->setObjectName(QStringLiteral("itemIconSelector")); itemIconSelector->setObjectName(QString::fromUtf8("itemIconSelector"));
horizontalLayout->addWidget(itemIconSelector); horizontalLayout->addWidget(itemIconSelector);
@ -150,7 +150,7 @@ public:
vboxLayout->addWidget(groupBox); vboxLayout->addWidget(groupBox);
buttonBox = new QDialogButtonBox(qdesigner_internal__ListWidgetEditor); buttonBox = new QDialogButtonBox(qdesigner_internal__ListWidgetEditor);
buttonBox->setObjectName(QStringLiteral("buttonBox")); buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setOrientation(Qt::Horizontal); buttonBox->setOrientation(Qt::Horizontal);
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok); buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);

View File

@ -86,14 +86,14 @@ public:
void setupUi(QMainWindow *MainWindow) void setupUi(QMainWindow *MainWindow)
{ {
if (MainWindow->objectName().isEmpty()) if (MainWindow->objectName().isEmpty())
MainWindow->setObjectName(QStringLiteral("MainWindow")); MainWindow->setObjectName(QString::fromUtf8("MainWindow"));
MainWindow->resize(829, 813); MainWindow->resize(829, 813);
actionAdd_Custom_Font = new QAction(MainWindow); actionAdd_Custom_Font = new QAction(MainWindow);
actionAdd_Custom_Font->setObjectName(QStringLiteral("actionAdd_Custom_Font")); actionAdd_Custom_Font->setObjectName(QString::fromUtf8("actionAdd_Custom_Font"));
action_Exit = new QAction(MainWindow); action_Exit = new QAction(MainWindow);
action_Exit->setObjectName(QStringLiteral("action_Exit")); action_Exit->setObjectName(QString::fromUtf8("action_Exit"));
centralwidget = new QWidget(MainWindow); centralwidget = new QWidget(MainWindow);
centralwidget->setObjectName(QStringLiteral("centralwidget")); centralwidget->setObjectName(QString::fromUtf8("centralwidget"));
vboxLayout = new QVBoxLayout(centralwidget); vboxLayout = new QVBoxLayout(centralwidget);
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout->setSpacing(6); vboxLayout->setSpacing(6);
@ -101,9 +101,9 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout->setContentsMargins(9, 9, 9, 9); vboxLayout->setContentsMargins(9, 9, 9, 9);
#endif #endif
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
groupBox = new QGroupBox(centralwidget); groupBox = new QGroupBox(centralwidget);
groupBox->setObjectName(QStringLiteral("groupBox")); groupBox->setObjectName(QString::fromUtf8("groupBox"));
hboxLayout = new QHBoxLayout(groupBox); hboxLayout = new QHBoxLayout(groupBox);
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
hboxLayout->setSpacing(6); hboxLayout->setSpacing(6);
@ -111,40 +111,40 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
hboxLayout->setContentsMargins(9, 9, 9, 9); hboxLayout->setContentsMargins(9, 9, 9, 9);
#endif #endif
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
label = new QLabel(groupBox); label = new QLabel(groupBox);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
hboxLayout->addWidget(label); hboxLayout->addWidget(label);
fontComboBox = new QFontComboBox(groupBox); fontComboBox = new QFontComboBox(groupBox);
fontComboBox->setObjectName(QStringLiteral("fontComboBox")); fontComboBox->setObjectName(QString::fromUtf8("fontComboBox"));
hboxLayout->addWidget(fontComboBox); hboxLayout->addWidget(fontComboBox);
label_2 = new QLabel(groupBox); label_2 = new QLabel(groupBox);
label_2->setObjectName(QStringLiteral("label_2")); label_2->setObjectName(QString::fromUtf8("label_2"));
hboxLayout->addWidget(label_2); hboxLayout->addWidget(label_2);
pixelSize = new QSpinBox(groupBox); pixelSize = new QSpinBox(groupBox);
pixelSize->setObjectName(QStringLiteral("pixelSize")); pixelSize->setObjectName(QString::fromUtf8("pixelSize"));
pixelSize->setMinimum(1); pixelSize->setMinimum(1);
hboxLayout->addWidget(pixelSize); hboxLayout->addWidget(pixelSize);
label_7 = new QLabel(groupBox); label_7 = new QLabel(groupBox);
label_7->setObjectName(QStringLiteral("label_7")); label_7->setObjectName(QString::fromUtf8("label_7"));
hboxLayout->addWidget(label_7); hboxLayout->addWidget(label_7);
weightCombo = new QComboBox(groupBox); weightCombo = new QComboBox(groupBox);
weightCombo->setObjectName(QStringLiteral("weightCombo")); weightCombo->setObjectName(QString::fromUtf8("weightCombo"));
hboxLayout->addWidget(weightCombo); hboxLayout->addWidget(weightCombo);
italic = new QCheckBox(groupBox); italic = new QCheckBox(groupBox);
italic->setObjectName(QStringLiteral("italic")); italic->setObjectName(QString::fromUtf8("italic"));
hboxLayout->addWidget(italic); hboxLayout->addWidget(italic);
@ -156,7 +156,7 @@ public:
vboxLayout->addWidget(groupBox); vboxLayout->addWidget(groupBox);
groupBox_2 = new QGroupBox(centralwidget); groupBox_2 = new QGroupBox(centralwidget);
groupBox_2->setObjectName(QStringLiteral("groupBox_2")); groupBox_2->setObjectName(QString::fromUtf8("groupBox_2"));
vboxLayout1 = new QVBoxLayout(groupBox_2); vboxLayout1 = new QVBoxLayout(groupBox_2);
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout1->setSpacing(6); vboxLayout1->setSpacing(6);
@ -164,9 +164,9 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout1->setContentsMargins(9, 9, 9, 9); vboxLayout1->setContentsMargins(9, 9, 9, 9);
#endif #endif
vboxLayout1->setObjectName(QStringLiteral("vboxLayout1")); vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1"));
chooseFromCodePoints = new QRadioButton(groupBox_2); chooseFromCodePoints = new QRadioButton(groupBox_2);
chooseFromCodePoints->setObjectName(QStringLiteral("chooseFromCodePoints")); chooseFromCodePoints->setObjectName(QString::fromUtf8("chooseFromCodePoints"));
chooseFromCodePoints->setChecked(true); chooseFromCodePoints->setChecked(true);
vboxLayout1->addWidget(chooseFromCodePoints); vboxLayout1->addWidget(chooseFromCodePoints);
@ -176,9 +176,9 @@ public:
vboxLayout2->setSpacing(6); vboxLayout2->setSpacing(6);
#endif #endif
vboxLayout2->setContentsMargins(0, 0, 0, 0); vboxLayout2->setContentsMargins(0, 0, 0, 0);
vboxLayout2->setObjectName(QStringLiteral("vboxLayout2")); vboxLayout2->setObjectName(QString::fromUtf8("vboxLayout2"));
characterRangeView = new QListWidget(groupBox_2); characterRangeView = new QListWidget(groupBox_2);
characterRangeView->setObjectName(QStringLiteral("characterRangeView")); characterRangeView->setObjectName(QString::fromUtf8("characterRangeView"));
vboxLayout2->addWidget(characterRangeView); vboxLayout2->addWidget(characterRangeView);
@ -187,19 +187,19 @@ public:
hboxLayout1->setSpacing(6); hboxLayout1->setSpacing(6);
#endif #endif
hboxLayout1->setContentsMargins(0, 0, 0, 0); hboxLayout1->setContentsMargins(0, 0, 0, 0);
hboxLayout1->setObjectName(QStringLiteral("hboxLayout1")); hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
selectAll = new QPushButton(groupBox_2); selectAll = new QPushButton(groupBox_2);
selectAll->setObjectName(QStringLiteral("selectAll")); selectAll->setObjectName(QString::fromUtf8("selectAll"));
hboxLayout1->addWidget(selectAll); hboxLayout1->addWidget(selectAll);
deselectAll = new QPushButton(groupBox_2); deselectAll = new QPushButton(groupBox_2);
deselectAll->setObjectName(QStringLiteral("deselectAll")); deselectAll->setObjectName(QString::fromUtf8("deselectAll"));
hboxLayout1->addWidget(deselectAll); hboxLayout1->addWidget(deselectAll);
invertSelection = new QPushButton(groupBox_2); invertSelection = new QPushButton(groupBox_2);
invertSelection->setObjectName(QStringLiteral("invertSelection")); invertSelection->setObjectName(QString::fromUtf8("invertSelection"));
hboxLayout1->addWidget(invertSelection); hboxLayout1->addWidget(invertSelection);
@ -214,7 +214,7 @@ public:
vboxLayout1->addLayout(vboxLayout2); vboxLayout1->addLayout(vboxLayout2);
chooseFromSampleFile = new QRadioButton(groupBox_2); chooseFromSampleFile = new QRadioButton(groupBox_2);
chooseFromSampleFile->setObjectName(QStringLiteral("chooseFromSampleFile")); chooseFromSampleFile->setObjectName(QString::fromUtf8("chooseFromSampleFile"));
vboxLayout1->addWidget(chooseFromSampleFile); vboxLayout1->addWidget(chooseFromSampleFile);
@ -223,27 +223,27 @@ public:
hboxLayout2->setSpacing(6); hboxLayout2->setSpacing(6);
#endif #endif
hboxLayout2->setContentsMargins(0, 0, 0, 0); hboxLayout2->setContentsMargins(0, 0, 0, 0);
hboxLayout2->setObjectName(QStringLiteral("hboxLayout2")); hboxLayout2->setObjectName(QString::fromUtf8("hboxLayout2"));
label_5 = new QLabel(groupBox_2); label_5 = new QLabel(groupBox_2);
label_5->setObjectName(QStringLiteral("label_5")); label_5->setObjectName(QString::fromUtf8("label_5"));
label_5->setEnabled(false); label_5->setEnabled(false);
hboxLayout2->addWidget(label_5); hboxLayout2->addWidget(label_5);
sampleFile = new QLineEdit(groupBox_2); sampleFile = new QLineEdit(groupBox_2);
sampleFile->setObjectName(QStringLiteral("sampleFile")); sampleFile->setObjectName(QString::fromUtf8("sampleFile"));
sampleFile->setEnabled(false); sampleFile->setEnabled(false);
hboxLayout2->addWidget(sampleFile); hboxLayout2->addWidget(sampleFile);
browseSampleFile = new QPushButton(groupBox_2); browseSampleFile = new QPushButton(groupBox_2);
browseSampleFile->setObjectName(QStringLiteral("browseSampleFile")); browseSampleFile->setObjectName(QString::fromUtf8("browseSampleFile"));
browseSampleFile->setEnabled(false); browseSampleFile->setEnabled(false);
hboxLayout2->addWidget(browseSampleFile); hboxLayout2->addWidget(browseSampleFile);
charCount = new QLabel(groupBox_2); charCount = new QLabel(groupBox_2);
charCount->setObjectName(QStringLiteral("charCount")); charCount->setObjectName(QString::fromUtf8("charCount"));
charCount->setEnabled(false); charCount->setEnabled(false);
hboxLayout2->addWidget(charCount); hboxLayout2->addWidget(charCount);
@ -255,7 +255,7 @@ public:
vboxLayout->addWidget(groupBox_2); vboxLayout->addWidget(groupBox_2);
groupBox_3 = new QGroupBox(centralwidget); groupBox_3 = new QGroupBox(centralwidget);
groupBox_3->setObjectName(QStringLiteral("groupBox_3")); groupBox_3->setObjectName(QString::fromUtf8("groupBox_3"));
hboxLayout3 = new QHBoxLayout(groupBox_3); hboxLayout3 = new QHBoxLayout(groupBox_3);
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
hboxLayout3->setSpacing(6); hboxLayout3->setSpacing(6);
@ -263,9 +263,9 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
hboxLayout3->setContentsMargins(9, 9, 9, 9); hboxLayout3->setContentsMargins(9, 9, 9, 9);
#endif #endif
hboxLayout3->setObjectName(QStringLiteral("hboxLayout3")); hboxLayout3->setObjectName(QString::fromUtf8("hboxLayout3"));
preview = new QLineEdit(groupBox_3); preview = new QLineEdit(groupBox_3);
preview->setObjectName(QStringLiteral("preview")); preview->setObjectName(QString::fromUtf8("preview"));
hboxLayout3->addWidget(preview); hboxLayout3->addWidget(preview);
@ -273,7 +273,7 @@ public:
vboxLayout->addWidget(groupBox_3); vboxLayout->addWidget(groupBox_3);
groupBox_4 = new QGroupBox(centralwidget); groupBox_4 = new QGroupBox(centralwidget);
groupBox_4->setObjectName(QStringLiteral("groupBox_4")); groupBox_4->setObjectName(QString::fromUtf8("groupBox_4"));
hboxLayout4 = new QHBoxLayout(groupBox_4); hboxLayout4 = new QHBoxLayout(groupBox_4);
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
hboxLayout4->setSpacing(6); hboxLayout4->setSpacing(6);
@ -281,29 +281,29 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
hboxLayout4->setContentsMargins(9, 9, 9, 9); hboxLayout4->setContentsMargins(9, 9, 9, 9);
#endif #endif
hboxLayout4->setObjectName(QStringLiteral("hboxLayout4")); hboxLayout4->setObjectName(QString::fromUtf8("hboxLayout4"));
label_3 = new QLabel(groupBox_4); label_3 = new QLabel(groupBox_4);
label_3->setObjectName(QStringLiteral("label_3")); label_3->setObjectName(QString::fromUtf8("label_3"));
hboxLayout4->addWidget(label_3); hboxLayout4->addWidget(label_3);
path = new QLineEdit(groupBox_4); path = new QLineEdit(groupBox_4);
path->setObjectName(QStringLiteral("path")); path->setObjectName(QString::fromUtf8("path"));
hboxLayout4->addWidget(path); hboxLayout4->addWidget(path);
browsePath = new QPushButton(groupBox_4); browsePath = new QPushButton(groupBox_4);
browsePath->setObjectName(QStringLiteral("browsePath")); browsePath->setObjectName(QString::fromUtf8("browsePath"));
hboxLayout4->addWidget(browsePath); hboxLayout4->addWidget(browsePath);
label_4 = new QLabel(groupBox_4); label_4 = new QLabel(groupBox_4);
label_4->setObjectName(QStringLiteral("label_4")); label_4->setObjectName(QString::fromUtf8("label_4"));
hboxLayout4->addWidget(label_4); hboxLayout4->addWidget(label_4);
fileName = new QLineEdit(groupBox_4); fileName = new QLineEdit(groupBox_4);
fileName->setObjectName(QStringLiteral("fileName")); fileName->setObjectName(QString::fromUtf8("fileName"));
fileName->setEnabled(false); fileName->setEnabled(false);
hboxLayout4->addWidget(fileName); hboxLayout4->addWidget(fileName);
@ -316,9 +316,9 @@ public:
hboxLayout5->setSpacing(6); hboxLayout5->setSpacing(6);
#endif #endif
hboxLayout5->setContentsMargins(0, 0, 0, 0); hboxLayout5->setContentsMargins(0, 0, 0, 0);
hboxLayout5->setObjectName(QStringLiteral("hboxLayout5")); hboxLayout5->setObjectName(QString::fromUtf8("hboxLayout5"));
generate = new QPushButton(centralwidget); generate = new QPushButton(centralwidget);
generate->setObjectName(QStringLiteral("generate")); generate->setObjectName(QString::fromUtf8("generate"));
hboxLayout5->addWidget(generate); hboxLayout5->addWidget(generate);
@ -331,13 +331,13 @@ public:
MainWindow->setCentralWidget(centralwidget); MainWindow->setCentralWidget(centralwidget);
menubar = new QMenuBar(MainWindow); menubar = new QMenuBar(MainWindow);
menubar->setObjectName(QStringLiteral("menubar")); menubar->setObjectName(QString::fromUtf8("menubar"));
menubar->setGeometry(QRect(0, 0, 829, 29)); menubar->setGeometry(QRect(0, 0, 829, 29));
menuFile = new QMenu(menubar); menuFile = new QMenu(menubar);
menuFile->setObjectName(QStringLiteral("menuFile")); menuFile->setObjectName(QString::fromUtf8("menuFile"));
MainWindow->setMenuBar(menubar); MainWindow->setMenuBar(menubar);
statusbar = new QStatusBar(MainWindow); statusbar = new QStatusBar(MainWindow);
statusbar->setObjectName(QStringLiteral("statusbar")); statusbar->setObjectName(QString::fromUtf8("statusbar"));
MainWindow->setStatusBar(statusbar); MainWindow->setStatusBar(statusbar);
menubar->addAction(menuFile->menuAction()); menubar->addAction(menuFile->menuAction());

View File

@ -28,7 +28,7 @@ public:
void setupUi(QDialog *MyDialog) void setupUi(QDialog *MyDialog)
{ {
if (MyDialog->objectName().isEmpty()) if (MyDialog->objectName().isEmpty())
MyDialog->setObjectName(QStringLiteral("MyDialog")); MyDialog->setObjectName(QString::fromUtf8("MyDialog"));
MyDialog->resize(401, 70); MyDialog->resize(401, 70);
vboxLayout = new QVBoxLayout(MyDialog); vboxLayout = new QVBoxLayout(MyDialog);
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
@ -37,14 +37,14 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout->setContentsMargins(9, 9, 9, 9); vboxLayout->setContentsMargins(9, 9, 9, 9);
#endif #endif
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
aLabel = new QLabel(MyDialog); aLabel = new QLabel(MyDialog);
aLabel->setObjectName(QStringLiteral("aLabel")); aLabel->setObjectName(QString::fromUtf8("aLabel"));
vboxLayout->addWidget(aLabel); vboxLayout->addWidget(aLabel);
aButton = new QPushButton(MyDialog); aButton = new QPushButton(MyDialog);
aButton->setObjectName(QStringLiteral("aButton")); aButton->setObjectName(QString::fromUtf8("aButton"));
vboxLayout->addWidget(aButton); vboxLayout->addWidget(aButton);

View File

@ -41,35 +41,35 @@ public:
void setupUi(QWidget *Form) void setupUi(QWidget *Form)
{ {
if (Form->objectName().isEmpty()) if (Form->objectName().isEmpty())
Form->setObjectName(QStringLiteral("Form")); Form->setObjectName(QString::fromUtf8("Form"));
Form->resize(258, 224); Form->resize(258, 224);
vboxLayout = new QVBoxLayout(Form); vboxLayout = new QVBoxLayout(Form);
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout->setSpacing(6); vboxLayout->setSpacing(6);
#endif #endif
vboxLayout->setContentsMargins(8, 8, 8, 8); vboxLayout->setContentsMargins(8, 8, 8, 8);
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
groupBox = new QGroupBox(Form); groupBox = new QGroupBox(Form);
groupBox->setObjectName(QStringLiteral("groupBox")); groupBox->setObjectName(QString::fromUtf8("groupBox"));
gridLayout = new QGridLayout(groupBox); gridLayout = new QGridLayout(groupBox);
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
gridLayout->setSpacing(6); gridLayout->setSpacing(6);
#endif #endif
gridLayout->setContentsMargins(8, 8, 8, 8); gridLayout->setContentsMargins(8, 8, 8, 8);
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
radioButton_2 = new QRadioButton(groupBox); radioButton_2 = new QRadioButton(groupBox);
radioButton_2->setObjectName(QStringLiteral("radioButton_2")); radioButton_2->setObjectName(QString::fromUtf8("radioButton_2"));
gridLayout->addWidget(radioButton_2, 1, 0, 1, 1); gridLayout->addWidget(radioButton_2, 1, 0, 1, 1);
radioButton = new QRadioButton(groupBox); radioButton = new QRadioButton(groupBox);
radioButton->setObjectName(QStringLiteral("radioButton")); radioButton->setObjectName(QString::fromUtf8("radioButton"));
radioButton->setChecked(true); radioButton->setChecked(true);
gridLayout->addWidget(radioButton, 0, 0, 1, 1); gridLayout->addWidget(radioButton, 0, 0, 1, 1);
checkBox_2 = new QCheckBox(groupBox); checkBox_2 = new QCheckBox(groupBox);
checkBox_2->setObjectName(QStringLiteral("checkBox_2")); checkBox_2->setObjectName(QString::fromUtf8("checkBox_2"));
checkBox_2->setChecked(true); checkBox_2->setChecked(true);
gridLayout->addWidget(checkBox_2, 1, 1, 1, 1); gridLayout->addWidget(checkBox_2, 1, 1, 1, 1);
@ -79,32 +79,32 @@ public:
gridLayout->addItem(spacerItem, 5, 0, 1, 1); gridLayout->addItem(spacerItem, 5, 0, 1, 1);
checkBox = new QCheckBox(groupBox); checkBox = new QCheckBox(groupBox);
checkBox->setObjectName(QStringLiteral("checkBox")); checkBox->setObjectName(QString::fromUtf8("checkBox"));
gridLayout->addWidget(checkBox, 0, 1, 1, 1); gridLayout->addWidget(checkBox, 0, 1, 1, 1);
radioButton_2_2 = new QRadioButton(groupBox); radioButton_2_2 = new QRadioButton(groupBox);
radioButton_2_2->setObjectName(QStringLiteral("radioButton_2_2")); radioButton_2_2->setObjectName(QString::fromUtf8("radioButton_2_2"));
gridLayout->addWidget(radioButton_2_2, 2, 0, 1, 1); gridLayout->addWidget(radioButton_2_2, 2, 0, 1, 1);
radioButton_3 = new QRadioButton(groupBox); radioButton_3 = new QRadioButton(groupBox);
radioButton_3->setObjectName(QStringLiteral("radioButton_3")); radioButton_3->setObjectName(QString::fromUtf8("radioButton_3"));
gridLayout->addWidget(radioButton_3, 3, 0, 1, 1); gridLayout->addWidget(radioButton_3, 3, 0, 1, 1);
radioButton_4 = new QRadioButton(groupBox); radioButton_4 = new QRadioButton(groupBox);
radioButton_4->setObjectName(QStringLiteral("radioButton_4")); radioButton_4->setObjectName(QString::fromUtf8("radioButton_4"));
gridLayout->addWidget(radioButton_4, 4, 0, 1, 1); gridLayout->addWidget(radioButton_4, 4, 0, 1, 1);
checkBox_3 = new QCheckBox(groupBox); checkBox_3 = new QCheckBox(groupBox);
checkBox_3->setObjectName(QStringLiteral("checkBox_3")); checkBox_3->setObjectName(QString::fromUtf8("checkBox_3"));
gridLayout->addWidget(checkBox_3, 2, 1, 1, 1); gridLayout->addWidget(checkBox_3, 2, 1, 1, 1);
checkBox_4 = new QCheckBox(groupBox); checkBox_4 = new QCheckBox(groupBox);
checkBox_4->setObjectName(QStringLiteral("checkBox_4")); checkBox_4->setObjectName(QString::fromUtf8("checkBox_4"));
checkBox_4->setChecked(true); checkBox_4->setChecked(true);
gridLayout->addWidget(checkBox_4, 3, 1, 1, 1); gridLayout->addWidget(checkBox_4, 3, 1, 1, 1);

View File

@ -76,42 +76,42 @@ public:
void setupUi(QDialog *qdesigner_internal__NewActionDialog) void setupUi(QDialog *qdesigner_internal__NewActionDialog)
{ {
if (qdesigner_internal__NewActionDialog->objectName().isEmpty()) if (qdesigner_internal__NewActionDialog->objectName().isEmpty())
qdesigner_internal__NewActionDialog->setObjectName(QStringLiteral("qdesigner_internal__NewActionDialog")); qdesigner_internal__NewActionDialog->setObjectName(QString::fromUtf8("qdesigner_internal__NewActionDialog"));
qdesigner_internal__NewActionDialog->resize(363, 156); qdesigner_internal__NewActionDialog->resize(363, 156);
verticalLayout = new QVBoxLayout(qdesigner_internal__NewActionDialog); verticalLayout = new QVBoxLayout(qdesigner_internal__NewActionDialog);
verticalLayout->setObjectName(QStringLiteral("verticalLayout")); verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
formLayout = new QFormLayout(); formLayout = new QFormLayout();
formLayout->setObjectName(QStringLiteral("formLayout")); formLayout->setObjectName(QString::fromUtf8("formLayout"));
label = new QLabel(qdesigner_internal__NewActionDialog); label = new QLabel(qdesigner_internal__NewActionDialog);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
formLayout->setWidget(0, QFormLayout::LabelRole, label); formLayout->setWidget(0, QFormLayout::LabelRole, label);
editActionText = new QLineEdit(qdesigner_internal__NewActionDialog); editActionText = new QLineEdit(qdesigner_internal__NewActionDialog);
editActionText->setObjectName(QStringLiteral("editActionText")); editActionText->setObjectName(QString::fromUtf8("editActionText"));
editActionText->setMinimumSize(QSize(255, 0)); editActionText->setMinimumSize(QSize(255, 0));
formLayout->setWidget(0, QFormLayout::FieldRole, editActionText); formLayout->setWidget(0, QFormLayout::FieldRole, editActionText);
label_3 = new QLabel(qdesigner_internal__NewActionDialog); label_3 = new QLabel(qdesigner_internal__NewActionDialog);
label_3->setObjectName(QStringLiteral("label_3")); label_3->setObjectName(QString::fromUtf8("label_3"));
formLayout->setWidget(1, QFormLayout::LabelRole, label_3); formLayout->setWidget(1, QFormLayout::LabelRole, label_3);
editObjectName = new QLineEdit(qdesigner_internal__NewActionDialog); editObjectName = new QLineEdit(qdesigner_internal__NewActionDialog);
editObjectName->setObjectName(QStringLiteral("editObjectName")); editObjectName->setObjectName(QString::fromUtf8("editObjectName"));
formLayout->setWidget(1, QFormLayout::FieldRole, editObjectName); formLayout->setWidget(1, QFormLayout::FieldRole, editObjectName);
label_2 = new QLabel(qdesigner_internal__NewActionDialog); label_2 = new QLabel(qdesigner_internal__NewActionDialog);
label_2->setObjectName(QStringLiteral("label_2")); label_2->setObjectName(QString::fromUtf8("label_2"));
formLayout->setWidget(2, QFormLayout::LabelRole, label_2); formLayout->setWidget(2, QFormLayout::LabelRole, label_2);
horizontalLayout = new QHBoxLayout(); horizontalLayout = new QHBoxLayout();
horizontalLayout->setObjectName(QStringLiteral("horizontalLayout")); horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
iconSelector = new qdesigner_internal::IconSelector(qdesigner_internal__NewActionDialog); iconSelector = new qdesigner_internal::IconSelector(qdesigner_internal__NewActionDialog);
iconSelector->setObjectName(QStringLiteral("iconSelector")); iconSelector->setObjectName(QString::fromUtf8("iconSelector"));
horizontalLayout->addWidget(iconSelector); horizontalLayout->addWidget(iconSelector);
@ -130,14 +130,14 @@ public:
verticalLayout->addItem(verticalSpacer); verticalLayout->addItem(verticalSpacer);
line = new QFrame(qdesigner_internal__NewActionDialog); line = new QFrame(qdesigner_internal__NewActionDialog);
line->setObjectName(QStringLiteral("line")); line->setObjectName(QString::fromUtf8("line"));
line->setFrameShape(QFrame::HLine); line->setFrameShape(QFrame::HLine);
line->setFrameShadow(QFrame::Sunken); line->setFrameShadow(QFrame::Sunken);
verticalLayout->addWidget(line); verticalLayout->addWidget(line);
buttonBox = new QDialogButtonBox(qdesigner_internal__NewActionDialog); buttonBox = new QDialogButtonBox(qdesigner_internal__NewActionDialog);
buttonBox->setObjectName(QStringLiteral("buttonBox")); buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setOrientation(Qt::Horizontal); buttonBox->setOrientation(Qt::Horizontal);
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok); buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);

View File

@ -42,20 +42,20 @@ public:
void setupUi(QDialog *qdesigner_internal__NewDynamicPropertyDialog) void setupUi(QDialog *qdesigner_internal__NewDynamicPropertyDialog)
{ {
if (qdesigner_internal__NewDynamicPropertyDialog->objectName().isEmpty()) if (qdesigner_internal__NewDynamicPropertyDialog->objectName().isEmpty())
qdesigner_internal__NewDynamicPropertyDialog->setObjectName(QStringLiteral("qdesigner_internal__NewDynamicPropertyDialog")); qdesigner_internal__NewDynamicPropertyDialog->setObjectName(QString::fromUtf8("qdesigner_internal__NewDynamicPropertyDialog"));
qdesigner_internal__NewDynamicPropertyDialog->resize(340, 118); qdesigner_internal__NewDynamicPropertyDialog->resize(340, 118);
verticalLayout = new QVBoxLayout(qdesigner_internal__NewDynamicPropertyDialog); verticalLayout = new QVBoxLayout(qdesigner_internal__NewDynamicPropertyDialog);
verticalLayout->setObjectName(QStringLiteral("verticalLayout")); verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
formLayout = new QFormLayout(); formLayout = new QFormLayout();
formLayout->setObjectName(QStringLiteral("formLayout")); formLayout->setObjectName(QString::fromUtf8("formLayout"));
m_lineEdit = new QLineEdit(qdesigner_internal__NewDynamicPropertyDialog); m_lineEdit = new QLineEdit(qdesigner_internal__NewDynamicPropertyDialog);
m_lineEdit->setObjectName(QStringLiteral("m_lineEdit")); m_lineEdit->setObjectName(QString::fromUtf8("m_lineEdit"));
m_lineEdit->setMinimumSize(QSize(220, 0)); m_lineEdit->setMinimumSize(QSize(220, 0));
formLayout->setWidget(0, QFormLayout::FieldRole, m_lineEdit); formLayout->setWidget(0, QFormLayout::FieldRole, m_lineEdit);
label = new QLabel(qdesigner_internal__NewDynamicPropertyDialog); label = new QLabel(qdesigner_internal__NewDynamicPropertyDialog);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
QSizePolicy sizePolicy(QSizePolicy::Preferred, QSizePolicy::Fixed); QSizePolicy sizePolicy(QSizePolicy::Preferred, QSizePolicy::Fixed);
sizePolicy.setHorizontalStretch(0); sizePolicy.setHorizontalStretch(0);
sizePolicy.setVerticalStretch(0); sizePolicy.setVerticalStretch(0);
@ -65,9 +65,9 @@ public:
formLayout->setWidget(0, QFormLayout::LabelRole, label); formLayout->setWidget(0, QFormLayout::LabelRole, label);
horizontalLayout = new QHBoxLayout(); horizontalLayout = new QHBoxLayout();
horizontalLayout->setObjectName(QStringLiteral("horizontalLayout")); horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
m_comboBox = new QComboBox(qdesigner_internal__NewDynamicPropertyDialog); m_comboBox = new QComboBox(qdesigner_internal__NewDynamicPropertyDialog);
m_comboBox->setObjectName(QStringLiteral("m_comboBox")); m_comboBox->setObjectName(QString::fromUtf8("m_comboBox"));
horizontalLayout->addWidget(m_comboBox); horizontalLayout->addWidget(m_comboBox);
@ -79,7 +79,7 @@ public:
formLayout->setLayout(1, QFormLayout::FieldRole, horizontalLayout); formLayout->setLayout(1, QFormLayout::FieldRole, horizontalLayout);
label_2 = new QLabel(qdesigner_internal__NewDynamicPropertyDialog); label_2 = new QLabel(qdesigner_internal__NewDynamicPropertyDialog);
label_2->setObjectName(QStringLiteral("label_2")); label_2->setObjectName(QString::fromUtf8("label_2"));
sizePolicy.setHeightForWidth(label_2->sizePolicy().hasHeightForWidth()); sizePolicy.setHeightForWidth(label_2->sizePolicy().hasHeightForWidth());
label_2->setSizePolicy(sizePolicy); label_2->setSizePolicy(sizePolicy);
@ -93,7 +93,7 @@ public:
verticalLayout->addItem(spacerItem); verticalLayout->addItem(spacerItem);
m_buttonBox = new QDialogButtonBox(qdesigner_internal__NewDynamicPropertyDialog); m_buttonBox = new QDialogButtonBox(qdesigner_internal__NewDynamicPropertyDialog);
m_buttonBox->setObjectName(QStringLiteral("m_buttonBox")); m_buttonBox->setObjectName(QString::fromUtf8("m_buttonBox"));
m_buttonBox->setOrientation(Qt::Horizontal); m_buttonBox->setOrientation(Qt::Horizontal);
m_buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok); m_buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
m_buttonBox->setCenterButtons(false); m_buttonBox->setCenterButtons(false);

View File

@ -67,7 +67,7 @@ public:
void setupUi(QDialog *NewForm) void setupUi(QDialog *NewForm)
{ {
if (NewForm->objectName().isEmpty()) if (NewForm->objectName().isEmpty())
NewForm->setObjectName(QStringLiteral("NewForm")); NewForm->setObjectName(QString::fromUtf8("NewForm"));
NewForm->resize(495, 319); NewForm->resize(495, 319);
vboxLayout = new QVBoxLayout(NewForm); vboxLayout = new QVBoxLayout(NewForm);
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
@ -76,15 +76,15 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout->setContentsMargins(9, 9, 9, 9); vboxLayout->setContentsMargins(9, 9, 9, 9);
#endif #endif
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
hboxLayout = new QHBoxLayout(); hboxLayout = new QHBoxLayout();
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
hboxLayout->setSpacing(6); hboxLayout->setSpacing(6);
#endif #endif
hboxLayout->setContentsMargins(1, 1, 1, 1); hboxLayout->setContentsMargins(1, 1, 1, 1);
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
treeWidget = new QTreeWidget(NewForm); treeWidget = new QTreeWidget(NewForm);
treeWidget->setObjectName(QStringLiteral("treeWidget")); treeWidget->setObjectName(QString::fromUtf8("treeWidget"));
treeWidget->setIconSize(QSize(128, 128)); treeWidget->setIconSize(QSize(128, 128));
treeWidget->setRootIsDecorated(false); treeWidget->setRootIsDecorated(false);
treeWidget->setColumnCount(1); treeWidget->setColumnCount(1);
@ -92,7 +92,7 @@ public:
hboxLayout->addWidget(treeWidget); hboxLayout->addWidget(treeWidget);
lblPreview = new QLabel(NewForm); lblPreview = new QLabel(NewForm);
lblPreview->setObjectName(QStringLiteral("lblPreview")); lblPreview->setObjectName(QString::fromUtf8("lblPreview"));
QSizePolicy sizePolicy(static_cast<QSizePolicy::Policy>(7), static_cast<QSizePolicy::Policy>(5)); QSizePolicy sizePolicy(static_cast<QSizePolicy::Policy>(7), static_cast<QSizePolicy::Policy>(5));
sizePolicy.setHorizontalStretch(0); sizePolicy.setHorizontalStretch(0);
sizePolicy.setVerticalStretch(0); sizePolicy.setVerticalStretch(0);
@ -108,19 +108,19 @@ public:
vboxLayout->addLayout(hboxLayout); vboxLayout->addLayout(hboxLayout);
horizontalLine = new QFrame(NewForm); horizontalLine = new QFrame(NewForm);
horizontalLine->setObjectName(QStringLiteral("horizontalLine")); horizontalLine->setObjectName(QString::fromUtf8("horizontalLine"));
horizontalLine->setFrameShape(QFrame::HLine); horizontalLine->setFrameShape(QFrame::HLine);
horizontalLine->setFrameShadow(QFrame::Sunken); horizontalLine->setFrameShadow(QFrame::Sunken);
vboxLayout->addWidget(horizontalLine); vboxLayout->addWidget(horizontalLine);
chkShowOnStartup = new QCheckBox(NewForm); chkShowOnStartup = new QCheckBox(NewForm);
chkShowOnStartup->setObjectName(QStringLiteral("chkShowOnStartup")); chkShowOnStartup->setObjectName(QString::fromUtf8("chkShowOnStartup"));
vboxLayout->addWidget(chkShowOnStartup); vboxLayout->addWidget(chkShowOnStartup);
buttonBox = new QDialogButtonBox(NewForm); buttonBox = new QDialogButtonBox(NewForm);
buttonBox->setObjectName(QStringLiteral("buttonBox")); buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
vboxLayout->addWidget(buttonBox); vboxLayout->addWidget(buttonBox);

View File

@ -70,18 +70,18 @@ public:
void setupUi(QDialog *qdesigner_internal__OrderDialog) void setupUi(QDialog *qdesigner_internal__OrderDialog)
{ {
if (qdesigner_internal__OrderDialog->objectName().isEmpty()) if (qdesigner_internal__OrderDialog->objectName().isEmpty())
qdesigner_internal__OrderDialog->setObjectName(QStringLiteral("qdesigner_internal__OrderDialog")); qdesigner_internal__OrderDialog->setObjectName(QString::fromUtf8("qdesigner_internal__OrderDialog"));
qdesigner_internal__OrderDialog->resize(467, 310); qdesigner_internal__OrderDialog->resize(467, 310);
vboxLayout = new QVBoxLayout(qdesigner_internal__OrderDialog); vboxLayout = new QVBoxLayout(qdesigner_internal__OrderDialog);
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
groupBox = new QGroupBox(qdesigner_internal__OrderDialog); groupBox = new QGroupBox(qdesigner_internal__OrderDialog);
groupBox->setObjectName(QStringLiteral("groupBox")); groupBox->setObjectName(QString::fromUtf8("groupBox"));
hboxLayout = new QHBoxLayout(groupBox); hboxLayout = new QHBoxLayout(groupBox);
hboxLayout->setSpacing(6); hboxLayout->setSpacing(6);
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
hboxLayout->setContentsMargins(9, 9, 9, 9); hboxLayout->setContentsMargins(9, 9, 9, 9);
pageList = new QListWidget(groupBox); pageList = new QListWidget(groupBox);
pageList->setObjectName(QStringLiteral("pageList")); pageList->setObjectName(QString::fromUtf8("pageList"));
pageList->setMinimumSize(QSize(344, 0)); pageList->setMinimumSize(QSize(344, 0));
pageList->setDragDropMode(QAbstractItemView::InternalMove); pageList->setDragDropMode(QAbstractItemView::InternalMove);
pageList->setSelectionMode(QAbstractItemView::ContiguousSelection); pageList->setSelectionMode(QAbstractItemView::ContiguousSelection);
@ -91,15 +91,15 @@ public:
vboxLayout1 = new QVBoxLayout(); vboxLayout1 = new QVBoxLayout();
vboxLayout1->setSpacing(6); vboxLayout1->setSpacing(6);
vboxLayout1->setObjectName(QStringLiteral("vboxLayout1")); vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1"));
vboxLayout1->setContentsMargins(0, 0, 0, 0); vboxLayout1->setContentsMargins(0, 0, 0, 0);
upButton = new QToolButton(groupBox); upButton = new QToolButton(groupBox);
upButton->setObjectName(QStringLiteral("upButton")); upButton->setObjectName(QString::fromUtf8("upButton"));
vboxLayout1->addWidget(upButton); vboxLayout1->addWidget(upButton);
downButton = new QToolButton(groupBox); downButton = new QToolButton(groupBox);
downButton->setObjectName(QStringLiteral("downButton")); downButton->setObjectName(QString::fromUtf8("downButton"));
vboxLayout1->addWidget(downButton); vboxLayout1->addWidget(downButton);
@ -114,7 +114,7 @@ public:
vboxLayout->addWidget(groupBox); vboxLayout->addWidget(groupBox);
buttonBox = new QDialogButtonBox(qdesigner_internal__OrderDialog); buttonBox = new QDialogButtonBox(qdesigner_internal__OrderDialog);
buttonBox->setObjectName(QStringLiteral("buttonBox")); buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setOrientation(Qt::Horizontal); buttonBox->setOrientation(Qt::Horizontal);
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok|QDialogButtonBox::Reset); buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok|QDialogButtonBox::Reset);

View File

@ -33,16 +33,16 @@ public:
void setupUi(QWidget *OutputPage) void setupUi(QWidget *OutputPage)
{ {
if (OutputPage->objectName().isEmpty()) if (OutputPage->objectName().isEmpty())
OutputPage->setObjectName(QStringLiteral("OutputPage")); OutputPage->setObjectName(QString::fromUtf8("OutputPage"));
OutputPage->resize(417, 242); OutputPage->resize(417, 242);
gridLayout = new QGridLayout(OutputPage); gridLayout = new QGridLayout(OutputPage);
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
spacerItem = new QSpacerItem(20, 20, QSizePolicy::Minimum, QSizePolicy::Fixed); spacerItem = new QSpacerItem(20, 20, QSizePolicy::Minimum, QSizePolicy::Fixed);
gridLayout->addItem(spacerItem, 0, 1, 1, 1); gridLayout->addItem(spacerItem, 0, 1, 1, 1);
label = new QLabel(OutputPage); label = new QLabel(OutputPage);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
QSizePolicy sizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred); QSizePolicy sizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred);
sizePolicy.setHorizontalStretch(0); sizePolicy.setHorizontalStretch(0);
sizePolicy.setVerticalStretch(0); sizePolicy.setVerticalStretch(0);
@ -52,7 +52,7 @@ public:
gridLayout->addWidget(label, 1, 0, 1, 1); gridLayout->addWidget(label, 1, 0, 1, 1);
projectLineEdit = new QLineEdit(OutputPage); projectLineEdit = new QLineEdit(OutputPage);
projectLineEdit->setObjectName(QStringLiteral("projectLineEdit")); projectLineEdit->setObjectName(QString::fromUtf8("projectLineEdit"));
QSizePolicy sizePolicy1(QSizePolicy::Expanding, QSizePolicy::Fixed); QSizePolicy sizePolicy1(QSizePolicy::Expanding, QSizePolicy::Fixed);
sizePolicy1.setHorizontalStretch(0); sizePolicy1.setHorizontalStretch(0);
sizePolicy1.setVerticalStretch(0); sizePolicy1.setVerticalStretch(0);
@ -62,14 +62,14 @@ public:
gridLayout->addWidget(projectLineEdit, 1, 1, 1, 1); gridLayout->addWidget(projectLineEdit, 1, 1, 1, 1);
label_2 = new QLabel(OutputPage); label_2 = new QLabel(OutputPage);
label_2->setObjectName(QStringLiteral("label_2")); label_2->setObjectName(QString::fromUtf8("label_2"));
sizePolicy.setHeightForWidth(label_2->sizePolicy().hasHeightForWidth()); sizePolicy.setHeightForWidth(label_2->sizePolicy().hasHeightForWidth());
label_2->setSizePolicy(sizePolicy); label_2->setSizePolicy(sizePolicy);
gridLayout->addWidget(label_2, 2, 0, 1, 1); gridLayout->addWidget(label_2, 2, 0, 1, 1);
collectionLineEdit = new QLineEdit(OutputPage); collectionLineEdit = new QLineEdit(OutputPage);
collectionLineEdit->setObjectName(QStringLiteral("collectionLineEdit")); collectionLineEdit->setObjectName(QString::fromUtf8("collectionLineEdit"));
sizePolicy1.setHeightForWidth(collectionLineEdit->sizePolicy().hasHeightForWidth()); sizePolicy1.setHeightForWidth(collectionLineEdit->sizePolicy().hasHeightForWidth());
collectionLineEdit->setSizePolicy(sizePolicy1); collectionLineEdit->setSizePolicy(sizePolicy1);

View File

@ -67,18 +67,18 @@ public:
void setupUi(QMainWindow *MainWindow) void setupUi(QMainWindow *MainWindow)
{ {
if (MainWindow->objectName().isEmpty()) if (MainWindow->objectName().isEmpty())
MainWindow->setObjectName(QStringLiteral("MainWindow")); MainWindow->setObjectName(QString::fromUtf8("MainWindow"));
MainWindow->resize(392, 412); MainWindow->resize(392, 412);
exitAction = new QAction(MainWindow); exitAction = new QAction(MainWindow);
exitAction->setObjectName(QStringLiteral("exitAction")); exitAction->setObjectName(QString::fromUtf8("exitAction"));
aboutQtAction = new QAction(MainWindow); aboutQtAction = new QAction(MainWindow);
aboutQtAction->setObjectName(QStringLiteral("aboutQtAction")); aboutQtAction->setObjectName(QString::fromUtf8("aboutQtAction"));
editStyleAction = new QAction(MainWindow); editStyleAction = new QAction(MainWindow);
editStyleAction->setObjectName(QStringLiteral("editStyleAction")); editStyleAction->setObjectName(QString::fromUtf8("editStyleAction"));
aboutAction = new QAction(MainWindow); aboutAction = new QAction(MainWindow);
aboutAction->setObjectName(QStringLiteral("aboutAction")); aboutAction->setObjectName(QString::fromUtf8("aboutAction"));
centralwidget = new QWidget(MainWindow); centralwidget = new QWidget(MainWindow);
centralwidget->setObjectName(QStringLiteral("centralwidget")); centralwidget->setObjectName(QString::fromUtf8("centralwidget"));
vboxLayout = new QVBoxLayout(centralwidget); vboxLayout = new QVBoxLayout(centralwidget);
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout->setSpacing(6); vboxLayout->setSpacing(6);
@ -86,9 +86,9 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout->setContentsMargins(9, 9, 9, 9); vboxLayout->setContentsMargins(9, 9, 9, 9);
#endif #endif
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
mainFrame = new QFrame(centralwidget); mainFrame = new QFrame(centralwidget);
mainFrame->setObjectName(QStringLiteral("mainFrame")); mainFrame->setObjectName(QString::fromUtf8("mainFrame"));
mainFrame->setFrameShape(QFrame::StyledPanel); mainFrame->setFrameShape(QFrame::StyledPanel);
mainFrame->setFrameShadow(QFrame::Raised); mainFrame->setFrameShadow(QFrame::Raised);
gridLayout = new QGridLayout(mainFrame); gridLayout = new QGridLayout(mainFrame);
@ -98,13 +98,13 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
gridLayout->setContentsMargins(9, 9, 9, 9); gridLayout->setContentsMargins(9, 9, 9, 9);
#endif #endif
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
nameCombo = new QComboBox(mainFrame); nameCombo = new QComboBox(mainFrame);
nameCombo->addItem(QString()); nameCombo->addItem(QString());
nameCombo->addItem(QString()); nameCombo->addItem(QString());
nameCombo->addItem(QString()); nameCombo->addItem(QString());
nameCombo->addItem(QString()); nameCombo->addItem(QString());
nameCombo->setObjectName(QStringLiteral("nameCombo")); nameCombo->setObjectName(QString::fromUtf8("nameCombo"));
nameCombo->setEditable(true); nameCombo->setEditable(true);
gridLayout->addWidget(nameCombo, 0, 1, 1, 3); gridLayout->addWidget(nameCombo, 0, 1, 1, 3);
@ -114,56 +114,56 @@ public:
gridLayout->addItem(spacerItem, 1, 3, 1, 1); gridLayout->addItem(spacerItem, 1, 3, 1, 1);
femaleRadioButton = new QRadioButton(mainFrame); femaleRadioButton = new QRadioButton(mainFrame);
femaleRadioButton->setObjectName(QStringLiteral("femaleRadioButton")); femaleRadioButton->setObjectName(QString::fromUtf8("femaleRadioButton"));
gridLayout->addWidget(femaleRadioButton, 1, 2, 1, 1); gridLayout->addWidget(femaleRadioButton, 1, 2, 1, 1);
genderLabel = new QLabel(mainFrame); genderLabel = new QLabel(mainFrame);
genderLabel->setObjectName(QStringLiteral("genderLabel")); genderLabel->setObjectName(QString::fromUtf8("genderLabel"));
gridLayout->addWidget(genderLabel, 1, 0, 1, 1); gridLayout->addWidget(genderLabel, 1, 0, 1, 1);
ageLabel = new QLabel(mainFrame); ageLabel = new QLabel(mainFrame);
ageLabel->setObjectName(QStringLiteral("ageLabel")); ageLabel->setObjectName(QString::fromUtf8("ageLabel"));
gridLayout->addWidget(ageLabel, 2, 0, 1, 1); gridLayout->addWidget(ageLabel, 2, 0, 1, 1);
maleRadioButton = new QRadioButton(mainFrame); maleRadioButton = new QRadioButton(mainFrame);
maleRadioButton->setObjectName(QStringLiteral("maleRadioButton")); maleRadioButton->setObjectName(QString::fromUtf8("maleRadioButton"));
gridLayout->addWidget(maleRadioButton, 1, 1, 1, 1); gridLayout->addWidget(maleRadioButton, 1, 1, 1, 1);
nameLabel = new QLabel(mainFrame); nameLabel = new QLabel(mainFrame);
nameLabel->setObjectName(QStringLiteral("nameLabel")); nameLabel->setObjectName(QString::fromUtf8("nameLabel"));
gridLayout->addWidget(nameLabel, 0, 0, 1, 1); gridLayout->addWidget(nameLabel, 0, 0, 1, 1);
passwordLabel = new QLabel(mainFrame); passwordLabel = new QLabel(mainFrame);
passwordLabel->setObjectName(QStringLiteral("passwordLabel")); passwordLabel->setObjectName(QString::fromUtf8("passwordLabel"));
gridLayout->addWidget(passwordLabel, 3, 0, 1, 1); gridLayout->addWidget(passwordLabel, 3, 0, 1, 1);
ageSpinBox = new QSpinBox(mainFrame); ageSpinBox = new QSpinBox(mainFrame);
ageSpinBox->setObjectName(QStringLiteral("ageSpinBox")); ageSpinBox->setObjectName(QString::fromUtf8("ageSpinBox"));
ageSpinBox->setMinimum(12); ageSpinBox->setMinimum(12);
ageSpinBox->setValue(22); ageSpinBox->setValue(22);
gridLayout->addWidget(ageSpinBox, 2, 1, 1, 3); gridLayout->addWidget(ageSpinBox, 2, 1, 1, 3);
buttonBox = new QDialogButtonBox(mainFrame); buttonBox = new QDialogButtonBox(mainFrame);
buttonBox->setObjectName(QStringLiteral("buttonBox")); buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setOrientation(Qt::Horizontal); buttonBox->setOrientation(Qt::Horizontal);
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::NoButton|QDialogButtonBox::Ok); buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::NoButton|QDialogButtonBox::Ok);
gridLayout->addWidget(buttonBox, 7, 2, 1, 2); gridLayout->addWidget(buttonBox, 7, 2, 1, 2);
agreeCheckBox = new QCheckBox(mainFrame); agreeCheckBox = new QCheckBox(mainFrame);
agreeCheckBox->setObjectName(QStringLiteral("agreeCheckBox")); agreeCheckBox->setObjectName(QString::fromUtf8("agreeCheckBox"));
gridLayout->addWidget(agreeCheckBox, 6, 0, 1, 4); gridLayout->addWidget(agreeCheckBox, 6, 0, 1, 4);
passwordEdit = new QLineEdit(mainFrame); passwordEdit = new QLineEdit(mainFrame);
passwordEdit->setObjectName(QStringLiteral("passwordEdit")); passwordEdit->setObjectName(QString::fromUtf8("passwordEdit"));
passwordEdit->setEchoMode(QLineEdit::Password); passwordEdit->setEchoMode(QLineEdit::Password);
gridLayout->addWidget(passwordEdit, 3, 1, 1, 3); gridLayout->addWidget(passwordEdit, 3, 1, 1, 3);
@ -172,12 +172,12 @@ public:
new QListWidgetItem(professionList); new QListWidgetItem(professionList);
new QListWidgetItem(professionList); new QListWidgetItem(professionList);
new QListWidgetItem(professionList); new QListWidgetItem(professionList);
professionList->setObjectName(QStringLiteral("professionList")); professionList->setObjectName(QString::fromUtf8("professionList"));
gridLayout->addWidget(professionList, 5, 1, 1, 3); gridLayout->addWidget(professionList, 5, 1, 1, 3);
label = new QLabel(mainFrame); label = new QLabel(mainFrame);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
gridLayout->addWidget(label, 5, 0, 1, 1); gridLayout->addWidget(label, 5, 0, 1, 1);
@ -189,12 +189,12 @@ public:
countryCombo->addItem(QString()); countryCombo->addItem(QString());
countryCombo->addItem(QString()); countryCombo->addItem(QString());
countryCombo->addItem(QString()); countryCombo->addItem(QString());
countryCombo->setObjectName(QStringLiteral("countryCombo")); countryCombo->setObjectName(QString::fromUtf8("countryCombo"));
gridLayout->addWidget(countryCombo, 4, 1, 1, 3); gridLayout->addWidget(countryCombo, 4, 1, 1, 3);
countryLabel = new QLabel(mainFrame); countryLabel = new QLabel(mainFrame);
countryLabel->setObjectName(QStringLiteral("countryLabel")); countryLabel->setObjectName(QString::fromUtf8("countryLabel"));
gridLayout->addWidget(countryLabel, 4, 0, 1, 1); gridLayout->addWidget(countryLabel, 4, 0, 1, 1);
@ -203,15 +203,15 @@ public:
MainWindow->setCentralWidget(centralwidget); MainWindow->setCentralWidget(centralwidget);
menubar = new QMenuBar(MainWindow); menubar = new QMenuBar(MainWindow);
menubar->setObjectName(QStringLiteral("menubar")); menubar->setObjectName(QString::fromUtf8("menubar"));
menubar->setGeometry(QRect(0, 0, 392, 25)); menubar->setGeometry(QRect(0, 0, 392, 25));
menu_File = new QMenu(menubar); menu_File = new QMenu(menubar);
menu_File->setObjectName(QStringLiteral("menu_File")); menu_File->setObjectName(QString::fromUtf8("menu_File"));
menu_Help = new QMenu(menubar); menu_Help = new QMenu(menubar);
menu_Help->setObjectName(QStringLiteral("menu_Help")); menu_Help->setObjectName(QString::fromUtf8("menu_Help"));
MainWindow->setMenuBar(menubar); MainWindow->setMenuBar(menubar);
statusbar = new QStatusBar(MainWindow); statusbar = new QStatusBar(MainWindow);
statusbar->setObjectName(QStringLiteral("statusbar")); statusbar->setObjectName(QString::fromUtf8("statusbar"));
MainWindow->setStatusBar(statusbar); MainWindow->setStatusBar(statusbar);
#ifndef QT_NO_SHORTCUT #ifndef QT_NO_SHORTCUT
ageLabel->setBuddy(ageSpinBox); ageLabel->setBuddy(ageSpinBox);

View File

@ -79,7 +79,7 @@ public:
void setupUi(QDialog *qdesigner_internal__PaletteEditor) void setupUi(QDialog *qdesigner_internal__PaletteEditor)
{ {
if (qdesigner_internal__PaletteEditor->objectName().isEmpty()) if (qdesigner_internal__PaletteEditor->objectName().isEmpty())
qdesigner_internal__PaletteEditor->setObjectName(QStringLiteral("qdesigner_internal__PaletteEditor")); qdesigner_internal__PaletteEditor->setObjectName(QString::fromUtf8("qdesigner_internal__PaletteEditor"));
qdesigner_internal__PaletteEditor->resize(365, 409); qdesigner_internal__PaletteEditor->resize(365, 409);
QSizePolicy sizePolicy(static_cast<QSizePolicy::Policy>(7), static_cast<QSizePolicy::Policy>(7)); QSizePolicy sizePolicy(static_cast<QSizePolicy::Policy>(7), static_cast<QSizePolicy::Policy>(7));
sizePolicy.setHorizontalStretch(0); sizePolicy.setHorizontalStretch(0);
@ -93,9 +93,9 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout->setContentsMargins(9, 9, 9, 9); vboxLayout->setContentsMargins(9, 9, 9, 9);
#endif #endif
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
advancedBox = new QGroupBox(qdesigner_internal__PaletteEditor); advancedBox = new QGroupBox(qdesigner_internal__PaletteEditor);
advancedBox->setObjectName(QStringLiteral("advancedBox")); advancedBox->setObjectName(QString::fromUtf8("advancedBox"));
advancedBox->setMinimumSize(QSize(0, 0)); advancedBox->setMinimumSize(QSize(0, 0));
advancedBox->setMaximumSize(QSize(16777215, 16777215)); advancedBox->setMaximumSize(QSize(16777215, 16777215));
gridLayout = new QGridLayout(advancedBox); gridLayout = new QGridLayout(advancedBox);
@ -105,9 +105,9 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
gridLayout->setContentsMargins(9, 9, 9, 9); gridLayout->setContentsMargins(9, 9, 9, 9);
#endif #endif
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
buildButton = new QtColorButton(advancedBox); buildButton = new QtColorButton(advancedBox);
buildButton->setObjectName(QStringLiteral("buildButton")); buildButton->setObjectName(QString::fromUtf8("buildButton"));
QSizePolicy sizePolicy1(static_cast<QSizePolicy::Policy>(7), static_cast<QSizePolicy::Policy>(13)); QSizePolicy sizePolicy1(static_cast<QSizePolicy::Policy>(7), static_cast<QSizePolicy::Policy>(13));
sizePolicy1.setHorizontalStretch(0); sizePolicy1.setHorizontalStretch(0);
sizePolicy1.setVerticalStretch(0); sizePolicy1.setVerticalStretch(0);
@ -117,24 +117,24 @@ public:
gridLayout->addWidget(buildButton, 0, 1, 1, 1); gridLayout->addWidget(buildButton, 0, 1, 1, 1);
paletteView = new QTreeView(advancedBox); paletteView = new QTreeView(advancedBox);
paletteView->setObjectName(QStringLiteral("paletteView")); paletteView->setObjectName(QString::fromUtf8("paletteView"));
paletteView->setMinimumSize(QSize(0, 200)); paletteView->setMinimumSize(QSize(0, 200));
gridLayout->addWidget(paletteView, 1, 0, 1, 4); gridLayout->addWidget(paletteView, 1, 0, 1, 4);
detailsRadio = new QRadioButton(advancedBox); detailsRadio = new QRadioButton(advancedBox);
detailsRadio->setObjectName(QStringLiteral("detailsRadio")); detailsRadio->setObjectName(QString::fromUtf8("detailsRadio"));
gridLayout->addWidget(detailsRadio, 0, 3, 1, 1); gridLayout->addWidget(detailsRadio, 0, 3, 1, 1);
computeRadio = new QRadioButton(advancedBox); computeRadio = new QRadioButton(advancedBox);
computeRadio->setObjectName(QStringLiteral("computeRadio")); computeRadio->setObjectName(QString::fromUtf8("computeRadio"));
computeRadio->setChecked(true); computeRadio->setChecked(true);
gridLayout->addWidget(computeRadio, 0, 2, 1, 1); gridLayout->addWidget(computeRadio, 0, 2, 1, 1);
label = new QLabel(advancedBox); label = new QLabel(advancedBox);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
gridLayout->addWidget(label, 0, 0, 1, 1); gridLayout->addWidget(label, 0, 0, 1, 1);
@ -142,7 +142,7 @@ public:
vboxLayout->addWidget(advancedBox); vboxLayout->addWidget(advancedBox);
GroupBox126 = new QGroupBox(qdesigner_internal__PaletteEditor); GroupBox126 = new QGroupBox(qdesigner_internal__PaletteEditor);
GroupBox126->setObjectName(QStringLiteral("GroupBox126")); GroupBox126->setObjectName(QString::fromUtf8("GroupBox126"));
QSizePolicy sizePolicy2(static_cast<QSizePolicy::Policy>(5), static_cast<QSizePolicy::Policy>(7)); QSizePolicy sizePolicy2(static_cast<QSizePolicy::Policy>(5), static_cast<QSizePolicy::Policy>(7));
sizePolicy2.setHorizontalStretch(0); sizePolicy2.setHorizontalStretch(0);
sizePolicy2.setVerticalStretch(0); sizePolicy2.setVerticalStretch(0);
@ -153,25 +153,25 @@ public:
gridLayout1->setSpacing(6); gridLayout1->setSpacing(6);
#endif #endif
gridLayout1->setContentsMargins(8, 8, 8, 8); gridLayout1->setContentsMargins(8, 8, 8, 8);
gridLayout1->setObjectName(QStringLiteral("gridLayout1")); gridLayout1->setObjectName(QString::fromUtf8("gridLayout1"));
disabledRadio = new QRadioButton(GroupBox126); disabledRadio = new QRadioButton(GroupBox126);
disabledRadio->setObjectName(QStringLiteral("disabledRadio")); disabledRadio->setObjectName(QString::fromUtf8("disabledRadio"));
gridLayout1->addWidget(disabledRadio, 0, 2, 1, 1); gridLayout1->addWidget(disabledRadio, 0, 2, 1, 1);
inactiveRadio = new QRadioButton(GroupBox126); inactiveRadio = new QRadioButton(GroupBox126);
inactiveRadio->setObjectName(QStringLiteral("inactiveRadio")); inactiveRadio->setObjectName(QString::fromUtf8("inactiveRadio"));
gridLayout1->addWidget(inactiveRadio, 0, 1, 1, 1); gridLayout1->addWidget(inactiveRadio, 0, 1, 1, 1);
activeRadio = new QRadioButton(GroupBox126); activeRadio = new QRadioButton(GroupBox126);
activeRadio->setObjectName(QStringLiteral("activeRadio")); activeRadio->setObjectName(QString::fromUtf8("activeRadio"));
activeRadio->setChecked(true); activeRadio->setChecked(true);
gridLayout1->addWidget(activeRadio, 0, 0, 1, 1); gridLayout1->addWidget(activeRadio, 0, 0, 1, 1);
previewFrame = new qdesigner_internal::PreviewFrame(GroupBox126); previewFrame = new qdesigner_internal::PreviewFrame(GroupBox126);
previewFrame->setObjectName(QStringLiteral("previewFrame")); previewFrame->setObjectName(QString::fromUtf8("previewFrame"));
sizePolicy.setHeightForWidth(previewFrame->sizePolicy().hasHeightForWidth()); sizePolicy.setHeightForWidth(previewFrame->sizePolicy().hasHeightForWidth());
previewFrame->setSizePolicy(sizePolicy); previewFrame->setSizePolicy(sizePolicy);
@ -181,7 +181,7 @@ public:
vboxLayout->addWidget(GroupBox126); vboxLayout->addWidget(GroupBox126);
buttonBox = new QDialogButtonBox(qdesigner_internal__PaletteEditor); buttonBox = new QDialogButtonBox(qdesigner_internal__PaletteEditor);
buttonBox->setObjectName(QStringLiteral("buttonBox")); buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setOrientation(Qt::Horizontal); buttonBox->setOrientation(Qt::Horizontal);
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::NoButton|QDialogButtonBox::Ok); buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::NoButton|QDialogButtonBox::Ok);

View File

@ -36,19 +36,19 @@ public:
void setupUi(QDialog *PasswordDialog) void setupUi(QDialog *PasswordDialog)
{ {
if (PasswordDialog->objectName().isEmpty()) if (PasswordDialog->objectName().isEmpty())
PasswordDialog->setObjectName(QStringLiteral("PasswordDialog")); PasswordDialog->setObjectName(QString::fromUtf8("PasswordDialog"));
PasswordDialog->resize(399, 148); PasswordDialog->resize(399, 148);
gridLayout = new QGridLayout(PasswordDialog); gridLayout = new QGridLayout(PasswordDialog);
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
hboxLayout = new QHBoxLayout(); hboxLayout = new QHBoxLayout();
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
iconLabel = new QLabel(PasswordDialog); iconLabel = new QLabel(PasswordDialog);
iconLabel->setObjectName(QStringLiteral("iconLabel")); iconLabel->setObjectName(QString::fromUtf8("iconLabel"));
hboxLayout->addWidget(iconLabel); hboxLayout->addWidget(iconLabel);
introLabel = new QLabel(PasswordDialog); introLabel = new QLabel(PasswordDialog);
introLabel->setObjectName(QStringLiteral("introLabel")); introLabel->setObjectName(QString::fromUtf8("introLabel"));
QSizePolicy sizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::MinimumExpanding); QSizePolicy sizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::MinimumExpanding);
sizePolicy.setHorizontalStretch(0); sizePolicy.setHorizontalStretch(0);
sizePolicy.setVerticalStretch(0); sizePolicy.setVerticalStretch(0);
@ -61,28 +61,28 @@ public:
gridLayout->addLayout(hboxLayout, 0, 0, 1, 2); gridLayout->addLayout(hboxLayout, 0, 0, 1, 2);
label = new QLabel(PasswordDialog); label = new QLabel(PasswordDialog);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
gridLayout->addWidget(label, 1, 0, 1, 1); gridLayout->addWidget(label, 1, 0, 1, 1);
userNameLineEdit = new QLineEdit(PasswordDialog); userNameLineEdit = new QLineEdit(PasswordDialog);
userNameLineEdit->setObjectName(QStringLiteral("userNameLineEdit")); userNameLineEdit->setObjectName(QString::fromUtf8("userNameLineEdit"));
gridLayout->addWidget(userNameLineEdit, 1, 1, 1, 1); gridLayout->addWidget(userNameLineEdit, 1, 1, 1, 1);
lblPassword = new QLabel(PasswordDialog); lblPassword = new QLabel(PasswordDialog);
lblPassword->setObjectName(QStringLiteral("lblPassword")); lblPassword->setObjectName(QString::fromUtf8("lblPassword"));
gridLayout->addWidget(lblPassword, 2, 0, 1, 1); gridLayout->addWidget(lblPassword, 2, 0, 1, 1);
passwordLineEdit = new QLineEdit(PasswordDialog); passwordLineEdit = new QLineEdit(PasswordDialog);
passwordLineEdit->setObjectName(QStringLiteral("passwordLineEdit")); passwordLineEdit->setObjectName(QString::fromUtf8("passwordLineEdit"));
passwordLineEdit->setEchoMode(QLineEdit::Password); passwordLineEdit->setEchoMode(QLineEdit::Password);
gridLayout->addWidget(passwordLineEdit, 2, 1, 1, 1); gridLayout->addWidget(passwordLineEdit, 2, 1, 1, 1);
buttonBox = new QDialogButtonBox(PasswordDialog); buttonBox = new QDialogButtonBox(PasswordDialog);
buttonBox->setObjectName(QStringLiteral("buttonBox")); buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setOrientation(Qt::Horizontal); buttonBox->setOrientation(Qt::Horizontal);
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok); buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);

View File

@ -38,12 +38,12 @@ public:
void setupUi(QWidget *PathPage) void setupUi(QWidget *PathPage)
{ {
if (PathPage->objectName().isEmpty()) if (PathPage->objectName().isEmpty())
PathPage->setObjectName(QStringLiteral("PathPage")); PathPage->setObjectName(QString::fromUtf8("PathPage"));
PathPage->resize(417, 243); PathPage->resize(417, 243);
gridLayout = new QGridLayout(PathPage); gridLayout = new QGridLayout(PathPage);
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
label_2 = new QLabel(PathPage); label_2 = new QLabel(PathPage);
label_2->setObjectName(QStringLiteral("label_2")); label_2->setObjectName(QString::fromUtf8("label_2"));
QSizePolicy sizePolicy(QSizePolicy::Maximum, QSizePolicy::Preferred); QSizePolicy sizePolicy(QSizePolicy::Maximum, QSizePolicy::Preferred);
sizePolicy.setHorizontalStretch(0); sizePolicy.setHorizontalStretch(0);
sizePolicy.setVerticalStretch(0); sizePolicy.setVerticalStretch(0);
@ -53,7 +53,7 @@ public:
gridLayout->addWidget(label_2, 0, 0, 1, 1); gridLayout->addWidget(label_2, 0, 0, 1, 1);
filterLineEdit = new QLineEdit(PathPage); filterLineEdit = new QLineEdit(PathPage);
filterLineEdit->setObjectName(QStringLiteral("filterLineEdit")); filterLineEdit->setObjectName(QString::fromUtf8("filterLineEdit"));
gridLayout->addWidget(filterLineEdit, 0, 1, 1, 2); gridLayout->addWidget(filterLineEdit, 0, 1, 1, 2);
@ -62,17 +62,17 @@ public:
gridLayout->addItem(spacerItem, 1, 1, 1, 1); gridLayout->addItem(spacerItem, 1, 1, 1, 1);
label = new QLabel(PathPage); label = new QLabel(PathPage);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
gridLayout->addWidget(label, 2, 0, 1, 3); gridLayout->addWidget(label, 2, 0, 1, 3);
pathListWidget = new QListWidget(PathPage); pathListWidget = new QListWidget(PathPage);
pathListWidget->setObjectName(QStringLiteral("pathListWidget")); pathListWidget->setObjectName(QString::fromUtf8("pathListWidget"));
gridLayout->addWidget(pathListWidget, 3, 0, 3, 3); gridLayout->addWidget(pathListWidget, 3, 0, 3, 3);
addButton = new QPushButton(PathPage); addButton = new QPushButton(PathPage);
addButton->setObjectName(QStringLiteral("addButton")); addButton->setObjectName(QString::fromUtf8("addButton"));
QSizePolicy sizePolicy1(QSizePolicy::Maximum, QSizePolicy::Fixed); QSizePolicy sizePolicy1(QSizePolicy::Maximum, QSizePolicy::Fixed);
sizePolicy1.setHorizontalStretch(0); sizePolicy1.setHorizontalStretch(0);
sizePolicy1.setVerticalStretch(0); sizePolicy1.setVerticalStretch(0);
@ -82,7 +82,7 @@ public:
gridLayout->addWidget(addButton, 3, 3, 1, 1); gridLayout->addWidget(addButton, 3, 3, 1, 1);
removeButton = new QPushButton(PathPage); removeButton = new QPushButton(PathPage);
removeButton->setObjectName(QStringLiteral("removeButton")); removeButton->setObjectName(QString::fromUtf8("removeButton"));
sizePolicy1.setHeightForWidth(removeButton->sizePolicy().hasHeightForWidth()); sizePolicy1.setHeightForWidth(removeButton->sizePolicy().hasHeightForWidth());
removeButton->setSizePolicy(sizePolicy1); removeButton->setSizePolicy(sizePolicy1);

View File

@ -77,45 +77,45 @@ public:
void setupUi(QDialog *PhraseBookBox) void setupUi(QDialog *PhraseBookBox)
{ {
if (PhraseBookBox->objectName().isEmpty()) if (PhraseBookBox->objectName().isEmpty())
PhraseBookBox->setObjectName(QStringLiteral("PhraseBookBox")); PhraseBookBox->setObjectName(QString::fromUtf8("PhraseBookBox"));
PhraseBookBox->resize(596, 454); PhraseBookBox->resize(596, 454);
unnamed = new QHBoxLayout(PhraseBookBox); unnamed = new QHBoxLayout(PhraseBookBox);
unnamed->setSpacing(6); unnamed->setSpacing(6);
unnamed->setContentsMargins(11, 11, 11, 11); unnamed->setContentsMargins(11, 11, 11, 11);
unnamed->setObjectName(QStringLiteral("unnamed")); unnamed->setObjectName(QString::fromUtf8("unnamed"));
inputsLayout = new QVBoxLayout(); inputsLayout = new QVBoxLayout();
inputsLayout->setSpacing(6); inputsLayout->setSpacing(6);
inputsLayout->setObjectName(QStringLiteral("inputsLayout")); inputsLayout->setObjectName(QString::fromUtf8("inputsLayout"));
gridLayout = new QGridLayout(); gridLayout = new QGridLayout();
gridLayout->setSpacing(6); gridLayout->setSpacing(6);
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
target = new QLabel(PhraseBookBox); target = new QLabel(PhraseBookBox);
target->setObjectName(QStringLiteral("target")); target->setObjectName(QString::fromUtf8("target"));
gridLayout->addWidget(target, 1, 0, 1, 1); gridLayout->addWidget(target, 1, 0, 1, 1);
targetLed = new QLineEdit(PhraseBookBox); targetLed = new QLineEdit(PhraseBookBox);
targetLed->setObjectName(QStringLiteral("targetLed")); targetLed->setObjectName(QString::fromUtf8("targetLed"));
gridLayout->addWidget(targetLed, 1, 1, 1, 1); gridLayout->addWidget(targetLed, 1, 1, 1, 1);
source = new QLabel(PhraseBookBox); source = new QLabel(PhraseBookBox);
source->setObjectName(QStringLiteral("source")); source->setObjectName(QString::fromUtf8("source"));
gridLayout->addWidget(source, 0, 0, 1, 1); gridLayout->addWidget(source, 0, 0, 1, 1);
definitionLed = new QLineEdit(PhraseBookBox); definitionLed = new QLineEdit(PhraseBookBox);
definitionLed->setObjectName(QStringLiteral("definitionLed")); definitionLed->setObjectName(QString::fromUtf8("definitionLed"));
gridLayout->addWidget(definitionLed, 2, 1, 1, 1); gridLayout->addWidget(definitionLed, 2, 1, 1, 1);
sourceLed = new QLineEdit(PhraseBookBox); sourceLed = new QLineEdit(PhraseBookBox);
sourceLed->setObjectName(QStringLiteral("sourceLed")); sourceLed->setObjectName(QString::fromUtf8("sourceLed"));
gridLayout->addWidget(sourceLed, 0, 1, 1, 1); gridLayout->addWidget(sourceLed, 0, 1, 1, 1);
definition = new QLabel(PhraseBookBox); definition = new QLabel(PhraseBookBox);
definition->setObjectName(QStringLiteral("definition")); definition->setObjectName(QString::fromUtf8("definition"));
gridLayout->addWidget(definition, 2, 0, 1, 1); gridLayout->addWidget(definition, 2, 0, 1, 1);
@ -123,7 +123,7 @@ public:
inputsLayout->addLayout(gridLayout); inputsLayout->addLayout(gridLayout);
phraseList = new QTreeView(PhraseBookBox); phraseList = new QTreeView(PhraseBookBox);
phraseList->setObjectName(QStringLiteral("phraseList")); phraseList->setObjectName(QString::fromUtf8("phraseList"));
phraseList->setRootIsDecorated(false); phraseList->setRootIsDecorated(false);
phraseList->setUniformRowHeights(true); phraseList->setUniformRowHeights(true);
phraseList->setItemsExpandable(false); phraseList->setItemsExpandable(false);
@ -137,24 +137,24 @@ public:
buttonLayout = new QVBoxLayout(); buttonLayout = new QVBoxLayout();
buttonLayout->setSpacing(6); buttonLayout->setSpacing(6);
buttonLayout->setObjectName(QStringLiteral("buttonLayout")); buttonLayout->setObjectName(QString::fromUtf8("buttonLayout"));
newBut = new QPushButton(PhraseBookBox); newBut = new QPushButton(PhraseBookBox);
newBut->setObjectName(QStringLiteral("newBut")); newBut->setObjectName(QString::fromUtf8("newBut"));
buttonLayout->addWidget(newBut); buttonLayout->addWidget(newBut);
removeBut = new QPushButton(PhraseBookBox); removeBut = new QPushButton(PhraseBookBox);
removeBut->setObjectName(QStringLiteral("removeBut")); removeBut->setObjectName(QString::fromUtf8("removeBut"));
buttonLayout->addWidget(removeBut); buttonLayout->addWidget(removeBut);
saveBut = new QPushButton(PhraseBookBox); saveBut = new QPushButton(PhraseBookBox);
saveBut->setObjectName(QStringLiteral("saveBut")); saveBut->setObjectName(QString::fromUtf8("saveBut"));
buttonLayout->addWidget(saveBut); buttonLayout->addWidget(saveBut);
closeBut = new QPushButton(PhraseBookBox); closeBut = new QPushButton(PhraseBookBox);
closeBut->setObjectName(QStringLiteral("closeBut")); closeBut->setObjectName(QString::fromUtf8("closeBut"));
buttonLayout->addWidget(closeBut); buttonLayout->addWidget(closeBut);

View File

@ -64,39 +64,39 @@ public:
void setupUi(QDialog *PluginDialog) void setupUi(QDialog *PluginDialog)
{ {
if (PluginDialog->objectName().isEmpty()) if (PluginDialog->objectName().isEmpty())
PluginDialog->setObjectName(QStringLiteral("PluginDialog")); PluginDialog->setObjectName(QString::fromUtf8("PluginDialog"));
PluginDialog->resize(401, 331); PluginDialog->resize(401, 331);
vboxLayout = new QVBoxLayout(PluginDialog); vboxLayout = new QVBoxLayout(PluginDialog);
vboxLayout->setSpacing(6); vboxLayout->setSpacing(6);
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
vboxLayout->setContentsMargins(8, 8, 8, 8); vboxLayout->setContentsMargins(8, 8, 8, 8);
label = new QLabel(PluginDialog); label = new QLabel(PluginDialog);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
label->setWordWrap(true); label->setWordWrap(true);
vboxLayout->addWidget(label); vboxLayout->addWidget(label);
treeWidget = new QTreeWidget(PluginDialog); treeWidget = new QTreeWidget(PluginDialog);
treeWidget->setObjectName(QStringLiteral("treeWidget")); treeWidget->setObjectName(QString::fromUtf8("treeWidget"));
treeWidget->setTextElideMode(Qt::ElideNone); treeWidget->setTextElideMode(Qt::ElideNone);
vboxLayout->addWidget(treeWidget); vboxLayout->addWidget(treeWidget);
message = new QLabel(PluginDialog); message = new QLabel(PluginDialog);
message->setObjectName(QStringLiteral("message")); message->setObjectName(QString::fromUtf8("message"));
message->setWordWrap(true); message->setWordWrap(true);
vboxLayout->addWidget(message); vboxLayout->addWidget(message);
hboxLayout = new QHBoxLayout(); hboxLayout = new QHBoxLayout();
hboxLayout->setSpacing(6); hboxLayout->setSpacing(6);
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
hboxLayout->setContentsMargins(0, 0, 0, 0); hboxLayout->setContentsMargins(0, 0, 0, 0);
vboxLayout->addLayout(hboxLayout); vboxLayout->addLayout(hboxLayout);
buttonBox = new QDialogButtonBox(PluginDialog); buttonBox = new QDialogButtonBox(PluginDialog);
buttonBox->setObjectName(QStringLiteral("buttonBox")); buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setOrientation(Qt::Horizontal); buttonBox->setOrientation(Qt::Horizontal);
buttonBox->setStandardButtons(QDialogButtonBox::Close); buttonBox->setStandardButtons(QDialogButtonBox::Close);

View File

@ -53,21 +53,21 @@ public:
void setupUi(QDialog *PreferencesDialog) void setupUi(QDialog *PreferencesDialog)
{ {
if (PreferencesDialog->objectName().isEmpty()) if (PreferencesDialog->objectName().isEmpty())
PreferencesDialog->setObjectName(QStringLiteral("PreferencesDialog")); PreferencesDialog->setObjectName(QString::fromUtf8("PreferencesDialog"));
PreferencesDialog->resize(455, 359); PreferencesDialog->resize(455, 359);
PreferencesDialog->setModal(true); PreferencesDialog->setModal(true);
vboxLayout = new QVBoxLayout(PreferencesDialog); vboxLayout = new QVBoxLayout(PreferencesDialog);
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
hboxLayout = new QHBoxLayout(); hboxLayout = new QHBoxLayout();
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
vboxLayout1 = new QVBoxLayout(); vboxLayout1 = new QVBoxLayout();
vboxLayout1->setObjectName(QStringLiteral("vboxLayout1")); vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1"));
m_uiModeGroupBox = new QGroupBox(PreferencesDialog); m_uiModeGroupBox = new QGroupBox(PreferencesDialog);
m_uiModeGroupBox->setObjectName(QStringLiteral("m_uiModeGroupBox")); m_uiModeGroupBox->setObjectName(QString::fromUtf8("m_uiModeGroupBox"));
vboxLayout2 = new QVBoxLayout(m_uiModeGroupBox); vboxLayout2 = new QVBoxLayout(m_uiModeGroupBox);
vboxLayout2->setObjectName(QStringLiteral("vboxLayout2")); vboxLayout2->setObjectName(QString::fromUtf8("vboxLayout2"));
m_uiModeCombo = new QComboBox(m_uiModeGroupBox); m_uiModeCombo = new QComboBox(m_uiModeGroupBox);
m_uiModeCombo->setObjectName(QStringLiteral("m_uiModeCombo")); m_uiModeCombo->setObjectName(QString::fromUtf8("m_uiModeCombo"));
vboxLayout2->addWidget(m_uiModeCombo); vboxLayout2->addWidget(m_uiModeCombo);
@ -75,12 +75,12 @@ public:
vboxLayout1->addWidget(m_uiModeGroupBox); vboxLayout1->addWidget(m_uiModeGroupBox);
m_fontPanel = new FontPanel(PreferencesDialog); m_fontPanel = new FontPanel(PreferencesDialog);
m_fontPanel->setObjectName(QStringLiteral("m_fontPanel")); m_fontPanel->setObjectName(QString::fromUtf8("m_fontPanel"));
vboxLayout1->addWidget(m_fontPanel); vboxLayout1->addWidget(m_fontPanel);
m_previewConfigurationWidget = new qdesigner_internal::PreviewConfigurationWidget(PreferencesDialog); m_previewConfigurationWidget = new qdesigner_internal::PreviewConfigurationWidget(PreferencesDialog);
m_previewConfigurationWidget->setObjectName(QStringLiteral("m_previewConfigurationWidget")); m_previewConfigurationWidget->setObjectName(QString::fromUtf8("m_previewConfigurationWidget"));
vboxLayout1->addWidget(m_previewConfigurationWidget); vboxLayout1->addWidget(m_previewConfigurationWidget);
@ -88,23 +88,23 @@ public:
hboxLayout->addLayout(vboxLayout1); hboxLayout->addLayout(vboxLayout1);
vboxLayout3 = new QVBoxLayout(); vboxLayout3 = new QVBoxLayout();
vboxLayout3->setObjectName(QStringLiteral("vboxLayout3")); vboxLayout3->setObjectName(QString::fromUtf8("vboxLayout3"));
m_templatePathGroupBox = new QGroupBox(PreferencesDialog); m_templatePathGroupBox = new QGroupBox(PreferencesDialog);
m_templatePathGroupBox->setObjectName(QStringLiteral("m_templatePathGroupBox")); m_templatePathGroupBox->setObjectName(QString::fromUtf8("m_templatePathGroupBox"));
gridLayout = new QGridLayout(m_templatePathGroupBox); gridLayout = new QGridLayout(m_templatePathGroupBox);
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
m_templatePathListWidget = new QListWidget(m_templatePathGroupBox); m_templatePathListWidget = new QListWidget(m_templatePathGroupBox);
m_templatePathListWidget->setObjectName(QStringLiteral("m_templatePathListWidget")); m_templatePathListWidget->setObjectName(QString::fromUtf8("m_templatePathListWidget"));
gridLayout->addWidget(m_templatePathListWidget, 0, 0, 1, 3); gridLayout->addWidget(m_templatePathListWidget, 0, 0, 1, 3);
m_addTemplatePathButton = new QToolButton(m_templatePathGroupBox); m_addTemplatePathButton = new QToolButton(m_templatePathGroupBox);
m_addTemplatePathButton->setObjectName(QStringLiteral("m_addTemplatePathButton")); m_addTemplatePathButton->setObjectName(QString::fromUtf8("m_addTemplatePathButton"));
gridLayout->addWidget(m_addTemplatePathButton, 1, 0, 1, 1); gridLayout->addWidget(m_addTemplatePathButton, 1, 0, 1, 1);
m_removeTemplatePathButton = new QToolButton(m_templatePathGroupBox); m_removeTemplatePathButton = new QToolButton(m_templatePathGroupBox);
m_removeTemplatePathButton->setObjectName(QStringLiteral("m_removeTemplatePathButton")); m_removeTemplatePathButton->setObjectName(QString::fromUtf8("m_removeTemplatePathButton"));
gridLayout->addWidget(m_removeTemplatePathButton, 1, 1, 1, 1); gridLayout->addWidget(m_removeTemplatePathButton, 1, 1, 1, 1);
@ -116,7 +116,7 @@ public:
vboxLayout3->addWidget(m_templatePathGroupBox); vboxLayout3->addWidget(m_templatePathGroupBox);
m_gridPanel = new qdesigner_internal::GridPanel(PreferencesDialog); m_gridPanel = new qdesigner_internal::GridPanel(PreferencesDialog);
m_gridPanel->setObjectName(QStringLiteral("m_gridPanel")); m_gridPanel->setObjectName(QString::fromUtf8("m_gridPanel"));
vboxLayout3->addWidget(m_gridPanel); vboxLayout3->addWidget(m_gridPanel);
@ -127,14 +127,14 @@ public:
vboxLayout->addLayout(hboxLayout); vboxLayout->addLayout(hboxLayout);
line = new QFrame(PreferencesDialog); line = new QFrame(PreferencesDialog);
line->setObjectName(QStringLiteral("line")); line->setObjectName(QString::fromUtf8("line"));
line->setFrameShape(QFrame::HLine); line->setFrameShape(QFrame::HLine);
line->setFrameShadow(QFrame::Sunken); line->setFrameShadow(QFrame::Sunken);
vboxLayout->addWidget(line); vboxLayout->addWidget(line);
m_dialogButtonBox = new QDialogButtonBox(PreferencesDialog); m_dialogButtonBox = new QDialogButtonBox(PreferencesDialog);
m_dialogButtonBox->setObjectName(QStringLiteral("m_dialogButtonBox")); m_dialogButtonBox->setObjectName(QString::fromUtf8("m_dialogButtonBox"));
m_dialogButtonBox->setOrientation(Qt::Horizontal); m_dialogButtonBox->setOrientation(Qt::Horizontal);
m_dialogButtonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok); m_dialogButtonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);

View File

@ -40,40 +40,40 @@ public:
void setupUi(QGroupBox *PreviewConfigurationWidget) void setupUi(QGroupBox *PreviewConfigurationWidget)
{ {
if (PreviewConfigurationWidget->objectName().isEmpty()) if (PreviewConfigurationWidget->objectName().isEmpty())
PreviewConfigurationWidget->setObjectName(QStringLiteral("PreviewConfigurationWidget")); PreviewConfigurationWidget->setObjectName(QString::fromUtf8("PreviewConfigurationWidget"));
PreviewConfigurationWidget->setCheckable(true); PreviewConfigurationWidget->setCheckable(true);
formLayout = new QFormLayout(PreviewConfigurationWidget); formLayout = new QFormLayout(PreviewConfigurationWidget);
formLayout->setObjectName(QStringLiteral("formLayout")); formLayout->setObjectName(QString::fromUtf8("formLayout"));
m_styleLabel = new QLabel(PreviewConfigurationWidget); m_styleLabel = new QLabel(PreviewConfigurationWidget);
m_styleLabel->setObjectName(QStringLiteral("m_styleLabel")); m_styleLabel->setObjectName(QString::fromUtf8("m_styleLabel"));
formLayout->setWidget(0, QFormLayout::LabelRole, m_styleLabel); formLayout->setWidget(0, QFormLayout::LabelRole, m_styleLabel);
m_styleCombo = new QComboBox(PreviewConfigurationWidget); m_styleCombo = new QComboBox(PreviewConfigurationWidget);
m_styleCombo->setObjectName(QStringLiteral("m_styleCombo")); m_styleCombo->setObjectName(QString::fromUtf8("m_styleCombo"));
formLayout->setWidget(0, QFormLayout::FieldRole, m_styleCombo); formLayout->setWidget(0, QFormLayout::FieldRole, m_styleCombo);
m_appStyleSheetLabel = new QLabel(PreviewConfigurationWidget); m_appStyleSheetLabel = new QLabel(PreviewConfigurationWidget);
m_appStyleSheetLabel->setObjectName(QStringLiteral("m_appStyleSheetLabel")); m_appStyleSheetLabel->setObjectName(QString::fromUtf8("m_appStyleSheetLabel"));
formLayout->setWidget(1, QFormLayout::LabelRole, m_appStyleSheetLabel); formLayout->setWidget(1, QFormLayout::LabelRole, m_appStyleSheetLabel);
hboxLayout = new QHBoxLayout(); hboxLayout = new QHBoxLayout();
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
m_appStyleSheetLineEdit = new qdesigner_internal::TextPropertyEditor(PreviewConfigurationWidget); m_appStyleSheetLineEdit = new qdesigner_internal::TextPropertyEditor(PreviewConfigurationWidget);
m_appStyleSheetLineEdit->setObjectName(QStringLiteral("m_appStyleSheetLineEdit")); m_appStyleSheetLineEdit->setObjectName(QString::fromUtf8("m_appStyleSheetLineEdit"));
m_appStyleSheetLineEdit->setMinimumSize(QSize(149, 0)); m_appStyleSheetLineEdit->setMinimumSize(QSize(149, 0));
hboxLayout->addWidget(m_appStyleSheetLineEdit); hboxLayout->addWidget(m_appStyleSheetLineEdit);
m_appStyleSheetChangeButton = new QToolButton(PreviewConfigurationWidget); m_appStyleSheetChangeButton = new QToolButton(PreviewConfigurationWidget);
m_appStyleSheetChangeButton->setObjectName(QStringLiteral("m_appStyleSheetChangeButton")); m_appStyleSheetChangeButton->setObjectName(QString::fromUtf8("m_appStyleSheetChangeButton"));
hboxLayout->addWidget(m_appStyleSheetChangeButton); hboxLayout->addWidget(m_appStyleSheetChangeButton);
m_appStyleSheetClearButton = new QToolButton(PreviewConfigurationWidget); m_appStyleSheetClearButton = new QToolButton(PreviewConfigurationWidget);
m_appStyleSheetClearButton->setObjectName(QStringLiteral("m_appStyleSheetClearButton")); m_appStyleSheetClearButton->setObjectName(QString::fromUtf8("m_appStyleSheetClearButton"));
hboxLayout->addWidget(m_appStyleSheetClearButton); hboxLayout->addWidget(m_appStyleSheetClearButton);
@ -81,19 +81,19 @@ public:
formLayout->setLayout(1, QFormLayout::FieldRole, hboxLayout); formLayout->setLayout(1, QFormLayout::FieldRole, hboxLayout);
m_skinLabel = new QLabel(PreviewConfigurationWidget); m_skinLabel = new QLabel(PreviewConfigurationWidget);
m_skinLabel->setObjectName(QStringLiteral("m_skinLabel")); m_skinLabel->setObjectName(QString::fromUtf8("m_skinLabel"));
formLayout->setWidget(2, QFormLayout::LabelRole, m_skinLabel); formLayout->setWidget(2, QFormLayout::LabelRole, m_skinLabel);
hboxLayout1 = new QHBoxLayout(); hboxLayout1 = new QHBoxLayout();
hboxLayout1->setObjectName(QStringLiteral("hboxLayout1")); hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
m_skinCombo = new QComboBox(PreviewConfigurationWidget); m_skinCombo = new QComboBox(PreviewConfigurationWidget);
m_skinCombo->setObjectName(QStringLiteral("m_skinCombo")); m_skinCombo->setObjectName(QString::fromUtf8("m_skinCombo"));
hboxLayout1->addWidget(m_skinCombo); hboxLayout1->addWidget(m_skinCombo);
m_skinRemoveButton = new QToolButton(PreviewConfigurationWidget); m_skinRemoveButton = new QToolButton(PreviewConfigurationWidget);
m_skinRemoveButton->setObjectName(QStringLiteral("m_skinRemoveButton")); m_skinRemoveButton->setObjectName(QString::fromUtf8("m_skinRemoveButton"));
hboxLayout1->addWidget(m_skinRemoveButton); hboxLayout1->addWidget(m_skinRemoveButton);

View File

@ -45,7 +45,7 @@ public:
void setupUi(QDialog *PreviewDialogBase) void setupUi(QDialog *PreviewDialogBase)
{ {
if (PreviewDialogBase->objectName().isEmpty()) if (PreviewDialogBase->objectName().isEmpty())
PreviewDialogBase->setObjectName(QStringLiteral("PreviewDialogBase")); PreviewDialogBase->setObjectName(QString::fromUtf8("PreviewDialogBase"));
PreviewDialogBase->resize(733, 479); PreviewDialogBase->resize(733, 479);
vboxLayout = new QVBoxLayout(PreviewDialogBase); vboxLayout = new QVBoxLayout(PreviewDialogBase);
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
@ -54,7 +54,7 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout->setContentsMargins(9, 9, 9, 9); vboxLayout->setContentsMargins(9, 9, 9, 9);
#endif #endif
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
hboxLayout = new QHBoxLayout(); hboxLayout = new QHBoxLayout();
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
hboxLayout->setSpacing(6); hboxLayout->setSpacing(6);
@ -62,14 +62,14 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
hboxLayout->setContentsMargins(0, 0, 0, 0); hboxLayout->setContentsMargins(0, 0, 0, 0);
#endif #endif
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
label = new QLabel(PreviewDialogBase); label = new QLabel(PreviewDialogBase);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
hboxLayout->addWidget(label); hboxLayout->addWidget(label);
paperSizeCombo = new QComboBox(PreviewDialogBase); paperSizeCombo = new QComboBox(PreviewDialogBase);
paperSizeCombo->setObjectName(QStringLiteral("paperSizeCombo")); paperSizeCombo->setObjectName(QString::fromUtf8("paperSizeCombo"));
QSizePolicy sizePolicy(static_cast<QSizePolicy::Policy>(1), static_cast<QSizePolicy::Policy>(0)); QSizePolicy sizePolicy(static_cast<QSizePolicy::Policy>(1), static_cast<QSizePolicy::Policy>(0));
sizePolicy.setHorizontalStretch(0); sizePolicy.setHorizontalStretch(0);
sizePolicy.setVerticalStretch(0); sizePolicy.setVerticalStretch(0);
@ -79,12 +79,12 @@ public:
hboxLayout->addWidget(paperSizeCombo); hboxLayout->addWidget(paperSizeCombo);
label_2 = new QLabel(PreviewDialogBase); label_2 = new QLabel(PreviewDialogBase);
label_2->setObjectName(QStringLiteral("label_2")); label_2->setObjectName(QString::fromUtf8("label_2"));
hboxLayout->addWidget(label_2); hboxLayout->addWidget(label_2);
paperOrientationCombo = new QComboBox(PreviewDialogBase); paperOrientationCombo = new QComboBox(PreviewDialogBase);
paperOrientationCombo->setObjectName(QStringLiteral("paperOrientationCombo")); paperOrientationCombo->setObjectName(QString::fromUtf8("paperOrientationCombo"));
sizePolicy.setHeightForWidth(paperOrientationCombo->sizePolicy().hasHeightForWidth()); sizePolicy.setHeightForWidth(paperOrientationCombo->sizePolicy().hasHeightForWidth());
paperOrientationCombo->setSizePolicy(sizePolicy); paperOrientationCombo->setSizePolicy(sizePolicy);
@ -102,9 +102,9 @@ public:
hboxLayout1->setSpacing(6); hboxLayout1->setSpacing(6);
#endif #endif
hboxLayout1->setContentsMargins(0, 0, 0, 0); hboxLayout1->setContentsMargins(0, 0, 0, 0);
hboxLayout1->setObjectName(QStringLiteral("hboxLayout1")); hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
pageList = new QTreeWidget(PreviewDialogBase); pageList = new QTreeWidget(PreviewDialogBase);
pageList->setObjectName(QStringLiteral("pageList")); pageList->setObjectName(QString::fromUtf8("pageList"));
pageList->setIndentation(0); pageList->setIndentation(0);
pageList->setRootIsDecorated(false); pageList->setRootIsDecorated(false);
pageList->setUniformRowHeights(true); pageList->setUniformRowHeights(true);
@ -114,7 +114,7 @@ public:
hboxLayout1->addWidget(pageList); hboxLayout1->addWidget(pageList);
previewArea = new QScrollArea(PreviewDialogBase); previewArea = new QScrollArea(PreviewDialogBase);
previewArea->setObjectName(QStringLiteral("previewArea")); previewArea->setObjectName(QString::fromUtf8("previewArea"));
QSizePolicy sizePolicy1(static_cast<QSizePolicy::Policy>(5), static_cast<QSizePolicy::Policy>(5)); QSizePolicy sizePolicy1(static_cast<QSizePolicy::Policy>(5), static_cast<QSizePolicy::Policy>(5));
sizePolicy1.setHorizontalStretch(1); sizePolicy1.setHorizontalStretch(1);
sizePolicy1.setVerticalStretch(0); sizePolicy1.setVerticalStretch(0);
@ -131,9 +131,9 @@ public:
hboxLayout2->setSpacing(6); hboxLayout2->setSpacing(6);
#endif #endif
hboxLayout2->setContentsMargins(0, 0, 0, 0); hboxLayout2->setContentsMargins(0, 0, 0, 0);
hboxLayout2->setObjectName(QStringLiteral("hboxLayout2")); hboxLayout2->setObjectName(QString::fromUtf8("hboxLayout2"));
progressBar = new QProgressBar(PreviewDialogBase); progressBar = new QProgressBar(PreviewDialogBase);
progressBar->setObjectName(QStringLiteral("progressBar")); progressBar->setObjectName(QString::fromUtf8("progressBar"));
progressBar->setEnabled(false); progressBar->setEnabled(false);
QSizePolicy sizePolicy2(static_cast<QSizePolicy::Policy>(7), static_cast<QSizePolicy::Policy>(0)); QSizePolicy sizePolicy2(static_cast<QSizePolicy::Policy>(7), static_cast<QSizePolicy::Policy>(0));
sizePolicy2.setHorizontalStretch(1); sizePolicy2.setHorizontalStretch(1);
@ -147,7 +147,7 @@ public:
hboxLayout2->addWidget(progressBar); hboxLayout2->addWidget(progressBar);
buttonBox = new QDialogButtonBox(PreviewDialogBase); buttonBox = new QDialogButtonBox(PreviewDialogBase);
buttonBox->setObjectName(QStringLiteral("buttonBox")); buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setOrientation(Qt::Horizontal); buttonBox->setOrientation(Qt::Horizontal);
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::NoButton|QDialogButtonBox::Ok); buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::NoButton|QDialogButtonBox::Ok);

View File

@ -90,7 +90,7 @@ public:
void setupUi(QWidget *qdesigner_internal__PreviewWidget) void setupUi(QWidget *qdesigner_internal__PreviewWidget)
{ {
if (qdesigner_internal__PreviewWidget->objectName().isEmpty()) if (qdesigner_internal__PreviewWidget->objectName().isEmpty())
qdesigner_internal__PreviewWidget->setObjectName(QStringLiteral("qdesigner_internal__PreviewWidget")); qdesigner_internal__PreviewWidget->setObjectName(QString::fromUtf8("qdesigner_internal__PreviewWidget"));
qdesigner_internal__PreviewWidget->resize(471, 251); qdesigner_internal__PreviewWidget->resize(471, 251);
QSizePolicy sizePolicy(static_cast<QSizePolicy::Policy>(1), static_cast<QSizePolicy::Policy>(1)); QSizePolicy sizePolicy(static_cast<QSizePolicy::Policy>(1), static_cast<QSizePolicy::Policy>(1));
sizePolicy.setHorizontalStretch(0); sizePolicy.setHorizontalStretch(0);
@ -104,7 +104,7 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
gridLayout->setContentsMargins(9, 9, 9, 9); gridLayout->setContentsMargins(9, 9, 9, 9);
#endif #endif
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
vboxLayout = new QVBoxLayout(); vboxLayout = new QVBoxLayout();
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout->setSpacing(6); vboxLayout->setSpacing(6);
@ -112,15 +112,15 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout->setContentsMargins(0, 0, 0, 0); vboxLayout->setContentsMargins(0, 0, 0, 0);
#endif #endif
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
LineEdit1 = new QLineEdit(qdesigner_internal__PreviewWidget); LineEdit1 = new QLineEdit(qdesigner_internal__PreviewWidget);
LineEdit1->setObjectName(QStringLiteral("LineEdit1")); LineEdit1->setObjectName(QString::fromUtf8("LineEdit1"));
vboxLayout->addWidget(LineEdit1); vboxLayout->addWidget(LineEdit1);
ComboBox1 = new QComboBox(qdesigner_internal__PreviewWidget); ComboBox1 = new QComboBox(qdesigner_internal__PreviewWidget);
ComboBox1->addItem(QString()); ComboBox1->addItem(QString());
ComboBox1->setObjectName(QStringLiteral("ComboBox1")); ComboBox1->setObjectName(QString::fromUtf8("ComboBox1"));
vboxLayout->addWidget(ComboBox1); vboxLayout->addWidget(ComboBox1);
@ -129,14 +129,14 @@ public:
hboxLayout->setSpacing(6); hboxLayout->setSpacing(6);
#endif #endif
hboxLayout->setContentsMargins(0, 0, 0, 0); hboxLayout->setContentsMargins(0, 0, 0, 0);
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
SpinBox1 = new QSpinBox(qdesigner_internal__PreviewWidget); SpinBox1 = new QSpinBox(qdesigner_internal__PreviewWidget);
SpinBox1->setObjectName(QStringLiteral("SpinBox1")); SpinBox1->setObjectName(QString::fromUtf8("SpinBox1"));
hboxLayout->addWidget(SpinBox1); hboxLayout->addWidget(SpinBox1);
PushButton1 = new QPushButton(qdesigner_internal__PreviewWidget); PushButton1 = new QPushButton(qdesigner_internal__PreviewWidget);
PushButton1->setObjectName(QStringLiteral("PushButton1")); PushButton1->setObjectName(QString::fromUtf8("PushButton1"));
hboxLayout->addWidget(PushButton1); hboxLayout->addWidget(PushButton1);
@ -144,19 +144,19 @@ public:
vboxLayout->addLayout(hboxLayout); vboxLayout->addLayout(hboxLayout);
ScrollBar1 = new QScrollBar(qdesigner_internal__PreviewWidget); ScrollBar1 = new QScrollBar(qdesigner_internal__PreviewWidget);
ScrollBar1->setObjectName(QStringLiteral("ScrollBar1")); ScrollBar1->setObjectName(QString::fromUtf8("ScrollBar1"));
ScrollBar1->setOrientation(Qt::Horizontal); ScrollBar1->setOrientation(Qt::Horizontal);
vboxLayout->addWidget(ScrollBar1); vboxLayout->addWidget(ScrollBar1);
Slider1 = new QSlider(qdesigner_internal__PreviewWidget); Slider1 = new QSlider(qdesigner_internal__PreviewWidget);
Slider1->setObjectName(QStringLiteral("Slider1")); Slider1->setObjectName(QString::fromUtf8("Slider1"));
Slider1->setOrientation(Qt::Horizontal); Slider1->setOrientation(Qt::Horizontal);
vboxLayout->addWidget(Slider1); vboxLayout->addWidget(Slider1);
listWidget = new QListWidget(qdesigner_internal__PreviewWidget); listWidget = new QListWidget(qdesigner_internal__PreviewWidget);
listWidget->setObjectName(QStringLiteral("listWidget")); listWidget->setObjectName(QString::fromUtf8("listWidget"));
listWidget->setMaximumSize(QSize(32767, 50)); listWidget->setMaximumSize(QSize(32767, 50));
vboxLayout->addWidget(listWidget); vboxLayout->addWidget(listWidget);
@ -169,13 +169,13 @@ public:
gridLayout->addItem(spacerItem, 3, 0, 1, 2); gridLayout->addItem(spacerItem, 3, 0, 1, 2);
ProgressBar1 = new QProgressBar(qdesigner_internal__PreviewWidget); ProgressBar1 = new QProgressBar(qdesigner_internal__PreviewWidget);
ProgressBar1->setObjectName(QStringLiteral("ProgressBar1")); ProgressBar1->setObjectName(QString::fromUtf8("ProgressBar1"));
ProgressBar1->setOrientation(Qt::Horizontal); ProgressBar1->setOrientation(Qt::Horizontal);
gridLayout->addWidget(ProgressBar1, 2, 0, 1, 1); gridLayout->addWidget(ProgressBar1, 2, 0, 1, 1);
ButtonGroup2 = new QGroupBox(qdesigner_internal__PreviewWidget); ButtonGroup2 = new QGroupBox(qdesigner_internal__PreviewWidget);
ButtonGroup2->setObjectName(QStringLiteral("ButtonGroup2")); ButtonGroup2->setObjectName(QString::fromUtf8("ButtonGroup2"));
vboxLayout1 = new QVBoxLayout(ButtonGroup2); vboxLayout1 = new QVBoxLayout(ButtonGroup2);
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout1->setSpacing(6); vboxLayout1->setSpacing(6);
@ -183,15 +183,15 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout1->setContentsMargins(9, 9, 9, 9); vboxLayout1->setContentsMargins(9, 9, 9, 9);
#endif #endif
vboxLayout1->setObjectName(QStringLiteral("vboxLayout1")); vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1"));
CheckBox1 = new QCheckBox(ButtonGroup2); CheckBox1 = new QCheckBox(ButtonGroup2);
CheckBox1->setObjectName(QStringLiteral("CheckBox1")); CheckBox1->setObjectName(QString::fromUtf8("CheckBox1"));
CheckBox1->setChecked(true); CheckBox1->setChecked(true);
vboxLayout1->addWidget(CheckBox1); vboxLayout1->addWidget(CheckBox1);
CheckBox2 = new QCheckBox(ButtonGroup2); CheckBox2 = new QCheckBox(ButtonGroup2);
CheckBox2->setObjectName(QStringLiteral("CheckBox2")); CheckBox2->setObjectName(QString::fromUtf8("CheckBox2"));
vboxLayout1->addWidget(CheckBox2); vboxLayout1->addWidget(CheckBox2);
@ -199,7 +199,7 @@ public:
gridLayout->addWidget(ButtonGroup2, 1, 0, 1, 1); gridLayout->addWidget(ButtonGroup2, 1, 0, 1, 1);
ButtonGroup1 = new QGroupBox(qdesigner_internal__PreviewWidget); ButtonGroup1 = new QGroupBox(qdesigner_internal__PreviewWidget);
ButtonGroup1->setObjectName(QStringLiteral("ButtonGroup1")); ButtonGroup1->setObjectName(QString::fromUtf8("ButtonGroup1"));
vboxLayout2 = new QVBoxLayout(ButtonGroup1); vboxLayout2 = new QVBoxLayout(ButtonGroup1);
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout2->setSpacing(6); vboxLayout2->setSpacing(6);
@ -207,20 +207,20 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout2->setContentsMargins(9, 9, 9, 9); vboxLayout2->setContentsMargins(9, 9, 9, 9);
#endif #endif
vboxLayout2->setObjectName(QStringLiteral("vboxLayout2")); vboxLayout2->setObjectName(QString::fromUtf8("vboxLayout2"));
RadioButton1 = new QRadioButton(ButtonGroup1); RadioButton1 = new QRadioButton(ButtonGroup1);
RadioButton1->setObjectName(QStringLiteral("RadioButton1")); RadioButton1->setObjectName(QString::fromUtf8("RadioButton1"));
RadioButton1->setChecked(true); RadioButton1->setChecked(true);
vboxLayout2->addWidget(RadioButton1); vboxLayout2->addWidget(RadioButton1);
RadioButton2 = new QRadioButton(ButtonGroup1); RadioButton2 = new QRadioButton(ButtonGroup1);
RadioButton2->setObjectName(QStringLiteral("RadioButton2")); RadioButton2->setObjectName(QString::fromUtf8("RadioButton2"));
vboxLayout2->addWidget(RadioButton2); vboxLayout2->addWidget(RadioButton2);
RadioButton3 = new QRadioButton(ButtonGroup1); RadioButton3 = new QRadioButton(ButtonGroup1);
RadioButton3->setObjectName(QStringLiteral("RadioButton3")); RadioButton3->setObjectName(QString::fromUtf8("RadioButton3"));
vboxLayout2->addWidget(RadioButton3); vboxLayout2->addWidget(RadioButton3);

View File

@ -34,44 +34,44 @@ public:
void setupUi(QDialog *ProxyDialog) void setupUi(QDialog *ProxyDialog)
{ {
if (ProxyDialog->objectName().isEmpty()) if (ProxyDialog->objectName().isEmpty())
ProxyDialog->setObjectName(QStringLiteral("ProxyDialog")); ProxyDialog->setObjectName(QString::fromUtf8("ProxyDialog"));
ProxyDialog->resize(369, 144); ProxyDialog->resize(369, 144);
gridLayout = new QGridLayout(ProxyDialog); gridLayout = new QGridLayout(ProxyDialog);
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
iconLabel = new QLabel(ProxyDialog); iconLabel = new QLabel(ProxyDialog);
iconLabel->setObjectName(QStringLiteral("iconLabel")); iconLabel->setObjectName(QString::fromUtf8("iconLabel"));
gridLayout->addWidget(iconLabel, 0, 0, 1, 1); gridLayout->addWidget(iconLabel, 0, 0, 1, 1);
introLabel = new QLabel(ProxyDialog); introLabel = new QLabel(ProxyDialog);
introLabel->setObjectName(QStringLiteral("introLabel")); introLabel->setObjectName(QString::fromUtf8("introLabel"));
introLabel->setWordWrap(true); introLabel->setWordWrap(true);
gridLayout->addWidget(introLabel, 0, 1, 1, 2); gridLayout->addWidget(introLabel, 0, 1, 1, 2);
usernameLabel = new QLabel(ProxyDialog); usernameLabel = new QLabel(ProxyDialog);
usernameLabel->setObjectName(QStringLiteral("usernameLabel")); usernameLabel->setObjectName(QString::fromUtf8("usernameLabel"));
gridLayout->addWidget(usernameLabel, 1, 0, 1, 2); gridLayout->addWidget(usernameLabel, 1, 0, 1, 2);
userNameLineEdit = new QLineEdit(ProxyDialog); userNameLineEdit = new QLineEdit(ProxyDialog);
userNameLineEdit->setObjectName(QStringLiteral("userNameLineEdit")); userNameLineEdit->setObjectName(QString::fromUtf8("userNameLineEdit"));
gridLayout->addWidget(userNameLineEdit, 1, 2, 1, 1); gridLayout->addWidget(userNameLineEdit, 1, 2, 1, 1);
passwordLabel = new QLabel(ProxyDialog); passwordLabel = new QLabel(ProxyDialog);
passwordLabel->setObjectName(QStringLiteral("passwordLabel")); passwordLabel->setObjectName(QString::fromUtf8("passwordLabel"));
gridLayout->addWidget(passwordLabel, 2, 0, 1, 2); gridLayout->addWidget(passwordLabel, 2, 0, 1, 2);
passwordLineEdit = new QLineEdit(ProxyDialog); passwordLineEdit = new QLineEdit(ProxyDialog);
passwordLineEdit->setObjectName(QStringLiteral("passwordLineEdit")); passwordLineEdit->setObjectName(QString::fromUtf8("passwordLineEdit"));
passwordLineEdit->setEchoMode(QLineEdit::Password); passwordLineEdit->setEchoMode(QLineEdit::Password);
gridLayout->addWidget(passwordLineEdit, 2, 2, 1, 1); gridLayout->addWidget(passwordLineEdit, 2, 2, 1, 1);
buttonBox = new QDialogButtonBox(ProxyDialog); buttonBox = new QDialogButtonBox(ProxyDialog);
buttonBox->setObjectName(QStringLiteral("buttonBox")); buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setOrientation(Qt::Horizontal); buttonBox->setOrientation(Qt::Horizontal);
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok); buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);

View File

@ -92,20 +92,20 @@ public:
void setupUi(QDialog *QFileDialog) void setupUi(QDialog *QFileDialog)
{ {
if (QFileDialog->objectName().isEmpty()) if (QFileDialog->objectName().isEmpty())
QFileDialog->setObjectName(QStringLiteral("QFileDialog")); QFileDialog->setObjectName(QString::fromUtf8("QFileDialog"));
QFileDialog->resize(521, 316); QFileDialog->resize(521, 316);
QFileDialog->setSizeGripEnabled(true); QFileDialog->setSizeGripEnabled(true);
gridLayout = new QGridLayout(QFileDialog); gridLayout = new QGridLayout(QFileDialog);
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
lookInLabel = new QLabel(QFileDialog); lookInLabel = new QLabel(QFileDialog);
lookInLabel->setObjectName(QStringLiteral("lookInLabel")); lookInLabel->setObjectName(QString::fromUtf8("lookInLabel"));
gridLayout->addWidget(lookInLabel, 0, 0, 1, 1); gridLayout->addWidget(lookInLabel, 0, 0, 1, 1);
hboxLayout = new QHBoxLayout(); hboxLayout = new QHBoxLayout();
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
lookInCombo = new QFileDialogComboBox(QFileDialog); lookInCombo = new QFileDialogComboBox(QFileDialog);
lookInCombo->setObjectName(QStringLiteral("lookInCombo")); lookInCombo->setObjectName(QString::fromUtf8("lookInCombo"));
QSizePolicy sizePolicy(QSizePolicy::Ignored, QSizePolicy::Fixed); QSizePolicy sizePolicy(QSizePolicy::Ignored, QSizePolicy::Fixed);
sizePolicy.setHorizontalStretch(1); sizePolicy.setHorizontalStretch(1);
sizePolicy.setVerticalStretch(0); sizePolicy.setVerticalStretch(0);
@ -116,32 +116,32 @@ public:
hboxLayout->addWidget(lookInCombo); hboxLayout->addWidget(lookInCombo);
backButton = new QToolButton(QFileDialog); backButton = new QToolButton(QFileDialog);
backButton->setObjectName(QStringLiteral("backButton")); backButton->setObjectName(QString::fromUtf8("backButton"));
hboxLayout->addWidget(backButton); hboxLayout->addWidget(backButton);
forwardButton = new QToolButton(QFileDialog); forwardButton = new QToolButton(QFileDialog);
forwardButton->setObjectName(QStringLiteral("forwardButton")); forwardButton->setObjectName(QString::fromUtf8("forwardButton"));
hboxLayout->addWidget(forwardButton); hboxLayout->addWidget(forwardButton);
toParentButton = new QToolButton(QFileDialog); toParentButton = new QToolButton(QFileDialog);
toParentButton->setObjectName(QStringLiteral("toParentButton")); toParentButton->setObjectName(QString::fromUtf8("toParentButton"));
hboxLayout->addWidget(toParentButton); hboxLayout->addWidget(toParentButton);
newFolderButton = new QToolButton(QFileDialog); newFolderButton = new QToolButton(QFileDialog);
newFolderButton->setObjectName(QStringLiteral("newFolderButton")); newFolderButton->setObjectName(QString::fromUtf8("newFolderButton"));
hboxLayout->addWidget(newFolderButton); hboxLayout->addWidget(newFolderButton);
listModeButton = new QToolButton(QFileDialog); listModeButton = new QToolButton(QFileDialog);
listModeButton->setObjectName(QStringLiteral("listModeButton")); listModeButton->setObjectName(QString::fromUtf8("listModeButton"));
hboxLayout->addWidget(listModeButton); hboxLayout->addWidget(listModeButton);
detailModeButton = new QToolButton(QFileDialog); detailModeButton = new QToolButton(QFileDialog);
detailModeButton->setObjectName(QStringLiteral("detailModeButton")); detailModeButton->setObjectName(QString::fromUtf8("detailModeButton"));
hboxLayout->addWidget(detailModeButton); hboxLayout->addWidget(detailModeButton);
@ -149,7 +149,7 @@ public:
gridLayout->addLayout(hboxLayout, 0, 1, 1, 2); gridLayout->addLayout(hboxLayout, 0, 1, 1, 2);
splitter = new QSplitter(QFileDialog); splitter = new QSplitter(QFileDialog);
splitter->setObjectName(QStringLiteral("splitter")); splitter->setObjectName(QString::fromUtf8("splitter"));
QSizePolicy sizePolicy1(QSizePolicy::Expanding, QSizePolicy::Expanding); QSizePolicy sizePolicy1(QSizePolicy::Expanding, QSizePolicy::Expanding);
sizePolicy1.setHorizontalStretch(0); sizePolicy1.setHorizontalStretch(0);
sizePolicy1.setVerticalStretch(0); sizePolicy1.setVerticalStretch(0);
@ -157,38 +157,38 @@ public:
splitter->setSizePolicy(sizePolicy1); splitter->setSizePolicy(sizePolicy1);
splitter->setOrientation(Qt::Horizontal); splitter->setOrientation(Qt::Horizontal);
sidebar = new QSidebar(splitter); sidebar = new QSidebar(splitter);
sidebar->setObjectName(QStringLiteral("sidebar")); sidebar->setObjectName(QString::fromUtf8("sidebar"));
splitter->addWidget(sidebar); splitter->addWidget(sidebar);
frame = new QFrame(splitter); frame = new QFrame(splitter);
frame->setObjectName(QStringLiteral("frame")); frame->setObjectName(QString::fromUtf8("frame"));
frame->setFrameShape(QFrame::NoFrame); frame->setFrameShape(QFrame::NoFrame);
frame->setFrameShadow(QFrame::Raised); frame->setFrameShadow(QFrame::Raised);
vboxLayout = new QVBoxLayout(frame); vboxLayout = new QVBoxLayout(frame);
vboxLayout->setSpacing(0); vboxLayout->setSpacing(0);
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
vboxLayout->setContentsMargins(0, 0, 0, 0); vboxLayout->setContentsMargins(0, 0, 0, 0);
stackedWidget = new QStackedWidget(frame); stackedWidget = new QStackedWidget(frame);
stackedWidget->setObjectName(QStringLiteral("stackedWidget")); stackedWidget->setObjectName(QString::fromUtf8("stackedWidget"));
page = new QWidget(); page = new QWidget();
page->setObjectName(QStringLiteral("page")); page->setObjectName(QString::fromUtf8("page"));
vboxLayout1 = new QVBoxLayout(page); vboxLayout1 = new QVBoxLayout(page);
vboxLayout1->setSpacing(0); vboxLayout1->setSpacing(0);
vboxLayout1->setObjectName(QStringLiteral("vboxLayout1")); vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1"));
vboxLayout1->setContentsMargins(0, 0, 0, 0); vboxLayout1->setContentsMargins(0, 0, 0, 0);
listView = new QFileDialogListView(page); listView = new QFileDialogListView(page);
listView->setObjectName(QStringLiteral("listView")); listView->setObjectName(QString::fromUtf8("listView"));
vboxLayout1->addWidget(listView); vboxLayout1->addWidget(listView);
stackedWidget->addWidget(page); stackedWidget->addWidget(page);
page_2 = new QWidget(); page_2 = new QWidget();
page_2->setObjectName(QStringLiteral("page_2")); page_2->setObjectName(QString::fromUtf8("page_2"));
vboxLayout2 = new QVBoxLayout(page_2); vboxLayout2 = new QVBoxLayout(page_2);
vboxLayout2->setSpacing(0); vboxLayout2->setSpacing(0);
vboxLayout2->setObjectName(QStringLiteral("vboxLayout2")); vboxLayout2->setObjectName(QString::fromUtf8("vboxLayout2"));
vboxLayout2->setContentsMargins(0, 0, 0, 0); vboxLayout2->setContentsMargins(0, 0, 0, 0);
treeView = new QFileDialogTreeView(page_2); treeView = new QFileDialogTreeView(page_2);
treeView->setObjectName(QStringLiteral("treeView")); treeView->setObjectName(QString::fromUtf8("treeView"));
vboxLayout2->addWidget(treeView); vboxLayout2->addWidget(treeView);
@ -201,7 +201,7 @@ public:
gridLayout->addWidget(splitter, 1, 0, 1, 3); gridLayout->addWidget(splitter, 1, 0, 1, 3);
fileNameLabel = new QLabel(QFileDialog); fileNameLabel = new QLabel(QFileDialog);
fileNameLabel->setObjectName(QStringLiteral("fileNameLabel")); fileNameLabel->setObjectName(QString::fromUtf8("fileNameLabel"));
QSizePolicy sizePolicy2(QSizePolicy::Minimum, QSizePolicy::Preferred); QSizePolicy sizePolicy2(QSizePolicy::Minimum, QSizePolicy::Preferred);
sizePolicy2.setHorizontalStretch(0); sizePolicy2.setHorizontalStretch(0);
sizePolicy2.setVerticalStretch(0); sizePolicy2.setVerticalStretch(0);
@ -212,7 +212,7 @@ public:
gridLayout->addWidget(fileNameLabel, 2, 0, 1, 1); gridLayout->addWidget(fileNameLabel, 2, 0, 1, 1);
fileNameEdit = new QFileDialogLineEdit(QFileDialog); fileNameEdit = new QFileDialogLineEdit(QFileDialog);
fileNameEdit->setObjectName(QStringLiteral("fileNameEdit")); fileNameEdit->setObjectName(QString::fromUtf8("fileNameEdit"));
QSizePolicy sizePolicy3(QSizePolicy::Expanding, QSizePolicy::Fixed); QSizePolicy sizePolicy3(QSizePolicy::Expanding, QSizePolicy::Fixed);
sizePolicy3.setHorizontalStretch(1); sizePolicy3.setHorizontalStretch(1);
sizePolicy3.setVerticalStretch(0); sizePolicy3.setVerticalStretch(0);
@ -222,14 +222,14 @@ public:
gridLayout->addWidget(fileNameEdit, 2, 1, 1, 1); gridLayout->addWidget(fileNameEdit, 2, 1, 1, 1);
buttonBox = new QDialogButtonBox(QFileDialog); buttonBox = new QDialogButtonBox(QFileDialog);
buttonBox->setObjectName(QStringLiteral("buttonBox")); buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setOrientation(Qt::Vertical); buttonBox->setOrientation(Qt::Vertical);
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::NoButton|QDialogButtonBox::Ok); buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::NoButton|QDialogButtonBox::Ok);
gridLayout->addWidget(buttonBox, 2, 2, 2, 1); gridLayout->addWidget(buttonBox, 2, 2, 2, 1);
fileTypeLabel = new QLabel(QFileDialog); fileTypeLabel = new QLabel(QFileDialog);
fileTypeLabel->setObjectName(QStringLiteral("fileTypeLabel")); fileTypeLabel->setObjectName(QString::fromUtf8("fileTypeLabel"));
QSizePolicy sizePolicy4(QSizePolicy::Preferred, QSizePolicy::Fixed); QSizePolicy sizePolicy4(QSizePolicy::Preferred, QSizePolicy::Fixed);
sizePolicy4.setHorizontalStretch(0); sizePolicy4.setHorizontalStretch(0);
sizePolicy4.setVerticalStretch(0); sizePolicy4.setVerticalStretch(0);
@ -239,7 +239,7 @@ public:
gridLayout->addWidget(fileTypeLabel, 3, 0, 1, 1); gridLayout->addWidget(fileTypeLabel, 3, 0, 1, 1);
fileTypeCombo = new QComboBox(QFileDialog); fileTypeCombo = new QComboBox(QFileDialog);
fileTypeCombo->setObjectName(QStringLiteral("fileTypeCombo")); fileTypeCombo->setObjectName(QString::fromUtf8("fileTypeCombo"));
QSizePolicy sizePolicy5(QSizePolicy::Expanding, QSizePolicy::Fixed); QSizePolicy sizePolicy5(QSizePolicy::Expanding, QSizePolicy::Fixed);
sizePolicy5.setHorizontalStretch(0); sizePolicy5.setHorizontalStretch(0);
sizePolicy5.setVerticalStretch(0); sizePolicy5.setVerticalStretch(0);

View File

@ -76,45 +76,45 @@ public:
void setupUi(QWidget *QPageSetupWidget) void setupUi(QWidget *QPageSetupWidget)
{ {
if (QPageSetupWidget->objectName().isEmpty()) if (QPageSetupWidget->objectName().isEmpty())
QPageSetupWidget->setObjectName(QStringLiteral("QPageSetupWidget")); QPageSetupWidget->setObjectName(QString::fromUtf8("QPageSetupWidget"));
QPageSetupWidget->resize(416, 515); QPageSetupWidget->resize(416, 515);
gridLayout_3 = new QGridLayout(QPageSetupWidget); gridLayout_3 = new QGridLayout(QPageSetupWidget);
gridLayout_3->setContentsMargins(0, 0, 0, 0); gridLayout_3->setContentsMargins(0, 0, 0, 0);
gridLayout_3->setObjectName(QStringLiteral("gridLayout_3")); gridLayout_3->setObjectName(QString::fromUtf8("gridLayout_3"));
groupBox_2 = new QGroupBox(QPageSetupWidget); groupBox_2 = new QGroupBox(QPageSetupWidget);
groupBox_2->setObjectName(QStringLiteral("groupBox_2")); groupBox_2->setObjectName(QString::fromUtf8("groupBox_2"));
gridLayout_2 = new QGridLayout(groupBox_2); gridLayout_2 = new QGridLayout(groupBox_2);
gridLayout_2->setObjectName(QStringLiteral("gridLayout_2")); gridLayout_2->setObjectName(QString::fromUtf8("gridLayout_2"));
pageSizeLabel = new QLabel(groupBox_2); pageSizeLabel = new QLabel(groupBox_2);
pageSizeLabel->setObjectName(QStringLiteral("pageSizeLabel")); pageSizeLabel->setObjectName(QString::fromUtf8("pageSizeLabel"));
gridLayout_2->addWidget(pageSizeLabel, 0, 0, 1, 1); gridLayout_2->addWidget(pageSizeLabel, 0, 0, 1, 1);
pageSizeCombo = new QComboBox(groupBox_2); pageSizeCombo = new QComboBox(groupBox_2);
pageSizeCombo->setObjectName(QStringLiteral("pageSizeCombo")); pageSizeCombo->setObjectName(QString::fromUtf8("pageSizeCombo"));
gridLayout_2->addWidget(pageSizeCombo, 0, 1, 1, 1); gridLayout_2->addWidget(pageSizeCombo, 0, 1, 1, 1);
widthLabel = new QLabel(groupBox_2); widthLabel = new QLabel(groupBox_2);
widthLabel->setObjectName(QStringLiteral("widthLabel")); widthLabel->setObjectName(QString::fromUtf8("widthLabel"));
gridLayout_2->addWidget(widthLabel, 1, 0, 1, 1); gridLayout_2->addWidget(widthLabel, 1, 0, 1, 1);
horizontalLayout_3 = new QHBoxLayout(); horizontalLayout_3 = new QHBoxLayout();
horizontalLayout_3->setObjectName(QStringLiteral("horizontalLayout_3")); horizontalLayout_3->setObjectName(QString::fromUtf8("horizontalLayout_3"));
pageWidth = new QDoubleSpinBox(groupBox_2); pageWidth = new QDoubleSpinBox(groupBox_2);
pageWidth->setObjectName(QStringLiteral("pageWidth")); pageWidth->setObjectName(QString::fromUtf8("pageWidth"));
pageWidth->setMaximum(9999.99); pageWidth->setMaximum(9999.99);
horizontalLayout_3->addWidget(pageWidth); horizontalLayout_3->addWidget(pageWidth);
heightLabel = new QLabel(groupBox_2); heightLabel = new QLabel(groupBox_2);
heightLabel->setObjectName(QStringLiteral("heightLabel")); heightLabel->setObjectName(QString::fromUtf8("heightLabel"));
horizontalLayout_3->addWidget(heightLabel); horizontalLayout_3->addWidget(heightLabel);
pageHeight = new QDoubleSpinBox(groupBox_2); pageHeight = new QDoubleSpinBox(groupBox_2);
pageHeight->setObjectName(QStringLiteral("pageHeight")); pageHeight->setObjectName(QString::fromUtf8("pageHeight"));
pageHeight->setMaximum(9999.99); pageHeight->setMaximum(9999.99);
horizontalLayout_3->addWidget(pageHeight); horizontalLayout_3->addWidget(pageHeight);
@ -123,12 +123,12 @@ public:
gridLayout_2->addLayout(horizontalLayout_3, 1, 1, 1, 1); gridLayout_2->addLayout(horizontalLayout_3, 1, 1, 1, 1);
paperSourceLabel = new QLabel(groupBox_2); paperSourceLabel = new QLabel(groupBox_2);
paperSourceLabel->setObjectName(QStringLiteral("paperSourceLabel")); paperSourceLabel->setObjectName(QString::fromUtf8("paperSourceLabel"));
gridLayout_2->addWidget(paperSourceLabel, 2, 0, 1, 1); gridLayout_2->addWidget(paperSourceLabel, 2, 0, 1, 1);
paperSource = new QComboBox(groupBox_2); paperSource = new QComboBox(groupBox_2);
paperSource->setObjectName(QStringLiteral("paperSource")); paperSource->setObjectName(QString::fromUtf8("paperSource"));
gridLayout_2->addWidget(paperSource, 2, 1, 1, 1); gridLayout_2->addWidget(paperSource, 2, 1, 1, 1);
@ -140,9 +140,9 @@ public:
gridLayout_3->addWidget(groupBox_2, 1, 0, 1, 2); gridLayout_3->addWidget(groupBox_2, 1, 0, 1, 2);
horizontalLayout_4 = new QHBoxLayout(); horizontalLayout_4 = new QHBoxLayout();
horizontalLayout_4->setObjectName(QStringLiteral("horizontalLayout_4")); horizontalLayout_4->setObjectName(QString::fromUtf8("horizontalLayout_4"));
unitCombo = new QComboBox(QPageSetupWidget); unitCombo = new QComboBox(QPageSetupWidget);
unitCombo->setObjectName(QStringLiteral("unitCombo")); unitCombo->setObjectName(QString::fromUtf8("unitCombo"));
horizontalLayout_4->addWidget(unitCombo); horizontalLayout_4->addWidget(unitCombo);
@ -154,32 +154,32 @@ public:
gridLayout_3->addLayout(horizontalLayout_4, 0, 0, 1, 2); gridLayout_3->addLayout(horizontalLayout_4, 0, 0, 1, 2);
preview = new QWidget(QPageSetupWidget); preview = new QWidget(QPageSetupWidget);
preview->setObjectName(QStringLiteral("preview")); preview->setObjectName(QString::fromUtf8("preview"));
gridLayout_3->addWidget(preview, 2, 1, 2, 1); gridLayout_3->addWidget(preview, 2, 1, 2, 1);
groupBox_3 = new QGroupBox(QPageSetupWidget); groupBox_3 = new QGroupBox(QPageSetupWidget);
groupBox_3->setObjectName(QStringLiteral("groupBox_3")); groupBox_3->setObjectName(QString::fromUtf8("groupBox_3"));
verticalLayout = new QVBoxLayout(groupBox_3); verticalLayout = new QVBoxLayout(groupBox_3);
verticalLayout->setObjectName(QStringLiteral("verticalLayout")); verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
portrait = new QRadioButton(groupBox_3); portrait = new QRadioButton(groupBox_3);
portrait->setObjectName(QStringLiteral("portrait")); portrait->setObjectName(QString::fromUtf8("portrait"));
portrait->setChecked(true); portrait->setChecked(true);
verticalLayout->addWidget(portrait); verticalLayout->addWidget(portrait);
landscape = new QRadioButton(groupBox_3); landscape = new QRadioButton(groupBox_3);
landscape->setObjectName(QStringLiteral("landscape")); landscape->setObjectName(QString::fromUtf8("landscape"));
verticalLayout->addWidget(landscape); verticalLayout->addWidget(landscape);
reverseLandscape = new QRadioButton(groupBox_3); reverseLandscape = new QRadioButton(groupBox_3);
reverseLandscape->setObjectName(QStringLiteral("reverseLandscape")); reverseLandscape->setObjectName(QString::fromUtf8("reverseLandscape"));
verticalLayout->addWidget(reverseLandscape); verticalLayout->addWidget(reverseLandscape);
reversePortrait = new QRadioButton(groupBox_3); reversePortrait = new QRadioButton(groupBox_3);
reversePortrait->setObjectName(QStringLiteral("reversePortrait")); reversePortrait->setObjectName(QString::fromUtf8("reversePortrait"));
verticalLayout->addWidget(reversePortrait); verticalLayout->addWidget(reversePortrait);
@ -191,26 +191,26 @@ public:
gridLayout_3->addWidget(groupBox_3, 2, 0, 1, 1); gridLayout_3->addWidget(groupBox_3, 2, 0, 1, 1);
groupBox = new QGroupBox(QPageSetupWidget); groupBox = new QGroupBox(QPageSetupWidget);
groupBox->setObjectName(QStringLiteral("groupBox")); groupBox->setObjectName(QString::fromUtf8("groupBox"));
horizontalLayout_2 = new QHBoxLayout(groupBox); horizontalLayout_2 = new QHBoxLayout(groupBox);
horizontalLayout_2->setObjectName(QStringLiteral("horizontalLayout_2")); horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2"));
gridLayout = new QGridLayout(); gridLayout = new QGridLayout();
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
topMargin = new QDoubleSpinBox(groupBox); topMargin = new QDoubleSpinBox(groupBox);
topMargin->setObjectName(QStringLiteral("topMargin")); topMargin->setObjectName(QString::fromUtf8("topMargin"));
topMargin->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter); topMargin->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
topMargin->setMaximum(999.99); topMargin->setMaximum(999.99);
gridLayout->addWidget(topMargin, 0, 1, 1, 1); gridLayout->addWidget(topMargin, 0, 1, 1, 1);
horizontalLayout = new QHBoxLayout(); horizontalLayout = new QHBoxLayout();
horizontalLayout->setObjectName(QStringLiteral("horizontalLayout")); horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
horizontalSpacer_7 = new QSpacerItem(0, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); horizontalSpacer_7 = new QSpacerItem(0, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
horizontalLayout->addItem(horizontalSpacer_7); horizontalLayout->addItem(horizontalSpacer_7);
leftMargin = new QDoubleSpinBox(groupBox); leftMargin = new QDoubleSpinBox(groupBox);
leftMargin->setObjectName(QStringLiteral("leftMargin")); leftMargin->setObjectName(QString::fromUtf8("leftMargin"));
leftMargin->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter); leftMargin->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
leftMargin->setMaximum(999.99); leftMargin->setMaximum(999.99);
@ -221,7 +221,7 @@ public:
horizontalLayout->addItem(horizontalSpacer); horizontalLayout->addItem(horizontalSpacer);
rightMargin = new QDoubleSpinBox(groupBox); rightMargin = new QDoubleSpinBox(groupBox);
rightMargin->setObjectName(QStringLiteral("rightMargin")); rightMargin->setObjectName(QString::fromUtf8("rightMargin"));
rightMargin->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter); rightMargin->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
rightMargin->setMaximum(999.99); rightMargin->setMaximum(999.99);
@ -239,7 +239,7 @@ public:
gridLayout->addItem(horizontalSpacer_2, 0, 2, 1, 1); gridLayout->addItem(horizontalSpacer_2, 0, 2, 1, 1);
bottomMargin = new QDoubleSpinBox(groupBox); bottomMargin = new QDoubleSpinBox(groupBox);
bottomMargin->setObjectName(QStringLiteral("bottomMargin")); bottomMargin->setObjectName(QString::fromUtf8("bottomMargin"));
bottomMargin->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter); bottomMargin->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
bottomMargin->setMaximum(999.99); bottomMargin->setMaximum(999.99);
@ -256,11 +256,11 @@ public:
gridLayout_3->addWidget(groupBox, 3, 0, 1, 1); gridLayout_3->addWidget(groupBox, 3, 0, 1, 1);
pagesPerSheetButtonGroup = new QGroupBox(QPageSetupWidget); pagesPerSheetButtonGroup = new QGroupBox(QPageSetupWidget);
pagesPerSheetButtonGroup->setObjectName(QStringLiteral("pagesPerSheetButtonGroup")); pagesPerSheetButtonGroup->setObjectName(QString::fromUtf8("pagesPerSheetButtonGroup"));
gridLayout_4 = new QGridLayout(pagesPerSheetButtonGroup); gridLayout_4 = new QGridLayout(pagesPerSheetButtonGroup);
gridLayout_4->setObjectName(QStringLiteral("gridLayout_4")); gridLayout_4->setObjectName(QString::fromUtf8("gridLayout_4"));
pagesPerSheetCombo = new QComboBox(pagesPerSheetButtonGroup); pagesPerSheetCombo = new QComboBox(pagesPerSheetButtonGroup);
pagesPerSheetCombo->setObjectName(QStringLiteral("pagesPerSheetCombo")); pagesPerSheetCombo->setObjectName(QString::fromUtf8("pagesPerSheetCombo"));
gridLayout_4->addWidget(pagesPerSheetCombo, 0, 1, 1, 1); gridLayout_4->addWidget(pagesPerSheetCombo, 0, 1, 1, 1);
@ -269,17 +269,17 @@ public:
gridLayout_4->addItem(horizontalSpacer_6, 0, 2, 1, 1); gridLayout_4->addItem(horizontalSpacer_6, 0, 2, 1, 1);
label = new QLabel(pagesPerSheetButtonGroup); label = new QLabel(pagesPerSheetButtonGroup);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
gridLayout_4->addWidget(label, 1, 0, 1, 1); gridLayout_4->addWidget(label, 1, 0, 1, 1);
pagesPerSheetLayoutCombo = new QComboBox(pagesPerSheetButtonGroup); pagesPerSheetLayoutCombo = new QComboBox(pagesPerSheetButtonGroup);
pagesPerSheetLayoutCombo->setObjectName(QStringLiteral("pagesPerSheetLayoutCombo")); pagesPerSheetLayoutCombo->setObjectName(QString::fromUtf8("pagesPerSheetLayoutCombo"));
gridLayout_4->addWidget(pagesPerSheetLayoutCombo, 1, 1, 1, 1); gridLayout_4->addWidget(pagesPerSheetLayoutCombo, 1, 1, 1, 1);
label_2 = new QLabel(pagesPerSheetButtonGroup); label_2 = new QLabel(pagesPerSheetButtonGroup);
label_2->setObjectName(QStringLiteral("label_2")); label_2->setObjectName(QString::fromUtf8("label_2"));
gridLayout_4->addWidget(label_2, 0, 0, 1, 1); gridLayout_4->addWidget(label_2, 0, 0, 1, 1);

View File

@ -36,30 +36,30 @@ public:
void setupUi(QWidget *QPrintPropertiesWidget) void setupUi(QWidget *QPrintPropertiesWidget)
{ {
if (QPrintPropertiesWidget->objectName().isEmpty()) if (QPrintPropertiesWidget->objectName().isEmpty())
QPrintPropertiesWidget->setObjectName(QStringLiteral("QPrintPropertiesWidget")); QPrintPropertiesWidget->setObjectName(QString::fromUtf8("QPrintPropertiesWidget"));
QPrintPropertiesWidget->resize(396, 288); QPrintPropertiesWidget->resize(396, 288);
verticalLayout_4 = new QVBoxLayout(QPrintPropertiesWidget); verticalLayout_4 = new QVBoxLayout(QPrintPropertiesWidget);
verticalLayout_4->setContentsMargins(0, 0, 0, 0); verticalLayout_4->setContentsMargins(0, 0, 0, 0);
verticalLayout_4->setObjectName(QStringLiteral("verticalLayout_4")); verticalLayout_4->setObjectName(QString::fromUtf8("verticalLayout_4"));
tabs = new QTabWidget(QPrintPropertiesWidget); tabs = new QTabWidget(QPrintPropertiesWidget);
tabs->setObjectName(QStringLiteral("tabs")); tabs->setObjectName(QString::fromUtf8("tabs"));
tabPage = new QWidget(); tabPage = new QWidget();
tabPage->setObjectName(QStringLiteral("tabPage")); tabPage->setObjectName(QString::fromUtf8("tabPage"));
tabPage->setGeometry(QRect(0, 0, 392, 261)); tabPage->setGeometry(QRect(0, 0, 392, 261));
horizontalLayout = new QHBoxLayout(tabPage); horizontalLayout = new QHBoxLayout(tabPage);
horizontalLayout->setObjectName(QStringLiteral("horizontalLayout")); horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
pageSetup = new QPageSetupWidget(tabPage); pageSetup = new QPageSetupWidget(tabPage);
pageSetup->setObjectName(QStringLiteral("pageSetup")); pageSetup->setObjectName(QString::fromUtf8("pageSetup"));
horizontalLayout->addWidget(pageSetup); horizontalLayout->addWidget(pageSetup);
tabs->addTab(tabPage, QString()); tabs->addTab(tabPage, QString());
cupsPropertiesPage = new QWidget(); cupsPropertiesPage = new QWidget();
cupsPropertiesPage->setObjectName(QStringLiteral("cupsPropertiesPage")); cupsPropertiesPage->setObjectName(QString::fromUtf8("cupsPropertiesPage"));
horizontalLayout_2 = new QHBoxLayout(cupsPropertiesPage); horizontalLayout_2 = new QHBoxLayout(cupsPropertiesPage);
horizontalLayout_2->setObjectName(QStringLiteral("horizontalLayout_2")); horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2"));
treeView = new QTreeView(cupsPropertiesPage); treeView = new QTreeView(cupsPropertiesPage);
treeView->setObjectName(QStringLiteral("treeView")); treeView->setObjectName(QString::fromUtf8("treeView"));
treeView->setAlternatingRowColors(true); treeView->setAlternatingRowColors(true);
horizontalLayout_2->addWidget(treeView); horizontalLayout_2->addWidget(treeView);

View File

@ -70,20 +70,20 @@ public:
void setupUi(QWidget *QPrintSettingsOutput) void setupUi(QWidget *QPrintSettingsOutput)
{ {
if (QPrintSettingsOutput->objectName().isEmpty()) if (QPrintSettingsOutput->objectName().isEmpty())
QPrintSettingsOutput->setObjectName(QStringLiteral("QPrintSettingsOutput")); QPrintSettingsOutput->setObjectName(QString::fromUtf8("QPrintSettingsOutput"));
QPrintSettingsOutput->resize(416, 166); QPrintSettingsOutput->resize(416, 166);
horizontalLayout_2 = new QHBoxLayout(QPrintSettingsOutput); horizontalLayout_2 = new QHBoxLayout(QPrintSettingsOutput);
horizontalLayout_2->setContentsMargins(0, 0, 0, 0); horizontalLayout_2->setContentsMargins(0, 0, 0, 0);
horizontalLayout_2->setObjectName(QStringLiteral("horizontalLayout_2")); horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2"));
tabs = new QTabWidget(QPrintSettingsOutput); tabs = new QTabWidget(QPrintSettingsOutput);
tabs->setObjectName(QStringLiteral("tabs")); tabs->setObjectName(QString::fromUtf8("tabs"));
copiesTab = new QWidget(); copiesTab = new QWidget();
copiesTab->setObjectName(QStringLiteral("copiesTab")); copiesTab->setObjectName(QString::fromUtf8("copiesTab"));
copiesTab->setGeometry(QRect(0, 0, 412, 139)); copiesTab->setGeometry(QRect(0, 0, 412, 139));
horizontalLayout = new QHBoxLayout(copiesTab); horizontalLayout = new QHBoxLayout(copiesTab);
horizontalLayout->setObjectName(QStringLiteral("horizontalLayout")); horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
gbPrintRange = new QGroupBox(copiesTab); gbPrintRange = new QGroupBox(copiesTab);
gbPrintRange->setObjectName(QStringLiteral("gbPrintRange")); gbPrintRange->setObjectName(QString::fromUtf8("gbPrintRange"));
QSizePolicy sizePolicy(QSizePolicy::Preferred, QSizePolicy::Minimum); QSizePolicy sizePolicy(QSizePolicy::Preferred, QSizePolicy::Minimum);
sizePolicy.setHorizontalStretch(0); sizePolicy.setHorizontalStretch(0);
sizePolicy.setVerticalStretch(0); sizePolicy.setVerticalStretch(0);
@ -92,9 +92,9 @@ public:
_3 = new QVBoxLayout(gbPrintRange); _3 = new QVBoxLayout(gbPrintRange);
_3->setSpacing(4); _3->setSpacing(4);
_3->setContentsMargins(6, 6, 6, 6); _3->setContentsMargins(6, 6, 6, 6);
_3->setObjectName(QStringLiteral("_3")); _3->setObjectName(QString::fromUtf8("_3"));
printAll = new QRadioButton(gbPrintRange); printAll = new QRadioButton(gbPrintRange);
printAll->setObjectName(QStringLiteral("printAll")); printAll->setObjectName(QString::fromUtf8("printAll"));
printAll->setChecked(true); printAll->setChecked(true);
_3->addWidget(printAll); _3->addWidget(printAll);
@ -104,14 +104,14 @@ public:
_4->setSpacing(6); _4->setSpacing(6);
#endif #endif
_4->setContentsMargins(0, 0, 0, 0); _4->setContentsMargins(0, 0, 0, 0);
_4->setObjectName(QStringLiteral("_4")); _4->setObjectName(QString::fromUtf8("_4"));
printRange = new QRadioButton(gbPrintRange); printRange = new QRadioButton(gbPrintRange);
printRange->setObjectName(QStringLiteral("printRange")); printRange->setObjectName(QString::fromUtf8("printRange"));
_4->addWidget(printRange); _4->addWidget(printRange);
from = new QSpinBox(gbPrintRange); from = new QSpinBox(gbPrintRange);
from->setObjectName(QStringLiteral("from")); from->setObjectName(QString::fromUtf8("from"));
from->setEnabled(false); from->setEnabled(false);
from->setMinimum(1); from->setMinimum(1);
from->setMaximum(999); from->setMaximum(999);
@ -119,12 +119,12 @@ public:
_4->addWidget(from); _4->addWidget(from);
label_3 = new QLabel(gbPrintRange); label_3 = new QLabel(gbPrintRange);
label_3->setObjectName(QStringLiteral("label_3")); label_3->setObjectName(QString::fromUtf8("label_3"));
_4->addWidget(label_3); _4->addWidget(label_3);
to = new QSpinBox(gbPrintRange); to = new QSpinBox(gbPrintRange);
to->setObjectName(QStringLiteral("to")); to->setObjectName(QString::fromUtf8("to"));
to->setEnabled(false); to->setEnabled(false);
to->setMinimum(1); to->setMinimum(1);
to->setMaximum(999); to->setMaximum(999);
@ -139,7 +139,7 @@ public:
_3->addLayout(_4); _3->addLayout(_4);
printSelection = new QRadioButton(gbPrintRange); printSelection = new QRadioButton(gbPrintRange);
printSelection->setObjectName(QStringLiteral("printSelection")); printSelection->setObjectName(QString::fromUtf8("printSelection"));
_3->addWidget(printSelection); _3->addWidget(printSelection);
@ -151,16 +151,16 @@ public:
horizontalLayout->addWidget(gbPrintRange); horizontalLayout->addWidget(gbPrintRange);
groupBox = new QGroupBox(copiesTab); groupBox = new QGroupBox(copiesTab);
groupBox->setObjectName(QStringLiteral("groupBox")); groupBox->setObjectName(QString::fromUtf8("groupBox"));
gridLayout = new QGridLayout(groupBox); gridLayout = new QGridLayout(groupBox);
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
label = new QLabel(groupBox); label = new QLabel(groupBox);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
gridLayout->addWidget(label, 0, 0, 1, 1); gridLayout->addWidget(label, 0, 0, 1, 1);
copies = new QSpinBox(groupBox); copies = new QSpinBox(groupBox);
copies->setObjectName(QStringLiteral("copies")); copies->setObjectName(QString::fromUtf8("copies"));
copies->setMinimum(1); copies->setMinimum(1);
copies->setMaximum(999); copies->setMaximum(999);
@ -171,12 +171,12 @@ public:
gridLayout->addItem(horizontalSpacer, 0, 3, 1, 1); gridLayout->addItem(horizontalSpacer, 0, 3, 1, 1);
collate = new QCheckBox(groupBox); collate = new QCheckBox(groupBox);
collate->setObjectName(QStringLiteral("collate")); collate->setObjectName(QString::fromUtf8("collate"));
gridLayout->addWidget(collate, 1, 0, 1, 2); gridLayout->addWidget(collate, 1, 0, 1, 2);
outputIcon = new QLabel(groupBox); outputIcon = new QLabel(groupBox);
outputIcon->setObjectName(QStringLiteral("outputIcon")); outputIcon->setObjectName(QString::fromUtf8("outputIcon"));
QSizePolicy sizePolicy1(QSizePolicy::Ignored, QSizePolicy::Ignored); QSizePolicy sizePolicy1(QSizePolicy::Ignored, QSizePolicy::Ignored);
sizePolicy1.setHorizontalStretch(0); sizePolicy1.setHorizontalStretch(0);
sizePolicy1.setVerticalStretch(0); sizePolicy1.setVerticalStretch(0);
@ -186,7 +186,7 @@ public:
gridLayout->addWidget(outputIcon, 1, 2, 2, 2); gridLayout->addWidget(outputIcon, 1, 2, 2, 2);
reverse = new QCheckBox(groupBox); reverse = new QCheckBox(groupBox);
reverse->setObjectName(QStringLiteral("reverse")); reverse->setObjectName(QString::fromUtf8("reverse"));
gridLayout->addWidget(reverse, 2, 0, 1, 2); gridLayout->addWidget(reverse, 2, 0, 1, 2);
@ -199,30 +199,30 @@ public:
tabs->addTab(copiesTab, QString()); tabs->addTab(copiesTab, QString());
optionsTab = new QWidget(); optionsTab = new QWidget();
optionsTab->setObjectName(QStringLiteral("optionsTab")); optionsTab->setObjectName(QString::fromUtf8("optionsTab"));
optionsTab->setGeometry(QRect(0, 0, 412, 139)); optionsTab->setGeometry(QRect(0, 0, 412, 139));
gridLayout_2 = new QGridLayout(optionsTab); gridLayout_2 = new QGridLayout(optionsTab);
gridLayout_2->setObjectName(QStringLiteral("gridLayout_2")); gridLayout_2->setObjectName(QString::fromUtf8("gridLayout_2"));
colorMode = new QGroupBox(optionsTab); colorMode = new QGroupBox(optionsTab);
colorMode->setObjectName(QStringLiteral("colorMode")); colorMode->setObjectName(QString::fromUtf8("colorMode"));
gridLayout_4 = new QGridLayout(colorMode); gridLayout_4 = new QGridLayout(colorMode);
gridLayout_4->setObjectName(QStringLiteral("gridLayout_4")); gridLayout_4->setObjectName(QString::fromUtf8("gridLayout_4"));
verticalSpacer_6 = new QSpacerItem(1, 0, QSizePolicy::Minimum, QSizePolicy::Expanding); verticalSpacer_6 = new QSpacerItem(1, 0, QSizePolicy::Minimum, QSizePolicy::Expanding);
gridLayout_4->addItem(verticalSpacer_6, 2, 0, 1, 1); gridLayout_4->addItem(verticalSpacer_6, 2, 0, 1, 1);
color = new QRadioButton(colorMode); color = new QRadioButton(colorMode);
color->setObjectName(QStringLiteral("color")); color->setObjectName(QString::fromUtf8("color"));
gridLayout_4->addWidget(color, 0, 0, 1, 1); gridLayout_4->addWidget(color, 0, 0, 1, 1);
colorIcon = new QLabel(colorMode); colorIcon = new QLabel(colorMode);
colorIcon->setObjectName(QStringLiteral("colorIcon")); colorIcon->setObjectName(QString::fromUtf8("colorIcon"));
gridLayout_4->addWidget(colorIcon, 0, 1, 3, 1); gridLayout_4->addWidget(colorIcon, 0, 1, 3, 1);
grayscale = new QRadioButton(colorMode); grayscale = new QRadioButton(colorMode);
grayscale->setObjectName(QStringLiteral("grayscale")); grayscale->setObjectName(QString::fromUtf8("grayscale"));
gridLayout_4->addWidget(grayscale, 1, 0, 1, 1); gridLayout_4->addWidget(grayscale, 1, 0, 1, 1);
@ -230,22 +230,22 @@ public:
gridLayout_2->addWidget(colorMode, 0, 1, 1, 1); gridLayout_2->addWidget(colorMode, 0, 1, 1, 1);
duplex = new QGroupBox(optionsTab); duplex = new QGroupBox(optionsTab);
duplex->setObjectName(QStringLiteral("duplex")); duplex->setObjectName(QString::fromUtf8("duplex"));
verticalLayout = new QVBoxLayout(duplex); verticalLayout = new QVBoxLayout(duplex);
verticalLayout->setObjectName(QStringLiteral("verticalLayout")); verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
noDuplex = new QRadioButton(duplex); noDuplex = new QRadioButton(duplex);
noDuplex->setObjectName(QStringLiteral("noDuplex")); noDuplex->setObjectName(QString::fromUtf8("noDuplex"));
noDuplex->setChecked(true); noDuplex->setChecked(true);
verticalLayout->addWidget(noDuplex); verticalLayout->addWidget(noDuplex);
duplexLong = new QRadioButton(duplex); duplexLong = new QRadioButton(duplex);
duplexLong->setObjectName(QStringLiteral("duplexLong")); duplexLong->setObjectName(QString::fromUtf8("duplexLong"));
verticalLayout->addWidget(duplexLong); verticalLayout->addWidget(duplexLong);
duplexShort = new QRadioButton(duplex); duplexShort = new QRadioButton(duplex);
duplexShort->setObjectName(QStringLiteral("duplexShort")); duplexShort->setObjectName(QString::fromUtf8("duplexShort"));
verticalLayout->addWidget(duplexShort); verticalLayout->addWidget(duplexShort);

View File

@ -46,22 +46,22 @@ public:
void setupUi(QWidget *QPrintWidget) void setupUi(QWidget *QPrintWidget)
{ {
if (QPrintWidget->objectName().isEmpty()) if (QPrintWidget->objectName().isEmpty())
QPrintWidget->setObjectName(QStringLiteral("QPrintWidget")); QPrintWidget->setObjectName(QString::fromUtf8("QPrintWidget"));
QPrintWidget->resize(443, 175); QPrintWidget->resize(443, 175);
horizontalLayout_2 = new QHBoxLayout(QPrintWidget); horizontalLayout_2 = new QHBoxLayout(QPrintWidget);
horizontalLayout_2->setContentsMargins(0, 0, 0, 0); horizontalLayout_2->setContentsMargins(0, 0, 0, 0);
horizontalLayout_2->setObjectName(QStringLiteral("horizontalLayout_2")); horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2"));
printerGroup = new QGroupBox(QPrintWidget); printerGroup = new QGroupBox(QPrintWidget);
printerGroup->setObjectName(QStringLiteral("printerGroup")); printerGroup->setObjectName(QString::fromUtf8("printerGroup"));
gridLayout = new QGridLayout(printerGroup); gridLayout = new QGridLayout(printerGroup);
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
label = new QLabel(printerGroup); label = new QLabel(printerGroup);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
gridLayout->addWidget(label, 0, 0, 1, 1); gridLayout->addWidget(label, 0, 0, 1, 1);
printers = new QComboBox(printerGroup); printers = new QComboBox(printerGroup);
printers->setObjectName(QStringLiteral("printers")); printers->setObjectName(QString::fromUtf8("printers"));
QSizePolicy sizePolicy(QSizePolicy::Preferred, QSizePolicy::Fixed); QSizePolicy sizePolicy(QSizePolicy::Preferred, QSizePolicy::Fixed);
sizePolicy.setHorizontalStretch(3); sizePolicy.setHorizontalStretch(3);
sizePolicy.setVerticalStretch(0); sizePolicy.setVerticalStretch(0);
@ -71,7 +71,7 @@ public:
gridLayout->addWidget(printers, 0, 1, 1, 1); gridLayout->addWidget(printers, 0, 1, 1, 1);
properties = new QPushButton(printerGroup); properties = new QPushButton(printerGroup);
properties->setObjectName(QStringLiteral("properties")); properties->setObjectName(QString::fromUtf8("properties"));
QSizePolicy sizePolicy1(QSizePolicy::Minimum, QSizePolicy::Fixed); QSizePolicy sizePolicy1(QSizePolicy::Minimum, QSizePolicy::Fixed);
sizePolicy1.setHorizontalStretch(1); sizePolicy1.setHorizontalStretch(1);
sizePolicy1.setVerticalStretch(0); sizePolicy1.setVerticalStretch(0);
@ -81,44 +81,44 @@ public:
gridLayout->addWidget(properties, 0, 2, 1, 1); gridLayout->addWidget(properties, 0, 2, 1, 1);
label_2 = new QLabel(printerGroup); label_2 = new QLabel(printerGroup);
label_2->setObjectName(QStringLiteral("label_2")); label_2->setObjectName(QString::fromUtf8("label_2"));
gridLayout->addWidget(label_2, 1, 0, 1, 1); gridLayout->addWidget(label_2, 1, 0, 1, 1);
location = new QLabel(printerGroup); location = new QLabel(printerGroup);
location->setObjectName(QStringLiteral("location")); location->setObjectName(QString::fromUtf8("location"));
gridLayout->addWidget(location, 1, 1, 1, 1); gridLayout->addWidget(location, 1, 1, 1, 1);
preview = new QCheckBox(printerGroup); preview = new QCheckBox(printerGroup);
preview->setObjectName(QStringLiteral("preview")); preview->setObjectName(QString::fromUtf8("preview"));
gridLayout->addWidget(preview, 1, 2, 1, 1); gridLayout->addWidget(preview, 1, 2, 1, 1);
label_3 = new QLabel(printerGroup); label_3 = new QLabel(printerGroup);
label_3->setObjectName(QStringLiteral("label_3")); label_3->setObjectName(QString::fromUtf8("label_3"));
gridLayout->addWidget(label_3, 2, 0, 1, 1); gridLayout->addWidget(label_3, 2, 0, 1, 1);
type = new QLabel(printerGroup); type = new QLabel(printerGroup);
type->setObjectName(QStringLiteral("type")); type->setObjectName(QString::fromUtf8("type"));
gridLayout->addWidget(type, 2, 1, 1, 1); gridLayout->addWidget(type, 2, 1, 1, 1);
lOutput = new QLabel(printerGroup); lOutput = new QLabel(printerGroup);
lOutput->setObjectName(QStringLiteral("lOutput")); lOutput->setObjectName(QString::fromUtf8("lOutput"));
gridLayout->addWidget(lOutput, 3, 0, 1, 1); gridLayout->addWidget(lOutput, 3, 0, 1, 1);
horizontalLayout = new QHBoxLayout(); horizontalLayout = new QHBoxLayout();
horizontalLayout->setObjectName(QStringLiteral("horizontalLayout")); horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
filename = new QLineEdit(printerGroup); filename = new QLineEdit(printerGroup);
filename->setObjectName(QStringLiteral("filename")); filename->setObjectName(QString::fromUtf8("filename"));
horizontalLayout->addWidget(filename); horizontalLayout->addWidget(filename);
fileBrowser = new QToolButton(printerGroup); fileBrowser = new QToolButton(printerGroup);
fileBrowser->setObjectName(QStringLiteral("fileBrowser")); fileBrowser->setObjectName(QString::fromUtf8("fileBrowser"));
horizontalLayout->addWidget(fileBrowser); horizontalLayout->addWidget(fileBrowser);

View File

@ -55,44 +55,44 @@ public:
void setupUi(QDialog *QSqlConnectionDialogUi) void setupUi(QDialog *QSqlConnectionDialogUi)
{ {
if (QSqlConnectionDialogUi->objectName().isEmpty()) if (QSqlConnectionDialogUi->objectName().isEmpty())
QSqlConnectionDialogUi->setObjectName(QStringLiteral("QSqlConnectionDialogUi")); QSqlConnectionDialogUi->setObjectName(QString::fromUtf8("QSqlConnectionDialogUi"));
QSqlConnectionDialogUi->resize(315, 302); QSqlConnectionDialogUi->resize(315, 302);
vboxLayout = new QVBoxLayout(QSqlConnectionDialogUi); vboxLayout = new QVBoxLayout(QSqlConnectionDialogUi);
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout->setSpacing(6); vboxLayout->setSpacing(6);
#endif #endif
vboxLayout->setContentsMargins(8, 8, 8, 8); vboxLayout->setContentsMargins(8, 8, 8, 8);
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
connGroupBox = new QGroupBox(QSqlConnectionDialogUi); connGroupBox = new QGroupBox(QSqlConnectionDialogUi);
connGroupBox->setObjectName(QStringLiteral("connGroupBox")); connGroupBox->setObjectName(QString::fromUtf8("connGroupBox"));
gridLayout = new QGridLayout(connGroupBox); gridLayout = new QGridLayout(connGroupBox);
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
gridLayout->setSpacing(6); gridLayout->setSpacing(6);
#endif #endif
gridLayout->setContentsMargins(8, 8, 8, 8); gridLayout->setContentsMargins(8, 8, 8, 8);
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
comboDriver = new QComboBox(connGroupBox); comboDriver = new QComboBox(connGroupBox);
comboDriver->setObjectName(QStringLiteral("comboDriver")); comboDriver->setObjectName(QString::fromUtf8("comboDriver"));
gridLayout->addWidget(comboDriver, 0, 1, 1, 1); gridLayout->addWidget(comboDriver, 0, 1, 1, 1);
textLabel4 = new QLabel(connGroupBox); textLabel4 = new QLabel(connGroupBox);
textLabel4->setObjectName(QStringLiteral("textLabel4")); textLabel4->setObjectName(QString::fromUtf8("textLabel4"));
gridLayout->addWidget(textLabel4, 2, 0, 1, 1); gridLayout->addWidget(textLabel4, 2, 0, 1, 1);
textLabel2 = new QLabel(connGroupBox); textLabel2 = new QLabel(connGroupBox);
textLabel2->setObjectName(QStringLiteral("textLabel2")); textLabel2->setObjectName(QString::fromUtf8("textLabel2"));
gridLayout->addWidget(textLabel2, 0, 0, 1, 1); gridLayout->addWidget(textLabel2, 0, 0, 1, 1);
editDatabase = new QLineEdit(connGroupBox); editDatabase = new QLineEdit(connGroupBox);
editDatabase->setObjectName(QStringLiteral("editDatabase")); editDatabase->setObjectName(QString::fromUtf8("editDatabase"));
gridLayout->addWidget(editDatabase, 1, 1, 1, 1); gridLayout->addWidget(editDatabase, 1, 1, 1, 1);
portSpinBox = new QSpinBox(connGroupBox); portSpinBox = new QSpinBox(connGroupBox);
portSpinBox->setObjectName(QStringLiteral("portSpinBox")); portSpinBox->setObjectName(QString::fromUtf8("portSpinBox"));
portSpinBox->setMaximum(65535); portSpinBox->setMaximum(65535);
portSpinBox->setMinimum(-1); portSpinBox->setMinimum(-1);
portSpinBox->setValue(-1); portSpinBox->setValue(-1);
@ -100,38 +100,38 @@ public:
gridLayout->addWidget(portSpinBox, 5, 1, 1, 1); gridLayout->addWidget(portSpinBox, 5, 1, 1, 1);
textLabel3 = new QLabel(connGroupBox); textLabel3 = new QLabel(connGroupBox);
textLabel3->setObjectName(QStringLiteral("textLabel3")); textLabel3->setObjectName(QString::fromUtf8("textLabel3"));
gridLayout->addWidget(textLabel3, 1, 0, 1, 1); gridLayout->addWidget(textLabel3, 1, 0, 1, 1);
editPassword = new QLineEdit(connGroupBox); editPassword = new QLineEdit(connGroupBox);
editPassword->setObjectName(QStringLiteral("editPassword")); editPassword->setObjectName(QString::fromUtf8("editPassword"));
editPassword->setEchoMode(QLineEdit::Password); editPassword->setEchoMode(QLineEdit::Password);
gridLayout->addWidget(editPassword, 3, 1, 1, 1); gridLayout->addWidget(editPassword, 3, 1, 1, 1);
editUsername = new QLineEdit(connGroupBox); editUsername = new QLineEdit(connGroupBox);
editUsername->setObjectName(QStringLiteral("editUsername")); editUsername->setObjectName(QString::fromUtf8("editUsername"));
gridLayout->addWidget(editUsername, 2, 1, 1, 1); gridLayout->addWidget(editUsername, 2, 1, 1, 1);
editHostname = new QLineEdit(connGroupBox); editHostname = new QLineEdit(connGroupBox);
editHostname->setObjectName(QStringLiteral("editHostname")); editHostname->setObjectName(QString::fromUtf8("editHostname"));
gridLayout->addWidget(editHostname, 4, 1, 1, 1); gridLayout->addWidget(editHostname, 4, 1, 1, 1);
textLabel5 = new QLabel(connGroupBox); textLabel5 = new QLabel(connGroupBox);
textLabel5->setObjectName(QStringLiteral("textLabel5")); textLabel5->setObjectName(QString::fromUtf8("textLabel5"));
gridLayout->addWidget(textLabel5, 4, 0, 1, 1); gridLayout->addWidget(textLabel5, 4, 0, 1, 1);
textLabel5_2 = new QLabel(connGroupBox); textLabel5_2 = new QLabel(connGroupBox);
textLabel5_2->setObjectName(QStringLiteral("textLabel5_2")); textLabel5_2->setObjectName(QString::fromUtf8("textLabel5_2"));
gridLayout->addWidget(textLabel5_2, 5, 0, 1, 1); gridLayout->addWidget(textLabel5_2, 5, 0, 1, 1);
textLabel4_2 = new QLabel(connGroupBox); textLabel4_2 = new QLabel(connGroupBox);
textLabel4_2->setObjectName(QStringLiteral("textLabel4_2")); textLabel4_2->setObjectName(QString::fromUtf8("textLabel4_2"));
gridLayout->addWidget(textLabel4_2, 3, 0, 1, 1); gridLayout->addWidget(textLabel4_2, 3, 0, 1, 1);
@ -143,13 +143,13 @@ public:
hboxLayout->setSpacing(6); hboxLayout->setSpacing(6);
#endif #endif
hboxLayout->setContentsMargins(0, 0, 0, 0); hboxLayout->setContentsMargins(0, 0, 0, 0);
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
spacerItem = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); spacerItem = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
hboxLayout->addItem(spacerItem); hboxLayout->addItem(spacerItem);
dbCheckBox = new QCheckBox(QSqlConnectionDialogUi); dbCheckBox = new QCheckBox(QSqlConnectionDialogUi);
dbCheckBox->setObjectName(QStringLiteral("dbCheckBox")); dbCheckBox->setObjectName(QString::fromUtf8("dbCheckBox"));
hboxLayout->addWidget(dbCheckBox); hboxLayout->addWidget(dbCheckBox);
@ -161,18 +161,18 @@ public:
hboxLayout1->setSpacing(6); hboxLayout1->setSpacing(6);
#endif #endif
hboxLayout1->setContentsMargins(0, 0, 0, 0); hboxLayout1->setContentsMargins(0, 0, 0, 0);
hboxLayout1->setObjectName(QStringLiteral("hboxLayout1")); hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
spacerItem1 = new QSpacerItem(20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); spacerItem1 = new QSpacerItem(20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
hboxLayout1->addItem(spacerItem1); hboxLayout1->addItem(spacerItem1);
okButton = new QPushButton(QSqlConnectionDialogUi); okButton = new QPushButton(QSqlConnectionDialogUi);
okButton->setObjectName(QStringLiteral("okButton")); okButton->setObjectName(QString::fromUtf8("okButton"));
hboxLayout1->addWidget(okButton); hboxLayout1->addWidget(okButton);
cancelButton = new QPushButton(QSqlConnectionDialogUi); cancelButton = new QPushButton(QSqlConnectionDialogUi);
cancelButton->setObjectName(QStringLiteral("cancelButton")); cancelButton->setObjectName(QString::fromUtf8("cancelButton"));
hboxLayout1->addWidget(cancelButton); hboxLayout1->addWidget(cancelButton);

View File

@ -58,12 +58,12 @@ public:
void setupUi(QDialog *QtGradientDialog) void setupUi(QDialog *QtGradientDialog)
{ {
if (QtGradientDialog->objectName().isEmpty()) if (QtGradientDialog->objectName().isEmpty())
QtGradientDialog->setObjectName(QStringLiteral("QtGradientDialog")); QtGradientDialog->setObjectName(QString::fromUtf8("QtGradientDialog"));
QtGradientDialog->resize(178, 81); QtGradientDialog->resize(178, 81);
vboxLayout = new QVBoxLayout(QtGradientDialog); vboxLayout = new QVBoxLayout(QtGradientDialog);
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
gradientEditor = new QtGradientEditor(QtGradientDialog); gradientEditor = new QtGradientEditor(QtGradientDialog);
gradientEditor->setObjectName(QStringLiteral("gradientEditor")); gradientEditor->setObjectName(QString::fromUtf8("gradientEditor"));
QSizePolicy sizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::MinimumExpanding); QSizePolicy sizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::MinimumExpanding);
sizePolicy.setHorizontalStretch(0); sizePolicy.setHorizontalStretch(0);
sizePolicy.setVerticalStretch(0); sizePolicy.setVerticalStretch(0);
@ -73,7 +73,7 @@ public:
vboxLayout->addWidget(gradientEditor); vboxLayout->addWidget(gradientEditor);
buttonBox = new QDialogButtonBox(QtGradientDialog); buttonBox = new QDialogButtonBox(QtGradientDialog);
buttonBox->setObjectName(QStringLiteral("buttonBox")); buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setOrientation(Qt::Horizontal); buttonBox->setOrientation(Qt::Horizontal);
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::NoButton|QDialogButtonBox::Ok); buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::NoButton|QDialogButtonBox::Ok);

View File

@ -145,10 +145,10 @@ public:
void setupUi(QWidget *QtGradientEditor) void setupUi(QWidget *QtGradientEditor)
{ {
if (QtGradientEditor->objectName().isEmpty()) if (QtGradientEditor->objectName().isEmpty())
QtGradientEditor->setObjectName(QStringLiteral("QtGradientEditor")); QtGradientEditor->setObjectName(QString::fromUtf8("QtGradientEditor"));
QtGradientEditor->resize(364, 518); QtGradientEditor->resize(364, 518);
frame = new QFrame(QtGradientEditor); frame = new QFrame(QtGradientEditor);
frame->setObjectName(QStringLiteral("frame")); frame->setObjectName(QString::fromUtf8("frame"));
frame->setGeometry(QRect(10, 69, 193, 150)); frame->setGeometry(QRect(10, 69, 193, 150));
QSizePolicy sizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); QSizePolicy sizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
sizePolicy.setHorizontalStretch(0); sizePolicy.setHorizontalStretch(0);
@ -159,73 +159,73 @@ public:
frame->setFrameShadow(QFrame::Raised); frame->setFrameShadow(QFrame::Raised);
vboxLayout = new QVBoxLayout(frame); vboxLayout = new QVBoxLayout(frame);
vboxLayout->setSpacing(6); vboxLayout->setSpacing(6);
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
vboxLayout->setContentsMargins(0, 0, 0, 0); vboxLayout->setContentsMargins(0, 0, 0, 0);
gradientWidget = new QtGradientWidget(frame); gradientWidget = new QtGradientWidget(frame);
gradientWidget->setObjectName(QStringLiteral("gradientWidget")); gradientWidget->setObjectName(QString::fromUtf8("gradientWidget"));
sizePolicy.setHeightForWidth(gradientWidget->sizePolicy().hasHeightForWidth()); sizePolicy.setHeightForWidth(gradientWidget->sizePolicy().hasHeightForWidth());
gradientWidget->setSizePolicy(sizePolicy); gradientWidget->setSizePolicy(sizePolicy);
vboxLayout->addWidget(gradientWidget); vboxLayout->addWidget(gradientWidget);
label1 = new QLabel(QtGradientEditor); label1 = new QLabel(QtGradientEditor);
label1->setObjectName(QStringLiteral("label1")); label1->setObjectName(QString::fromUtf8("label1"));
label1->setGeometry(QRect(209, 69, 64, 23)); label1->setGeometry(QRect(209, 69, 64, 23));
spinBox1 = new QDoubleSpinBox(QtGradientEditor); spinBox1 = new QDoubleSpinBox(QtGradientEditor);
spinBox1->setObjectName(QStringLiteral("spinBox1")); spinBox1->setObjectName(QString::fromUtf8("spinBox1"));
spinBox1->setGeometry(QRect(279, 69, 73, 23)); spinBox1->setGeometry(QRect(279, 69, 73, 23));
spinBox1->setKeyboardTracking(false); spinBox1->setKeyboardTracking(false);
spinBox1->setDecimals(3); spinBox1->setDecimals(3);
spinBox1->setMaximum(1); spinBox1->setMaximum(1);
spinBox1->setSingleStep(0.01); spinBox1->setSingleStep(0.01);
label2 = new QLabel(QtGradientEditor); label2 = new QLabel(QtGradientEditor);
label2->setObjectName(QStringLiteral("label2")); label2->setObjectName(QString::fromUtf8("label2"));
label2->setGeometry(QRect(209, 99, 64, 23)); label2->setGeometry(QRect(209, 99, 64, 23));
spinBox2 = new QDoubleSpinBox(QtGradientEditor); spinBox2 = new QDoubleSpinBox(QtGradientEditor);
spinBox2->setObjectName(QStringLiteral("spinBox2")); spinBox2->setObjectName(QString::fromUtf8("spinBox2"));
spinBox2->setGeometry(QRect(279, 99, 73, 23)); spinBox2->setGeometry(QRect(279, 99, 73, 23));
spinBox2->setKeyboardTracking(false); spinBox2->setKeyboardTracking(false);
spinBox2->setDecimals(3); spinBox2->setDecimals(3);
spinBox2->setMaximum(1); spinBox2->setMaximum(1);
spinBox2->setSingleStep(0.01); spinBox2->setSingleStep(0.01);
label3 = new QLabel(QtGradientEditor); label3 = new QLabel(QtGradientEditor);
label3->setObjectName(QStringLiteral("label3")); label3->setObjectName(QString::fromUtf8("label3"));
label3->setGeometry(QRect(209, 129, 64, 23)); label3->setGeometry(QRect(209, 129, 64, 23));
spinBox3 = new QDoubleSpinBox(QtGradientEditor); spinBox3 = new QDoubleSpinBox(QtGradientEditor);
spinBox3->setObjectName(QStringLiteral("spinBox3")); spinBox3->setObjectName(QString::fromUtf8("spinBox3"));
spinBox3->setGeometry(QRect(279, 129, 73, 23)); spinBox3->setGeometry(QRect(279, 129, 73, 23));
spinBox3->setKeyboardTracking(false); spinBox3->setKeyboardTracking(false);
spinBox3->setDecimals(3); spinBox3->setDecimals(3);
spinBox3->setMaximum(1); spinBox3->setMaximum(1);
spinBox3->setSingleStep(0.01); spinBox3->setSingleStep(0.01);
label4 = new QLabel(QtGradientEditor); label4 = new QLabel(QtGradientEditor);
label4->setObjectName(QStringLiteral("label4")); label4->setObjectName(QString::fromUtf8("label4"));
label4->setGeometry(QRect(209, 159, 64, 23)); label4->setGeometry(QRect(209, 159, 64, 23));
spinBox4 = new QDoubleSpinBox(QtGradientEditor); spinBox4 = new QDoubleSpinBox(QtGradientEditor);
spinBox4->setObjectName(QStringLiteral("spinBox4")); spinBox4->setObjectName(QString::fromUtf8("spinBox4"));
spinBox4->setGeometry(QRect(279, 159, 73, 23)); spinBox4->setGeometry(QRect(279, 159, 73, 23));
spinBox4->setKeyboardTracking(false); spinBox4->setKeyboardTracking(false);
spinBox4->setDecimals(3); spinBox4->setDecimals(3);
spinBox4->setMaximum(1); spinBox4->setMaximum(1);
spinBox4->setSingleStep(0.01); spinBox4->setSingleStep(0.01);
label5 = new QLabel(QtGradientEditor); label5 = new QLabel(QtGradientEditor);
label5->setObjectName(QStringLiteral("label5")); label5->setObjectName(QString::fromUtf8("label5"));
label5->setGeometry(QRect(209, 189, 64, 23)); label5->setGeometry(QRect(209, 189, 64, 23));
spinBox5 = new QDoubleSpinBox(QtGradientEditor); spinBox5 = new QDoubleSpinBox(QtGradientEditor);
spinBox5->setObjectName(QStringLiteral("spinBox5")); spinBox5->setObjectName(QString::fromUtf8("spinBox5"));
spinBox5->setGeometry(QRect(279, 189, 73, 23)); spinBox5->setGeometry(QRect(279, 189, 73, 23));
spinBox5->setKeyboardTracking(false); spinBox5->setKeyboardTracking(false);
spinBox5->setDecimals(3); spinBox5->setDecimals(3);
spinBox5->setMaximum(1); spinBox5->setMaximum(1);
spinBox5->setSingleStep(0.01); spinBox5->setSingleStep(0.01);
gradientStopsWidget = new QtGradientStopsWidget(QtGradientEditor); gradientStopsWidget = new QtGradientStopsWidget(QtGradientEditor);
gradientStopsWidget->setObjectName(QStringLiteral("gradientStopsWidget")); gradientStopsWidget->setObjectName(QString::fromUtf8("gradientStopsWidget"));
gradientStopsWidget->setGeometry(QRect(10, 225, 193, 67)); gradientStopsWidget->setGeometry(QRect(10, 225, 193, 67));
zoomLabel = new QLabel(QtGradientEditor); zoomLabel = new QLabel(QtGradientEditor);
zoomLabel->setObjectName(QStringLiteral("zoomLabel")); zoomLabel->setObjectName(QString::fromUtf8("zoomLabel"));
zoomLabel->setGeometry(QRect(209, 231, 64, 23)); zoomLabel->setGeometry(QRect(209, 231, 64, 23));
zoomAllButton = new QToolButton(QtGradientEditor); zoomAllButton = new QToolButton(QtGradientEditor);
zoomAllButton->setObjectName(QStringLiteral("zoomAllButton")); zoomAllButton->setObjectName(QString::fromUtf8("zoomAllButton"));
zoomAllButton->setGeometry(QRect(279, 260, 72, 26)); zoomAllButton->setGeometry(QRect(279, 260, 72, 26));
QSizePolicy sizePolicy1(QSizePolicy::Preferred, QSizePolicy::Fixed); QSizePolicy sizePolicy1(QSizePolicy::Preferred, QSizePolicy::Fixed);
sizePolicy1.setHorizontalStretch(0); sizePolicy1.setHorizontalStretch(0);
@ -233,15 +233,15 @@ public:
sizePolicy1.setHeightForWidth(zoomAllButton->sizePolicy().hasHeightForWidth()); sizePolicy1.setHeightForWidth(zoomAllButton->sizePolicy().hasHeightForWidth());
zoomAllButton->setSizePolicy(sizePolicy1); zoomAllButton->setSizePolicy(sizePolicy1);
positionLabel = new QLabel(QtGradientEditor); positionLabel = new QLabel(QtGradientEditor);
positionLabel->setObjectName(QStringLiteral("positionLabel")); positionLabel->setObjectName(QString::fromUtf8("positionLabel"));
positionLabel->setGeometry(QRect(209, 304, 64, 23)); positionLabel->setGeometry(QRect(209, 304, 64, 23));
hLabel = new QLabel(QtGradientEditor); hLabel = new QLabel(QtGradientEditor);
hLabel->setObjectName(QStringLiteral("hLabel")); hLabel->setObjectName(QString::fromUtf8("hLabel"));
hLabel->setGeometry(QRect(10, 335, 32, 18)); hLabel->setGeometry(QRect(10, 335, 32, 18));
sizePolicy1.setHeightForWidth(hLabel->sizePolicy().hasHeightForWidth()); sizePolicy1.setHeightForWidth(hLabel->sizePolicy().hasHeightForWidth());
hLabel->setSizePolicy(sizePolicy1); hLabel->setSizePolicy(sizePolicy1);
frame_2 = new QFrame(QtGradientEditor); frame_2 = new QFrame(QtGradientEditor);
frame_2->setObjectName(QStringLiteral("frame_2")); frame_2->setObjectName(QString::fromUtf8("frame_2"));
frame_2->setGeometry(QRect(48, 333, 155, 23)); frame_2->setGeometry(QRect(48, 333, 155, 23));
QSizePolicy sizePolicy2(QSizePolicy::Ignored, QSizePolicy::Preferred); QSizePolicy sizePolicy2(QSizePolicy::Ignored, QSizePolicy::Preferred);
sizePolicy2.setHorizontalStretch(0); sizePolicy2.setHorizontalStretch(0);
@ -251,10 +251,10 @@ public:
frame_2->setFrameShape(QFrame::StyledPanel); frame_2->setFrameShape(QFrame::StyledPanel);
frame_2->setFrameShadow(QFrame::Raised); frame_2->setFrameShadow(QFrame::Raised);
hboxLayout = new QHBoxLayout(frame_2); hboxLayout = new QHBoxLayout(frame_2);
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
hboxLayout->setContentsMargins(0, 0, 0, 0); hboxLayout->setContentsMargins(0, 0, 0, 0);
hueColorLine = new QtColorLine(frame_2); hueColorLine = new QtColorLine(frame_2);
hueColorLine->setObjectName(QStringLiteral("hueColorLine")); hueColorLine->setObjectName(QString::fromUtf8("hueColorLine"));
QSizePolicy sizePolicy3(QSizePolicy::Expanding, QSizePolicy::Preferred); QSizePolicy sizePolicy3(QSizePolicy::Expanding, QSizePolicy::Preferred);
sizePolicy3.setHorizontalStretch(0); sizePolicy3.setHorizontalStretch(0);
sizePolicy3.setVerticalStretch(0); sizePolicy3.setVerticalStretch(0);
@ -264,99 +264,99 @@ public:
hboxLayout->addWidget(hueColorLine); hboxLayout->addWidget(hueColorLine);
hueLabel = new QLabel(QtGradientEditor); hueLabel = new QLabel(QtGradientEditor);
hueLabel->setObjectName(QStringLiteral("hueLabel")); hueLabel->setObjectName(QString::fromUtf8("hueLabel"));
hueLabel->setGeometry(QRect(209, 335, 64, 18)); hueLabel->setGeometry(QRect(209, 335, 64, 18));
sizePolicy1.setHeightForWidth(hueLabel->sizePolicy().hasHeightForWidth()); sizePolicy1.setHeightForWidth(hueLabel->sizePolicy().hasHeightForWidth());
hueLabel->setSizePolicy(sizePolicy1); hueLabel->setSizePolicy(sizePolicy1);
sLabel = new QLabel(QtGradientEditor); sLabel = new QLabel(QtGradientEditor);
sLabel->setObjectName(QStringLiteral("sLabel")); sLabel->setObjectName(QString::fromUtf8("sLabel"));
sLabel->setGeometry(QRect(10, 364, 32, 18)); sLabel->setGeometry(QRect(10, 364, 32, 18));
sizePolicy1.setHeightForWidth(sLabel->sizePolicy().hasHeightForWidth()); sizePolicy1.setHeightForWidth(sLabel->sizePolicy().hasHeightForWidth());
sLabel->setSizePolicy(sizePolicy1); sLabel->setSizePolicy(sizePolicy1);
frame_5 = new QFrame(QtGradientEditor); frame_5 = new QFrame(QtGradientEditor);
frame_5->setObjectName(QStringLiteral("frame_5")); frame_5->setObjectName(QString::fromUtf8("frame_5"));
frame_5->setGeometry(QRect(48, 362, 155, 23)); frame_5->setGeometry(QRect(48, 362, 155, 23));
sizePolicy2.setHeightForWidth(frame_5->sizePolicy().hasHeightForWidth()); sizePolicy2.setHeightForWidth(frame_5->sizePolicy().hasHeightForWidth());
frame_5->setSizePolicy(sizePolicy2); frame_5->setSizePolicy(sizePolicy2);
frame_5->setFrameShape(QFrame::StyledPanel); frame_5->setFrameShape(QFrame::StyledPanel);
frame_5->setFrameShadow(QFrame::Raised); frame_5->setFrameShadow(QFrame::Raised);
hboxLayout1 = new QHBoxLayout(frame_5); hboxLayout1 = new QHBoxLayout(frame_5);
hboxLayout1->setObjectName(QStringLiteral("hboxLayout1")); hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
hboxLayout1->setContentsMargins(0, 0, 0, 0); hboxLayout1->setContentsMargins(0, 0, 0, 0);
saturationColorLine = new QtColorLine(frame_5); saturationColorLine = new QtColorLine(frame_5);
saturationColorLine->setObjectName(QStringLiteral("saturationColorLine")); saturationColorLine->setObjectName(QString::fromUtf8("saturationColorLine"));
sizePolicy3.setHeightForWidth(saturationColorLine->sizePolicy().hasHeightForWidth()); sizePolicy3.setHeightForWidth(saturationColorLine->sizePolicy().hasHeightForWidth());
saturationColorLine->setSizePolicy(sizePolicy3); saturationColorLine->setSizePolicy(sizePolicy3);
hboxLayout1->addWidget(saturationColorLine); hboxLayout1->addWidget(saturationColorLine);
saturationLabel = new QLabel(QtGradientEditor); saturationLabel = new QLabel(QtGradientEditor);
saturationLabel->setObjectName(QStringLiteral("saturationLabel")); saturationLabel->setObjectName(QString::fromUtf8("saturationLabel"));
saturationLabel->setGeometry(QRect(209, 364, 64, 18)); saturationLabel->setGeometry(QRect(209, 364, 64, 18));
sizePolicy1.setHeightForWidth(saturationLabel->sizePolicy().hasHeightForWidth()); sizePolicy1.setHeightForWidth(saturationLabel->sizePolicy().hasHeightForWidth());
saturationLabel->setSizePolicy(sizePolicy1); saturationLabel->setSizePolicy(sizePolicy1);
vLabel = new QLabel(QtGradientEditor); vLabel = new QLabel(QtGradientEditor);
vLabel->setObjectName(QStringLiteral("vLabel")); vLabel->setObjectName(QString::fromUtf8("vLabel"));
vLabel->setGeometry(QRect(10, 393, 32, 18)); vLabel->setGeometry(QRect(10, 393, 32, 18));
sizePolicy1.setHeightForWidth(vLabel->sizePolicy().hasHeightForWidth()); sizePolicy1.setHeightForWidth(vLabel->sizePolicy().hasHeightForWidth());
vLabel->setSizePolicy(sizePolicy1); vLabel->setSizePolicy(sizePolicy1);
frame_3 = new QFrame(QtGradientEditor); frame_3 = new QFrame(QtGradientEditor);
frame_3->setObjectName(QStringLiteral("frame_3")); frame_3->setObjectName(QString::fromUtf8("frame_3"));
frame_3->setGeometry(QRect(48, 391, 155, 23)); frame_3->setGeometry(QRect(48, 391, 155, 23));
sizePolicy2.setHeightForWidth(frame_3->sizePolicy().hasHeightForWidth()); sizePolicy2.setHeightForWidth(frame_3->sizePolicy().hasHeightForWidth());
frame_3->setSizePolicy(sizePolicy2); frame_3->setSizePolicy(sizePolicy2);
frame_3->setFrameShape(QFrame::StyledPanel); frame_3->setFrameShape(QFrame::StyledPanel);
frame_3->setFrameShadow(QFrame::Raised); frame_3->setFrameShadow(QFrame::Raised);
hboxLayout2 = new QHBoxLayout(frame_3); hboxLayout2 = new QHBoxLayout(frame_3);
hboxLayout2->setObjectName(QStringLiteral("hboxLayout2")); hboxLayout2->setObjectName(QString::fromUtf8("hboxLayout2"));
hboxLayout2->setContentsMargins(0, 0, 0, 0); hboxLayout2->setContentsMargins(0, 0, 0, 0);
valueColorLine = new QtColorLine(frame_3); valueColorLine = new QtColorLine(frame_3);
valueColorLine->setObjectName(QStringLiteral("valueColorLine")); valueColorLine->setObjectName(QString::fromUtf8("valueColorLine"));
sizePolicy3.setHeightForWidth(valueColorLine->sizePolicy().hasHeightForWidth()); sizePolicy3.setHeightForWidth(valueColorLine->sizePolicy().hasHeightForWidth());
valueColorLine->setSizePolicy(sizePolicy3); valueColorLine->setSizePolicy(sizePolicy3);
hboxLayout2->addWidget(valueColorLine); hboxLayout2->addWidget(valueColorLine);
valueLabel = new QLabel(QtGradientEditor); valueLabel = new QLabel(QtGradientEditor);
valueLabel->setObjectName(QStringLiteral("valueLabel")); valueLabel->setObjectName(QString::fromUtf8("valueLabel"));
valueLabel->setGeometry(QRect(209, 393, 64, 18)); valueLabel->setGeometry(QRect(209, 393, 64, 18));
sizePolicy1.setHeightForWidth(valueLabel->sizePolicy().hasHeightForWidth()); sizePolicy1.setHeightForWidth(valueLabel->sizePolicy().hasHeightForWidth());
valueLabel->setSizePolicy(sizePolicy1); valueLabel->setSizePolicy(sizePolicy1);
aLabel = new QLabel(QtGradientEditor); aLabel = new QLabel(QtGradientEditor);
aLabel->setObjectName(QStringLiteral("aLabel")); aLabel->setObjectName(QString::fromUtf8("aLabel"));
aLabel->setGeometry(QRect(10, 422, 32, 18)); aLabel->setGeometry(QRect(10, 422, 32, 18));
sizePolicy1.setHeightForWidth(aLabel->sizePolicy().hasHeightForWidth()); sizePolicy1.setHeightForWidth(aLabel->sizePolicy().hasHeightForWidth());
aLabel->setSizePolicy(sizePolicy1); aLabel->setSizePolicy(sizePolicy1);
frame_4 = new QFrame(QtGradientEditor); frame_4 = new QFrame(QtGradientEditor);
frame_4->setObjectName(QStringLiteral("frame_4")); frame_4->setObjectName(QString::fromUtf8("frame_4"));
frame_4->setGeometry(QRect(48, 420, 155, 23)); frame_4->setGeometry(QRect(48, 420, 155, 23));
sizePolicy2.setHeightForWidth(frame_4->sizePolicy().hasHeightForWidth()); sizePolicy2.setHeightForWidth(frame_4->sizePolicy().hasHeightForWidth());
frame_4->setSizePolicy(sizePolicy2); frame_4->setSizePolicy(sizePolicy2);
frame_4->setFrameShape(QFrame::StyledPanel); frame_4->setFrameShape(QFrame::StyledPanel);
frame_4->setFrameShadow(QFrame::Raised); frame_4->setFrameShadow(QFrame::Raised);
hboxLayout3 = new QHBoxLayout(frame_4); hboxLayout3 = new QHBoxLayout(frame_4);
hboxLayout3->setObjectName(QStringLiteral("hboxLayout3")); hboxLayout3->setObjectName(QString::fromUtf8("hboxLayout3"));
hboxLayout3->setContentsMargins(0, 0, 0, 0); hboxLayout3->setContentsMargins(0, 0, 0, 0);
alphaColorLine = new QtColorLine(frame_4); alphaColorLine = new QtColorLine(frame_4);
alphaColorLine->setObjectName(QStringLiteral("alphaColorLine")); alphaColorLine->setObjectName(QString::fromUtf8("alphaColorLine"));
sizePolicy3.setHeightForWidth(alphaColorLine->sizePolicy().hasHeightForWidth()); sizePolicy3.setHeightForWidth(alphaColorLine->sizePolicy().hasHeightForWidth());
alphaColorLine->setSizePolicy(sizePolicy3); alphaColorLine->setSizePolicy(sizePolicy3);
hboxLayout3->addWidget(alphaColorLine); hboxLayout3->addWidget(alphaColorLine);
alphaLabel = new QLabel(QtGradientEditor); alphaLabel = new QLabel(QtGradientEditor);
alphaLabel->setObjectName(QStringLiteral("alphaLabel")); alphaLabel->setObjectName(QString::fromUtf8("alphaLabel"));
alphaLabel->setGeometry(QRect(209, 422, 64, 18)); alphaLabel->setGeometry(QRect(209, 422, 64, 18));
sizePolicy1.setHeightForWidth(alphaLabel->sizePolicy().hasHeightForWidth()); sizePolicy1.setHeightForWidth(alphaLabel->sizePolicy().hasHeightForWidth());
alphaLabel->setSizePolicy(sizePolicy1); alphaLabel->setSizePolicy(sizePolicy1);
typeComboBox = new QComboBox(QtGradientEditor); typeComboBox = new QComboBox(QtGradientEditor);
typeComboBox->setObjectName(QStringLiteral("typeComboBox")); typeComboBox->setObjectName(QString::fromUtf8("typeComboBox"));
typeComboBox->setGeometry(QRect(10, 40, 79, 22)); typeComboBox->setGeometry(QRect(10, 40, 79, 22));
spreadComboBox = new QComboBox(QtGradientEditor); spreadComboBox = new QComboBox(QtGradientEditor);
spreadComboBox->setObjectName(QStringLiteral("spreadComboBox")); spreadComboBox->setObjectName(QString::fromUtf8("spreadComboBox"));
spreadComboBox->setGeometry(QRect(96, 40, 72, 22)); spreadComboBox->setGeometry(QRect(96, 40, 72, 22));
colorLabel = new QLabel(QtGradientEditor); colorLabel = new QLabel(QtGradientEditor);
colorLabel->setObjectName(QStringLiteral("colorLabel")); colorLabel->setObjectName(QString::fromUtf8("colorLabel"));
colorLabel->setGeometry(QRect(10, 298, 32, 29)); colorLabel->setGeometry(QRect(10, 298, 32, 29));
QSizePolicy sizePolicy4(QSizePolicy::Fixed, QSizePolicy::Preferred); QSizePolicy sizePolicy4(QSizePolicy::Fixed, QSizePolicy::Preferred);
sizePolicy4.setHorizontalStretch(0); sizePolicy4.setHorizontalStretch(0);
@ -364,10 +364,10 @@ public:
sizePolicy4.setHeightForWidth(colorLabel->sizePolicy().hasHeightForWidth()); sizePolicy4.setHeightForWidth(colorLabel->sizePolicy().hasHeightForWidth());
colorLabel->setSizePolicy(sizePolicy4); colorLabel->setSizePolicy(sizePolicy4);
colorButton = new QtColorButton(QtGradientEditor); colorButton = new QtColorButton(QtGradientEditor);
colorButton->setObjectName(QStringLiteral("colorButton")); colorButton->setObjectName(QString::fromUtf8("colorButton"));
colorButton->setGeometry(QRect(48, 300, 26, 25)); colorButton->setGeometry(QRect(48, 300, 26, 25));
hsvRadioButton = new QRadioButton(QtGradientEditor); hsvRadioButton = new QRadioButton(QtGradientEditor);
hsvRadioButton->setObjectName(QStringLiteral("hsvRadioButton")); hsvRadioButton->setObjectName(QString::fromUtf8("hsvRadioButton"));
hsvRadioButton->setGeometry(QRect(80, 301, 49, 23)); hsvRadioButton->setGeometry(QRect(80, 301, 49, 23));
QSizePolicy sizePolicy5(QSizePolicy::Fixed, QSizePolicy::Fixed); QSizePolicy sizePolicy5(QSizePolicy::Fixed, QSizePolicy::Fixed);
sizePolicy5.setHorizontalStretch(0); sizePolicy5.setHorizontalStretch(0);
@ -376,18 +376,18 @@ public:
hsvRadioButton->setSizePolicy(sizePolicy5); hsvRadioButton->setSizePolicy(sizePolicy5);
hsvRadioButton->setChecked(true); hsvRadioButton->setChecked(true);
rgbRadioButton = new QRadioButton(QtGradientEditor); rgbRadioButton = new QRadioButton(QtGradientEditor);
rgbRadioButton->setObjectName(QStringLiteral("rgbRadioButton")); rgbRadioButton->setObjectName(QString::fromUtf8("rgbRadioButton"));
rgbRadioButton->setGeometry(QRect(135, 301, 49, 23)); rgbRadioButton->setGeometry(QRect(135, 301, 49, 23));
sizePolicy5.setHeightForWidth(rgbRadioButton->sizePolicy().hasHeightForWidth()); sizePolicy5.setHeightForWidth(rgbRadioButton->sizePolicy().hasHeightForWidth());
rgbRadioButton->setSizePolicy(sizePolicy5); rgbRadioButton->setSizePolicy(sizePolicy5);
positionWidget = new QWidget(QtGradientEditor); positionWidget = new QWidget(QtGradientEditor);
positionWidget->setObjectName(QStringLiteral("positionWidget")); positionWidget->setObjectName(QString::fromUtf8("positionWidget"));
positionWidget->setGeometry(QRect(279, 304, 73, 23)); positionWidget->setGeometry(QRect(279, 304, 73, 23));
vboxLayout1 = new QVBoxLayout(positionWidget); vboxLayout1 = new QVBoxLayout(positionWidget);
vboxLayout1->setObjectName(QStringLiteral("vboxLayout1")); vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1"));
vboxLayout1->setContentsMargins(0, 0, 0, 0); vboxLayout1->setContentsMargins(0, 0, 0, 0);
positionSpinBox = new QDoubleSpinBox(positionWidget); positionSpinBox = new QDoubleSpinBox(positionWidget);
positionSpinBox->setObjectName(QStringLiteral("positionSpinBox")); positionSpinBox->setObjectName(QString::fromUtf8("positionSpinBox"));
positionSpinBox->setKeyboardTracking(false); positionSpinBox->setKeyboardTracking(false);
positionSpinBox->setDecimals(3); positionSpinBox->setDecimals(3);
positionSpinBox->setMinimum(0); positionSpinBox->setMinimum(0);
@ -398,65 +398,65 @@ public:
vboxLayout1->addWidget(positionSpinBox); vboxLayout1->addWidget(positionSpinBox);
hueWidget = new QWidget(QtGradientEditor); hueWidget = new QWidget(QtGradientEditor);
hueWidget->setObjectName(QStringLiteral("hueWidget")); hueWidget->setObjectName(QString::fromUtf8("hueWidget"));
hueWidget->setGeometry(QRect(279, 333, 73, 23)); hueWidget->setGeometry(QRect(279, 333, 73, 23));
vboxLayout2 = new QVBoxLayout(hueWidget); vboxLayout2 = new QVBoxLayout(hueWidget);
vboxLayout2->setObjectName(QStringLiteral("vboxLayout2")); vboxLayout2->setObjectName(QString::fromUtf8("vboxLayout2"));
vboxLayout2->setContentsMargins(0, 0, 0, 0); vboxLayout2->setContentsMargins(0, 0, 0, 0);
hueSpinBox = new QSpinBox(hueWidget); hueSpinBox = new QSpinBox(hueWidget);
hueSpinBox->setObjectName(QStringLiteral("hueSpinBox")); hueSpinBox->setObjectName(QString::fromUtf8("hueSpinBox"));
hueSpinBox->setKeyboardTracking(false); hueSpinBox->setKeyboardTracking(false);
hueSpinBox->setMaximum(359); hueSpinBox->setMaximum(359);
vboxLayout2->addWidget(hueSpinBox); vboxLayout2->addWidget(hueSpinBox);
saturationWidget = new QWidget(QtGradientEditor); saturationWidget = new QWidget(QtGradientEditor);
saturationWidget->setObjectName(QStringLiteral("saturationWidget")); saturationWidget->setObjectName(QString::fromUtf8("saturationWidget"));
saturationWidget->setGeometry(QRect(279, 362, 73, 23)); saturationWidget->setGeometry(QRect(279, 362, 73, 23));
vboxLayout3 = new QVBoxLayout(saturationWidget); vboxLayout3 = new QVBoxLayout(saturationWidget);
vboxLayout3->setObjectName(QStringLiteral("vboxLayout3")); vboxLayout3->setObjectName(QString::fromUtf8("vboxLayout3"));
vboxLayout3->setContentsMargins(0, 0, 0, 0); vboxLayout3->setContentsMargins(0, 0, 0, 0);
saturationSpinBox = new QSpinBox(saturationWidget); saturationSpinBox = new QSpinBox(saturationWidget);
saturationSpinBox->setObjectName(QStringLiteral("saturationSpinBox")); saturationSpinBox->setObjectName(QString::fromUtf8("saturationSpinBox"));
saturationSpinBox->setKeyboardTracking(false); saturationSpinBox->setKeyboardTracking(false);
saturationSpinBox->setMaximum(255); saturationSpinBox->setMaximum(255);
vboxLayout3->addWidget(saturationSpinBox); vboxLayout3->addWidget(saturationSpinBox);
valueWidget = new QWidget(QtGradientEditor); valueWidget = new QWidget(QtGradientEditor);
valueWidget->setObjectName(QStringLiteral("valueWidget")); valueWidget->setObjectName(QString::fromUtf8("valueWidget"));
valueWidget->setGeometry(QRect(279, 391, 73, 23)); valueWidget->setGeometry(QRect(279, 391, 73, 23));
vboxLayout4 = new QVBoxLayout(valueWidget); vboxLayout4 = new QVBoxLayout(valueWidget);
vboxLayout4->setObjectName(QStringLiteral("vboxLayout4")); vboxLayout4->setObjectName(QString::fromUtf8("vboxLayout4"));
vboxLayout4->setContentsMargins(0, 0, 0, 0); vboxLayout4->setContentsMargins(0, 0, 0, 0);
valueSpinBox = new QSpinBox(valueWidget); valueSpinBox = new QSpinBox(valueWidget);
valueSpinBox->setObjectName(QStringLiteral("valueSpinBox")); valueSpinBox->setObjectName(QString::fromUtf8("valueSpinBox"));
valueSpinBox->setKeyboardTracking(false); valueSpinBox->setKeyboardTracking(false);
valueSpinBox->setMaximum(255); valueSpinBox->setMaximum(255);
vboxLayout4->addWidget(valueSpinBox); vboxLayout4->addWidget(valueSpinBox);
alphaWidget = new QWidget(QtGradientEditor); alphaWidget = new QWidget(QtGradientEditor);
alphaWidget->setObjectName(QStringLiteral("alphaWidget")); alphaWidget->setObjectName(QString::fromUtf8("alphaWidget"));
alphaWidget->setGeometry(QRect(279, 420, 73, 23)); alphaWidget->setGeometry(QRect(279, 420, 73, 23));
vboxLayout5 = new QVBoxLayout(alphaWidget); vboxLayout5 = new QVBoxLayout(alphaWidget);
vboxLayout5->setObjectName(QStringLiteral("vboxLayout5")); vboxLayout5->setObjectName(QString::fromUtf8("vboxLayout5"));
vboxLayout5->setContentsMargins(0, 0, 0, 0); vboxLayout5->setContentsMargins(0, 0, 0, 0);
alphaSpinBox = new QSpinBox(alphaWidget); alphaSpinBox = new QSpinBox(alphaWidget);
alphaSpinBox->setObjectName(QStringLiteral("alphaSpinBox")); alphaSpinBox->setObjectName(QString::fromUtf8("alphaSpinBox"));
alphaSpinBox->setKeyboardTracking(false); alphaSpinBox->setKeyboardTracking(false);
alphaSpinBox->setMaximum(255); alphaSpinBox->setMaximum(255);
vboxLayout5->addWidget(alphaSpinBox); vboxLayout5->addWidget(alphaSpinBox);
zoomWidget = new QWidget(QtGradientEditor); zoomWidget = new QWidget(QtGradientEditor);
zoomWidget->setObjectName(QStringLiteral("zoomWidget")); zoomWidget->setObjectName(QString::fromUtf8("zoomWidget"));
zoomWidget->setGeometry(QRect(279, 231, 73, 23)); zoomWidget->setGeometry(QRect(279, 231, 73, 23));
vboxLayout6 = new QVBoxLayout(zoomWidget); vboxLayout6 = new QVBoxLayout(zoomWidget);
vboxLayout6->setObjectName(QStringLiteral("vboxLayout6")); vboxLayout6->setObjectName(QString::fromUtf8("vboxLayout6"));
vboxLayout6->setContentsMargins(0, 0, 0, 0); vboxLayout6->setContentsMargins(0, 0, 0, 0);
zoomSpinBox = new QSpinBox(zoomWidget); zoomSpinBox = new QSpinBox(zoomWidget);
zoomSpinBox->setObjectName(QStringLiteral("zoomSpinBox")); zoomSpinBox->setObjectName(QString::fromUtf8("zoomSpinBox"));
zoomSpinBox->setKeyboardTracking(false); zoomSpinBox->setKeyboardTracking(false);
zoomSpinBox->setMinimum(100); zoomSpinBox->setMinimum(100);
zoomSpinBox->setMaximum(10000); zoomSpinBox->setMaximum(10000);
@ -466,33 +466,33 @@ public:
vboxLayout6->addWidget(zoomSpinBox); vboxLayout6->addWidget(zoomSpinBox);
line1Widget = new QWidget(QtGradientEditor); line1Widget = new QWidget(QtGradientEditor);
line1Widget->setObjectName(QStringLiteral("line1Widget")); line1Widget->setObjectName(QString::fromUtf8("line1Widget"));
line1Widget->setGeometry(QRect(209, 219, 143, 16)); line1Widget->setGeometry(QRect(209, 219, 143, 16));
vboxLayout7 = new QVBoxLayout(line1Widget); vboxLayout7 = new QVBoxLayout(line1Widget);
vboxLayout7->setObjectName(QStringLiteral("vboxLayout7")); vboxLayout7->setObjectName(QString::fromUtf8("vboxLayout7"));
vboxLayout7->setContentsMargins(0, 0, 0, 0); vboxLayout7->setContentsMargins(0, 0, 0, 0);
line1 = new QFrame(line1Widget); line1 = new QFrame(line1Widget);
line1->setObjectName(QStringLiteral("line1")); line1->setObjectName(QString::fromUtf8("line1"));
line1->setFrameShape(QFrame::HLine); line1->setFrameShape(QFrame::HLine);
line1->setFrameShadow(QFrame::Sunken); line1->setFrameShadow(QFrame::Sunken);
vboxLayout7->addWidget(line1); vboxLayout7->addWidget(line1);
line2Widget = new QWidget(QtGradientEditor); line2Widget = new QWidget(QtGradientEditor);
line2Widget->setObjectName(QStringLiteral("line2Widget")); line2Widget->setObjectName(QString::fromUtf8("line2Widget"));
line2Widget->setGeometry(QRect(209, 292, 143, 16)); line2Widget->setGeometry(QRect(209, 292, 143, 16));
vboxLayout8 = new QVBoxLayout(line2Widget); vboxLayout8 = new QVBoxLayout(line2Widget);
vboxLayout8->setObjectName(QStringLiteral("vboxLayout8")); vboxLayout8->setObjectName(QString::fromUtf8("vboxLayout8"));
vboxLayout8->setContentsMargins(0, 0, 0, 0); vboxLayout8->setContentsMargins(0, 0, 0, 0);
line2 = new QFrame(line2Widget); line2 = new QFrame(line2Widget);
line2->setObjectName(QStringLiteral("line2")); line2->setObjectName(QString::fromUtf8("line2"));
line2->setFrameShape(QFrame::HLine); line2->setFrameShape(QFrame::HLine);
line2->setFrameShadow(QFrame::Sunken); line2->setFrameShadow(QFrame::Sunken);
vboxLayout8->addWidget(line2); vboxLayout8->addWidget(line2);
zoomButtonsWidget = new QWidget(QtGradientEditor); zoomButtonsWidget = new QWidget(QtGradientEditor);
zoomButtonsWidget->setObjectName(QStringLiteral("zoomButtonsWidget")); zoomButtonsWidget->setObjectName(QString::fromUtf8("zoomButtonsWidget"));
zoomButtonsWidget->setGeometry(QRect(209, 260, 64, 26)); zoomButtonsWidget->setGeometry(QRect(209, 260, 64, 26));
QSizePolicy sizePolicy6(QSizePolicy::Maximum, QSizePolicy::Preferred); QSizePolicy sizePolicy6(QSizePolicy::Maximum, QSizePolicy::Preferred);
sizePolicy6.setHorizontalStretch(0); sizePolicy6.setHorizontalStretch(0);
@ -500,15 +500,15 @@ public:
sizePolicy6.setHeightForWidth(zoomButtonsWidget->sizePolicy().hasHeightForWidth()); sizePolicy6.setHeightForWidth(zoomButtonsWidget->sizePolicy().hasHeightForWidth());
zoomButtonsWidget->setSizePolicy(sizePolicy6); zoomButtonsWidget->setSizePolicy(sizePolicy6);
hboxLayout4 = new QHBoxLayout(zoomButtonsWidget); hboxLayout4 = new QHBoxLayout(zoomButtonsWidget);
hboxLayout4->setObjectName(QStringLiteral("hboxLayout4")); hboxLayout4->setObjectName(QString::fromUtf8("hboxLayout4"));
hboxLayout4->setContentsMargins(0, 0, 0, 0); hboxLayout4->setContentsMargins(0, 0, 0, 0);
zoomInButton = new QToolButton(zoomButtonsWidget); zoomInButton = new QToolButton(zoomButtonsWidget);
zoomInButton->setObjectName(QStringLiteral("zoomInButton")); zoomInButton->setObjectName(QString::fromUtf8("zoomInButton"));
hboxLayout4->addWidget(zoomInButton); hboxLayout4->addWidget(zoomInButton);
zoomOutButton = new QToolButton(zoomButtonsWidget); zoomOutButton = new QToolButton(zoomButtonsWidget);
zoomOutButton->setObjectName(QStringLiteral("zoomOutButton")); zoomOutButton->setObjectName(QString::fromUtf8("zoomOutButton"));
hboxLayout4->addWidget(zoomOutButton); hboxLayout4->addWidget(zoomOutButton);
@ -517,7 +517,7 @@ public:
hboxLayout4->addItem(spacerItem); hboxLayout4->addItem(spacerItem);
detailsButton = new QToolButton(QtGradientEditor); detailsButton = new QToolButton(QtGradientEditor);
detailsButton->setObjectName(QStringLiteral("detailsButton")); detailsButton->setObjectName(QString::fromUtf8("detailsButton"));
detailsButton->setGeometry(QRect(176, 40, 25, 22)); detailsButton->setGeometry(QRect(176, 40, 25, 22));
QSizePolicy sizePolicy7(QSizePolicy::Fixed, QSizePolicy::Ignored); QSizePolicy sizePolicy7(QSizePolicy::Fixed, QSizePolicy::Ignored);
sizePolicy7.setHorizontalStretch(0); sizePolicy7.setHorizontalStretch(0);
@ -527,32 +527,32 @@ public:
detailsButton->setCheckable(true); detailsButton->setCheckable(true);
detailsButton->setAutoRaise(true); detailsButton->setAutoRaise(true);
linearButton = new QToolButton(QtGradientEditor); linearButton = new QToolButton(QtGradientEditor);
linearButton->setObjectName(QStringLiteral("linearButton")); linearButton->setObjectName(QString::fromUtf8("linearButton"));
linearButton->setGeometry(QRect(10, 10, 30, 26)); linearButton->setGeometry(QRect(10, 10, 30, 26));
linearButton->setCheckable(true); linearButton->setCheckable(true);
linearButton->setAutoRaise(true); linearButton->setAutoRaise(true);
radialButton = new QToolButton(QtGradientEditor); radialButton = new QToolButton(QtGradientEditor);
radialButton->setObjectName(QStringLiteral("radialButton")); radialButton->setObjectName(QString::fromUtf8("radialButton"));
radialButton->setGeometry(QRect(40, 10, 30, 26)); radialButton->setGeometry(QRect(40, 10, 30, 26));
radialButton->setCheckable(true); radialButton->setCheckable(true);
radialButton->setAutoRaise(true); radialButton->setAutoRaise(true);
conicalButton = new QToolButton(QtGradientEditor); conicalButton = new QToolButton(QtGradientEditor);
conicalButton->setObjectName(QStringLiteral("conicalButton")); conicalButton->setObjectName(QString::fromUtf8("conicalButton"));
conicalButton->setGeometry(QRect(70, 10, 30, 26)); conicalButton->setGeometry(QRect(70, 10, 30, 26));
conicalButton->setCheckable(true); conicalButton->setCheckable(true);
conicalButton->setAutoRaise(true); conicalButton->setAutoRaise(true);
padButton = new QToolButton(QtGradientEditor); padButton = new QToolButton(QtGradientEditor);
padButton->setObjectName(QStringLiteral("padButton")); padButton->setObjectName(QString::fromUtf8("padButton"));
padButton->setGeometry(QRect(110, 10, 30, 26)); padButton->setGeometry(QRect(110, 10, 30, 26));
padButton->setCheckable(true); padButton->setCheckable(true);
padButton->setAutoRaise(true); padButton->setAutoRaise(true);
repeatButton = new QToolButton(QtGradientEditor); repeatButton = new QToolButton(QtGradientEditor);
repeatButton->setObjectName(QStringLiteral("repeatButton")); repeatButton->setObjectName(QString::fromUtf8("repeatButton"));
repeatButton->setGeometry(QRect(140, 10, 30, 26)); repeatButton->setGeometry(QRect(140, 10, 30, 26));
repeatButton->setCheckable(true); repeatButton->setCheckable(true);
repeatButton->setAutoRaise(true); repeatButton->setAutoRaise(true);
reflectButton = new QToolButton(QtGradientEditor); reflectButton = new QToolButton(QtGradientEditor);
reflectButton->setObjectName(QStringLiteral("reflectButton")); reflectButton->setObjectName(QString::fromUtf8("reflectButton"));
reflectButton->setGeometry(QRect(170, 10, 30, 26)); reflectButton->setGeometry(QRect(170, 10, 30, 26));
reflectButton->setCheckable(true); reflectButton->setCheckable(true);
reflectButton->setAutoRaise(true); reflectButton->setAutoRaise(true);

View File

@ -35,15 +35,15 @@ public:
void setupUi(QWidget *QtGradientView) void setupUi(QWidget *QtGradientView)
{ {
if (QtGradientView->objectName().isEmpty()) if (QtGradientView->objectName().isEmpty())
QtGradientView->setObjectName(QStringLiteral("QtGradientView")); QtGradientView->setObjectName(QString::fromUtf8("QtGradientView"));
QtGradientView->resize(484, 228); QtGradientView->resize(484, 228);
vboxLayout = new QVBoxLayout(QtGradientView); vboxLayout = new QVBoxLayout(QtGradientView);
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
vboxLayout->setContentsMargins(0, 0, 0, 0); vboxLayout->setContentsMargins(0, 0, 0, 0);
hboxLayout = new QHBoxLayout(); hboxLayout = new QHBoxLayout();
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
newButton = new QToolButton(QtGradientView); newButton = new QToolButton(QtGradientView);
newButton->setObjectName(QStringLiteral("newButton")); newButton->setObjectName(QString::fromUtf8("newButton"));
QSizePolicy sizePolicy(QSizePolicy::Minimum, QSizePolicy::Minimum); QSizePolicy sizePolicy(QSizePolicy::Minimum, QSizePolicy::Minimum);
sizePolicy.setHorizontalStretch(0); sizePolicy.setHorizontalStretch(0);
sizePolicy.setVerticalStretch(0); sizePolicy.setVerticalStretch(0);
@ -55,7 +55,7 @@ public:
hboxLayout->addWidget(newButton); hboxLayout->addWidget(newButton);
editButton = new QToolButton(QtGradientView); editButton = new QToolButton(QtGradientView);
editButton->setObjectName(QStringLiteral("editButton")); editButton->setObjectName(QString::fromUtf8("editButton"));
sizePolicy.setHeightForWidth(editButton->sizePolicy().hasHeightForWidth()); sizePolicy.setHeightForWidth(editButton->sizePolicy().hasHeightForWidth());
editButton->setSizePolicy(sizePolicy); editButton->setSizePolicy(sizePolicy);
editButton->setToolButtonStyle(Qt::ToolButtonTextBesideIcon); editButton->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
@ -64,7 +64,7 @@ public:
hboxLayout->addWidget(editButton); hboxLayout->addWidget(editButton);
renameButton = new QToolButton(QtGradientView); renameButton = new QToolButton(QtGradientView);
renameButton->setObjectName(QStringLiteral("renameButton")); renameButton->setObjectName(QString::fromUtf8("renameButton"));
sizePolicy.setHeightForWidth(renameButton->sizePolicy().hasHeightForWidth()); sizePolicy.setHeightForWidth(renameButton->sizePolicy().hasHeightForWidth());
renameButton->setSizePolicy(sizePolicy); renameButton->setSizePolicy(sizePolicy);
renameButton->setToolButtonStyle(Qt::ToolButtonTextBesideIcon); renameButton->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
@ -73,7 +73,7 @@ public:
hboxLayout->addWidget(renameButton); hboxLayout->addWidget(renameButton);
removeButton = new QToolButton(QtGradientView); removeButton = new QToolButton(QtGradientView);
removeButton->setObjectName(QStringLiteral("removeButton")); removeButton->setObjectName(QString::fromUtf8("removeButton"));
sizePolicy.setHeightForWidth(removeButton->sizePolicy().hasHeightForWidth()); sizePolicy.setHeightForWidth(removeButton->sizePolicy().hasHeightForWidth());
removeButton->setSizePolicy(sizePolicy); removeButton->setSizePolicy(sizePolicy);
removeButton->setToolButtonStyle(Qt::ToolButtonTextBesideIcon); removeButton->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
@ -89,7 +89,7 @@ public:
vboxLayout->addLayout(hboxLayout); vboxLayout->addLayout(hboxLayout);
listWidget = new QListWidget(QtGradientView); listWidget = new QListWidget(QtGradientView);
listWidget->setObjectName(QStringLiteral("listWidget")); listWidget->setObjectName(QString::fromUtf8("listWidget"));
vboxLayout->addWidget(listWidget); vboxLayout->addWidget(listWidget);

View File

@ -58,12 +58,12 @@ public:
void setupUi(QDialog *QtGradientViewDialog) void setupUi(QDialog *QtGradientViewDialog)
{ {
if (QtGradientViewDialog->objectName().isEmpty()) if (QtGradientViewDialog->objectName().isEmpty())
QtGradientViewDialog->setObjectName(QStringLiteral("QtGradientViewDialog")); QtGradientViewDialog->setObjectName(QString::fromUtf8("QtGradientViewDialog"));
QtGradientViewDialog->resize(178, 72); QtGradientViewDialog->resize(178, 72);
vboxLayout = new QVBoxLayout(QtGradientViewDialog); vboxLayout = new QVBoxLayout(QtGradientViewDialog);
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
gradientView = new QtGradientView(QtGradientViewDialog); gradientView = new QtGradientView(QtGradientViewDialog);
gradientView->setObjectName(QStringLiteral("gradientView")); gradientView->setObjectName(QString::fromUtf8("gradientView"));
QSizePolicy sizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::MinimumExpanding); QSizePolicy sizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::MinimumExpanding);
sizePolicy.setHorizontalStretch(0); sizePolicy.setHorizontalStretch(0);
sizePolicy.setVerticalStretch(0); sizePolicy.setVerticalStretch(0);
@ -73,7 +73,7 @@ public:
vboxLayout->addWidget(gradientView); vboxLayout->addWidget(gradientView);
buttonBox = new QDialogButtonBox(QtGradientViewDialog); buttonBox = new QDialogButtonBox(QtGradientViewDialog);
buttonBox->setObjectName(QStringLiteral("buttonBox")); buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setOrientation(Qt::Horizontal); buttonBox->setOrientation(Qt::Horizontal);
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok); buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);

View File

@ -49,20 +49,20 @@ public:
void setupUi(QDialog *QtResourceEditorDialog) void setupUi(QDialog *QtResourceEditorDialog)
{ {
if (QtResourceEditorDialog->objectName().isEmpty()) if (QtResourceEditorDialog->objectName().isEmpty())
QtResourceEditorDialog->setObjectName(QStringLiteral("QtResourceEditorDialog")); QtResourceEditorDialog->setObjectName(QString::fromUtf8("QtResourceEditorDialog"));
QtResourceEditorDialog->resize(469, 317); QtResourceEditorDialog->resize(469, 317);
verticalLayout = new QVBoxLayout(QtResourceEditorDialog); verticalLayout = new QVBoxLayout(QtResourceEditorDialog);
verticalLayout->setObjectName(QStringLiteral("verticalLayout")); verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
splitter = new QSplitter(QtResourceEditorDialog); splitter = new QSplitter(QtResourceEditorDialog);
splitter->setObjectName(QStringLiteral("splitter")); splitter->setObjectName(QString::fromUtf8("splitter"));
splitter->setOrientation(Qt::Horizontal); splitter->setOrientation(Qt::Horizontal);
layoutWidget = new QWidget(splitter); layoutWidget = new QWidget(splitter);
layoutWidget->setObjectName(QStringLiteral("layoutWidget")); layoutWidget->setObjectName(QString::fromUtf8("layoutWidget"));
gridLayout = new QGridLayout(layoutWidget); gridLayout = new QGridLayout(layoutWidget);
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
gridLayout->setContentsMargins(0, 0, 0, 0); gridLayout->setContentsMargins(0, 0, 0, 0);
qrcFileList = new QListWidget(layoutWidget); qrcFileList = new QListWidget(layoutWidget);
qrcFileList->setObjectName(QStringLiteral("qrcFileList")); qrcFileList->setObjectName(QString::fromUtf8("qrcFileList"));
QSizePolicy sizePolicy(QSizePolicy::Ignored, QSizePolicy::Expanding); QSizePolicy sizePolicy(QSizePolicy::Ignored, QSizePolicy::Expanding);
sizePolicy.setHorizontalStretch(0); sizePolicy.setHorizontalStretch(0);
sizePolicy.setVerticalStretch(0); sizePolicy.setVerticalStretch(0);
@ -72,12 +72,12 @@ public:
gridLayout->addWidget(qrcFileList, 0, 0, 1, 4); gridLayout->addWidget(qrcFileList, 0, 0, 1, 4);
newQrcButton = new QToolButton(layoutWidget); newQrcButton = new QToolButton(layoutWidget);
newQrcButton->setObjectName(QStringLiteral("newQrcButton")); newQrcButton->setObjectName(QString::fromUtf8("newQrcButton"));
gridLayout->addWidget(newQrcButton, 1, 0, 1, 1); gridLayout->addWidget(newQrcButton, 1, 0, 1, 1);
removeQrcButton = new QToolButton(layoutWidget); removeQrcButton = new QToolButton(layoutWidget);
removeQrcButton->setObjectName(QStringLiteral("removeQrcButton")); removeQrcButton->setObjectName(QString::fromUtf8("removeQrcButton"));
gridLayout->addWidget(removeQrcButton, 1, 2, 1, 1); gridLayout->addWidget(removeQrcButton, 1, 2, 1, 1);
@ -86,33 +86,33 @@ public:
gridLayout->addItem(spacerItem, 1, 3, 1, 1); gridLayout->addItem(spacerItem, 1, 3, 1, 1);
importQrcButton = new QToolButton(layoutWidget); importQrcButton = new QToolButton(layoutWidget);
importQrcButton->setObjectName(QStringLiteral("importQrcButton")); importQrcButton->setObjectName(QString::fromUtf8("importQrcButton"));
gridLayout->addWidget(importQrcButton, 1, 1, 1, 1); gridLayout->addWidget(importQrcButton, 1, 1, 1, 1);
splitter->addWidget(layoutWidget); splitter->addWidget(layoutWidget);
widget = new QWidget(splitter); widget = new QWidget(splitter);
widget->setObjectName(QStringLiteral("widget")); widget->setObjectName(QString::fromUtf8("widget"));
gridLayout1 = new QGridLayout(widget); gridLayout1 = new QGridLayout(widget);
gridLayout1->setObjectName(QStringLiteral("gridLayout1")); gridLayout1->setObjectName(QString::fromUtf8("gridLayout1"));
gridLayout1->setContentsMargins(0, 0, 0, 0); gridLayout1->setContentsMargins(0, 0, 0, 0);
resourceTreeView = new QTreeView(widget); resourceTreeView = new QTreeView(widget);
resourceTreeView->setObjectName(QStringLiteral("resourceTreeView")); resourceTreeView->setObjectName(QString::fromUtf8("resourceTreeView"));
gridLayout1->addWidget(resourceTreeView, 0, 0, 1, 4); gridLayout1->addWidget(resourceTreeView, 0, 0, 1, 4);
newResourceButton = new QToolButton(widget); newResourceButton = new QToolButton(widget);
newResourceButton->setObjectName(QStringLiteral("newResourceButton")); newResourceButton->setObjectName(QString::fromUtf8("newResourceButton"));
gridLayout1->addWidget(newResourceButton, 1, 0, 1, 1); gridLayout1->addWidget(newResourceButton, 1, 0, 1, 1);
addResourceButton = new QToolButton(widget); addResourceButton = new QToolButton(widget);
addResourceButton->setObjectName(QStringLiteral("addResourceButton")); addResourceButton->setObjectName(QString::fromUtf8("addResourceButton"));
gridLayout1->addWidget(addResourceButton, 1, 1, 1, 1); gridLayout1->addWidget(addResourceButton, 1, 1, 1, 1);
removeResourceButton = new QToolButton(widget); removeResourceButton = new QToolButton(widget);
removeResourceButton->setObjectName(QStringLiteral("removeResourceButton")); removeResourceButton->setObjectName(QString::fromUtf8("removeResourceButton"));
gridLayout1->addWidget(removeResourceButton, 1, 2, 1, 1); gridLayout1->addWidget(removeResourceButton, 1, 2, 1, 1);
@ -125,7 +125,7 @@ public:
verticalLayout->addWidget(splitter); verticalLayout->addWidget(splitter);
buttonBox = new QDialogButtonBox(QtResourceEditorDialog); buttonBox = new QDialogButtonBox(QtResourceEditorDialog);
buttonBox->setObjectName(QStringLiteral("buttonBox")); buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setOrientation(Qt::Horizontal); buttonBox->setOrientation(Qt::Horizontal);
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok); buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);

View File

@ -50,21 +50,21 @@ public:
void setupUi(QDialog *QtToolBarDialog) void setupUi(QDialog *QtToolBarDialog)
{ {
if (QtToolBarDialog->objectName().isEmpty()) if (QtToolBarDialog->objectName().isEmpty())
QtToolBarDialog->setObjectName(QStringLiteral("QtToolBarDialog")); QtToolBarDialog->setObjectName(QString::fromUtf8("QtToolBarDialog"));
QtToolBarDialog->resize(583, 508); QtToolBarDialog->resize(583, 508);
gridLayout = new QGridLayout(QtToolBarDialog); gridLayout = new QGridLayout(QtToolBarDialog);
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
gridLayout->setSpacing(6); gridLayout->setSpacing(6);
#endif #endif
gridLayout->setContentsMargins(8, 8, 8, 8); gridLayout->setContentsMargins(8, 8, 8, 8);
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
actionTree = new QTreeWidget(QtToolBarDialog); actionTree = new QTreeWidget(QtToolBarDialog);
actionTree->setObjectName(QStringLiteral("actionTree")); actionTree->setObjectName(QString::fromUtf8("actionTree"));
gridLayout->addWidget(actionTree, 1, 0, 3, 1); gridLayout->addWidget(actionTree, 1, 0, 3, 1);
label = new QLabel(QtToolBarDialog); label = new QLabel(QtToolBarDialog);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
gridLayout->addWidget(label, 0, 0, 1, 1); gridLayout->addWidget(label, 0, 0, 1, 1);
@ -73,24 +73,24 @@ public:
hboxLayout->setSpacing(6); hboxLayout->setSpacing(6);
#endif #endif
hboxLayout->setContentsMargins(0, 0, 0, 0); hboxLayout->setContentsMargins(0, 0, 0, 0);
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
label_2 = new QLabel(QtToolBarDialog); label_2 = new QLabel(QtToolBarDialog);
label_2->setObjectName(QStringLiteral("label_2")); label_2->setObjectName(QString::fromUtf8("label_2"));
hboxLayout->addWidget(label_2); hboxLayout->addWidget(label_2);
newButton = new QToolButton(QtToolBarDialog); newButton = new QToolButton(QtToolBarDialog);
newButton->setObjectName(QStringLiteral("newButton")); newButton->setObjectName(QString::fromUtf8("newButton"));
hboxLayout->addWidget(newButton); hboxLayout->addWidget(newButton);
removeButton = new QToolButton(QtToolBarDialog); removeButton = new QToolButton(QtToolBarDialog);
removeButton->setObjectName(QStringLiteral("removeButton")); removeButton->setObjectName(QString::fromUtf8("removeButton"));
hboxLayout->addWidget(removeButton); hboxLayout->addWidget(removeButton);
renameButton = new QToolButton(QtToolBarDialog); renameButton = new QToolButton(QtToolBarDialog);
renameButton->setObjectName(QStringLiteral("renameButton")); renameButton->setObjectName(QString::fromUtf8("renameButton"));
hboxLayout->addWidget(renameButton); hboxLayout->addWidget(renameButton);
@ -102,9 +102,9 @@ public:
vboxLayout->setSpacing(6); vboxLayout->setSpacing(6);
#endif #endif
vboxLayout->setContentsMargins(0, 0, 0, 0); vboxLayout->setContentsMargins(0, 0, 0, 0);
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
upButton = new QToolButton(QtToolBarDialog); upButton = new QToolButton(QtToolBarDialog);
upButton->setObjectName(QStringLiteral("upButton")); upButton->setObjectName(QString::fromUtf8("upButton"));
QSizePolicy sizePolicy(QSizePolicy::Minimum, QSizePolicy::Fixed); QSizePolicy sizePolicy(QSizePolicy::Minimum, QSizePolicy::Fixed);
sizePolicy.setHorizontalStretch(0); sizePolicy.setHorizontalStretch(0);
sizePolicy.setVerticalStretch(0); sizePolicy.setVerticalStretch(0);
@ -114,21 +114,21 @@ public:
vboxLayout->addWidget(upButton); vboxLayout->addWidget(upButton);
leftButton = new QToolButton(QtToolBarDialog); leftButton = new QToolButton(QtToolBarDialog);
leftButton->setObjectName(QStringLiteral("leftButton")); leftButton->setObjectName(QString::fromUtf8("leftButton"));
sizePolicy.setHeightForWidth(leftButton->sizePolicy().hasHeightForWidth()); sizePolicy.setHeightForWidth(leftButton->sizePolicy().hasHeightForWidth());
leftButton->setSizePolicy(sizePolicy); leftButton->setSizePolicy(sizePolicy);
vboxLayout->addWidget(leftButton); vboxLayout->addWidget(leftButton);
rightButton = new QToolButton(QtToolBarDialog); rightButton = new QToolButton(QtToolBarDialog);
rightButton->setObjectName(QStringLiteral("rightButton")); rightButton->setObjectName(QString::fromUtf8("rightButton"));
sizePolicy.setHeightForWidth(rightButton->sizePolicy().hasHeightForWidth()); sizePolicy.setHeightForWidth(rightButton->sizePolicy().hasHeightForWidth());
rightButton->setSizePolicy(sizePolicy); rightButton->setSizePolicy(sizePolicy);
vboxLayout->addWidget(rightButton); vboxLayout->addWidget(rightButton);
downButton = new QToolButton(QtToolBarDialog); downButton = new QToolButton(QtToolBarDialog);
downButton->setObjectName(QStringLiteral("downButton")); downButton->setObjectName(QString::fromUtf8("downButton"));
sizePolicy.setHeightForWidth(downButton->sizePolicy().hasHeightForWidth()); sizePolicy.setHeightForWidth(downButton->sizePolicy().hasHeightForWidth());
downButton->setSizePolicy(sizePolicy); downButton->setSizePolicy(sizePolicy);
@ -142,22 +142,22 @@ public:
gridLayout->addLayout(vboxLayout, 3, 1, 1, 1); gridLayout->addLayout(vboxLayout, 3, 1, 1, 1);
currentToolBarList = new QListWidget(QtToolBarDialog); currentToolBarList = new QListWidget(QtToolBarDialog);
currentToolBarList->setObjectName(QStringLiteral("currentToolBarList")); currentToolBarList->setObjectName(QString::fromUtf8("currentToolBarList"));
gridLayout->addWidget(currentToolBarList, 3, 2, 1, 1); gridLayout->addWidget(currentToolBarList, 3, 2, 1, 1);
label_3 = new QLabel(QtToolBarDialog); label_3 = new QLabel(QtToolBarDialog);
label_3->setObjectName(QStringLiteral("label_3")); label_3->setObjectName(QString::fromUtf8("label_3"));
gridLayout->addWidget(label_3, 2, 1, 1, 2); gridLayout->addWidget(label_3, 2, 1, 1, 2);
toolBarList = new QListWidget(QtToolBarDialog); toolBarList = new QListWidget(QtToolBarDialog);
toolBarList->setObjectName(QStringLiteral("toolBarList")); toolBarList->setObjectName(QString::fromUtf8("toolBarList"));
gridLayout->addWidget(toolBarList, 1, 1, 1, 2); gridLayout->addWidget(toolBarList, 1, 1, 1, 2);
buttonBox = new QDialogButtonBox(QtToolBarDialog); buttonBox = new QDialogButtonBox(QtToolBarDialog);
buttonBox->setObjectName(QStringLiteral("buttonBox")); buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setStandardButtons(QDialogButtonBox::Apply|QDialogButtonBox::Cancel|QDialogButtonBox::Ok|QDialogButtonBox::RestoreDefaults); buttonBox->setStandardButtons(QDialogButtonBox::Apply|QDialogButtonBox::Cancel|QDialogButtonBox::Ok|QDialogButtonBox::RestoreDefaults);
gridLayout->addWidget(buttonBox, 5, 0, 1, 3); gridLayout->addWidget(buttonBox, 5, 0, 1, 3);

View File

@ -67,28 +67,28 @@ public:
void setupUi(QMainWindow *RemoteControlClass) void setupUi(QMainWindow *RemoteControlClass)
{ {
if (RemoteControlClass->objectName().isEmpty()) if (RemoteControlClass->objectName().isEmpty())
RemoteControlClass->setObjectName(QStringLiteral("RemoteControlClass")); RemoteControlClass->setObjectName(QString::fromUtf8("RemoteControlClass"));
RemoteControlClass->resize(344, 364); RemoteControlClass->resize(344, 364);
actionQuit = new QAction(RemoteControlClass); actionQuit = new QAction(RemoteControlClass);
actionQuit->setObjectName(QStringLiteral("actionQuit")); actionQuit->setObjectName(QString::fromUtf8("actionQuit"));
centralWidget = new QWidget(RemoteControlClass); centralWidget = new QWidget(RemoteControlClass);
centralWidget->setObjectName(QStringLiteral("centralWidget")); centralWidget->setObjectName(QString::fromUtf8("centralWidget"));
gridLayout = new QGridLayout(centralWidget); gridLayout = new QGridLayout(centralWidget);
gridLayout->setSpacing(6); gridLayout->setSpacing(6);
gridLayout->setContentsMargins(11, 11, 11, 11); gridLayout->setContentsMargins(11, 11, 11, 11);
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
label = new QLabel(centralWidget); label = new QLabel(centralWidget);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
gridLayout->addWidget(label, 0, 0, 1, 1); gridLayout->addWidget(label, 0, 0, 1, 1);
startUrlLineEdit = new QLineEdit(centralWidget); startUrlLineEdit = new QLineEdit(centralWidget);
startUrlLineEdit->setObjectName(QStringLiteral("startUrlLineEdit")); startUrlLineEdit->setObjectName(QString::fromUtf8("startUrlLineEdit"));
gridLayout->addWidget(startUrlLineEdit, 0, 1, 1, 2); gridLayout->addWidget(startUrlLineEdit, 0, 1, 1, 2);
launchButton = new QPushButton(centralWidget); launchButton = new QPushButton(centralWidget);
launchButton->setObjectName(QStringLiteral("launchButton")); launchButton->setObjectName(QString::fromUtf8("launchButton"));
gridLayout->addWidget(launchButton, 1, 1, 1, 1); gridLayout->addWidget(launchButton, 1, 1, 1, 1);
@ -101,27 +101,27 @@ public:
gridLayout->addItem(spacerItem1, 2, 1, 1, 1); gridLayout->addItem(spacerItem1, 2, 1, 1, 1);
actionGroupBox = new QGroupBox(centralWidget); actionGroupBox = new QGroupBox(centralWidget);
actionGroupBox->setObjectName(QStringLiteral("actionGroupBox")); actionGroupBox->setObjectName(QString::fromUtf8("actionGroupBox"));
actionGroupBox->setEnabled(false); actionGroupBox->setEnabled(false);
gridLayout1 = new QGridLayout(actionGroupBox); gridLayout1 = new QGridLayout(actionGroupBox);
gridLayout1->setSpacing(6); gridLayout1->setSpacing(6);
gridLayout1->setContentsMargins(11, 11, 11, 11); gridLayout1->setContentsMargins(11, 11, 11, 11);
gridLayout1->setObjectName(QStringLiteral("gridLayout1")); gridLayout1->setObjectName(QString::fromUtf8("gridLayout1"));
label_2 = new QLabel(actionGroupBox); label_2 = new QLabel(actionGroupBox);
label_2->setObjectName(QStringLiteral("label_2")); label_2->setObjectName(QString::fromUtf8("label_2"));
gridLayout1->addWidget(label_2, 0, 0, 1, 1); gridLayout1->addWidget(label_2, 0, 0, 1, 1);
hboxLayout = new QHBoxLayout(); hboxLayout = new QHBoxLayout();
hboxLayout->setSpacing(0); hboxLayout->setSpacing(0);
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
indexLineEdit = new QLineEdit(actionGroupBox); indexLineEdit = new QLineEdit(actionGroupBox);
indexLineEdit->setObjectName(QStringLiteral("indexLineEdit")); indexLineEdit->setObjectName(QString::fromUtf8("indexLineEdit"));
hboxLayout->addWidget(indexLineEdit); hboxLayout->addWidget(indexLineEdit);
indexButton = new QToolButton(actionGroupBox); indexButton = new QToolButton(actionGroupBox);
indexButton->setObjectName(QStringLiteral("indexButton")); indexButton->setObjectName(QString::fromUtf8("indexButton"));
const QIcon icon = QIcon(QString::fromUtf8(":/remotecontrol/enter.png")); const QIcon icon = QIcon(QString::fromUtf8(":/remotecontrol/enter.png"));
indexButton->setIcon(icon); indexButton->setIcon(icon);
@ -131,20 +131,20 @@ public:
gridLayout1->addLayout(hboxLayout, 0, 1, 1, 2); gridLayout1->addLayout(hboxLayout, 0, 1, 1, 2);
label_4 = new QLabel(actionGroupBox); label_4 = new QLabel(actionGroupBox);
label_4->setObjectName(QStringLiteral("label_4")); label_4->setObjectName(QString::fromUtf8("label_4"));
gridLayout1->addWidget(label_4, 1, 0, 1, 1); gridLayout1->addWidget(label_4, 1, 0, 1, 1);
hboxLayout1 = new QHBoxLayout(); hboxLayout1 = new QHBoxLayout();
hboxLayout1->setSpacing(0); hboxLayout1->setSpacing(0);
hboxLayout1->setObjectName(QStringLiteral("hboxLayout1")); hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
identifierLineEdit = new QLineEdit(actionGroupBox); identifierLineEdit = new QLineEdit(actionGroupBox);
identifierLineEdit->setObjectName(QStringLiteral("identifierLineEdit")); identifierLineEdit->setObjectName(QString::fromUtf8("identifierLineEdit"));
hboxLayout1->addWidget(identifierLineEdit); hboxLayout1->addWidget(identifierLineEdit);
identifierButton = new QToolButton(actionGroupBox); identifierButton = new QToolButton(actionGroupBox);
identifierButton->setObjectName(QStringLiteral("identifierButton")); identifierButton->setObjectName(QString::fromUtf8("identifierButton"));
identifierButton->setIcon(icon); identifierButton->setIcon(icon);
hboxLayout1->addWidget(identifierButton); hboxLayout1->addWidget(identifierButton);
@ -153,20 +153,20 @@ public:
gridLayout1->addLayout(hboxLayout1, 1, 1, 1, 2); gridLayout1->addLayout(hboxLayout1, 1, 1, 1, 2);
label_3 = new QLabel(actionGroupBox); label_3 = new QLabel(actionGroupBox);
label_3->setObjectName(QStringLiteral("label_3")); label_3->setObjectName(QString::fromUtf8("label_3"));
gridLayout1->addWidget(label_3, 2, 0, 1, 1); gridLayout1->addWidget(label_3, 2, 0, 1, 1);
hboxLayout2 = new QHBoxLayout(); hboxLayout2 = new QHBoxLayout();
hboxLayout2->setSpacing(0); hboxLayout2->setSpacing(0);
hboxLayout2->setObjectName(QStringLiteral("hboxLayout2")); hboxLayout2->setObjectName(QString::fromUtf8("hboxLayout2"));
urlLineEdit = new QLineEdit(actionGroupBox); urlLineEdit = new QLineEdit(actionGroupBox);
urlLineEdit->setObjectName(QStringLiteral("urlLineEdit")); urlLineEdit->setObjectName(QString::fromUtf8("urlLineEdit"));
hboxLayout2->addWidget(urlLineEdit); hboxLayout2->addWidget(urlLineEdit);
urlButton = new QToolButton(actionGroupBox); urlButton = new QToolButton(actionGroupBox);
urlButton->setObjectName(QStringLiteral("urlButton")); urlButton->setObjectName(QString::fromUtf8("urlButton"));
urlButton->setIcon(icon); urlButton->setIcon(icon);
hboxLayout2->addWidget(urlButton); hboxLayout2->addWidget(urlButton);
@ -175,7 +175,7 @@ public:
gridLayout1->addLayout(hboxLayout2, 2, 1, 1, 2); gridLayout1->addLayout(hboxLayout2, 2, 1, 1, 2);
syncContentsButton = new QPushButton(actionGroupBox); syncContentsButton = new QPushButton(actionGroupBox);
syncContentsButton->setObjectName(QStringLiteral("syncContentsButton")); syncContentsButton->setObjectName(QString::fromUtf8("syncContentsButton"));
gridLayout1->addWidget(syncContentsButton, 3, 1, 1, 1); gridLayout1->addWidget(syncContentsButton, 3, 1, 1, 1);
@ -184,17 +184,17 @@ public:
gridLayout1->addItem(spacerItem2, 3, 2, 1, 1); gridLayout1->addItem(spacerItem2, 3, 2, 1, 1);
contentsCheckBox = new QCheckBox(actionGroupBox); contentsCheckBox = new QCheckBox(actionGroupBox);
contentsCheckBox->setObjectName(QStringLiteral("contentsCheckBox")); contentsCheckBox->setObjectName(QString::fromUtf8("contentsCheckBox"));
gridLayout1->addWidget(contentsCheckBox, 4, 0, 1, 3); gridLayout1->addWidget(contentsCheckBox, 4, 0, 1, 3);
indexCheckBox = new QCheckBox(actionGroupBox); indexCheckBox = new QCheckBox(actionGroupBox);
indexCheckBox->setObjectName(QStringLiteral("indexCheckBox")); indexCheckBox->setObjectName(QString::fromUtf8("indexCheckBox"));
gridLayout1->addWidget(indexCheckBox, 5, 0, 1, 1); gridLayout1->addWidget(indexCheckBox, 5, 0, 1, 1);
bookmarksCheckBox = new QCheckBox(actionGroupBox); bookmarksCheckBox = new QCheckBox(actionGroupBox);
bookmarksCheckBox->setObjectName(QStringLiteral("bookmarksCheckBox")); bookmarksCheckBox->setObjectName(QString::fromUtf8("bookmarksCheckBox"));
gridLayout1->addWidget(bookmarksCheckBox, 6, 0, 1, 3); gridLayout1->addWidget(bookmarksCheckBox, 6, 0, 1, 3);
@ -203,13 +203,13 @@ public:
RemoteControlClass->setCentralWidget(centralWidget); RemoteControlClass->setCentralWidget(centralWidget);
menuBar = new QMenuBar(RemoteControlClass); menuBar = new QMenuBar(RemoteControlClass);
menuBar->setObjectName(QStringLiteral("menuBar")); menuBar->setObjectName(QString::fromUtf8("menuBar"));
menuBar->setGeometry(QRect(0, 0, 344, 21)); menuBar->setGeometry(QRect(0, 0, 344, 21));
menuFile = new QMenu(menuBar); menuFile = new QMenu(menuBar);
menuFile->setObjectName(QStringLiteral("menuFile")); menuFile->setObjectName(QString::fromUtf8("menuFile"));
RemoteControlClass->setMenuBar(menuBar); RemoteControlClass->setMenuBar(menuBar);
statusBar = new QStatusBar(RemoteControlClass); statusBar = new QStatusBar(RemoteControlClass);
statusBar->setObjectName(QStringLiteral("statusBar")); statusBar->setObjectName(QString::fromUtf8("statusBar"));
RemoteControlClass->setStatusBar(statusBar); RemoteControlClass->setStatusBar(statusBar);
menuBar->addAction(menuFile->menuAction()); menuBar->addAction(menuFile->menuAction());

View File

@ -46,13 +46,13 @@ public:
void setupUi(QMainWindow *QueryWidget) void setupUi(QMainWindow *QueryWidget)
{ {
if (QueryWidget->objectName().isEmpty()) if (QueryWidget->objectName().isEmpty())
QueryWidget->setObjectName(QStringLiteral("QueryWidget")); QueryWidget->setObjectName(QString::fromUtf8("QueryWidget"));
QueryWidget->resize(545, 531); QueryWidget->resize(545, 531);
centralwidget = new QWidget(QueryWidget); centralwidget = new QWidget(QueryWidget);
centralwidget->setObjectName(QStringLiteral("centralwidget")); centralwidget->setObjectName(QString::fromUtf8("centralwidget"));
centralwidget->setGeometry(QRect(0, 29, 545, 480)); centralwidget->setGeometry(QRect(0, 29, 545, 480));
verticalLayout = new QVBoxLayout(centralwidget); verticalLayout = new QVBoxLayout(centralwidget);
verticalLayout->setObjectName(QStringLiteral("verticalLayout")); verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
vboxLayout = new QVBoxLayout(); vboxLayout = new QVBoxLayout();
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout->setSpacing(6); vboxLayout->setSpacing(6);
@ -60,12 +60,12 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout->setContentsMargins(0, 0, 0, 0); vboxLayout->setContentsMargins(0, 0, 0, 0);
#endif #endif
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
inputGroupBox = new QGroupBox(centralwidget); inputGroupBox = new QGroupBox(centralwidget);
inputGroupBox->setObjectName(QStringLiteral("inputGroupBox")); inputGroupBox->setObjectName(QString::fromUtf8("inputGroupBox"));
inputGroupBox->setMinimumSize(QSize(550, 120)); inputGroupBox->setMinimumSize(QSize(550, 120));
verticalLayout_4 = new QVBoxLayout(inputGroupBox); verticalLayout_4 = new QVBoxLayout(inputGroupBox);
verticalLayout_4->setObjectName(QStringLiteral("verticalLayout_4")); verticalLayout_4->setObjectName(QString::fromUtf8("verticalLayout_4"));
_2 = new QVBoxLayout(); _2 = new QVBoxLayout();
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
_2->setSpacing(6); _2->setSpacing(6);
@ -73,9 +73,9 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
_2->setContentsMargins(0, 0, 0, 0); _2->setContentsMargins(0, 0, 0, 0);
#endif #endif
_2->setObjectName(QStringLiteral("_2")); _2->setObjectName(QString::fromUtf8("_2"));
inputTextEdit = new QTextEdit(inputGroupBox); inputTextEdit = new QTextEdit(inputGroupBox);
inputTextEdit->setObjectName(QStringLiteral("inputTextEdit")); inputTextEdit->setObjectName(QString::fromUtf8("inputTextEdit"));
_2->addWidget(inputTextEdit); _2->addWidget(inputTextEdit);
@ -86,17 +86,17 @@ public:
vboxLayout->addWidget(inputGroupBox); vboxLayout->addWidget(inputGroupBox);
queryGroupBox = new QGroupBox(centralwidget); queryGroupBox = new QGroupBox(centralwidget);
queryGroupBox->setObjectName(QStringLiteral("queryGroupBox")); queryGroupBox->setObjectName(QString::fromUtf8("queryGroupBox"));
queryGroupBox->setMinimumSize(QSize(550, 120)); queryGroupBox->setMinimumSize(QSize(550, 120));
verticalLayout_5 = new QVBoxLayout(queryGroupBox); verticalLayout_5 = new QVBoxLayout(queryGroupBox);
verticalLayout_5->setObjectName(QStringLiteral("verticalLayout_5")); verticalLayout_5->setObjectName(QString::fromUtf8("verticalLayout_5"));
defaultQueries = new QComboBox(queryGroupBox); defaultQueries = new QComboBox(queryGroupBox);
defaultQueries->setObjectName(QStringLiteral("defaultQueries")); defaultQueries->setObjectName(QString::fromUtf8("defaultQueries"));
verticalLayout_5->addWidget(defaultQueries); verticalLayout_5->addWidget(defaultQueries);
queryTextEdit = new QTextEdit(queryGroupBox); queryTextEdit = new QTextEdit(queryGroupBox);
queryTextEdit->setObjectName(QStringLiteral("queryTextEdit")); queryTextEdit->setObjectName(QString::fromUtf8("queryTextEdit"));
queryTextEdit->setMinimumSize(QSize(400, 60)); queryTextEdit->setMinimumSize(QSize(400, 60));
queryTextEdit->setReadOnly(true); queryTextEdit->setReadOnly(true);
queryTextEdit->setAcceptRichText(false); queryTextEdit->setAcceptRichText(false);
@ -107,10 +107,10 @@ public:
vboxLayout->addWidget(queryGroupBox); vboxLayout->addWidget(queryGroupBox);
outputGroupBox = new QGroupBox(centralwidget); outputGroupBox = new QGroupBox(centralwidget);
outputGroupBox->setObjectName(QStringLiteral("outputGroupBox")); outputGroupBox->setObjectName(QString::fromUtf8("outputGroupBox"));
outputGroupBox->setMinimumSize(QSize(550, 120)); outputGroupBox->setMinimumSize(QSize(550, 120));
verticalLayout_6 = new QVBoxLayout(outputGroupBox); verticalLayout_6 = new QVBoxLayout(outputGroupBox);
verticalLayout_6->setObjectName(QStringLiteral("verticalLayout_6")); verticalLayout_6->setObjectName(QString::fromUtf8("verticalLayout_6"));
_3 = new QVBoxLayout(); _3 = new QVBoxLayout();
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
_3->setSpacing(6); _3->setSpacing(6);
@ -118,9 +118,9 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
_3->setContentsMargins(0, 0, 0, 0); _3->setContentsMargins(0, 0, 0, 0);
#endif #endif
_3->setObjectName(QStringLiteral("_3")); _3->setObjectName(QString::fromUtf8("_3"));
outputTextEdit = new QTextEdit(outputGroupBox); outputTextEdit = new QTextEdit(outputGroupBox);
outputTextEdit->setObjectName(QStringLiteral("outputTextEdit")); outputTextEdit->setObjectName(QString::fromUtf8("outputTextEdit"));
outputTextEdit->setMinimumSize(QSize(500, 80)); outputTextEdit->setMinimumSize(QSize(500, 80));
outputTextEdit->setReadOnly(true); outputTextEdit->setReadOnly(true);
outputTextEdit->setAcceptRichText(false); outputTextEdit->setAcceptRichText(false);
@ -138,11 +138,11 @@ public:
QueryWidget->setCentralWidget(centralwidget); QueryWidget->setCentralWidget(centralwidget);
menubar = new QMenuBar(QueryWidget); menubar = new QMenuBar(QueryWidget);
menubar->setObjectName(QStringLiteral("menubar")); menubar->setObjectName(QString::fromUtf8("menubar"));
menubar->setGeometry(QRect(0, 0, 545, 29)); menubar->setGeometry(QRect(0, 0, 545, 29));
QueryWidget->setMenuBar(menubar); QueryWidget->setMenuBar(menubar);
statusbar = new QStatusBar(QueryWidget); statusbar = new QStatusBar(QueryWidget);
statusbar->setObjectName(QStringLiteral("statusbar")); statusbar->setObjectName(QString::fromUtf8("statusbar"));
statusbar->setGeometry(QRect(0, 509, 545, 22)); statusbar->setGeometry(QRect(0, 509, 545, 22));
QueryWidget->setStatusBar(statusbar); QueryWidget->setStatusBar(statusbar);

View File

@ -67,28 +67,28 @@ public:
void setupUi(QMainWindow *RemoteControlClass) void setupUi(QMainWindow *RemoteControlClass)
{ {
if (RemoteControlClass->objectName().isEmpty()) if (RemoteControlClass->objectName().isEmpty())
RemoteControlClass->setObjectName(QStringLiteral("RemoteControlClass")); RemoteControlClass->setObjectName(QString::fromUtf8("RemoteControlClass"));
RemoteControlClass->resize(344, 364); RemoteControlClass->resize(344, 364);
actionQuit = new QAction(RemoteControlClass); actionQuit = new QAction(RemoteControlClass);
actionQuit->setObjectName(QStringLiteral("actionQuit")); actionQuit->setObjectName(QString::fromUtf8("actionQuit"));
centralWidget = new QWidget(RemoteControlClass); centralWidget = new QWidget(RemoteControlClass);
centralWidget->setObjectName(QStringLiteral("centralWidget")); centralWidget->setObjectName(QString::fromUtf8("centralWidget"));
gridLayout = new QGridLayout(centralWidget); gridLayout = new QGridLayout(centralWidget);
gridLayout->setSpacing(6); gridLayout->setSpacing(6);
gridLayout->setContentsMargins(11, 11, 11, 11); gridLayout->setContentsMargins(11, 11, 11, 11);
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
label = new QLabel(centralWidget); label = new QLabel(centralWidget);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
gridLayout->addWidget(label, 0, 0, 1, 1); gridLayout->addWidget(label, 0, 0, 1, 1);
startUrlLineEdit = new QLineEdit(centralWidget); startUrlLineEdit = new QLineEdit(centralWidget);
startUrlLineEdit->setObjectName(QStringLiteral("startUrlLineEdit")); startUrlLineEdit->setObjectName(QString::fromUtf8("startUrlLineEdit"));
gridLayout->addWidget(startUrlLineEdit, 0, 1, 1, 2); gridLayout->addWidget(startUrlLineEdit, 0, 1, 1, 2);
launchButton = new QPushButton(centralWidget); launchButton = new QPushButton(centralWidget);
launchButton->setObjectName(QStringLiteral("launchButton")); launchButton->setObjectName(QString::fromUtf8("launchButton"));
gridLayout->addWidget(launchButton, 1, 1, 1, 1); gridLayout->addWidget(launchButton, 1, 1, 1, 1);
@ -101,27 +101,27 @@ public:
gridLayout->addItem(spacerItem1, 2, 1, 1, 1); gridLayout->addItem(spacerItem1, 2, 1, 1, 1);
actionGroupBox = new QGroupBox(centralWidget); actionGroupBox = new QGroupBox(centralWidget);
actionGroupBox->setObjectName(QStringLiteral("actionGroupBox")); actionGroupBox->setObjectName(QString::fromUtf8("actionGroupBox"));
actionGroupBox->setEnabled(false); actionGroupBox->setEnabled(false);
gridLayout1 = new QGridLayout(actionGroupBox); gridLayout1 = new QGridLayout(actionGroupBox);
gridLayout1->setSpacing(6); gridLayout1->setSpacing(6);
gridLayout1->setContentsMargins(11, 11, 11, 11); gridLayout1->setContentsMargins(11, 11, 11, 11);
gridLayout1->setObjectName(QStringLiteral("gridLayout1")); gridLayout1->setObjectName(QString::fromUtf8("gridLayout1"));
label_2 = new QLabel(actionGroupBox); label_2 = new QLabel(actionGroupBox);
label_2->setObjectName(QStringLiteral("label_2")); label_2->setObjectName(QString::fromUtf8("label_2"));
gridLayout1->addWidget(label_2, 0, 0, 1, 1); gridLayout1->addWidget(label_2, 0, 0, 1, 1);
hboxLayout = new QHBoxLayout(); hboxLayout = new QHBoxLayout();
hboxLayout->setSpacing(0); hboxLayout->setSpacing(0);
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
indexLineEdit = new QLineEdit(actionGroupBox); indexLineEdit = new QLineEdit(actionGroupBox);
indexLineEdit->setObjectName(QStringLiteral("indexLineEdit")); indexLineEdit->setObjectName(QString::fromUtf8("indexLineEdit"));
hboxLayout->addWidget(indexLineEdit); hboxLayout->addWidget(indexLineEdit);
indexButton = new QToolButton(actionGroupBox); indexButton = new QToolButton(actionGroupBox);
indexButton->setObjectName(QStringLiteral("indexButton")); indexButton->setObjectName(QString::fromUtf8("indexButton"));
const QIcon icon = QIcon(QString::fromUtf8(":/remotecontrol/enter.png")); const QIcon icon = QIcon(QString::fromUtf8(":/remotecontrol/enter.png"));
indexButton->setIcon(icon); indexButton->setIcon(icon);
@ -131,20 +131,20 @@ public:
gridLayout1->addLayout(hboxLayout, 0, 1, 1, 2); gridLayout1->addLayout(hboxLayout, 0, 1, 1, 2);
label_4 = new QLabel(actionGroupBox); label_4 = new QLabel(actionGroupBox);
label_4->setObjectName(QStringLiteral("label_4")); label_4->setObjectName(QString::fromUtf8("label_4"));
gridLayout1->addWidget(label_4, 1, 0, 1, 1); gridLayout1->addWidget(label_4, 1, 0, 1, 1);
hboxLayout1 = new QHBoxLayout(); hboxLayout1 = new QHBoxLayout();
hboxLayout1->setSpacing(0); hboxLayout1->setSpacing(0);
hboxLayout1->setObjectName(QStringLiteral("hboxLayout1")); hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
identifierLineEdit = new QLineEdit(actionGroupBox); identifierLineEdit = new QLineEdit(actionGroupBox);
identifierLineEdit->setObjectName(QStringLiteral("identifierLineEdit")); identifierLineEdit->setObjectName(QString::fromUtf8("identifierLineEdit"));
hboxLayout1->addWidget(identifierLineEdit); hboxLayout1->addWidget(identifierLineEdit);
identifierButton = new QToolButton(actionGroupBox); identifierButton = new QToolButton(actionGroupBox);
identifierButton->setObjectName(QStringLiteral("identifierButton")); identifierButton->setObjectName(QString::fromUtf8("identifierButton"));
identifierButton->setIcon(icon); identifierButton->setIcon(icon);
hboxLayout1->addWidget(identifierButton); hboxLayout1->addWidget(identifierButton);
@ -153,20 +153,20 @@ public:
gridLayout1->addLayout(hboxLayout1, 1, 1, 1, 2); gridLayout1->addLayout(hboxLayout1, 1, 1, 1, 2);
label_3 = new QLabel(actionGroupBox); label_3 = new QLabel(actionGroupBox);
label_3->setObjectName(QStringLiteral("label_3")); label_3->setObjectName(QString::fromUtf8("label_3"));
gridLayout1->addWidget(label_3, 2, 0, 1, 1); gridLayout1->addWidget(label_3, 2, 0, 1, 1);
hboxLayout2 = new QHBoxLayout(); hboxLayout2 = new QHBoxLayout();
hboxLayout2->setSpacing(0); hboxLayout2->setSpacing(0);
hboxLayout2->setObjectName(QStringLiteral("hboxLayout2")); hboxLayout2->setObjectName(QString::fromUtf8("hboxLayout2"));
urlLineEdit = new QLineEdit(actionGroupBox); urlLineEdit = new QLineEdit(actionGroupBox);
urlLineEdit->setObjectName(QStringLiteral("urlLineEdit")); urlLineEdit->setObjectName(QString::fromUtf8("urlLineEdit"));
hboxLayout2->addWidget(urlLineEdit); hboxLayout2->addWidget(urlLineEdit);
urlButton = new QToolButton(actionGroupBox); urlButton = new QToolButton(actionGroupBox);
urlButton->setObjectName(QStringLiteral("urlButton")); urlButton->setObjectName(QString::fromUtf8("urlButton"));
urlButton->setIcon(icon); urlButton->setIcon(icon);
hboxLayout2->addWidget(urlButton); hboxLayout2->addWidget(urlButton);
@ -175,7 +175,7 @@ public:
gridLayout1->addLayout(hboxLayout2, 2, 1, 1, 2); gridLayout1->addLayout(hboxLayout2, 2, 1, 1, 2);
syncContentsButton = new QPushButton(actionGroupBox); syncContentsButton = new QPushButton(actionGroupBox);
syncContentsButton->setObjectName(QStringLiteral("syncContentsButton")); syncContentsButton->setObjectName(QString::fromUtf8("syncContentsButton"));
gridLayout1->addWidget(syncContentsButton, 3, 1, 1, 1); gridLayout1->addWidget(syncContentsButton, 3, 1, 1, 1);
@ -184,17 +184,17 @@ public:
gridLayout1->addItem(spacerItem2, 3, 2, 1, 1); gridLayout1->addItem(spacerItem2, 3, 2, 1, 1);
contentsCheckBox = new QCheckBox(actionGroupBox); contentsCheckBox = new QCheckBox(actionGroupBox);
contentsCheckBox->setObjectName(QStringLiteral("contentsCheckBox")); contentsCheckBox->setObjectName(QString::fromUtf8("contentsCheckBox"));
gridLayout1->addWidget(contentsCheckBox, 4, 0, 1, 3); gridLayout1->addWidget(contentsCheckBox, 4, 0, 1, 3);
indexCheckBox = new QCheckBox(actionGroupBox); indexCheckBox = new QCheckBox(actionGroupBox);
indexCheckBox->setObjectName(QStringLiteral("indexCheckBox")); indexCheckBox->setObjectName(QString::fromUtf8("indexCheckBox"));
gridLayout1->addWidget(indexCheckBox, 5, 0, 1, 1); gridLayout1->addWidget(indexCheckBox, 5, 0, 1, 1);
bookmarksCheckBox = new QCheckBox(actionGroupBox); bookmarksCheckBox = new QCheckBox(actionGroupBox);
bookmarksCheckBox->setObjectName(QStringLiteral("bookmarksCheckBox")); bookmarksCheckBox->setObjectName(QString::fromUtf8("bookmarksCheckBox"));
gridLayout1->addWidget(bookmarksCheckBox, 6, 0, 1, 3); gridLayout1->addWidget(bookmarksCheckBox, 6, 0, 1, 3);
@ -203,13 +203,13 @@ public:
RemoteControlClass->setCentralWidget(centralWidget); RemoteControlClass->setCentralWidget(centralWidget);
menuBar = new QMenuBar(RemoteControlClass); menuBar = new QMenuBar(RemoteControlClass);
menuBar->setObjectName(QStringLiteral("menuBar")); menuBar->setObjectName(QString::fromUtf8("menuBar"));
menuBar->setGeometry(QRect(0, 0, 344, 21)); menuBar->setGeometry(QRect(0, 0, 344, 21));
menuFile = new QMenu(menuBar); menuFile = new QMenu(menuBar);
menuFile->setObjectName(QStringLiteral("menuFile")); menuFile->setObjectName(QString::fromUtf8("menuFile"));
RemoteControlClass->setMenuBar(menuBar); RemoteControlClass->setMenuBar(menuBar);
statusBar = new QStatusBar(RemoteControlClass); statusBar = new QStatusBar(RemoteControlClass);
statusBar->setObjectName(QStringLiteral("statusBar")); statusBar->setObjectName(QString::fromUtf8("statusBar"));
RemoteControlClass->setStatusBar(statusBar); RemoteControlClass->setStatusBar(statusBar);
menuBar->addAction(menuFile->menuAction()); menuBar->addAction(menuFile->menuAction());

View File

@ -67,13 +67,13 @@ public:
void setupUi(QDialog *SaveFormAsTemplate) void setupUi(QDialog *SaveFormAsTemplate)
{ {
if (SaveFormAsTemplate->objectName().isEmpty()) if (SaveFormAsTemplate->objectName().isEmpty())
SaveFormAsTemplate->setObjectName(QStringLiteral("SaveFormAsTemplate")); SaveFormAsTemplate->setObjectName(QString::fromUtf8("SaveFormAsTemplate"));
vboxLayout = new QVBoxLayout(SaveFormAsTemplate); vboxLayout = new QVBoxLayout(SaveFormAsTemplate);
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
formLayout = new QFormLayout(); formLayout = new QFormLayout();
formLayout->setObjectName(QStringLiteral("formLayout")); formLayout->setObjectName(QString::fromUtf8("formLayout"));
label = new QLabel(SaveFormAsTemplate); label = new QLabel(SaveFormAsTemplate);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
label->setFrameShape(QFrame::NoFrame); label->setFrameShape(QFrame::NoFrame);
label->setFrameShadow(QFrame::Plain); label->setFrameShadow(QFrame::Plain);
label->setTextFormat(Qt::AutoText); label->setTextFormat(Qt::AutoText);
@ -81,14 +81,14 @@ public:
formLayout->setWidget(0, QFormLayout::LabelRole, label); formLayout->setWidget(0, QFormLayout::LabelRole, label);
templateNameEdit = new QLineEdit(SaveFormAsTemplate); templateNameEdit = new QLineEdit(SaveFormAsTemplate);
templateNameEdit->setObjectName(QStringLiteral("templateNameEdit")); templateNameEdit->setObjectName(QString::fromUtf8("templateNameEdit"));
templateNameEdit->setMinimumSize(QSize(222, 0)); templateNameEdit->setMinimumSize(QSize(222, 0));
templateNameEdit->setEchoMode(QLineEdit::Normal); templateNameEdit->setEchoMode(QLineEdit::Normal);
formLayout->setWidget(0, QFormLayout::FieldRole, templateNameEdit); formLayout->setWidget(0, QFormLayout::FieldRole, templateNameEdit);
label_2 = new QLabel(SaveFormAsTemplate); label_2 = new QLabel(SaveFormAsTemplate);
label_2->setObjectName(QStringLiteral("label_2")); label_2->setObjectName(QString::fromUtf8("label_2"));
label_2->setFrameShape(QFrame::NoFrame); label_2->setFrameShape(QFrame::NoFrame);
label_2->setFrameShadow(QFrame::Plain); label_2->setFrameShadow(QFrame::Plain);
label_2->setTextFormat(Qt::AutoText); label_2->setTextFormat(Qt::AutoText);
@ -96,7 +96,7 @@ public:
formLayout->setWidget(1, QFormLayout::LabelRole, label_2); formLayout->setWidget(1, QFormLayout::LabelRole, label_2);
categoryCombo = new QComboBox(SaveFormAsTemplate); categoryCombo = new QComboBox(SaveFormAsTemplate);
categoryCombo->setObjectName(QStringLiteral("categoryCombo")); categoryCombo->setObjectName(QString::fromUtf8("categoryCombo"));
formLayout->setWidget(1, QFormLayout::FieldRole, categoryCombo); formLayout->setWidget(1, QFormLayout::FieldRole, categoryCombo);
@ -104,14 +104,14 @@ public:
vboxLayout->addLayout(formLayout); vboxLayout->addLayout(formLayout);
horizontalLine = new QFrame(SaveFormAsTemplate); horizontalLine = new QFrame(SaveFormAsTemplate);
horizontalLine->setObjectName(QStringLiteral("horizontalLine")); horizontalLine->setObjectName(QString::fromUtf8("horizontalLine"));
horizontalLine->setFrameShape(QFrame::HLine); horizontalLine->setFrameShape(QFrame::HLine);
horizontalLine->setFrameShadow(QFrame::Sunken); horizontalLine->setFrameShadow(QFrame::Sunken);
vboxLayout->addWidget(horizontalLine); vboxLayout->addWidget(horizontalLine);
buttonBox = new QDialogButtonBox(SaveFormAsTemplate); buttonBox = new QDialogButtonBox(SaveFormAsTemplate);
buttonBox->setObjectName(QStringLiteral("buttonBox")); buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setOrientation(Qt::Horizontal); buttonBox->setOrientation(Qt::Horizontal);
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok); buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);

View File

@ -47,14 +47,14 @@ public:
void setupUi(QDialog *Dialog) void setupUi(QDialog *Dialog)
{ {
if (Dialog->objectName().isEmpty()) if (Dialog->objectName().isEmpty())
Dialog->setObjectName(QStringLiteral("Dialog")); Dialog->setObjectName(QString::fromUtf8("Dialog"));
Dialog->resize(392, 176); Dialog->resize(392, 176);
verticalLayout = new QVBoxLayout(Dialog); verticalLayout = new QVBoxLayout(Dialog);
verticalLayout->setObjectName(QStringLiteral("verticalLayout")); verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
hboxLayout = new QHBoxLayout(); hboxLayout = new QHBoxLayout();
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
label = new QLabel(Dialog); label = new QLabel(Dialog);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
QSizePolicy sizePolicy(QSizePolicy::Maximum, QSizePolicy::Preferred); QSizePolicy sizePolicy(QSizePolicy::Maximum, QSizePolicy::Preferred);
sizePolicy.setHorizontalStretch(0); sizePolicy.setHorizontalStretch(0);
sizePolicy.setVerticalStretch(0); sizePolicy.setVerticalStretch(0);
@ -66,7 +66,7 @@ public:
hboxLayout->addWidget(label); hboxLayout->addWidget(label);
deviceCombo = new QComboBox(Dialog); deviceCombo = new QComboBox(Dialog);
deviceCombo->setObjectName(QStringLiteral("deviceCombo")); deviceCombo->setObjectName(QString::fromUtf8("deviceCombo"));
QSizePolicy sizePolicy1(QSizePolicy::Minimum, QSizePolicy::Fixed); QSizePolicy sizePolicy1(QSizePolicy::Minimum, QSizePolicy::Fixed);
sizePolicy1.setHorizontalStretch(0); sizePolicy1.setHorizontalStretch(0);
sizePolicy1.setVerticalStretch(0); sizePolicy1.setVerticalStretch(0);
@ -79,9 +79,9 @@ public:
verticalLayout->addLayout(hboxLayout); verticalLayout->addLayout(hboxLayout);
hboxLayout1 = new QHBoxLayout(); hboxLayout1 = new QHBoxLayout();
hboxLayout1->setObjectName(QStringLiteral("hboxLayout1")); hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
label_6 = new QLabel(Dialog); label_6 = new QLabel(Dialog);
label_6->setObjectName(QStringLiteral("label_6")); label_6->setObjectName(QString::fromUtf8("label_6"));
sizePolicy.setHeightForWidth(label_6->sizePolicy().hasHeightForWidth()); sizePolicy.setHeightForWidth(label_6->sizePolicy().hasHeightForWidth());
label_6->setSizePolicy(sizePolicy); label_6->setSizePolicy(sizePolicy);
label_6->setMinimumSize(QSize(90, 0)); label_6->setMinimumSize(QSize(90, 0));
@ -90,7 +90,7 @@ public:
hboxLayout1->addWidget(label_6); hboxLayout1->addWidget(label_6);
audioEffectsCombo = new QComboBox(Dialog); audioEffectsCombo = new QComboBox(Dialog);
audioEffectsCombo->setObjectName(QStringLiteral("audioEffectsCombo")); audioEffectsCombo->setObjectName(QString::fromUtf8("audioEffectsCombo"));
sizePolicy1.setHeightForWidth(audioEffectsCombo->sizePolicy().hasHeightForWidth()); sizePolicy1.setHeightForWidth(audioEffectsCombo->sizePolicy().hasHeightForWidth());
audioEffectsCombo->setSizePolicy(sizePolicy1); audioEffectsCombo->setSizePolicy(sizePolicy1);
@ -100,9 +100,9 @@ public:
verticalLayout->addLayout(hboxLayout1); verticalLayout->addLayout(hboxLayout1);
hboxLayout2 = new QHBoxLayout(); hboxLayout2 = new QHBoxLayout();
hboxLayout2->setObjectName(QStringLiteral("hboxLayout2")); hboxLayout2->setObjectName(QString::fromUtf8("hboxLayout2"));
crossFadeLabel = new QLabel(Dialog); crossFadeLabel = new QLabel(Dialog);
crossFadeLabel->setObjectName(QStringLiteral("crossFadeLabel")); crossFadeLabel->setObjectName(QString::fromUtf8("crossFadeLabel"));
sizePolicy.setHeightForWidth(crossFadeLabel->sizePolicy().hasHeightForWidth()); sizePolicy.setHeightForWidth(crossFadeLabel->sizePolicy().hasHeightForWidth());
crossFadeLabel->setSizePolicy(sizePolicy); crossFadeLabel->setSizePolicy(sizePolicy);
crossFadeLabel->setMinimumSize(QSize(90, 0)); crossFadeLabel->setMinimumSize(QSize(90, 0));
@ -111,9 +111,9 @@ public:
hboxLayout2->addWidget(crossFadeLabel); hboxLayout2->addWidget(crossFadeLabel);
vboxLayout = new QVBoxLayout(); vboxLayout = new QVBoxLayout();
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
crossFadeSlider = new QSlider(Dialog); crossFadeSlider = new QSlider(Dialog);
crossFadeSlider->setObjectName(QStringLiteral("crossFadeSlider")); crossFadeSlider->setObjectName(QString::fromUtf8("crossFadeSlider"));
sizePolicy1.setHeightForWidth(crossFadeSlider->sizePolicy().hasHeightForWidth()); sizePolicy1.setHeightForWidth(crossFadeSlider->sizePolicy().hasHeightForWidth());
crossFadeSlider->setSizePolicy(sizePolicy1); crossFadeSlider->setSizePolicy(sizePolicy1);
crossFadeSlider->setMinimum(-20); crossFadeSlider->setMinimum(-20);
@ -127,9 +127,9 @@ public:
vboxLayout->addWidget(crossFadeSlider); vboxLayout->addWidget(crossFadeSlider);
hboxLayout3 = new QHBoxLayout(); hboxLayout3 = new QHBoxLayout();
hboxLayout3->setObjectName(QStringLiteral("hboxLayout3")); hboxLayout3->setObjectName(QString::fromUtf8("hboxLayout3"));
label_3 = new QLabel(Dialog); label_3 = new QLabel(Dialog);
label_3->setObjectName(QStringLiteral("label_3")); label_3->setObjectName(QString::fromUtf8("label_3"));
QFont font; QFont font;
font.setPointSize(9); font.setPointSize(9);
label_3->setFont(font); label_3->setFont(font);
@ -141,7 +141,7 @@ public:
hboxLayout3->addItem(spacerItem); hboxLayout3->addItem(spacerItem);
label_5 = new QLabel(Dialog); label_5 = new QLabel(Dialog);
label_5->setObjectName(QStringLiteral("label_5")); label_5->setObjectName(QString::fromUtf8("label_5"));
label_5->setFont(font); label_5->setFont(font);
hboxLayout3->addWidget(label_5); hboxLayout3->addWidget(label_5);
@ -151,7 +151,7 @@ public:
hboxLayout3->addItem(spacerItem1); hboxLayout3->addItem(spacerItem1);
label_4 = new QLabel(Dialog); label_4 = new QLabel(Dialog);
label_4->setObjectName(QStringLiteral("label_4")); label_4->setObjectName(QString::fromUtf8("label_4"));
label_4->setFont(font); label_4->setFont(font);
hboxLayout3->addWidget(label_4); hboxLayout3->addWidget(label_4);
@ -166,7 +166,7 @@ public:
verticalLayout->addLayout(hboxLayout2); verticalLayout->addLayout(hboxLayout2);
buttonBox = new QDialogButtonBox(Dialog); buttonBox = new QDialogButtonBox(Dialog);
buttonBox->setObjectName(QStringLiteral("buttonBox")); buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setOrientation(Qt::Horizontal); buttonBox->setOrientation(Qt::Horizontal);
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok); buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);

View File

@ -45,33 +45,33 @@ public:
void setupUi(QDialog *SignalSlotDialogClass) void setupUi(QDialog *SignalSlotDialogClass)
{ {
if (SignalSlotDialogClass->objectName().isEmpty()) if (SignalSlotDialogClass->objectName().isEmpty())
SignalSlotDialogClass->setObjectName(QStringLiteral("SignalSlotDialogClass")); SignalSlotDialogClass->setObjectName(QString::fromUtf8("SignalSlotDialogClass"));
SignalSlotDialogClass->resize(617, 535); SignalSlotDialogClass->resize(617, 535);
vboxLayout = new QVBoxLayout(SignalSlotDialogClass); vboxLayout = new QVBoxLayout(SignalSlotDialogClass);
vboxLayout->setSpacing(6); vboxLayout->setSpacing(6);
vboxLayout->setContentsMargins(11, 11, 11, 11); vboxLayout->setContentsMargins(11, 11, 11, 11);
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
slotGroupBox = new QGroupBox(SignalSlotDialogClass); slotGroupBox = new QGroupBox(SignalSlotDialogClass);
slotGroupBox->setObjectName(QStringLiteral("slotGroupBox")); slotGroupBox->setObjectName(QString::fromUtf8("slotGroupBox"));
vboxLayout1 = new QVBoxLayout(slotGroupBox); vboxLayout1 = new QVBoxLayout(slotGroupBox);
vboxLayout1->setSpacing(6); vboxLayout1->setSpacing(6);
vboxLayout1->setContentsMargins(11, 11, 11, 11); vboxLayout1->setContentsMargins(11, 11, 11, 11);
vboxLayout1->setObjectName(QStringLiteral("vboxLayout1")); vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1"));
slotListView = new QListView(slotGroupBox); slotListView = new QListView(slotGroupBox);
slotListView->setObjectName(QStringLiteral("slotListView")); slotListView->setObjectName(QString::fromUtf8("slotListView"));
vboxLayout1->addWidget(slotListView); vboxLayout1->addWidget(slotListView);
hboxLayout = new QHBoxLayout(); hboxLayout = new QHBoxLayout();
hboxLayout->setSpacing(6); hboxLayout->setSpacing(6);
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
addSlotButton = new QToolButton(slotGroupBox); addSlotButton = new QToolButton(slotGroupBox);
addSlotButton->setObjectName(QStringLiteral("addSlotButton")); addSlotButton->setObjectName(QString::fromUtf8("addSlotButton"));
hboxLayout->addWidget(addSlotButton); hboxLayout->addWidget(addSlotButton);
removeSlotButton = new QToolButton(slotGroupBox); removeSlotButton = new QToolButton(slotGroupBox);
removeSlotButton->setObjectName(QStringLiteral("removeSlotButton")); removeSlotButton->setObjectName(QString::fromUtf8("removeSlotButton"));
hboxLayout->addWidget(removeSlotButton); hboxLayout->addWidget(removeSlotButton);
@ -86,26 +86,26 @@ public:
vboxLayout->addWidget(slotGroupBox); vboxLayout->addWidget(slotGroupBox);
signalGroupBox = new QGroupBox(SignalSlotDialogClass); signalGroupBox = new QGroupBox(SignalSlotDialogClass);
signalGroupBox->setObjectName(QStringLiteral("signalGroupBox")); signalGroupBox->setObjectName(QString::fromUtf8("signalGroupBox"));
vboxLayout2 = new QVBoxLayout(signalGroupBox); vboxLayout2 = new QVBoxLayout(signalGroupBox);
vboxLayout2->setSpacing(6); vboxLayout2->setSpacing(6);
vboxLayout2->setContentsMargins(11, 11, 11, 11); vboxLayout2->setContentsMargins(11, 11, 11, 11);
vboxLayout2->setObjectName(QStringLiteral("vboxLayout2")); vboxLayout2->setObjectName(QString::fromUtf8("vboxLayout2"));
signalListView = new QListView(signalGroupBox); signalListView = new QListView(signalGroupBox);
signalListView->setObjectName(QStringLiteral("signalListView")); signalListView->setObjectName(QString::fromUtf8("signalListView"));
vboxLayout2->addWidget(signalListView); vboxLayout2->addWidget(signalListView);
hboxLayout1 = new QHBoxLayout(); hboxLayout1 = new QHBoxLayout();
hboxLayout1->setSpacing(6); hboxLayout1->setSpacing(6);
hboxLayout1->setObjectName(QStringLiteral("hboxLayout1")); hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
addSignalButton = new QToolButton(signalGroupBox); addSignalButton = new QToolButton(signalGroupBox);
addSignalButton->setObjectName(QStringLiteral("addSignalButton")); addSignalButton->setObjectName(QString::fromUtf8("addSignalButton"));
hboxLayout1->addWidget(addSignalButton); hboxLayout1->addWidget(addSignalButton);
removeSignalButton = new QToolButton(signalGroupBox); removeSignalButton = new QToolButton(signalGroupBox);
removeSignalButton->setObjectName(QStringLiteral("removeSignalButton")); removeSignalButton->setObjectName(QString::fromUtf8("removeSignalButton"));
hboxLayout1->addWidget(removeSignalButton); hboxLayout1->addWidget(removeSignalButton);
@ -120,7 +120,7 @@ public:
vboxLayout->addWidget(signalGroupBox); vboxLayout->addWidget(signalGroupBox);
buttonBox = new QDialogButtonBox(SignalSlotDialogClass); buttonBox = new QDialogButtonBox(SignalSlotDialogClass);
buttonBox->setObjectName(QStringLiteral("buttonBox")); buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok); buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
vboxLayout->addWidget(buttonBox); vboxLayout->addWidget(buttonBox);

View File

@ -48,29 +48,29 @@ public:
void setupUi(QWidget *Form) void setupUi(QWidget *Form)
{ {
if (Form->objectName().isEmpty()) if (Form->objectName().isEmpty())
Form->setObjectName(QStringLiteral("Form")); Form->setObjectName(QString::fromUtf8("Form"));
Form->resize(343, 320); Form->resize(343, 320);
vboxLayout = new QVBoxLayout(Form); vboxLayout = new QVBoxLayout(Form);
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
gridLayout = new QGridLayout(); gridLayout = new QGridLayout();
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
hostNameLabel = new QLabel(Form); hostNameLabel = new QLabel(Form);
hostNameLabel->setObjectName(QStringLiteral("hostNameLabel")); hostNameLabel->setObjectName(QString::fromUtf8("hostNameLabel"));
gridLayout->addWidget(hostNameLabel, 0, 0, 1, 1); gridLayout->addWidget(hostNameLabel, 0, 0, 1, 1);
hostNameEdit = new QLineEdit(Form); hostNameEdit = new QLineEdit(Form);
hostNameEdit->setObjectName(QStringLiteral("hostNameEdit")); hostNameEdit->setObjectName(QString::fromUtf8("hostNameEdit"));
gridLayout->addWidget(hostNameEdit, 0, 1, 1, 1); gridLayout->addWidget(hostNameEdit, 0, 1, 1, 1);
portLabel = new QLabel(Form); portLabel = new QLabel(Form);
portLabel->setObjectName(QStringLiteral("portLabel")); portLabel->setObjectName(QString::fromUtf8("portLabel"));
gridLayout->addWidget(portLabel, 1, 0, 1, 1); gridLayout->addWidget(portLabel, 1, 0, 1, 1);
portBox = new QSpinBox(Form); portBox = new QSpinBox(Form);
portBox->setObjectName(QStringLiteral("portBox")); portBox->setObjectName(QString::fromUtf8("portBox"));
portBox->setMinimum(1); portBox->setMinimum(1);
portBox->setMaximum(65535); portBox->setMaximum(65535);
portBox->setValue(993); portBox->setValue(993);
@ -81,25 +81,25 @@ public:
vboxLayout->addLayout(gridLayout); vboxLayout->addLayout(gridLayout);
connectButton = new QPushButton(Form); connectButton = new QPushButton(Form);
connectButton->setObjectName(QStringLiteral("connectButton")); connectButton->setObjectName(QString::fromUtf8("connectButton"));
connectButton->setEnabled(true); connectButton->setEnabled(true);
vboxLayout->addWidget(connectButton); vboxLayout->addWidget(connectButton);
sessionBox = new QGroupBox(Form); sessionBox = new QGroupBox(Form);
sessionBox->setObjectName(QStringLiteral("sessionBox")); sessionBox->setObjectName(QString::fromUtf8("sessionBox"));
sessionBox->setEnabled(false); sessionBox->setEnabled(false);
vboxLayout1 = new QVBoxLayout(sessionBox); vboxLayout1 = new QVBoxLayout(sessionBox);
vboxLayout1->setObjectName(QStringLiteral("vboxLayout1")); vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1"));
hboxLayout = new QHBoxLayout(); hboxLayout = new QHBoxLayout();
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
cipherText = new QLabel(sessionBox); cipherText = new QLabel(sessionBox);
cipherText->setObjectName(QStringLiteral("cipherText")); cipherText->setObjectName(QString::fromUtf8("cipherText"));
hboxLayout->addWidget(cipherText); hboxLayout->addWidget(cipherText);
cipherLabel = new QLabel(sessionBox); cipherLabel = new QLabel(sessionBox);
cipherLabel->setObjectName(QStringLiteral("cipherLabel")); cipherLabel->setObjectName(QString::fromUtf8("cipherLabel"));
cipherLabel->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter); cipherLabel->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
hboxLayout->addWidget(cipherLabel); hboxLayout->addWidget(cipherLabel);
@ -108,7 +108,7 @@ public:
vboxLayout1->addLayout(hboxLayout); vboxLayout1->addLayout(hboxLayout);
sessionOutput = new QTextEdit(sessionBox); sessionOutput = new QTextEdit(sessionBox);
sessionOutput->setObjectName(QStringLiteral("sessionOutput")); sessionOutput->setObjectName(QString::fromUtf8("sessionOutput"));
sessionOutput->setEnabled(false); sessionOutput->setEnabled(false);
sessionOutput->setFocusPolicy(Qt::NoFocus); sessionOutput->setFocusPolicy(Qt::NoFocus);
sessionOutput->setReadOnly(true); sessionOutput->setReadOnly(true);
@ -116,20 +116,20 @@ public:
vboxLayout1->addWidget(sessionOutput); vboxLayout1->addWidget(sessionOutput);
hboxLayout1 = new QHBoxLayout(); hboxLayout1 = new QHBoxLayout();
hboxLayout1->setObjectName(QStringLiteral("hboxLayout1")); hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
sessionInputLabel = new QLabel(sessionBox); sessionInputLabel = new QLabel(sessionBox);
sessionInputLabel->setObjectName(QStringLiteral("sessionInputLabel")); sessionInputLabel->setObjectName(QString::fromUtf8("sessionInputLabel"));
hboxLayout1->addWidget(sessionInputLabel); hboxLayout1->addWidget(sessionInputLabel);
sessionInput = new QLineEdit(sessionBox); sessionInput = new QLineEdit(sessionBox);
sessionInput->setObjectName(QStringLiteral("sessionInput")); sessionInput->setObjectName(QString::fromUtf8("sessionInput"));
sessionInput->setEnabled(false); sessionInput->setEnabled(false);
hboxLayout1->addWidget(sessionInput); hboxLayout1->addWidget(sessionInput);
sendButton = new QPushButton(sessionBox); sendButton = new QPushButton(sessionBox);
sendButton->setObjectName(QStringLiteral("sendButton")); sendButton->setObjectName(QString::fromUtf8("sendButton"));
sendButton->setEnabled(false); sendButton->setEnabled(false);
sendButton->setFocusPolicy(Qt::TabFocus); sendButton->setFocusPolicy(Qt::TabFocus);

View File

@ -36,25 +36,25 @@ public:
void setupUi(QDialog *SslErrors) void setupUi(QDialog *SslErrors)
{ {
if (SslErrors->objectName().isEmpty()) if (SslErrors->objectName().isEmpty())
SslErrors->setObjectName(QStringLiteral("SslErrors")); SslErrors->setObjectName(QString::fromUtf8("SslErrors"));
SslErrors->resize(371, 216); SslErrors->resize(371, 216);
vboxLayout = new QVBoxLayout(SslErrors); vboxLayout = new QVBoxLayout(SslErrors);
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
label = new QLabel(SslErrors); label = new QLabel(SslErrors);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
label->setWordWrap(true); label->setWordWrap(true);
vboxLayout->addWidget(label); vboxLayout->addWidget(label);
sslErrorList = new QListWidget(SslErrors); sslErrorList = new QListWidget(SslErrors);
sslErrorList->setObjectName(QStringLiteral("sslErrorList")); sslErrorList->setObjectName(QString::fromUtf8("sslErrorList"));
vboxLayout->addWidget(sslErrorList); vboxLayout->addWidget(sslErrorList);
hboxLayout = new QHBoxLayout(); hboxLayout = new QHBoxLayout();
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
certificateChainButton = new QPushButton(SslErrors); certificateChainButton = new QPushButton(SslErrors);
certificateChainButton->setObjectName(QStringLiteral("certificateChainButton")); certificateChainButton->setObjectName(QString::fromUtf8("certificateChainButton"));
certificateChainButton->setAutoDefault(false); certificateChainButton->setAutoDefault(false);
hboxLayout->addWidget(certificateChainButton); hboxLayout->addWidget(certificateChainButton);
@ -64,12 +64,12 @@ public:
hboxLayout->addItem(spacerItem); hboxLayout->addItem(spacerItem);
pushButton = new QPushButton(SslErrors); pushButton = new QPushButton(SslErrors);
pushButton->setObjectName(QStringLiteral("pushButton")); pushButton->setObjectName(QString::fromUtf8("pushButton"));
hboxLayout->addWidget(pushButton); hboxLayout->addWidget(pushButton);
pushButton_2 = new QPushButton(SslErrors); pushButton_2 = new QPushButton(SslErrors);
pushButton_2->setObjectName(QStringLiteral("pushButton_2")); pushButton_2->setObjectName(QString::fromUtf8("pushButton_2"));
hboxLayout->addWidget(pushButton_2); hboxLayout->addWidget(pushButton_2);

View File

@ -76,24 +76,24 @@ public:
void setupUi(QDialog *Statistics) void setupUi(QDialog *Statistics)
{ {
if (Statistics->objectName().isEmpty()) if (Statistics->objectName().isEmpty())
Statistics->setObjectName(QStringLiteral("Statistics")); Statistics->setObjectName(QString::fromUtf8("Statistics"));
Statistics->setObjectName(QStringLiteral("linguist_stats")); Statistics->setObjectName(QString::fromUtf8("linguist_stats"));
Statistics->resize(336, 164); Statistics->resize(336, 164);
gridLayout = new QGridLayout(Statistics); gridLayout = new QGridLayout(Statistics);
gridLayout->setSpacing(6); gridLayout->setSpacing(6);
gridLayout->setContentsMargins(11, 11, 11, 11); gridLayout->setContentsMargins(11, 11, 11, 11);
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
gridLayout->setObjectName(QStringLiteral("unnamed")); gridLayout->setObjectName(QString::fromUtf8("unnamed"));
hboxLayout = new QHBoxLayout(); hboxLayout = new QHBoxLayout();
hboxLayout->setSpacing(6); hboxLayout->setSpacing(6);
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
hboxLayout->setObjectName(QStringLiteral("unnamed")); hboxLayout->setObjectName(QString::fromUtf8("unnamed"));
spacer4_2 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); spacer4_2 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
hboxLayout->addItem(spacer4_2); hboxLayout->addItem(spacer4_2);
closeBtn = new QPushButton(Statistics); closeBtn = new QPushButton(Statistics);
closeBtn->setObjectName(QStringLiteral("closeBtn")); closeBtn->setObjectName(QString::fromUtf8("closeBtn"));
hboxLayout->addWidget(closeBtn); hboxLayout->addWidget(closeBtn);
@ -105,66 +105,66 @@ public:
gridLayout->addLayout(hboxLayout, 1, 0, 1, 1); gridLayout->addLayout(hboxLayout, 1, 0, 1, 1);
frame4 = new QFrame(Statistics); frame4 = new QFrame(Statistics);
frame4->setObjectName(QStringLiteral("frame4")); frame4->setObjectName(QString::fromUtf8("frame4"));
frame4->setFrameShape(QFrame::StyledPanel); frame4->setFrameShape(QFrame::StyledPanel);
frame4->setFrameShadow(QFrame::Raised); frame4->setFrameShadow(QFrame::Raised);
gridLayout1 = new QGridLayout(frame4); gridLayout1 = new QGridLayout(frame4);
gridLayout1->setSpacing(6); gridLayout1->setSpacing(6);
gridLayout1->setContentsMargins(11, 11, 11, 11); gridLayout1->setContentsMargins(11, 11, 11, 11);
gridLayout1->setObjectName(QStringLiteral("gridLayout1")); gridLayout1->setObjectName(QString::fromUtf8("gridLayout1"));
gridLayout1->setObjectName(QStringLiteral("unnamed")); gridLayout1->setObjectName(QString::fromUtf8("unnamed"));
textLabel4 = new QLabel(frame4); textLabel4 = new QLabel(frame4);
textLabel4->setObjectName(QStringLiteral("textLabel4")); textLabel4->setObjectName(QString::fromUtf8("textLabel4"));
gridLayout1->addWidget(textLabel4, 0, 2, 1, 1); gridLayout1->addWidget(textLabel4, 0, 2, 1, 1);
textLabel5 = new QLabel(frame4); textLabel5 = new QLabel(frame4);
textLabel5->setObjectName(QStringLiteral("textLabel5")); textLabel5->setObjectName(QString::fromUtf8("textLabel5"));
gridLayout1->addWidget(textLabel5, 0, 1, 1, 1); gridLayout1->addWidget(textLabel5, 0, 1, 1, 1);
untrWords = new QLabel(frame4); untrWords = new QLabel(frame4);
untrWords->setObjectName(QStringLiteral("untrWords")); untrWords->setObjectName(QString::fromUtf8("untrWords"));
gridLayout1->addWidget(untrWords, 1, 1, 1, 1); gridLayout1->addWidget(untrWords, 1, 1, 1, 1);
trWords = new QLabel(frame4); trWords = new QLabel(frame4);
trWords->setObjectName(QStringLiteral("trWords")); trWords->setObjectName(QString::fromUtf8("trWords"));
gridLayout1->addWidget(trWords, 1, 2, 1, 1); gridLayout1->addWidget(trWords, 1, 2, 1, 1);
textLabel1 = new QLabel(frame4); textLabel1 = new QLabel(frame4);
textLabel1->setObjectName(QStringLiteral("textLabel1")); textLabel1->setObjectName(QString::fromUtf8("textLabel1"));
gridLayout1->addWidget(textLabel1, 1, 0, 1, 1); gridLayout1->addWidget(textLabel1, 1, 0, 1, 1);
trChars = new QLabel(frame4); trChars = new QLabel(frame4);
trChars->setObjectName(QStringLiteral("trChars")); trChars->setObjectName(QString::fromUtf8("trChars"));
gridLayout1->addWidget(trChars, 2, 2, 1, 1); gridLayout1->addWidget(trChars, 2, 2, 1, 1);
untrChars = new QLabel(frame4); untrChars = new QLabel(frame4);
untrChars->setObjectName(QStringLiteral("untrChars")); untrChars->setObjectName(QString::fromUtf8("untrChars"));
gridLayout1->addWidget(untrChars, 2, 1, 1, 1); gridLayout1->addWidget(untrChars, 2, 1, 1, 1);
textLabel3 = new QLabel(frame4); textLabel3 = new QLabel(frame4);
textLabel3->setObjectName(QStringLiteral("textLabel3")); textLabel3->setObjectName(QString::fromUtf8("textLabel3"));
gridLayout1->addWidget(textLabel3, 2, 0, 1, 1); gridLayout1->addWidget(textLabel3, 2, 0, 1, 1);
textLabel6 = new QLabel(frame4); textLabel6 = new QLabel(frame4);
textLabel6->setObjectName(QStringLiteral("textLabel6")); textLabel6->setObjectName(QString::fromUtf8("textLabel6"));
gridLayout1->addWidget(textLabel6, 3, 0, 1, 1); gridLayout1->addWidget(textLabel6, 3, 0, 1, 1);
trCharsSpc = new QLabel(frame4); trCharsSpc = new QLabel(frame4);
trCharsSpc->setObjectName(QStringLiteral("trCharsSpc")); trCharsSpc->setObjectName(QString::fromUtf8("trCharsSpc"));
gridLayout1->addWidget(trCharsSpc, 3, 2, 1, 1); gridLayout1->addWidget(trCharsSpc, 3, 2, 1, 1);
untrCharsSpc = new QLabel(frame4); untrCharsSpc = new QLabel(frame4);
untrCharsSpc->setObjectName(QStringLiteral("untrCharsSpc")); untrCharsSpc->setObjectName(QString::fromUtf8("untrCharsSpc"));
gridLayout1->addWidget(untrCharsSpc, 3, 1, 1, 1); gridLayout1->addWidget(untrCharsSpc, 3, 1, 1, 1);

View File

@ -82,7 +82,7 @@ public:
void setupUi(QDialog *qdesigner_internal__Dialog) void setupUi(QDialog *qdesigner_internal__Dialog)
{ {
if (qdesigner_internal__Dialog->objectName().isEmpty()) if (qdesigner_internal__Dialog->objectName().isEmpty())
qdesigner_internal__Dialog->setObjectName(QStringLiteral("qdesigner_internal__Dialog")); qdesigner_internal__Dialog->setObjectName(QString::fromUtf8("qdesigner_internal__Dialog"));
qdesigner_internal__Dialog->resize(400, 300); qdesigner_internal__Dialog->resize(400, 300);
vboxLayout = new QVBoxLayout(qdesigner_internal__Dialog); vboxLayout = new QVBoxLayout(qdesigner_internal__Dialog);
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
@ -91,9 +91,9 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout->setContentsMargins(9, 9, 9, 9); vboxLayout->setContentsMargins(9, 9, 9, 9);
#endif #endif
vboxLayout->setObjectName(QStringLiteral("vboxLayout")); vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
groupBox = new QGroupBox(qdesigner_internal__Dialog); groupBox = new QGroupBox(qdesigner_internal__Dialog);
groupBox->setObjectName(QStringLiteral("groupBox")); groupBox->setObjectName(QString::fromUtf8("groupBox"));
gridLayout = new QGridLayout(groupBox); gridLayout = new QGridLayout(groupBox);
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
gridLayout->setSpacing(6); gridLayout->setSpacing(6);
@ -101,7 +101,7 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
gridLayout->setContentsMargins(9, 9, 9, 9); gridLayout->setContentsMargins(9, 9, 9, 9);
#endif #endif
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
vboxLayout1 = new QVBoxLayout(); vboxLayout1 = new QVBoxLayout();
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout1->setSpacing(6); vboxLayout1->setSpacing(6);
@ -109,7 +109,7 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
vboxLayout1->setContentsMargins(0, 0, 0, 0); vboxLayout1->setContentsMargins(0, 0, 0, 0);
#endif #endif
vboxLayout1->setObjectName(QStringLiteral("vboxLayout1")); vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1"));
hboxLayout = new QHBoxLayout(); hboxLayout = new QHBoxLayout();
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
hboxLayout->setSpacing(6); hboxLayout->setSpacing(6);
@ -117,15 +117,15 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
hboxLayout->setContentsMargins(0, 0, 0, 0); hboxLayout->setContentsMargins(0, 0, 0, 0);
#endif #endif
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
newButton = new QToolButton(groupBox); newButton = new QToolButton(groupBox);
newButton->setObjectName(QStringLiteral("newButton")); newButton->setObjectName(QString::fromUtf8("newButton"));
newButton->setToolButtonStyle(Qt::ToolButtonTextBesideIcon); newButton->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
hboxLayout->addWidget(newButton); hboxLayout->addWidget(newButton);
deleteButton = new QToolButton(groupBox); deleteButton = new QToolButton(groupBox);
deleteButton->setObjectName(QStringLiteral("deleteButton")); deleteButton->setObjectName(QString::fromUtf8("deleteButton"));
deleteButton->setToolButtonStyle(Qt::ToolButtonTextBesideIcon); deleteButton->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
hboxLayout->addWidget(deleteButton); hboxLayout->addWidget(deleteButton);
@ -142,14 +142,14 @@ public:
hboxLayout1->setSpacing(6); hboxLayout1->setSpacing(6);
#endif #endif
hboxLayout1->setContentsMargins(0, 0, 0, 0); hboxLayout1->setContentsMargins(0, 0, 0, 0);
hboxLayout1->setObjectName(QStringLiteral("hboxLayout1")); hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
label = new QLabel(groupBox); label = new QLabel(groupBox);
label->setObjectName(QStringLiteral("label")); label->setObjectName(QString::fromUtf8("label"));
hboxLayout1->addWidget(label); hboxLayout1->addWidget(label);
valueEdit = new QLineEdit(groupBox); valueEdit = new QLineEdit(groupBox);
valueEdit->setObjectName(QStringLiteral("valueEdit")); valueEdit->setObjectName(QString::fromUtf8("valueEdit"));
hboxLayout1->addWidget(valueEdit); hboxLayout1->addWidget(valueEdit);
@ -164,18 +164,18 @@ public:
vboxLayout2->setSpacing(6); vboxLayout2->setSpacing(6);
#endif #endif
vboxLayout2->setContentsMargins(0, 0, 0, 0); vboxLayout2->setContentsMargins(0, 0, 0, 0);
vboxLayout2->setObjectName(QStringLiteral("vboxLayout2")); vboxLayout2->setObjectName(QString::fromUtf8("vboxLayout2"));
spacerItem1 = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); spacerItem1 = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding);
vboxLayout2->addItem(spacerItem1); vboxLayout2->addItem(spacerItem1);
upButton = new QToolButton(groupBox); upButton = new QToolButton(groupBox);
upButton->setObjectName(QStringLiteral("upButton")); upButton->setObjectName(QString::fromUtf8("upButton"));
vboxLayout2->addWidget(upButton); vboxLayout2->addWidget(upButton);
downButton = new QToolButton(groupBox); downButton = new QToolButton(groupBox);
downButton->setObjectName(QStringLiteral("downButton")); downButton->setObjectName(QString::fromUtf8("downButton"));
vboxLayout2->addWidget(downButton); vboxLayout2->addWidget(downButton);
@ -187,7 +187,7 @@ public:
gridLayout->addLayout(vboxLayout2, 0, 1, 1, 1); gridLayout->addLayout(vboxLayout2, 0, 1, 1, 1);
listView = new QListView(groupBox); listView = new QListView(groupBox);
listView->setObjectName(QStringLiteral("listView")); listView->setObjectName(QString::fromUtf8("listView"));
gridLayout->addWidget(listView, 0, 0, 1, 1); gridLayout->addWidget(listView, 0, 0, 1, 1);
@ -195,7 +195,7 @@ public:
vboxLayout->addWidget(groupBox); vboxLayout->addWidget(groupBox);
buttonBox = new QDialogButtonBox(qdesigner_internal__Dialog); buttonBox = new QDialogButtonBox(qdesigner_internal__Dialog);
buttonBox->setObjectName(QStringLiteral("buttonBox")); buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setOrientation(Qt::Horizontal); buttonBox->setOrientation(Qt::Horizontal);
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::NoButton|QDialogButtonBox::Ok); buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::NoButton|QDialogButtonBox::Ok);

View File

@ -41,7 +41,7 @@ public:
void setupUi(QWidget *StyleSheetEditor) void setupUi(QWidget *StyleSheetEditor)
{ {
if (StyleSheetEditor->objectName().isEmpty()) if (StyleSheetEditor->objectName().isEmpty())
StyleSheetEditor->setObjectName(QStringLiteral("StyleSheetEditor")); StyleSheetEditor->setObjectName(QString::fromUtf8("StyleSheetEditor"));
StyleSheetEditor->resize(445, 289); StyleSheetEditor->resize(445, 289);
gridLayout = new QGridLayout(StyleSheetEditor); gridLayout = new QGridLayout(StyleSheetEditor);
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
@ -50,7 +50,7 @@ public:
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
gridLayout->setContentsMargins(9, 9, 9, 9); gridLayout->setContentsMargins(9, 9, 9, 9);
#endif #endif
gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
spacerItem = new QSpacerItem(32, 20, QSizePolicy::MinimumExpanding, QSizePolicy::Minimum); spacerItem = new QSpacerItem(32, 20, QSizePolicy::MinimumExpanding, QSizePolicy::Minimum);
gridLayout->addItem(spacerItem, 0, 6, 1, 1); gridLayout->addItem(spacerItem, 0, 6, 1, 1);
@ -63,7 +63,7 @@ public:
styleSheetCombo->addItem(QString()); styleSheetCombo->addItem(QString());
styleSheetCombo->addItem(QString()); styleSheetCombo->addItem(QString());
styleSheetCombo->addItem(QString()); styleSheetCombo->addItem(QString());
styleSheetCombo->setObjectName(QStringLiteral("styleSheetCombo")); styleSheetCombo->setObjectName(QString::fromUtf8("styleSheetCombo"));
gridLayout->addWidget(styleSheetCombo, 0, 5, 1, 1); gridLayout->addWidget(styleSheetCombo, 0, 5, 1, 1);
@ -72,7 +72,7 @@ public:
gridLayout->addItem(spacerItem2, 0, 3, 1, 1); gridLayout->addItem(spacerItem2, 0, 3, 1, 1);
styleCombo = new QComboBox(StyleSheetEditor); styleCombo = new QComboBox(StyleSheetEditor);
styleCombo->setObjectName(QStringLiteral("styleCombo")); styleCombo->setObjectName(QString::fromUtf8("styleCombo"));
QSizePolicy sizePolicy(static_cast<QSizePolicy::Policy>(5), static_cast<QSizePolicy::Policy>(0)); QSizePolicy sizePolicy(static_cast<QSizePolicy::Policy>(5), static_cast<QSizePolicy::Policy>(0));
sizePolicy.setHorizontalStretch(0); sizePolicy.setHorizontalStretch(0);
sizePolicy.setVerticalStretch(0); sizePolicy.setVerticalStretch(0);
@ -82,7 +82,7 @@ public:
gridLayout->addWidget(styleCombo, 0, 2, 1, 1); gridLayout->addWidget(styleCombo, 0, 2, 1, 1);
label_7 = new QLabel(StyleSheetEditor); label_7 = new QLabel(StyleSheetEditor);
label_7->setObjectName(QStringLiteral("label_7")); label_7->setObjectName(QString::fromUtf8("label_7"));
QSizePolicy sizePolicy1(static_cast<QSizePolicy::Policy>(0), static_cast<QSizePolicy::Policy>(5)); QSizePolicy sizePolicy1(static_cast<QSizePolicy::Policy>(0), static_cast<QSizePolicy::Policy>(5));
sizePolicy1.setHorizontalStretch(0); sizePolicy1.setHorizontalStretch(0);
sizePolicy1.setVerticalStretch(0); sizePolicy1.setVerticalStretch(0);
@ -96,13 +96,13 @@ public:
hboxLayout->setSpacing(6); hboxLayout->setSpacing(6);
#endif #endif
hboxLayout->setContentsMargins(0, 0, 0, 0); hboxLayout->setContentsMargins(0, 0, 0, 0);
hboxLayout->setObjectName(QStringLiteral("hboxLayout")); hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
spacerItem3 = new QSpacerItem(321, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); spacerItem3 = new QSpacerItem(321, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
hboxLayout->addItem(spacerItem3); hboxLayout->addItem(spacerItem3);
applyButton = new QPushButton(StyleSheetEditor); applyButton = new QPushButton(StyleSheetEditor);
applyButton->setObjectName(QStringLiteral("applyButton")); applyButton->setObjectName(QString::fromUtf8("applyButton"));
applyButton->setEnabled(false); applyButton->setEnabled(false);
hboxLayout->addWidget(applyButton); hboxLayout->addWidget(applyButton);
@ -111,12 +111,12 @@ public:
gridLayout->addLayout(hboxLayout, 2, 0, 1, 7); gridLayout->addLayout(hboxLayout, 2, 0, 1, 7);
styleTextEdit = new QTextEdit(StyleSheetEditor); styleTextEdit = new QTextEdit(StyleSheetEditor);
styleTextEdit->setObjectName(QStringLiteral("styleTextEdit")); styleTextEdit->setObjectName(QString::fromUtf8("styleTextEdit"));
gridLayout->addWidget(styleTextEdit, 1, 0, 1, 7); gridLayout->addWidget(styleTextEdit, 1, 0, 1, 7);
label_8 = new QLabel(StyleSheetEditor); label_8 = new QLabel(StyleSheetEditor);
label_8->setObjectName(QStringLiteral("label_8")); label_8->setObjectName(QString::fromUtf8("label_8"));
sizePolicy1.setHeightForWidth(label_8->sizePolicy().hasHeightForWidth()); sizePolicy1.setHeightForWidth(label_8->sizePolicy().hasHeightForWidth());
label_8->setSizePolicy(sizePolicy1); label_8->setSizePolicy(sizePolicy1);

Some files were not shown because too many files have changed in this diff Show More