uic: use QStringLiteral() instead of QString::fromUtf8() where applicable

Many (most?) strings written aren't in fact UTF-8, and we can check at
compile-time which are and which aren't, so don't hard-code fromUtf8()
but use the much more efficient QStringLiteral() where applicable.

This is low-hanging fruit. This patch only optimises US-ASCII string
literals, not those that are latin-1 or even UTF-8, because that would
require more extensive changes to the original fixString() function.

Likewise, there are also other calls to QString::fromUtf8() being
generated (e.g. in the pixmap code) that could benefit from being
turned into QStringLiterals, but their code paths are more involved
than those this patch fixes.

This patch at least suffices in turning all the setObjectName()
arguments into QStringLiterals, which was the main goal.

The autotest baseline has been updated with the new expected results.

Change-Id: Ic1ef67f500f9ff92d36164d515f4e004ef2a10bc
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
bb10
Marc Mutz 2011-12-11 16:55:01 +01:00 committed by Qt by Nokia
parent ac16892454
commit 49b08f96e8
101 changed files with 1541 additions and 1529 deletions

View File

@ -537,7 +537,7 @@ void WriteInitialization::acceptUI(DomUI *node)
continue;
const QString varConn = connection + QLatin1String("Connection");
m_output << m_indent << varConn << " = QSqlDatabase::database(" << fixString(connection, m_dindent) << ");\n";
m_output << m_indent << varConn << " = QSqlDatabase::database(" << writeString(connection, m_dindent) << ");\n";
}
acceptWidget(node->elementWidget());
@ -1143,7 +1143,7 @@ QString WriteInitialization::writeStringListProperty(const DomStringList *list)
str << '\n' << m_indent << " << " << trCall(values.at(i), comment);
} else {
for (int i = 0; i < values.size(); ++i)
str << " << QString::fromUtf8(" << fixString(values.at(i), m_dindent) << ')';
str << " << " << writeString(values.at(i), m_dindent);
}
return propertyValue;
}
@ -1159,8 +1159,8 @@ void WriteInitialization::writeProperties(const QString &varName,
DomPropertyMap properties = propertyMap(lst);
if (properties.contains(QLatin1String("control"))) {
DomProperty *p = properties.value(QLatin1String("control"));
m_output << m_indent << varName << "->setControl(QString::fromUtf8("
<< fixString(toString(p->elementString()), m_dindent) << "));\n";
m_output << m_indent << varName << "->setControl("
<< writeString(toString(p->elementString()), m_dindent) << ");\n";
}
}
@ -1171,7 +1171,7 @@ void WriteInitialization::writeProperties(const QString &varName,
}
if (!(flags & WritePropertyIgnoreObjectName))
m_output << m_indent << indent << varName
<< "->setObjectName(QString::fromUtf8(" << fixString(varName, m_dindent) << "));\n";
<< "->setObjectName(" << writeString(varName, m_dindent) << ");\n";
int leftMargin, topMargin, rightMargin, bottomMargin;
leftMargin = topMargin = rightMargin = bottomMargin = -1;
@ -1459,8 +1459,8 @@ void WriteInitialization::writeProperties(const QString &varName,
case DomProperty::Url: {
const DomUrl* u = p->elementUrl();
propertyValue = QString::fromLatin1("QUrl(QString::fromUtf8(%1))")
.arg(fixString(u->elementString()->text(), m_dindent));
propertyValue = QString::fromLatin1("QUrl(%1)")
.arg(writeString(u->elementString()->text(), m_dindent));
break;
}
case DomProperty::Brush:
@ -1562,8 +1562,8 @@ QString WriteInitialization::writeFontProperties(const DomFont *f)
m_output << m_indent << "QFont " << fontName << ";\n";
if (f->hasElementFamily() && !f->elementFamily().isEmpty()) {
m_output << m_indent << fontName << ".setFamily(QString::fromUtf8(" << fixString(f->elementFamily(), m_dindent)
<< "));\n";
m_output << m_indent << fontName << ".setFamily(" << writeString(f->elementFamily(), m_dindent)
<< ");\n";
}
if (f->hasElementPointSize() && f->elementPointSize() > 0) {
m_output << m_indent << fontName << ".setPointSize(" << f->elementPointSize()
@ -1612,21 +1612,21 @@ static void writeResourceIcon(QTextStream &output,
const DomResourceIcon *i)
{
if (i->hasElementNormalOff())
output << indent << iconName << ".addFile(QString::fromUtf8(" << fixString(i->elementNormalOff()->text(), indent) << "), QSize(), QIcon::Normal, QIcon::Off);\n";
output << indent << iconName << ".addFile(" << writeString(i->elementNormalOff()->text(), indent) << ", QSize(), QIcon::Normal, QIcon::Off);\n";
if (i->hasElementNormalOn())
output << indent << iconName << ".addFile(QString::fromUtf8(" << fixString(i->elementNormalOn()->text(), indent) << "), QSize(), QIcon::Normal, QIcon::On);\n";
output << indent << iconName << ".addFile(" << writeString(i->elementNormalOn()->text(), indent) << ", QSize(), QIcon::Normal, QIcon::On);\n";
if (i->hasElementDisabledOff())
output << indent << iconName << ".addFile(QString::fromUtf8(" << fixString(i->elementDisabledOff()->text(), indent) << "), QSize(), QIcon::Disabled, QIcon::Off);\n";
output << indent << iconName << ".addFile(" << writeString(i->elementDisabledOff()->text(), indent) << ", QSize(), QIcon::Disabled, QIcon::Off);\n";
if (i->hasElementDisabledOn())
output << indent << iconName << ".addFile(QString::fromUtf8(" << fixString(i->elementDisabledOn()->text(), indent) << "), QSize(), QIcon::Disabled, QIcon::On);\n";
output << indent << iconName << ".addFile(" << writeString(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";
output << indent << iconName << ".addFile(" << writeString(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";
output << indent << iconName << ".addFile(" << writeString(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";
output << indent << iconName << ".addFile(" << writeString(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";
output << indent << iconName << ".addFile(" << writeString(i->elementSelectedOn()->text(), indent) << ", QSize(), QIcon::Selected, QIcon::On);\n";
}
QString WriteInitialization::writeIconProperties(const DomResourceIcon *i)
@ -1648,7 +1648,7 @@ QString WriteInitialization::writeIconProperties(const DomResourceIcon *i)
writeResourceIcon(m_output, iconName, m_indent, i);
} else {
// Theme: Generate code to check the theme and default to resource
const QString themeIconName = fixString(i->attributeTheme(), QString());
const QString themeIconName = writeString(i->attributeTheme(), QString());
if (iconHasStatePixmaps(i)) {
// Theme + default state pixmaps:
// Generate code to check the theme and default to state pixmaps
@ -1660,8 +1660,8 @@ QString WriteInitialization::writeIconProperties(const DomResourceIcon *i)
m_output << "QString ";
m_firstThemeIcon = false;
}
m_output << themeNameStringVariableC << " = QString::fromUtf8("
<< themeIconName << ");\n";
m_output << themeNameStringVariableC << " = "
<< themeIconName << ";\n";
m_output << m_indent << "if (QIcon::hasThemeIcon("
<< themeNameStringVariableC
<< ")) {\n"
@ -1672,8 +1672,8 @@ QString WriteInitialization::writeIconProperties(const DomResourceIcon *i)
} else {
// Theme, but no state pixmaps: Construct from theme directly.
m_output << m_indent << "QIcon " << iconName
<< "(QIcon::fromTheme(QString::fromUtf8("
<< themeIconName << ")));\n";
<< "(QIcon::fromTheme("
<< themeIconName << "));\n";
} // Theme, but not state
} // >= 4.4
} else { // pre-4.4 legacy
@ -2356,10 +2356,7 @@ QString WriteInitialization::noTrCall(DomString *str, const QString &defaultStri
return QString();
if (str)
value = str->text();
QString ret = QLatin1String("QString::fromUtf8(");
ret += fixString(value, m_dindent);
ret += QLatin1Char(')');
return ret;
return writeString(value, m_dindent);
}
QString WriteInitialization::autoTrCall(DomString *str, const QString &defaultString) const
@ -2481,8 +2478,8 @@ void WriteInitialization::acceptWidgetScripts(const DomScripts &widgetScripts, D
}
m_output << ";\n";
}
m_output << m_indent << "scriptContext.run(QString::fromUtf8("
<< fixString(script, m_dindent) << "), "
m_output << m_indent << "scriptContext.run("
<< writeString(script, m_dindent) << ", "
<< m_driver->findOrInsertWidget(node) << ", childWidgets);\n";
}

View File

@ -55,18 +55,21 @@ inline bool toBool(const QString &str)
inline QString toString(const DomString *str)
{ return str ? str->text() : QString(); }
inline QString fixString(const QString &str, const QString &indent)
inline QString fixString(const QString &str, const QString &indent, bool *isUtf8Ret=0)
{
QString cursegment;
QStringList result;
const QByteArray utf8 = str.toUtf8();
const int utf8Length = utf8.length();
bool isUtf8 = false;
for (int i = 0; i < utf8Length; ++i) {
const uchar cbyte = utf8.at(i);
if (cbyte >= 0x80) {
cursegment += QLatin1Char('\\');
cursegment += QString::number(cbyte, 8);
isUtf8 = true;
} else {
switch(cbyte) {
case '\\':
@ -100,9 +103,21 @@ inline QString fixString(const QString &str, const QString &indent)
QString rc(QLatin1Char('"'));
rc += result.join(joinstr);
rc += QLatin1Char('"');
if (isUtf8Ret)
*isUtf8Ret = isUtf8;
return rc;
}
inline QString writeString(const QString &s, const QString &indent)
{
bool isUtf8 = false;
const QString ret = fixString(s, indent, &isUtf8);
if (isUtf8)
return QLatin1String("QString::fromUtf8(") + ret + QLatin1Char(')');
else
return QLatin1String("QStringLiteral(") + ret + QLatin1Char(')');
}
inline QHash<QString, DomProperty *> propertyMap(const QList<DomProperty *> &properties)
{
QHash<QString, DomProperty *> map;

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -73,15 +73,15 @@ public:
void setupUi(QWidget *QPageSetupWidget)
{
if (QPageSetupWidget->objectName().isEmpty())
QPageSetupWidget->setObjectName(QString::fromUtf8("QPageSetupWidget"));
QPageSetupWidget->setObjectName(QStringLiteral("QPageSetupWidget"));
QPageSetupWidget->resize(416, 488);
gridLayout_3 = new QGridLayout(QPageSetupWidget);
gridLayout_3->setContentsMargins(0, 0, 0, 0);
gridLayout_3->setObjectName(QString::fromUtf8("gridLayout_3"));
gridLayout_3->setObjectName(QStringLiteral("gridLayout_3"));
horizontalLayout_4 = new QHBoxLayout();
horizontalLayout_4->setObjectName(QString::fromUtf8("horizontalLayout_4"));
horizontalLayout_4->setObjectName(QStringLiteral("horizontalLayout_4"));
unit = new QComboBox(QPageSetupWidget);
unit->setObjectName(QString::fromUtf8("unit"));
unit->setObjectName(QStringLiteral("unit"));
horizontalLayout_4->addWidget(unit);
@ -93,39 +93,39 @@ public:
gridLayout_3->addLayout(horizontalLayout_4, 0, 0, 1, 2);
groupBox_2 = new QGroupBox(QPageSetupWidget);
groupBox_2->setObjectName(QString::fromUtf8("groupBox_2"));
groupBox_2->setObjectName(QStringLiteral("groupBox_2"));
gridLayout_2 = new QGridLayout(groupBox_2);
gridLayout_2->setObjectName(QString::fromUtf8("gridLayout_2"));
gridLayout_2->setObjectName(QStringLiteral("gridLayout_2"));
pageSizeLabel = new QLabel(groupBox_2);
pageSizeLabel->setObjectName(QString::fromUtf8("pageSizeLabel"));
pageSizeLabel->setObjectName(QStringLiteral("pageSizeLabel"));
gridLayout_2->addWidget(pageSizeLabel, 0, 0, 1, 1);
paperSize = new QComboBox(groupBox_2);
paperSize->setObjectName(QString::fromUtf8("paperSize"));
paperSize->setObjectName(QStringLiteral("paperSize"));
gridLayout_2->addWidget(paperSize, 0, 1, 1, 1);
widthLabel = new QLabel(groupBox_2);
widthLabel->setObjectName(QString::fromUtf8("widthLabel"));
widthLabel->setObjectName(QStringLiteral("widthLabel"));
gridLayout_2->addWidget(widthLabel, 1, 0, 1, 1);
horizontalLayout_3 = new QHBoxLayout();
horizontalLayout_3->setObjectName(QString::fromUtf8("horizontalLayout_3"));
horizontalLayout_3->setObjectName(QStringLiteral("horizontalLayout_3"));
paperWidth = new QDoubleSpinBox(groupBox_2);
paperWidth->setObjectName(QString::fromUtf8("paperWidth"));
paperWidth->setObjectName(QStringLiteral("paperWidth"));
paperWidth->setMaximum(9999.99);
horizontalLayout_3->addWidget(paperWidth);
heightLabel = new QLabel(groupBox_2);
heightLabel->setObjectName(QString::fromUtf8("heightLabel"));
heightLabel->setObjectName(QStringLiteral("heightLabel"));
horizontalLayout_3->addWidget(heightLabel);
paperHeight = new QDoubleSpinBox(groupBox_2);
paperHeight->setObjectName(QString::fromUtf8("paperHeight"));
paperHeight->setObjectName(QStringLiteral("paperHeight"));
paperHeight->setMaximum(9999.99);
horizontalLayout_3->addWidget(paperHeight);
@ -134,12 +134,12 @@ public:
gridLayout_2->addLayout(horizontalLayout_3, 1, 1, 1, 1);
paperSourceLabel = new QLabel(groupBox_2);
paperSourceLabel->setObjectName(QString::fromUtf8("paperSourceLabel"));
paperSourceLabel->setObjectName(QStringLiteral("paperSourceLabel"));
gridLayout_2->addWidget(paperSourceLabel, 2, 0, 1, 1);
paperSource = new QComboBox(groupBox_2);
paperSource->setObjectName(QString::fromUtf8("paperSource"));
paperSource->setObjectName(QStringLiteral("paperSource"));
gridLayout_2->addWidget(paperSource, 2, 1, 1, 1);
@ -151,27 +151,27 @@ public:
gridLayout_3->addWidget(groupBox_2, 1, 0, 1, 2);
groupBox_3 = new QGroupBox(QPageSetupWidget);
groupBox_3->setObjectName(QString::fromUtf8("groupBox_3"));
groupBox_3->setObjectName(QStringLiteral("groupBox_3"));
verticalLayout = new QVBoxLayout(groupBox_3);
verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
verticalLayout->setObjectName(QStringLiteral("verticalLayout"));
portrait = new QRadioButton(groupBox_3);
portrait->setObjectName(QString::fromUtf8("portrait"));
portrait->setObjectName(QStringLiteral("portrait"));
portrait->setChecked(true);
verticalLayout->addWidget(portrait);
landscape = new QRadioButton(groupBox_3);
landscape->setObjectName(QString::fromUtf8("landscape"));
landscape->setObjectName(QStringLiteral("landscape"));
verticalLayout->addWidget(landscape);
reverseLandscape = new QRadioButton(groupBox_3);
reverseLandscape->setObjectName(QString::fromUtf8("reverseLandscape"));
reverseLandscape->setObjectName(QStringLiteral("reverseLandscape"));
verticalLayout->addWidget(reverseLandscape);
reversePortrait = new QRadioButton(groupBox_3);
reversePortrait->setObjectName(QString::fromUtf8("reversePortrait"));
reversePortrait->setObjectName(QStringLiteral("reversePortrait"));
verticalLayout->addWidget(reversePortrait);
@ -183,31 +183,31 @@ public:
gridLayout_3->addWidget(groupBox_3, 2, 0, 1, 1);
preview = new QWidget(QPageSetupWidget);
preview->setObjectName(QString::fromUtf8("preview"));
preview->setObjectName(QStringLiteral("preview"));
gridLayout_3->addWidget(preview, 2, 1, 2, 1);
groupBox = new QGroupBox(QPageSetupWidget);
groupBox->setObjectName(QString::fromUtf8("groupBox"));
groupBox->setObjectName(QStringLiteral("groupBox"));
horizontalLayout_2 = new QHBoxLayout(groupBox);
horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2"));
horizontalLayout_2->setObjectName(QStringLiteral("horizontalLayout_2"));
gridLayout = new QGridLayout();
gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
gridLayout->setObjectName(QStringLiteral("gridLayout"));
topMargin = new QDoubleSpinBox(groupBox);
topMargin->setObjectName(QString::fromUtf8("topMargin"));
topMargin->setObjectName(QStringLiteral("topMargin"));
topMargin->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
topMargin->setMaximum(999.99);
gridLayout->addWidget(topMargin, 0, 1, 1, 1);
horizontalLayout = new QHBoxLayout();
horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
horizontalLayout->setObjectName(QStringLiteral("horizontalLayout"));
horizontalSpacer_7 = new QSpacerItem(0, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
horizontalLayout->addItem(horizontalSpacer_7);
leftMargin = new QDoubleSpinBox(groupBox);
leftMargin->setObjectName(QString::fromUtf8("leftMargin"));
leftMargin->setObjectName(QStringLiteral("leftMargin"));
leftMargin->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
leftMargin->setMaximum(999.99);
@ -218,7 +218,7 @@ public:
horizontalLayout->addItem(horizontalSpacer);
rightMargin = new QDoubleSpinBox(groupBox);
rightMargin->setObjectName(QString::fromUtf8("rightMargin"));
rightMargin->setObjectName(QStringLiteral("rightMargin"));
rightMargin->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
rightMargin->setMaximum(999.99);
@ -232,7 +232,7 @@ public:
gridLayout->addLayout(horizontalLayout, 1, 0, 1, 3);
bottomMargin = new QDoubleSpinBox(groupBox);
bottomMargin->setObjectName(QString::fromUtf8("bottomMargin"));
bottomMargin->setObjectName(QStringLiteral("bottomMargin"));
bottomMargin->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
bottomMargin->setMaximum(999.99);

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -93,28 +93,28 @@ public:
void setupUi(QWidget *TabbedBrowser)
{
if (TabbedBrowser->objectName().isEmpty())
TabbedBrowser->setObjectName(QString::fromUtf8("TabbedBrowser"));
TabbedBrowser->setObjectName(QStringLiteral("TabbedBrowser"));
TabbedBrowser->resize(710, 664);
vboxLayout = new QVBoxLayout(TabbedBrowser);
vboxLayout->setSpacing(0);
vboxLayout->setContentsMargins(0, 0, 0, 0);
vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
vboxLayout->setObjectName(QStringLiteral("vboxLayout"));
tab = new QTabWidget(TabbedBrowser);
tab->setObjectName(QString::fromUtf8("tab"));
tab->setObjectName(QStringLiteral("tab"));
frontpage = new QWidget();
frontpage->setObjectName(QString::fromUtf8("frontpage"));
frontpage->setObjectName(QStringLiteral("frontpage"));
gridLayout = new QGridLayout(frontpage);
#ifndef Q_OS_MAC
gridLayout->setSpacing(6);
#endif
gridLayout->setContentsMargins(8, 8, 8, 8);
gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
gridLayout->setObjectName(QStringLiteral("gridLayout"));
tab->addTab(frontpage, QString());
vboxLayout->addWidget(tab);
frameFind = new QFrame(TabbedBrowser);
frameFind->setObjectName(QString::fromUtf8("frameFind"));
frameFind->setObjectName(QStringLiteral("frameFind"));
frameFind->setFrameShape(QFrame::StyledPanel);
frameFind->setFrameShadow(QFrame::Raised);
hboxLayout = new QHBoxLayout(frameFind);
@ -122,9 +122,9 @@ public:
hboxLayout->setSpacing(6);
#endif
hboxLayout->setContentsMargins(0, 0, 0, 0);
hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
hboxLayout->setObjectName(QStringLiteral("hboxLayout"));
toolClose = new QToolButton(frameFind);
toolClose->setObjectName(QString::fromUtf8("toolClose"));
toolClose->setObjectName(QStringLiteral("toolClose"));
const QIcon icon = QIcon(QString::fromUtf8(":/trolltech/assistant/images/close.png"));
toolClose->setIcon(icon);
toolClose->setAutoRaise(true);
@ -132,7 +132,7 @@ public:
hboxLayout->addWidget(toolClose);
editFind = new QLineEdit(frameFind);
editFind->setObjectName(QString::fromUtf8("editFind"));
editFind->setObjectName(QStringLiteral("editFind"));
QSizePolicy sizePolicy(static_cast<QSizePolicy::Policy>(0), static_cast<QSizePolicy::Policy>(0));
sizePolicy.setHorizontalStretch(0);
sizePolicy.setVerticalStretch(0);
@ -143,7 +143,7 @@ public:
hboxLayout->addWidget(editFind);
toolPrevious = new QToolButton(frameFind);
toolPrevious->setObjectName(QString::fromUtf8("toolPrevious"));
toolPrevious->setObjectName(QStringLiteral("toolPrevious"));
const QIcon icon1 = QIcon(QString::fromUtf8(":/trolltech/assistant/images/win/previous.png"));
toolPrevious->setIcon(icon1);
toolPrevious->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
@ -152,7 +152,7 @@ public:
hboxLayout->addWidget(toolPrevious);
toolNext = new QToolButton(frameFind);
toolNext->setObjectName(QString::fromUtf8("toolNext"));
toolNext->setObjectName(QStringLiteral("toolNext"));
toolNext->setMinimumSize(QSize(0, 0));
const QIcon icon2 = QIcon(QString::fromUtf8(":/trolltech/assistant/images/win/next.png"));
toolNext->setIcon(icon2);
@ -163,17 +163,17 @@ public:
hboxLayout->addWidget(toolNext);
checkCase = new QCheckBox(frameFind);
checkCase->setObjectName(QString::fromUtf8("checkCase"));
checkCase->setObjectName(QStringLiteral("checkCase"));
hboxLayout->addWidget(checkCase);
checkWholeWords = new QCheckBox(frameFind);
checkWholeWords->setObjectName(QString::fromUtf8("checkWholeWords"));
checkWholeWords->setObjectName(QStringLiteral("checkWholeWords"));
hboxLayout->addWidget(checkWholeWords);
labelWrapped = new QLabel(frameFind);
labelWrapped->setObjectName(QString::fromUtf8("labelWrapped"));
labelWrapped->setObjectName(QStringLiteral("labelWrapped"));
labelWrapped->setMinimumSize(QSize(0, 20));
labelWrapped->setMaximumSize(QSize(105, 20));
labelWrapped->setTextFormat(Qt::RichText);

View File

@ -120,28 +120,28 @@ public:
void setupUi(QDialog *qdesigner_internal__TableWidgetEditor)
{
if (qdesigner_internal__TableWidgetEditor->objectName().isEmpty())
qdesigner_internal__TableWidgetEditor->setObjectName(QString::fromUtf8("qdesigner_internal__TableWidgetEditor"));
qdesigner_internal__TableWidgetEditor->setObjectName(QStringLiteral("qdesigner_internal__TableWidgetEditor"));
qdesigner_internal__TableWidgetEditor->resize(591, 455);
gridLayout_4 = new QGridLayout(qdesigner_internal__TableWidgetEditor);
gridLayout_4->setObjectName(QString::fromUtf8("gridLayout_4"));
gridLayout_4->setObjectName(QStringLiteral("gridLayout_4"));
itemsBox = new QGroupBox(qdesigner_internal__TableWidgetEditor);
itemsBox->setObjectName(QString::fromUtf8("itemsBox"));
itemsBox->setObjectName(QStringLiteral("itemsBox"));
gridLayout = new QGridLayout(itemsBox);
gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
gridLayout->setObjectName(QStringLiteral("gridLayout"));
tableWidget = new QTableWidget(itemsBox);
tableWidget->setObjectName(QString::fromUtf8("tableWidget"));
tableWidget->setObjectName(QStringLiteral("tableWidget"));
gridLayout->addWidget(tableWidget, 0, 0, 1, 1);
horizontalLayout_5 = new QHBoxLayout();
horizontalLayout_5->setObjectName(QString::fromUtf8("horizontalLayout_5"));
horizontalLayout_5->setObjectName(QStringLiteral("horizontalLayout_5"));
label_3 = new QLabel(itemsBox);
label_3->setObjectName(QString::fromUtf8("label_3"));
label_3->setObjectName(QStringLiteral("label_3"));
horizontalLayout_5->addWidget(label_3);
itemIconSelector = new qdesigner_internal::IconSelector(itemsBox);
itemIconSelector->setObjectName(QString::fromUtf8("itemIconSelector"));
itemIconSelector->setObjectName(QStringLiteral("itemIconSelector"));
horizontalLayout_5->addWidget(itemIconSelector);
@ -156,14 +156,14 @@ public:
gridLayout_4->addWidget(itemsBox, 0, 0, 1, 1);
buttonBox = new QDialogButtonBox(qdesigner_internal__TableWidgetEditor);
buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setObjectName(QStringLiteral("buttonBox"));
buttonBox->setOrientation(Qt::Horizontal);
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
gridLayout_4->addWidget(buttonBox, 1, 0, 1, 2);
widget = new QWidget(qdesigner_internal__TableWidgetEditor);
widget->setObjectName(QString::fromUtf8("widget"));
widget->setObjectName(QStringLiteral("widget"));
QSizePolicy sizePolicy(QSizePolicy::Fixed, QSizePolicy::Preferred);
sizePolicy.setHorizontalStretch(0);
sizePolicy.setVerticalStretch(0);
@ -171,13 +171,13 @@ public:
widget->setSizePolicy(sizePolicy);
verticalLayout = new QVBoxLayout(widget);
verticalLayout->setContentsMargins(0, 0, 0, 0);
verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
verticalLayout->setObjectName(QStringLiteral("verticalLayout"));
columnsBox = new QGroupBox(widget);
columnsBox->setObjectName(QString::fromUtf8("columnsBox"));
columnsBox->setObjectName(QStringLiteral("columnsBox"));
gridLayout_2 = new QGridLayout(columnsBox);
gridLayout_2->setObjectName(QString::fromUtf8("gridLayout_2"));
gridLayout_2->setObjectName(QStringLiteral("gridLayout_2"));
columnsListWidget = new QListWidget(columnsBox);
columnsListWidget->setObjectName(QString::fromUtf8("columnsListWidget"));
columnsListWidget->setObjectName(QStringLiteral("columnsListWidget"));
QSizePolicy sizePolicy1(QSizePolicy::Ignored, QSizePolicy::Expanding);
sizePolicy1.setHorizontalStretch(0);
sizePolicy1.setVerticalStretch(0);
@ -188,14 +188,14 @@ public:
gridLayout_2->addWidget(columnsListWidget, 0, 0, 1, 1);
horizontalLayout_3 = new QHBoxLayout();
horizontalLayout_3->setObjectName(QString::fromUtf8("horizontalLayout_3"));
horizontalLayout_3->setObjectName(QStringLiteral("horizontalLayout_3"));
newColumnButton = new QToolButton(columnsBox);
newColumnButton->setObjectName(QString::fromUtf8("newColumnButton"));
newColumnButton->setObjectName(QStringLiteral("newColumnButton"));
horizontalLayout_3->addWidget(newColumnButton);
deleteColumnButton = new QToolButton(columnsBox);
deleteColumnButton->setObjectName(QString::fromUtf8("deleteColumnButton"));
deleteColumnButton->setObjectName(QStringLiteral("deleteColumnButton"));
horizontalLayout_3->addWidget(deleteColumnButton);
@ -204,12 +204,12 @@ public:
horizontalLayout_3->addItem(spacerItem);
moveColumnUpButton = new QToolButton(columnsBox);
moveColumnUpButton->setObjectName(QString::fromUtf8("moveColumnUpButton"));
moveColumnUpButton->setObjectName(QStringLiteral("moveColumnUpButton"));
horizontalLayout_3->addWidget(moveColumnUpButton);
moveColumnDownButton = new QToolButton(columnsBox);
moveColumnDownButton->setObjectName(QString::fromUtf8("moveColumnDownButton"));
moveColumnDownButton->setObjectName(QStringLiteral("moveColumnDownButton"));
horizontalLayout_3->addWidget(moveColumnDownButton);
@ -217,14 +217,14 @@ public:
gridLayout_2->addLayout(horizontalLayout_3, 1, 0, 1, 1);
horizontalLayout_2 = new QHBoxLayout();
horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2"));
horizontalLayout_2->setObjectName(QStringLiteral("horizontalLayout_2"));
label = new QLabel(columnsBox);
label->setObjectName(QString::fromUtf8("label"));
label->setObjectName(QStringLiteral("label"));
horizontalLayout_2->addWidget(label);
columnIconSelector = new qdesigner_internal::IconSelector(columnsBox);
columnIconSelector->setObjectName(QString::fromUtf8("columnIconSelector"));
columnIconSelector->setObjectName(QStringLiteral("columnIconSelector"));
horizontalLayout_2->addWidget(columnIconSelector);
@ -239,11 +239,11 @@ public:
verticalLayout->addWidget(columnsBox);
rowsBox = new QGroupBox(widget);
rowsBox->setObjectName(QString::fromUtf8("rowsBox"));
rowsBox->setObjectName(QStringLiteral("rowsBox"));
gridLayout_3 = new QGridLayout(rowsBox);
gridLayout_3->setObjectName(QString::fromUtf8("gridLayout_3"));
gridLayout_3->setObjectName(QStringLiteral("gridLayout_3"));
rowsListWidget = new QListWidget(rowsBox);
rowsListWidget->setObjectName(QString::fromUtf8("rowsListWidget"));
rowsListWidget->setObjectName(QStringLiteral("rowsListWidget"));
sizePolicy1.setHeightForWidth(rowsListWidget->sizePolicy().hasHeightForWidth());
rowsListWidget->setSizePolicy(sizePolicy1);
rowsListWidget->setFocusPolicy(Qt::TabFocus);
@ -251,14 +251,14 @@ public:
gridLayout_3->addWidget(rowsListWidget, 0, 0, 1, 1);
horizontalLayout_4 = new QHBoxLayout();
horizontalLayout_4->setObjectName(QString::fromUtf8("horizontalLayout_4"));
horizontalLayout_4->setObjectName(QStringLiteral("horizontalLayout_4"));
newRowButton = new QToolButton(rowsBox);
newRowButton->setObjectName(QString::fromUtf8("newRowButton"));
newRowButton->setObjectName(QStringLiteral("newRowButton"));
horizontalLayout_4->addWidget(newRowButton);
deleteRowButton = new QToolButton(rowsBox);
deleteRowButton->setObjectName(QString::fromUtf8("deleteRowButton"));
deleteRowButton->setObjectName(QStringLiteral("deleteRowButton"));
horizontalLayout_4->addWidget(deleteRowButton);
@ -267,12 +267,12 @@ public:
horizontalLayout_4->addItem(spacerItem2);
moveRowUpButton = new QToolButton(rowsBox);
moveRowUpButton->setObjectName(QString::fromUtf8("moveRowUpButton"));
moveRowUpButton->setObjectName(QStringLiteral("moveRowUpButton"));
horizontalLayout_4->addWidget(moveRowUpButton);
moveRowDownButton = new QToolButton(rowsBox);
moveRowDownButton->setObjectName(QString::fromUtf8("moveRowDownButton"));
moveRowDownButton->setObjectName(QStringLiteral("moveRowDownButton"));
horizontalLayout_4->addWidget(moveRowDownButton);
@ -280,14 +280,14 @@ public:
gridLayout_3->addLayout(horizontalLayout_4, 1, 0, 1, 1);
horizontalLayout = new QHBoxLayout();
horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
horizontalLayout->setObjectName(QStringLiteral("horizontalLayout"));
label_2 = new QLabel(rowsBox);
label_2->setObjectName(QString::fromUtf8("label_2"));
label_2->setObjectName(QStringLiteral("label_2"));
horizontalLayout->addWidget(label_2);
rowIconSelector = new qdesigner_internal::IconSelector(rowsBox);
rowIconSelector->setObjectName(QString::fromUtf8("rowIconSelector"));
rowIconSelector->setObjectName(QStringLiteral("rowIconSelector"));
horizontalLayout->addWidget(rowIconSelector);

View File

@ -46,7 +46,7 @@ public:
void setupUi(QWidget *TetrixWindow)
{
if (TetrixWindow->objectName().isEmpty())
TetrixWindow->setObjectName(QString::fromUtf8("TetrixWindow"));
TetrixWindow->setObjectName(QStringLiteral("TetrixWindow"));
TetrixWindow->resize(537, 475);
vboxLayout = new QVBoxLayout(TetrixWindow);
#ifndef Q_OS_MAC
@ -55,7 +55,7 @@ public:
#ifndef Q_OS_MAC
vboxLayout->setContentsMargins(9, 9, 9, 9);
#endif
vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
vboxLayout->setObjectName(QStringLiteral("vboxLayout"));
gridLayout = new QGridLayout();
#ifndef Q_OS_MAC
gridLayout->setSpacing(6);
@ -63,39 +63,39 @@ public:
#ifndef Q_OS_MAC
gridLayout->setContentsMargins(0, 0, 0, 0);
#endif
gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
gridLayout->setObjectName(QStringLiteral("gridLayout"));
startButton = new QPushButton(TetrixWindow);
startButton->setObjectName(QString::fromUtf8("startButton"));
startButton->setObjectName(QStringLiteral("startButton"));
startButton->setFocusPolicy(Qt::NoFocus);
gridLayout->addWidget(startButton, 4, 0, 1, 1);
linesLcd = new QLCDNumber(TetrixWindow);
linesLcd->setObjectName(QString::fromUtf8("linesLcd"));
linesLcd->setObjectName(QStringLiteral("linesLcd"));
linesLcd->setSegmentStyle(QLCDNumber::Filled);
gridLayout->addWidget(linesLcd, 3, 2, 1, 1);
linesRemovedLabel = new QLabel(TetrixWindow);
linesRemovedLabel->setObjectName(QString::fromUtf8("linesRemovedLabel"));
linesRemovedLabel->setObjectName(QStringLiteral("linesRemovedLabel"));
linesRemovedLabel->setAlignment(Qt::AlignBottom|Qt::AlignHCenter);
gridLayout->addWidget(linesRemovedLabel, 2, 2, 1, 1);
pauseButton = new QPushButton(TetrixWindow);
pauseButton->setObjectName(QString::fromUtf8("pauseButton"));
pauseButton->setObjectName(QStringLiteral("pauseButton"));
pauseButton->setFocusPolicy(Qt::NoFocus);
gridLayout->addWidget(pauseButton, 5, 2, 1, 1);
scoreLcd = new QLCDNumber(TetrixWindow);
scoreLcd->setObjectName(QString::fromUtf8("scoreLcd"));
scoreLcd->setObjectName(QStringLiteral("scoreLcd"));
scoreLcd->setSegmentStyle(QLCDNumber::Filled);
gridLayout->addWidget(scoreLcd, 1, 2, 1, 1);
board = new TetrixBoard(TetrixWindow);
board->setObjectName(QString::fromUtf8("board"));
board->setObjectName(QStringLiteral("board"));
board->setFocusPolicy(Qt::StrongFocus);
board->setFrameShape(QFrame::Panel);
board->setFrameShadow(QFrame::Sunken);
@ -103,31 +103,31 @@ public:
gridLayout->addWidget(board, 0, 1, 6, 1);
levelLabel = new QLabel(TetrixWindow);
levelLabel->setObjectName(QString::fromUtf8("levelLabel"));
levelLabel->setObjectName(QStringLiteral("levelLabel"));
levelLabel->setAlignment(Qt::AlignBottom|Qt::AlignHCenter);
gridLayout->addWidget(levelLabel, 2, 0, 1, 1);
nextLabel = new QLabel(TetrixWindow);
nextLabel->setObjectName(QString::fromUtf8("nextLabel"));
nextLabel->setObjectName(QStringLiteral("nextLabel"));
nextLabel->setAlignment(Qt::AlignBottom|Qt::AlignHCenter);
gridLayout->addWidget(nextLabel, 0, 0, 1, 1);
levelLcd = new QLCDNumber(TetrixWindow);
levelLcd->setObjectName(QString::fromUtf8("levelLcd"));
levelLcd->setObjectName(QStringLiteral("levelLcd"));
levelLcd->setSegmentStyle(QLCDNumber::Filled);
gridLayout->addWidget(levelLcd, 3, 0, 1, 1);
scoreLabel = new QLabel(TetrixWindow);
scoreLabel->setObjectName(QString::fromUtf8("scoreLabel"));
scoreLabel->setObjectName(QStringLiteral("scoreLabel"));
scoreLabel->setAlignment(Qt::AlignBottom|Qt::AlignHCenter);
gridLayout->addWidget(scoreLabel, 0, 2, 1, 1);
nextPieceLabel = new QLabel(TetrixWindow);
nextPieceLabel->setObjectName(QString::fromUtf8("nextPieceLabel"));
nextPieceLabel->setObjectName(QStringLiteral("nextPieceLabel"));
nextPieceLabel->setFrameShape(QFrame::Box);
nextPieceLabel->setFrameShadow(QFrame::Raised);
nextPieceLabel->setAlignment(Qt::AlignCenter);
@ -135,7 +135,7 @@ public:
gridLayout->addWidget(nextPieceLabel, 1, 0, 1, 1);
quitButton = new QPushButton(TetrixWindow);
quitButton->setObjectName(QString::fromUtf8("quitButton"));
quitButton->setObjectName(QStringLiteral("quitButton"));
quitButton->setFocusPolicy(Qt::NoFocus);
gridLayout->addWidget(quitButton, 4, 2, 1, 1);

View File

@ -40,7 +40,7 @@ public:
void setupUi(QWidget *Form)
{
if (Form->objectName().isEmpty())
Form->setObjectName(QString::fromUtf8("Form"));
Form->setObjectName(QStringLiteral("Form"));
Form->resize(378, 158);
vboxLayout = new QVBoxLayout(Form);
#ifndef Q_OS_MAC
@ -49,7 +49,7 @@ public:
#ifndef Q_OS_MAC
vboxLayout->setContentsMargins(9, 9, 9, 9);
#endif
vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
vboxLayout->setObjectName(QStringLiteral("vboxLayout"));
gridLayout = new QGridLayout();
#ifndef Q_OS_MAC
gridLayout->setSpacing(6);
@ -57,19 +57,19 @@ public:
#ifndef Q_OS_MAC
gridLayout->setContentsMargins(0, 0, 0, 0);
#endif
gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
gridLayout->setObjectName(QStringLiteral("gridLayout"));
lineEdit = new QLineEdit(Form);
lineEdit->setObjectName(QString::fromUtf8("lineEdit"));
lineEdit->setObjectName(QStringLiteral("lineEdit"));
gridLayout->addWidget(lineEdit, 0, 1, 1, 1);
searchLabel = new QLabel(Form);
searchLabel->setObjectName(QString::fromUtf8("searchLabel"));
searchLabel->setObjectName(QStringLiteral("searchLabel"));
gridLayout->addWidget(searchLabel, 0, 0, 1, 1);
findButton = new QPushButton(Form);
findButton->setObjectName(QString::fromUtf8("findButton"));
findButton->setObjectName(QStringLiteral("findButton"));
gridLayout->addWidget(findButton, 0, 2, 1, 1);
@ -77,7 +77,7 @@ public:
vboxLayout->addLayout(gridLayout);
textEdit = new QTextEdit(Form);
textEdit->setObjectName(QString::fromUtf8("textEdit"));
textEdit->setObjectName(QStringLiteral("textEdit"));
vboxLayout->addWidget(textEdit);

View File

@ -41,7 +41,7 @@ public:
void setupUi(QDialog *TopicChooser)
{
if (TopicChooser->objectName().isEmpty())
TopicChooser->setObjectName(QString::fromUtf8("TopicChooser"));
TopicChooser->setObjectName(QStringLiteral("TopicChooser"));
TopicChooser->resize(391, 223);
TopicChooser->setSizeGripEnabled(true);
vboxLayout = new QVBoxLayout(TopicChooser);
@ -49,41 +49,41 @@ public:
vboxLayout->setSpacing(6);
#endif
vboxLayout->setContentsMargins(11, 11, 11, 11);
vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
vboxLayout->setObjectName(QString::fromUtf8("unnamed"));
vboxLayout->setObjectName(QStringLiteral("vboxLayout"));
vboxLayout->setObjectName(QStringLiteral("unnamed"));
label = new QLabel(TopicChooser);
label->setObjectName(QString::fromUtf8("label"));
label->setObjectName(QStringLiteral("label"));
vboxLayout->addWidget(label);
listWidget = new QListWidget(TopicChooser);
listWidget->setObjectName(QString::fromUtf8("listWidget"));
listWidget->setObjectName(QStringLiteral("listWidget"));
vboxLayout->addWidget(listWidget);
Layout16 = new QWidget(TopicChooser);
Layout16->setObjectName(QString::fromUtf8("Layout16"));
Layout16->setObjectName(QStringLiteral("Layout16"));
hboxLayout = new QHBoxLayout(Layout16);
#ifndef Q_OS_MAC
hboxLayout->setSpacing(6);
#endif
hboxLayout->setContentsMargins(0, 0, 0, 0);
hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
hboxLayout->setObjectName(QString::fromUtf8("unnamed"));
hboxLayout->setObjectName(QStringLiteral("hboxLayout"));
hboxLayout->setObjectName(QStringLiteral("unnamed"));
hboxLayout->setContentsMargins(0, 0, 0, 0);
Horizontal_Spacing2 = new QSpacerItem(20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
hboxLayout->addItem(Horizontal_Spacing2);
buttonDisplay = new QPushButton(Layout16);
buttonDisplay->setObjectName(QString::fromUtf8("buttonDisplay"));
buttonDisplay->setObjectName(QStringLiteral("buttonDisplay"));
buttonDisplay->setAutoDefault(true);
buttonDisplay->setDefault(true);
hboxLayout->addWidget(buttonDisplay);
buttonCancel = new QPushButton(Layout16);
buttonCancel->setObjectName(QString::fromUtf8("buttonCancel"));
buttonCancel->setObjectName(QStringLiteral("buttonCancel"));
buttonCancel->setAutoDefault(true);
hboxLayout->addWidget(buttonCancel);

View File

@ -96,7 +96,7 @@ public:
void setupUi(QDialog *TranslateDialog)
{
if (TranslateDialog->objectName().isEmpty())
TranslateDialog->setObjectName(QString::fromUtf8("TranslateDialog"));
TranslateDialog->setObjectName(QStringLiteral("TranslateDialog"));
TranslateDialog->resize(407, 145);
QSizePolicy sizePolicy(QSizePolicy::Preferred, QSizePolicy::Maximum);
sizePolicy.setHorizontalStretch(0);
@ -106,35 +106,35 @@ public:
hboxLayout = new QHBoxLayout(TranslateDialog);
hboxLayout->setSpacing(6);
hboxLayout->setContentsMargins(11, 11, 11, 11);
hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
hboxLayout->setObjectName(QStringLiteral("hboxLayout"));
hboxLayout->setContentsMargins(9, 9, 9, 9);
vboxLayout = new QVBoxLayout();
vboxLayout->setSpacing(6);
vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
vboxLayout->setObjectName(QStringLiteral("vboxLayout"));
vboxLayout->setContentsMargins(0, 0, 0, 0);
gridLayout = new QGridLayout();
gridLayout->setSpacing(6);
gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
gridLayout->setObjectName(QStringLiteral("gridLayout"));
gridLayout->setHorizontalSpacing(6);
gridLayout->setVerticalSpacing(6);
gridLayout->setContentsMargins(0, 0, 0, 0);
ledTranslateTo = new QLineEdit(TranslateDialog);
ledTranslateTo->setObjectName(QString::fromUtf8("ledTranslateTo"));
ledTranslateTo->setObjectName(QStringLiteral("ledTranslateTo"));
gridLayout->addWidget(ledTranslateTo, 1, 1, 1, 1);
findWhat = new QLabel(TranslateDialog);
findWhat->setObjectName(QString::fromUtf8("findWhat"));
findWhat->setObjectName(QStringLiteral("findWhat"));
gridLayout->addWidget(findWhat, 0, 0, 1, 1);
translateTo = new QLabel(TranslateDialog);
translateTo->setObjectName(QString::fromUtf8("translateTo"));
translateTo->setObjectName(QStringLiteral("translateTo"));
gridLayout->addWidget(translateTo, 1, 0, 1, 1);
ledFindWhat = new QLineEdit(TranslateDialog);
ledFindWhat->setObjectName(QString::fromUtf8("ledFindWhat"));
ledFindWhat->setObjectName(QStringLiteral("ledFindWhat"));
gridLayout->addWidget(ledFindWhat, 0, 1, 1, 1);
@ -142,18 +142,18 @@ public:
vboxLayout->addLayout(gridLayout);
groupBox = new QGroupBox(TranslateDialog);
groupBox->setObjectName(QString::fromUtf8("groupBox"));
groupBox->setObjectName(QStringLiteral("groupBox"));
vboxLayout1 = new QVBoxLayout(groupBox);
vboxLayout1->setSpacing(6);
vboxLayout1->setContentsMargins(11, 11, 11, 11);
vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1"));
vboxLayout1->setObjectName(QStringLiteral("vboxLayout1"));
ckMatchCase = new QCheckBox(groupBox);
ckMatchCase->setObjectName(QString::fromUtf8("ckMatchCase"));
ckMatchCase->setObjectName(QStringLiteral("ckMatchCase"));
vboxLayout1->addWidget(ckMatchCase);
ckMarkFinished = new QCheckBox(groupBox);
ckMarkFinished->setObjectName(QString::fromUtf8("ckMarkFinished"));
ckMarkFinished->setObjectName(QStringLiteral("ckMarkFinished"));
vboxLayout1->addWidget(ckMarkFinished);
@ -169,27 +169,27 @@ public:
vboxLayout2 = new QVBoxLayout();
vboxLayout2->setSpacing(6);
vboxLayout2->setObjectName(QString::fromUtf8("vboxLayout2"));
vboxLayout2->setObjectName(QStringLiteral("vboxLayout2"));
vboxLayout2->setContentsMargins(0, 0, 0, 0);
findNxt = new QPushButton(TranslateDialog);
findNxt->setObjectName(QString::fromUtf8("findNxt"));
findNxt->setObjectName(QStringLiteral("findNxt"));
findNxt->setDefault(true);
findNxt->setFlat(false);
vboxLayout2->addWidget(findNxt);
translate = new QPushButton(TranslateDialog);
translate->setObjectName(QString::fromUtf8("translate"));
translate->setObjectName(QStringLiteral("translate"));
vboxLayout2->addWidget(translate);
translateAll = new QPushButton(TranslateDialog);
translateAll->setObjectName(QString::fromUtf8("translateAll"));
translateAll->setObjectName(QStringLiteral("translateAll"));
vboxLayout2->addWidget(translateAll);
cancel = new QPushButton(TranslateDialog);
cancel->setObjectName(QString::fromUtf8("cancel"));
cancel->setObjectName(QStringLiteral("cancel"));
vboxLayout2->addWidget(cancel);

View File

@ -40,7 +40,7 @@ public:
void setupUi(QDialog *TranslationSettings)
{
if (TranslationSettings->objectName().isEmpty())
TranslationSettings->setObjectName(QString::fromUtf8("TranslationSettings"));
TranslationSettings->setObjectName(QStringLiteral("TranslationSettings"));
TranslationSettings->resize(346, 125);
vboxLayout = new QVBoxLayout(TranslationSettings);
#ifndef Q_OS_MAC
@ -49,9 +49,9 @@ public:
#ifndef Q_OS_MAC
vboxLayout->setContentsMargins(9, 9, 9, 9);
#endif
vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
vboxLayout->setObjectName(QStringLiteral("vboxLayout"));
groupBox = new QGroupBox(TranslationSettings);
groupBox->setObjectName(QString::fromUtf8("groupBox"));
groupBox->setObjectName(QStringLiteral("groupBox"));
gridLayout = new QGridLayout(groupBox);
#ifndef Q_OS_MAC
gridLayout->setSpacing(6);
@ -59,24 +59,24 @@ public:
#ifndef Q_OS_MAC
gridLayout->setContentsMargins(9, 9, 9, 9);
#endif
gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
gridLayout->setObjectName(QStringLiteral("gridLayout"));
cbLanguageList = new QComboBox(groupBox);
cbLanguageList->setObjectName(QString::fromUtf8("cbLanguageList"));
cbLanguageList->setObjectName(QStringLiteral("cbLanguageList"));
gridLayout->addWidget(cbLanguageList, 0, 1, 1, 1);
label = new QLabel(groupBox);
label->setObjectName(QString::fromUtf8("label"));
label->setObjectName(QStringLiteral("label"));
gridLayout->addWidget(label, 0, 0, 1, 1);
cbCountryList = new QComboBox(groupBox);
cbCountryList->setObjectName(QString::fromUtf8("cbCountryList"));
cbCountryList->setObjectName(QStringLiteral("cbCountryList"));
gridLayout->addWidget(cbCountryList, 1, 1, 1, 1);
lblCountry = new QLabel(groupBox);
lblCountry->setObjectName(QString::fromUtf8("lblCountry"));
lblCountry->setObjectName(QStringLiteral("lblCountry"));
gridLayout->addWidget(lblCountry, 1, 0, 1, 1);
@ -84,7 +84,7 @@ public:
vboxLayout->addWidget(groupBox);
buttonBox = new QDialogButtonBox(TranslationSettings);
buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setObjectName(QStringLiteral("buttonBox"));
buttonBox->setOrientation(Qt::Horizontal);
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::NoButton|QDialogButtonBox::Ok);

View File

@ -112,34 +112,34 @@ public:
void setupUi(QDialog *qdesigner_internal__TreeWidgetEditor)
{
if (qdesigner_internal__TreeWidgetEditor->objectName().isEmpty())
qdesigner_internal__TreeWidgetEditor->setObjectName(QString::fromUtf8("qdesigner_internal__TreeWidgetEditor"));
qdesigner_internal__TreeWidgetEditor->setObjectName(QStringLiteral("qdesigner_internal__TreeWidgetEditor"));
qdesigner_internal__TreeWidgetEditor->resize(619, 321);
gridLayout_3 = new QGridLayout(qdesigner_internal__TreeWidgetEditor);
gridLayout_3->setObjectName(QString::fromUtf8("gridLayout_3"));
gridLayout_3->setObjectName(QStringLiteral("gridLayout_3"));
itemsBox = new QGroupBox(qdesigner_internal__TreeWidgetEditor);
itemsBox->setObjectName(QString::fromUtf8("itemsBox"));
itemsBox->setObjectName(QStringLiteral("itemsBox"));
gridLayout = new QGridLayout(itemsBox);
gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
gridLayout->setObjectName(QStringLiteral("gridLayout"));
treeWidget = new QTreeWidget(itemsBox);
treeWidget->setObjectName(QString::fromUtf8("treeWidget"));
treeWidget->setObjectName(QStringLiteral("treeWidget"));
treeWidget->setFocusPolicy(Qt::TabFocus);
gridLayout->addWidget(treeWidget, 0, 0, 1, 1);
horizontalLayout_4 = new QHBoxLayout();
horizontalLayout_4->setObjectName(QString::fromUtf8("horizontalLayout_4"));
horizontalLayout_4->setObjectName(QStringLiteral("horizontalLayout_4"));
newItemButton = new QToolButton(itemsBox);
newItemButton->setObjectName(QString::fromUtf8("newItemButton"));
newItemButton->setObjectName(QStringLiteral("newItemButton"));
horizontalLayout_4->addWidget(newItemButton);
newSubItemButton = new QToolButton(itemsBox);
newSubItemButton->setObjectName(QString::fromUtf8("newSubItemButton"));
newSubItemButton->setObjectName(QStringLiteral("newSubItemButton"));
horizontalLayout_4->addWidget(newSubItemButton);
deleteItemButton = new QToolButton(itemsBox);
deleteItemButton->setObjectName(QString::fromUtf8("deleteItemButton"));
deleteItemButton->setObjectName(QStringLiteral("deleteItemButton"));
horizontalLayout_4->addWidget(deleteItemButton);
@ -148,22 +148,22 @@ public:
horizontalLayout_4->addItem(spacerItem);
moveItemLeftButton = new QToolButton(itemsBox);
moveItemLeftButton->setObjectName(QString::fromUtf8("moveItemLeftButton"));
moveItemLeftButton->setObjectName(QStringLiteral("moveItemLeftButton"));
horizontalLayout_4->addWidget(moveItemLeftButton);
moveItemRightButton = new QToolButton(itemsBox);
moveItemRightButton->setObjectName(QString::fromUtf8("moveItemRightButton"));
moveItemRightButton->setObjectName(QStringLiteral("moveItemRightButton"));
horizontalLayout_4->addWidget(moveItemRightButton);
moveItemUpButton = new QToolButton(itemsBox);
moveItemUpButton->setObjectName(QString::fromUtf8("moveItemUpButton"));
moveItemUpButton->setObjectName(QStringLiteral("moveItemUpButton"));
horizontalLayout_4->addWidget(moveItemUpButton);
moveItemDownButton = new QToolButton(itemsBox);
moveItemDownButton->setObjectName(QString::fromUtf8("moveItemDownButton"));
moveItemDownButton->setObjectName(QStringLiteral("moveItemDownButton"));
horizontalLayout_4->addWidget(moveItemDownButton);
@ -171,14 +171,14 @@ public:
gridLayout->addLayout(horizontalLayout_4, 1, 0, 1, 1);
horizontalLayout_2 = new QHBoxLayout();
horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2"));
horizontalLayout_2->setObjectName(QStringLiteral("horizontalLayout_2"));
label_2 = new QLabel(itemsBox);
label_2->setObjectName(QString::fromUtf8("label_2"));
label_2->setObjectName(QStringLiteral("label_2"));
horizontalLayout_2->addWidget(label_2);
itemIconSelector = new qdesigner_internal::IconSelector(itemsBox);
itemIconSelector->setObjectName(QString::fromUtf8("itemIconSelector"));
itemIconSelector->setObjectName(QStringLiteral("itemIconSelector"));
horizontalLayout_2->addWidget(itemIconSelector);
@ -193,16 +193,16 @@ public:
gridLayout_3->addWidget(itemsBox, 0, 0, 1, 1);
columnsBox = new QGroupBox(qdesigner_internal__TreeWidgetEditor);
columnsBox->setObjectName(QString::fromUtf8("columnsBox"));
columnsBox->setObjectName(QStringLiteral("columnsBox"));
QSizePolicy sizePolicy(QSizePolicy::Fixed, QSizePolicy::Preferred);
sizePolicy.setHorizontalStretch(0);
sizePolicy.setVerticalStretch(0);
sizePolicy.setHeightForWidth(columnsBox->sizePolicy().hasHeightForWidth());
columnsBox->setSizePolicy(sizePolicy);
gridLayout_2 = new QGridLayout(columnsBox);
gridLayout_2->setObjectName(QString::fromUtf8("gridLayout_2"));
gridLayout_2->setObjectName(QStringLiteral("gridLayout_2"));
listWidget = new QListWidget(columnsBox);
listWidget->setObjectName(QString::fromUtf8("listWidget"));
listWidget->setObjectName(QStringLiteral("listWidget"));
QSizePolicy sizePolicy1(QSizePolicy::Ignored, QSizePolicy::Expanding);
sizePolicy1.setHorizontalStretch(0);
sizePolicy1.setVerticalStretch(0);
@ -213,14 +213,14 @@ public:
gridLayout_2->addWidget(listWidget, 0, 0, 1, 1);
horizontalLayout_3 = new QHBoxLayout();
horizontalLayout_3->setObjectName(QString::fromUtf8("horizontalLayout_3"));
horizontalLayout_3->setObjectName(QStringLiteral("horizontalLayout_3"));
newColumnButton = new QToolButton(columnsBox);
newColumnButton->setObjectName(QString::fromUtf8("newColumnButton"));
newColumnButton->setObjectName(QStringLiteral("newColumnButton"));
horizontalLayout_3->addWidget(newColumnButton);
deleteColumnButton = new QToolButton(columnsBox);
deleteColumnButton->setObjectName(QString::fromUtf8("deleteColumnButton"));
deleteColumnButton->setObjectName(QStringLiteral("deleteColumnButton"));
horizontalLayout_3->addWidget(deleteColumnButton);
@ -229,12 +229,12 @@ public:
horizontalLayout_3->addItem(spacerItem1);
moveColumnUpButton = new QToolButton(columnsBox);
moveColumnUpButton->setObjectName(QString::fromUtf8("moveColumnUpButton"));
moveColumnUpButton->setObjectName(QStringLiteral("moveColumnUpButton"));
horizontalLayout_3->addWidget(moveColumnUpButton);
moveColumnDownButton = new QToolButton(columnsBox);
moveColumnDownButton->setObjectName(QString::fromUtf8("moveColumnDownButton"));
moveColumnDownButton->setObjectName(QStringLiteral("moveColumnDownButton"));
horizontalLayout_3->addWidget(moveColumnDownButton);
@ -242,14 +242,14 @@ public:
gridLayout_2->addLayout(horizontalLayout_3, 1, 0, 1, 1);
horizontalLayout = new QHBoxLayout();
horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
horizontalLayout->setObjectName(QStringLiteral("horizontalLayout"));
label = new QLabel(columnsBox);
label->setObjectName(QString::fromUtf8("label"));
label->setObjectName(QStringLiteral("label"));
horizontalLayout->addWidget(label);
columnIconSelector = new qdesigner_internal::IconSelector(columnsBox);
columnIconSelector->setObjectName(QString::fromUtf8("columnIconSelector"));
columnIconSelector->setObjectName(QStringLiteral("columnIconSelector"));
horizontalLayout->addWidget(columnIconSelector);
@ -264,7 +264,7 @@ public:
gridLayout_3->addWidget(columnsBox, 0, 1, 1, 1);
buttonBox = new QDialogButtonBox(qdesigner_internal__TreeWidgetEditor);
buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setObjectName(QStringLiteral("buttonBox"));
buttonBox->setOrientation(Qt::Horizontal);
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);

View File

@ -95,58 +95,58 @@ public:
void setupUi(QMainWindow *TrPreviewToolClass)
{
if (TrPreviewToolClass->objectName().isEmpty())
TrPreviewToolClass->setObjectName(QString::fromUtf8("TrPreviewToolClass"));
TrPreviewToolClass->setObjectName(QStringLiteral("TrPreviewToolClass"));
TrPreviewToolClass->resize(593, 466);
actionOpenForm = new QAction(TrPreviewToolClass);
actionOpenForm->setObjectName(QString::fromUtf8("actionOpenForm"));
actionOpenForm->setObjectName(QStringLiteral("actionOpenForm"));
const QIcon icon = QIcon(QString::fromUtf8(":/images/open_form.png"));
actionOpenForm->setIcon(icon);
actionLoadTranslation = new QAction(TrPreviewToolClass);
actionLoadTranslation->setObjectName(QString::fromUtf8("actionLoadTranslation"));
actionLoadTranslation->setObjectName(QStringLiteral("actionLoadTranslation"));
const QIcon icon1 = QIcon(QString::fromUtf8(":/images/load_translation.png"));
actionLoadTranslation->setIcon(icon1);
actionReloadTranslations = new QAction(TrPreviewToolClass);
actionReloadTranslations->setObjectName(QString::fromUtf8("actionReloadTranslations"));
actionReloadTranslations->setObjectName(QStringLiteral("actionReloadTranslations"));
const QIcon icon2 = QIcon(QString::fromUtf8(":/images/reload_translations.png"));
actionReloadTranslations->setIcon(icon2);
actionClose = new QAction(TrPreviewToolClass);
actionClose->setObjectName(QString::fromUtf8("actionClose"));
actionClose->setObjectName(QStringLiteral("actionClose"));
actionAbout = new QAction(TrPreviewToolClass);
actionAbout->setObjectName(QString::fromUtf8("actionAbout"));
actionAbout->setObjectName(QStringLiteral("actionAbout"));
actionAbout_Qt = new QAction(TrPreviewToolClass);
actionAbout_Qt->setObjectName(QString::fromUtf8("actionAbout_Qt"));
actionAbout_Qt->setObjectName(QStringLiteral("actionAbout_Qt"));
centralWidget = new QWidget(TrPreviewToolClass);
centralWidget->setObjectName(QString::fromUtf8("centralWidget"));
centralWidget->setObjectName(QStringLiteral("centralWidget"));
TrPreviewToolClass->setCentralWidget(centralWidget);
menuBar = new QMenuBar(TrPreviewToolClass);
menuBar->setObjectName(QString::fromUtf8("menuBar"));
menuBar->setObjectName(QStringLiteral("menuBar"));
menuBar->setGeometry(QRect(0, 0, 593, 21));
menuView = new QMenu(menuBar);
menuView->setObjectName(QString::fromUtf8("menuView"));
menuView->setObjectName(QStringLiteral("menuView"));
menuViewViews = new QMenu(menuView);
menuViewViews->setObjectName(QString::fromUtf8("menuViewViews"));
menuViewViews->setObjectName(QStringLiteral("menuViewViews"));
menuHelp = new QMenu(menuBar);
menuHelp->setObjectName(QString::fromUtf8("menuHelp"));
menuHelp->setObjectName(QStringLiteral("menuHelp"));
menuFile = new QMenu(menuBar);
menuFile->setObjectName(QString::fromUtf8("menuFile"));
menuFile->setObjectName(QStringLiteral("menuFile"));
TrPreviewToolClass->setMenuBar(menuBar);
mainToolBar = new QToolBar(TrPreviewToolClass);
mainToolBar->setObjectName(QString::fromUtf8("mainToolBar"));
mainToolBar->setObjectName(QStringLiteral("mainToolBar"));
mainToolBar->setOrientation(Qt::Horizontal);
TrPreviewToolClass->addToolBar(static_cast<Qt::ToolBarArea>(4), mainToolBar);
statusBar = new QStatusBar(TrPreviewToolClass);
statusBar->setObjectName(QString::fromUtf8("statusBar"));
statusBar->setObjectName(QStringLiteral("statusBar"));
TrPreviewToolClass->setStatusBar(statusBar);
dwForms = new QDockWidget(TrPreviewToolClass);
dwForms->setObjectName(QString::fromUtf8("dwForms"));
dwForms->setObjectName(QStringLiteral("dwForms"));
dockWidgetContents = new QWidget();
dockWidgetContents->setObjectName(QString::fromUtf8("dockWidgetContents"));
dockWidgetContents->setObjectName(QStringLiteral("dockWidgetContents"));
vboxLayout = new QVBoxLayout(dockWidgetContents);
vboxLayout->setSpacing(0);
vboxLayout->setContentsMargins(0, 0, 0, 0);
vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
vboxLayout->setObjectName(QStringLiteral("vboxLayout"));
viewForms = new QListView(dockWidgetContents);
viewForms->setObjectName(QString::fromUtf8("viewForms"));
viewForms->setObjectName(QStringLiteral("viewForms"));
viewForms->setEditTriggers(QAbstractItemView::NoEditTriggers);
viewForms->setAlternatingRowColors(true);
viewForms->setUniformItemSizes(true);

View File

@ -80,7 +80,7 @@ public:
void setupUi(QWidget *ValidatorsForm)
{
if (ValidatorsForm->objectName().isEmpty())
ValidatorsForm->setObjectName(QString::fromUtf8("ValidatorsForm"));
ValidatorsForm->setObjectName(QStringLiteral("ValidatorsForm"));
ValidatorsForm->resize(526, 668);
vboxLayout = new QVBoxLayout(ValidatorsForm);
#ifndef Q_OS_MAC
@ -89,7 +89,7 @@ public:
#ifndef Q_OS_MAC
vboxLayout->setContentsMargins(9, 9, 9, 9);
#endif
vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
vboxLayout->setObjectName(QStringLiteral("vboxLayout"));
hboxLayout = new QHBoxLayout();
#ifndef Q_OS_MAC
hboxLayout->setSpacing(6);
@ -97,9 +97,9 @@ public:
#ifndef Q_OS_MAC
hboxLayout->setContentsMargins(0, 0, 0, 0);
#endif
hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
hboxLayout->setObjectName(QStringLiteral("hboxLayout"));
localeSelector = new LocaleSelector(ValidatorsForm);
localeSelector->setObjectName(QString::fromUtf8("localeSelector"));
localeSelector->setObjectName(QStringLiteral("localeSelector"));
hboxLayout->addWidget(localeSelector);
@ -111,7 +111,7 @@ public:
vboxLayout->addLayout(hboxLayout);
groupBox = new QGroupBox(ValidatorsForm);
groupBox->setObjectName(QString::fromUtf8("groupBox"));
groupBox->setObjectName(QStringLiteral("groupBox"));
vboxLayout1 = new QVBoxLayout(groupBox);
#ifndef Q_OS_MAC
vboxLayout1->setSpacing(6);
@ -119,7 +119,7 @@ public:
#ifndef Q_OS_MAC
vboxLayout1->setContentsMargins(9, 9, 9, 9);
#endif
vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1"));
vboxLayout1->setObjectName(QStringLiteral("vboxLayout1"));
hboxLayout1 = new QHBoxLayout();
#ifndef Q_OS_MAC
hboxLayout1->setSpacing(6);
@ -127,7 +127,7 @@ public:
#ifndef Q_OS_MAC
hboxLayout1->setContentsMargins(0, 0, 0, 0);
#endif
hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
hboxLayout1->setObjectName(QStringLiteral("hboxLayout1"));
gridLayout = new QGridLayout();
#ifndef Q_OS_MAC
gridLayout->setSpacing(6);
@ -135,15 +135,15 @@ public:
#ifndef Q_OS_MAC
gridLayout->setContentsMargins(0, 0, 0, 0);
#endif
gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
gridLayout->setObjectName(QStringLiteral("gridLayout"));
label = new QLabel(groupBox);
label->setObjectName(QString::fromUtf8("label"));
label->setObjectName(QStringLiteral("label"));
label->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
gridLayout->addWidget(label, 0, 0, 1, 1);
minVal = new QSpinBox(groupBox);
minVal->setObjectName(QString::fromUtf8("minVal"));
minVal->setObjectName(QStringLiteral("minVal"));
QSizePolicy sizePolicy(QSizePolicy::Minimum, QSizePolicy::Fixed);
sizePolicy.setHorizontalStretch(1);
sizePolicy.setVerticalStretch(0);
@ -155,13 +155,13 @@ public:
gridLayout->addWidget(minVal, 0, 1, 1, 1);
label_2 = new QLabel(groupBox);
label_2->setObjectName(QString::fromUtf8("label_2"));
label_2->setObjectName(QStringLiteral("label_2"));
label_2->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
gridLayout->addWidget(label_2, 1, 0, 1, 1);
maxVal = new QSpinBox(groupBox);
maxVal->setObjectName(QString::fromUtf8("maxVal"));
maxVal->setObjectName(QStringLiteral("maxVal"));
sizePolicy.setHeightForWidth(maxVal->sizePolicy().hasHeightForWidth());
maxVal->setSizePolicy(sizePolicy);
maxVal->setMinimum(-1000000);
@ -174,7 +174,7 @@ public:
hboxLayout1->addLayout(gridLayout);
frame = new QFrame(groupBox);
frame->setObjectName(QString::fromUtf8("frame"));
frame->setObjectName(QStringLiteral("frame"));
frame->setFrameShape(QFrame::StyledPanel);
frame->setFrameShadow(QFrame::Sunken);
vboxLayout2 = new QVBoxLayout(frame);
@ -184,9 +184,9 @@ public:
#ifndef Q_OS_MAC
vboxLayout2->setContentsMargins(9, 9, 9, 9);
#endif
vboxLayout2->setObjectName(QString::fromUtf8("vboxLayout2"));
vboxLayout2->setObjectName(QStringLiteral("vboxLayout2"));
ledWidget = new LEDWidget(frame);
ledWidget->setObjectName(QString::fromUtf8("ledWidget"));
ledWidget->setObjectName(QStringLiteral("ledWidget"));
QSizePolicy sizePolicy1(QSizePolicy::Preferred, QSizePolicy::Fixed);
sizePolicy1.setHorizontalStretch(0);
sizePolicy1.setVerticalStretch(0);
@ -198,7 +198,7 @@ public:
vboxLayout2->addWidget(ledWidget);
label_7 = new QLabel(frame);
label_7->setObjectName(QString::fromUtf8("label_7"));
label_7->setObjectName(QStringLiteral("label_7"));
vboxLayout2->addWidget(label_7);
@ -213,7 +213,7 @@ public:
vboxLayout1->addItem(spacerItem1);
editor = new QLineEdit(groupBox);
editor->setObjectName(QString::fromUtf8("editor"));
editor->setObjectName(QStringLiteral("editor"));
vboxLayout1->addWidget(editor);
@ -221,7 +221,7 @@ public:
vboxLayout->addWidget(groupBox);
groupBox_2 = new QGroupBox(ValidatorsForm);
groupBox_2->setObjectName(QString::fromUtf8("groupBox_2"));
groupBox_2->setObjectName(QStringLiteral("groupBox_2"));
vboxLayout3 = new QVBoxLayout(groupBox_2);
#ifndef Q_OS_MAC
vboxLayout3->setSpacing(6);
@ -229,7 +229,7 @@ public:
#ifndef Q_OS_MAC
vboxLayout3->setContentsMargins(9, 9, 9, 9);
#endif
vboxLayout3->setObjectName(QString::fromUtf8("vboxLayout3"));
vboxLayout3->setObjectName(QStringLiteral("vboxLayout3"));
hboxLayout2 = new QHBoxLayout();
#ifndef Q_OS_MAC
hboxLayout2->setSpacing(6);
@ -237,7 +237,7 @@ public:
#ifndef Q_OS_MAC
hboxLayout2->setContentsMargins(0, 0, 0, 0);
#endif
hboxLayout2->setObjectName(QString::fromUtf8("hboxLayout2"));
hboxLayout2->setObjectName(QStringLiteral("hboxLayout2"));
gridLayout1 = new QGridLayout();
#ifndef Q_OS_MAC
gridLayout1->setSpacing(6);
@ -245,15 +245,15 @@ public:
#ifndef Q_OS_MAC
gridLayout1->setContentsMargins(0, 0, 0, 0);
#endif
gridLayout1->setObjectName(QString::fromUtf8("gridLayout1"));
gridLayout1->setObjectName(QStringLiteral("gridLayout1"));
label_3 = new QLabel(groupBox_2);
label_3->setObjectName(QString::fromUtf8("label_3"));
label_3->setObjectName(QStringLiteral("label_3"));
label_3->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
gridLayout1->addWidget(label_3, 0, 0, 1, 1);
doubleMinVal = new QDoubleSpinBox(groupBox_2);
doubleMinVal->setObjectName(QString::fromUtf8("doubleMinVal"));
doubleMinVal->setObjectName(QStringLiteral("doubleMinVal"));
sizePolicy.setHeightForWidth(doubleMinVal->sizePolicy().hasHeightForWidth());
doubleMinVal->setSizePolicy(sizePolicy);
doubleMinVal->setMinimum(-100000);
@ -263,24 +263,24 @@ public:
gridLayout1->addWidget(doubleMinVal, 0, 1, 1, 1);
label_5 = new QLabel(groupBox_2);
label_5->setObjectName(QString::fromUtf8("label_5"));
label_5->setObjectName(QStringLiteral("label_5"));
label_5->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
gridLayout1->addWidget(label_5, 0, 2, 1, 1);
doubleFormat = new QComboBox(groupBox_2);
doubleFormat->setObjectName(QString::fromUtf8("doubleFormat"));
doubleFormat->setObjectName(QStringLiteral("doubleFormat"));
gridLayout1->addWidget(doubleFormat, 0, 3, 1, 1);
label_4 = new QLabel(groupBox_2);
label_4->setObjectName(QString::fromUtf8("label_4"));
label_4->setObjectName(QStringLiteral("label_4"));
label_4->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
gridLayout1->addWidget(label_4, 1, 0, 1, 1);
doubleMaxVal = new QDoubleSpinBox(groupBox_2);
doubleMaxVal->setObjectName(QString::fromUtf8("doubleMaxVal"));
doubleMaxVal->setObjectName(QStringLiteral("doubleMaxVal"));
sizePolicy.setHeightForWidth(doubleMaxVal->sizePolicy().hasHeightForWidth());
doubleMaxVal->setSizePolicy(sizePolicy);
doubleMaxVal->setMinimum(-100000);
@ -290,13 +290,13 @@ public:
gridLayout1->addWidget(doubleMaxVal, 1, 1, 1, 1);
label_6 = new QLabel(groupBox_2);
label_6->setObjectName(QString::fromUtf8("label_6"));
label_6->setObjectName(QStringLiteral("label_6"));
label_6->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
gridLayout1->addWidget(label_6, 1, 2, 1, 1);
doubleDecimals = new QSpinBox(groupBox_2);
doubleDecimals->setObjectName(QString::fromUtf8("doubleDecimals"));
doubleDecimals->setObjectName(QStringLiteral("doubleDecimals"));
doubleDecimals->setValue(2);
gridLayout1->addWidget(doubleDecimals, 1, 3, 1, 1);
@ -305,7 +305,7 @@ public:
hboxLayout2->addLayout(gridLayout1);
frame_2 = new QFrame(groupBox_2);
frame_2->setObjectName(QString::fromUtf8("frame_2"));
frame_2->setObjectName(QStringLiteral("frame_2"));
frame_2->setFrameShape(QFrame::StyledPanel);
frame_2->setFrameShadow(QFrame::Sunken);
vboxLayout4 = new QVBoxLayout(frame_2);
@ -315,16 +315,16 @@ public:
#ifndef Q_OS_MAC
vboxLayout4->setContentsMargins(9, 9, 9, 9);
#endif
vboxLayout4->setObjectName(QString::fromUtf8("vboxLayout4"));
vboxLayout4->setObjectName(QStringLiteral("vboxLayout4"));
doubleLedWidget = new LEDWidget(frame_2);
doubleLedWidget->setObjectName(QString::fromUtf8("doubleLedWidget"));
doubleLedWidget->setObjectName(QStringLiteral("doubleLedWidget"));
doubleLedWidget->setPixmap(QPixmap(QString::fromUtf8(":/ledoff.png")));
doubleLedWidget->setAlignment(Qt::AlignCenter);
vboxLayout4->addWidget(doubleLedWidget);
label_8 = new QLabel(frame_2);
label_8->setObjectName(QString::fromUtf8("label_8"));
label_8->setObjectName(QStringLiteral("label_8"));
vboxLayout4->addWidget(label_8);
@ -339,7 +339,7 @@ public:
vboxLayout3->addItem(spacerItem2);
doubleEditor = new QLineEdit(groupBox_2);
doubleEditor->setObjectName(QString::fromUtf8("doubleEditor"));
doubleEditor->setObjectName(QStringLiteral("doubleEditor"));
vboxLayout3->addWidget(doubleEditor);
@ -355,13 +355,13 @@ public:
hboxLayout3->setSpacing(6);
#endif
hboxLayout3->setContentsMargins(0, 0, 0, 0);
hboxLayout3->setObjectName(QString::fromUtf8("hboxLayout3"));
hboxLayout3->setObjectName(QStringLiteral("hboxLayout3"));
spacerItem4 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
hboxLayout3->addItem(spacerItem4);
pushButton = new QPushButton(ValidatorsForm);
pushButton->setObjectName(QString::fromUtf8("pushButton"));
pushButton->setObjectName(QStringLiteral("pushButton"));
hboxLayout3->addWidget(pushButton);

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