uic: Use the Qt configure system when generating code

Replace the generation of #ifdef's for the macros by QT_CONFIG
checks. Implement it using streamable classes to make it easier
to switch the output language later.

Task-number: PYSIDE-797
Change-Id: I28b5ed3ec80cd525a3df0cd54d9be4f09149cde4
Reviewed-by: Jarek Kobus <jaroslaw.kobus@qt.io>
bb10
Friedemann Kleint 2018-10-22 13:42:22 +02:00
parent dbffff0116
commit 24d1565789
40 changed files with 578 additions and 424 deletions

View File

@ -34,6 +34,8 @@
#include "databaseinfo.h"
#include "globaldefs.h"
#include <language.h>
#include <qtextstream.h>
#include <qdebug.h>
@ -172,17 +174,16 @@ namespace {
}
return true;
}
inline void openIfndef(QTextStream &str, const QString &symbol) { if (!symbol.isEmpty()) str << QLatin1String("#ifndef ") << symbol << endl; }
inline void closeIfndef(QTextStream &str, const QString &symbol) { if (!symbol.isEmpty()) str << QLatin1String("#endif // ") << symbol << endl; }
const char *accessibilityDefineC = "QT_NO_ACCESSIBILITY";
const char *toolTipDefineC = "QT_NO_TOOLTIP";
const char *whatsThisDefineC = "QT_NO_WHATSTHIS";
const char *statusTipDefineC = "QT_NO_STATUSTIP";
const char *shortcutDefineC = "QT_NO_SHORTCUT";
}
// QtGui
static inline QString accessibilityConfigKey() { return QStringLiteral("accessibility"); }
static inline QString shortcutConfigKey() { return QStringLiteral("shortcut"); }
static inline QString whatsThisConfigKey() { return QStringLiteral("whatsthis"); }
// QtWidgets
static inline QString statusTipConfigKey() { return QStringLiteral("statustip"); }
static inline QString toolTipConfigKey() { return QStringLiteral("tooltip"); }
namespace CPP {
FontHandle::FontHandle(const DomFont *domFont) :
@ -520,7 +521,7 @@ void WriteInitialization::acceptUI(DomUI *node)
acceptWidget(node->elementWidget());
if (!m_buddies.empty())
openIfndef(m_output, QLatin1String(shortcutDefineC));
m_output << language::openQtConfig(shortcutConfigKey());
for (const Buddy &b : qAsConst(m_buddies)) {
if (!m_registeredWidgets.contains(b.objName)) {
fprintf(stderr, "%s: Warning: Buddy assignment: '%s' is not a valid widget.\n",
@ -537,7 +538,7 @@ void WriteInitialization::acceptUI(DomUI *node)
m_output << m_indent << b.objName << "->setBuddy(" << b.buddy << ");\n";
}
if (!m_buddies.empty())
closeIfndef(m_output, QLatin1String(shortcutDefineC));
m_output << language::closeQtConfig(shortcutConfigKey());
if (node->elementTabStops())
acceptTabStops(node->elementTabStops());
@ -1124,6 +1125,23 @@ QString WriteInitialization::writeStringListProperty(const DomStringList *list)
return propertyValue;
}
static QString configKeyForProperty(const QString &propertyName)
{
if (propertyName == QLatin1String("toolTip"))
return toolTipConfigKey();
if (propertyName == QLatin1String("whatsThis"))
return whatsThisConfigKey();
if (propertyName == QLatin1String("statusTip"))
return statusTipConfigKey();
if (propertyName == QLatin1String("shortcut"))
return shortcutConfigKey();
if (propertyName == QLatin1String("accessibleName")
|| propertyName == QLatin1String("accessibleDescription")) {
return accessibilityConfigKey();
}
return QString();
}
void WriteInitialization::writeProperties(const QString &varName,
const QString &className,
const DomPropertyList &lst,
@ -1461,28 +1479,18 @@ void WriteInitialization::writeProperties(const QString &varName,
}
if (propertyValue.size()) {
const char* defineC = 0;
if (propertyName == QLatin1String("toolTip"))
defineC = toolTipDefineC;
else if (propertyName == QLatin1String("whatsThis"))
defineC = whatsThisDefineC;
else if (propertyName == QLatin1String("statusTip"))
defineC = statusTipDefineC;
else if (propertyName == QLatin1String("shortcut"))
defineC = shortcutDefineC;
else if (propertyName == QLatin1String("accessibleName") || propertyName == QLatin1String("accessibleDescription"))
defineC = accessibilityDefineC;
const QString configKey = configKeyForProperty(propertyName);
QTextStream &o = delayProperty ? m_delayedOut : autoTrOutput(p);
if (defineC)
openIfndef(o, QLatin1String(defineC));
if (!configKey.isEmpty())
o << language::openQtConfig(configKey);
o << m_indent << varNewName << setFunction << propertyValue;
if (!stdset)
o << ')';
o << ");\n";
if (defineC)
closeIfndef(o, QLatin1String(defineC));
if (!configKey.isEmpty())
o << language::closeQtConfig(configKey);
if (varName == m_mainFormVarName && &o == &m_refreshOut) {
// this is the only place (currently) where we output mainForm name to the retranslateUi().
@ -2127,9 +2135,12 @@ void WriteInitialization::addCommonInitializers(Item *item,
addQtFlagsInitializer(item, properties, QLatin1String("textAlignment"), column);
addQtEnumInitializer(item, properties, QLatin1String("checkState"), column);
addStringInitializer(item, properties, QLatin1String("text"), column);
addStringInitializer(item, properties, QLatin1String("toolTip"), column, QLatin1String(toolTipDefineC));
addStringInitializer(item, properties, QLatin1String("whatsThis"), column, QLatin1String(whatsThisDefineC));
addStringInitializer(item, properties, QLatin1String("statusTip"), column, QLatin1String(statusTipDefineC));
addStringInitializer(item, properties, QLatin1String("toolTip"), column,
toolTipConfigKey());
addStringInitializer(item, properties, QLatin1String("whatsThis"), column,
whatsThisConfigKey());
addStringInitializer(item, properties, QLatin1String("statusTip"), column,
statusTipConfigKey());
}
void WriteInitialization::initializeListWidget(DomWidget *w)
@ -2466,7 +2477,7 @@ static void generateMultiDirectiveBegin(QTextStream &outputStream, const QSet<QS
return;
if (directives.size() == 1) {
outputStream << "#ifndef " << *directives.cbegin() << endl;
outputStream << language::openQtConfig(*directives.cbegin());
return;
}
@ -2474,7 +2485,10 @@ static void generateMultiDirectiveBegin(QTextStream &outputStream, const QSet<QS
// sort (always generate in the same order):
std::sort(list.begin(), list.end());
outputStream << "#if !defined(" << list.join(QLatin1String(") || !defined(")) << ')' << endl;
outputStream << "#if " << language::qtConfig(list.constFirst());
for (int i = 1, size = list.size(); i < size; ++i)
outputStream << " || " << language::qtConfig(list.at(i));
outputStream << endl;
}
static void generateMultiDirectiveEnd(QTextStream &outputStream, const QSet<QString> &directives)
@ -2531,9 +2545,11 @@ QString WriteInitialization::Item::writeSetupUi(const QString &parent, Item::Emp
QMultiMap<QString, QString>::ConstIterator it = m_setupUiData.setters.constBegin();
while (it != m_setupUiData.setters.constEnd()) {
openIfndef(m_setupUiStream, it.key());
if (!it.key().isEmpty())
m_setupUiStream << language::openQtConfig(it.key());
m_setupUiStream << m_indent << uniqueName << it.value() << endl;
closeIfndef(m_setupUiStream, it.key());
if (!it.key().isEmpty())
m_setupUiStream << language::closeQtConfig(it.key());
++it;
}
for (Item *child : qAsConst(m_children))
@ -2560,14 +2576,17 @@ void WriteInitialization::Item::writeRetranslateUi(const QString &parentPath)
while (it != m_retranslateUiData.setters.constEnd()) {
const QString newDirective = it.key();
if (oldDirective != newDirective) {
closeIfndef(m_retranslateUiStream, oldDirective);
openIfndef(m_retranslateUiStream, newDirective);
if (!oldDirective.isEmpty())
m_retranslateUiStream << language::closeQtConfig(oldDirective);
if (!newDirective.isEmpty())
m_retranslateUiStream << language::openQtConfig(newDirective);
oldDirective = newDirective;
}
m_retranslateUiStream << m_indent << uniqueName << it.value() << endl;
++it;
}
closeIfndef(m_retranslateUiStream, oldDirective);
if (!oldDirective.isEmpty())
m_retranslateUiStream << language::closeQtConfig(oldDirective);
for (int i = 0; i < m_children.size(); i++)
m_children[i]->writeRetranslateUi(uniqueName + QLatin1String("->child(") + QString::number(i) + QLatin1Char(')'));

View File

@ -0,0 +1,53 @@
/****************************************************************************
**
** Copyright (C) 2018 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the tools applications of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:GPL-EXCEPT$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 as published by the Free Software
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/
#include "language.h"
#include <QtCore/qtextstream.h>
namespace language {
QTextStream &operator<<(QTextStream &str, const qtConfig &c)
{
str << "QT_CONFIG(" << c.parameter() << ')';
return str;
}
QTextStream &operator<<(QTextStream &str, const openQtConfig &c)
{
str << "#if " << qtConfig(c.parameter()) << '\n';
return str;
}
QTextStream &operator<<(QTextStream &str, const closeQtConfig &c)
{
str << "#endif // " << qtConfig(c.parameter()) << '\n';
return str;
}
} // namespace language

View File

@ -0,0 +1,76 @@
/****************************************************************************
**
** Copyright (C) 2018 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the tools applications of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:GPL-EXCEPT$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 as published by the Free Software
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/
#ifndef LANGUAGE_H
#define LANGUAGE_H
#include <QtCore/qstringview.h>
QT_FORWARD_DECLARE_CLASS(QTextStream)
namespace language {
// Base class for streamable objects with one QStringView parameter
class StringViewStreamable
{
public:
StringViewStreamable(QStringView parameter) : m_parameter(parameter) {}
QStringView parameter() const { return m_parameter; }
private:
QStringView m_parameter;
};
class qtConfig : public StringViewStreamable
{
public:
qtConfig(QStringView name) : StringViewStreamable(name) {}
};
QTextStream &operator<<(QTextStream &str, const qtConfig &c);
class openQtConfig : public StringViewStreamable
{
public:
openQtConfig(QStringView name) : StringViewStreamable(name) {}
};
QTextStream &operator<<(QTextStream &str, const openQtConfig &c);
class closeQtConfig : public StringViewStreamable
{
public:
closeQtConfig(QStringView name) : StringViewStreamable(name) {}
};
QTextStream &operator<<(QTextStream &, const closeQtConfig &c);
} // namespace language
#endif // LANGUAGE_H

View File

@ -0,0 +1,5 @@
INCLUDEPATH += $$PWD
HEADERS += $$PWD/language.h
SOURCES += $$PWD/language.cpp

View File

@ -5,6 +5,7 @@ option(host_build)
DEFINES += QT_UIC QT_NO_CAST_FROM_ASCII QT_NO_FOREACH
include(uic.pri)
include(shared/shared.pri)
include(cpp/cpp.pri)
HEADERS += uic.h

View File

@ -157,13 +157,13 @@ public:
{
Browser->setWindowTitle(QApplication::translate("Browser", "Qt SQL Browser", nullptr));
insertRowAction->setText(QApplication::translate("Browser", "&Insert Row", nullptr));
#ifndef QT_NO_STATUSTIP
#if QT_CONFIG(statustip)
insertRowAction->setStatusTip(QApplication::translate("Browser", "Inserts a new Row", nullptr));
#endif // QT_NO_STATUSTIP
#endif // QT_CONFIG(statustip)
deleteRowAction->setText(QApplication::translate("Browser", "&Delete Row", nullptr));
#ifndef QT_NO_STATUSTIP
#if QT_CONFIG(statustip)
deleteRowAction->setStatusTip(QApplication::translate("Browser", "Deletes the current Row", nullptr));
#endif // QT_NO_STATUSTIP
#endif // QT_CONFIG(statustip)
groupBox->setTitle(QApplication::translate("Browser", "SQL Query", nullptr));
clearButton->setText(QApplication::translate("Browser", "&Clear", nullptr));
submitButton->setText(QApplication::translate("Browser", "&Submit", nullptr));

View File

@ -125,9 +125,9 @@ public:
statusbar = new QStatusBar(ChatMainWindow);
statusbar->setObjectName(QString::fromUtf8("statusbar"));
ChatMainWindow->setStatusBar(statusbar);
#ifndef QT_NO_SHORTCUT
#if QT_CONFIG(shortcut)
label->setBuddy(messageLineEdit);
#endif // QT_NO_SHORTCUT
#endif // QT_CONFIG(shortcut)
QWidget::setTabOrder(chatHistory, messageLineEdit);
QWidget::setTabOrder(messageLineEdit, sendButton);
@ -149,24 +149,24 @@ public:
{
ChatMainWindow->setWindowTitle(QApplication::translate("ChatMainWindow", "Qt D-Bus Chat", nullptr));
actionQuit->setText(QApplication::translate("ChatMainWindow", "Quit", nullptr));
#ifndef QT_NO_SHORTCUT
#if QT_CONFIG(shortcut)
actionQuit->setShortcut(QApplication::translate("ChatMainWindow", "Ctrl+Q", nullptr));
#endif // QT_NO_SHORTCUT
#endif // QT_CONFIG(shortcut)
actionAboutQt->setText(QApplication::translate("ChatMainWindow", "About Qt...", nullptr));
actionChangeNickname->setText(QApplication::translate("ChatMainWindow", "Change nickname...", nullptr));
#ifndef QT_NO_SHORTCUT
#if QT_CONFIG(shortcut)
actionChangeNickname->setShortcut(QApplication::translate("ChatMainWindow", "Ctrl+N", nullptr));
#endif // QT_NO_SHORTCUT
#ifndef QT_NO_TOOLTIP
#endif // QT_CONFIG(shortcut)
#if QT_CONFIG(tooltip)
chatHistory->setToolTip(QApplication::translate("ChatMainWindow", "Messages sent and received from other users", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
label->setText(QApplication::translate("ChatMainWindow", "Message:", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
sendButton->setToolTip(QApplication::translate("ChatMainWindow", "Sends a message to other people", nullptr));
#endif // QT_NO_TOOLTIP
#ifndef QT_NO_WHATSTHIS
#endif // QT_CONFIG(tooltip)
#if QT_CONFIG(whatsthis)
sendButton->setWhatsThis(QString());
#endif // QT_NO_WHATSTHIS
#endif // QT_CONFIG(whatsthis)
sendButton->setText(QApplication::translate("ChatMainWindow", "Send", nullptr));
menuQuit->setTitle(QApplication::translate("ChatMainWindow", "Help", nullptr));
menuFile->setTitle(QApplication::translate("ChatMainWindow", "File", nullptr));

View File

@ -192,13 +192,13 @@ public:
statusbar = new QStatusBar(MainWindow);
statusbar->setObjectName(QString::fromUtf8("statusbar"));
MainWindow->setStatusBar(statusbar);
#ifndef QT_NO_SHORTCUT
#if QT_CONFIG(shortcut)
nameLabel->setBuddy(nameCombo);
ageLabel->setBuddy(ageSpinBox);
passwordLabel->setBuddy(passwordEdit);
label->setBuddy(professionList);
countryLabel->setBuddy(professionList);
#endif // QT_NO_SHORTCUT
#endif // QT_CONFIG(shortcut)
QWidget::setTabOrder(maleRadioButton, femaleRadioButton);
QWidget::setTabOrder(femaleRadioButton, ageSpinBox);
QWidget::setTabOrder(ageSpinBox, passwordEdit);
@ -237,36 +237,36 @@ public:
nameCombo->setItemText(2, QApplication::translate("MainWindow", "Simon", nullptr));
nameCombo->setItemText(3, QApplication::translate("MainWindow", "Zack", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
nameCombo->setToolTip(QApplication::translate("MainWindow", "Specify your name", nullptr));
#endif // QT_NO_TOOLTIP
#ifndef QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
#if QT_CONFIG(tooltip)
femaleRadioButton->setToolTip(QApplication::translate("MainWindow", "Check this if you are female", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
femaleRadioButton->setText(QApplication::translate("MainWindow", "&Female", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
agreeCheckBox->setToolTip(QApplication::translate("MainWindow", "Please read the license before checking this", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
agreeCheckBox->setText(QApplication::translate("MainWindow", "I &accept the terms and conditions", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
maleRadioButton->setToolTip(QApplication::translate("MainWindow", "Check this if you are male", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
maleRadioButton->setText(QApplication::translate("MainWindow", "&Male", nullptr));
genderLabel->setText(QApplication::translate("MainWindow", "Gender:", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
ageSpinBox->setToolTip(QApplication::translate("MainWindow", "Specify your age", nullptr));
#endif // QT_NO_TOOLTIP
#ifndef QT_NO_STATUSTIP
#endif // QT_CONFIG(tooltip)
#if QT_CONFIG(statustip)
ageSpinBox->setStatusTip(QApplication::translate("MainWindow", "Specify your age here", nullptr));
#endif // QT_NO_STATUSTIP
#endif // QT_CONFIG(statustip)
ageLabel->setText(QApplication::translate("MainWindow", "&Age:", nullptr));
passwordLabel->setText(QApplication::translate("MainWindow", "&Password:", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
passwordEdit->setToolTip(QApplication::translate("MainWindow", "Specify your password", nullptr));
#endif // QT_NO_TOOLTIP
#ifndef QT_NO_STATUSTIP
#endif // QT_CONFIG(tooltip)
#if QT_CONFIG(statustip)
passwordEdit->setStatusTip(QApplication::translate("MainWindow", "Specify your password here", nullptr));
#endif // QT_NO_STATUSTIP
#endif // QT_CONFIG(statustip)
passwordEdit->setText(QApplication::translate("MainWindow", "Password", nullptr));
label->setText(QApplication::translate("MainWindow", "Profession", nullptr));
countryLabel->setText(QApplication::translate("MainWindow", "&Country", nullptr));
@ -281,27 +281,27 @@ public:
___qlistwidgetitem2->setText(QApplication::translate("MainWindow", "Fisherman", nullptr));
professionList->setSortingEnabled(__sortingEnabled);
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
professionList->setToolTip(QApplication::translate("MainWindow", "Select your profession", nullptr));
#endif // QT_NO_TOOLTIP
#ifndef QT_NO_STATUSTIP
#endif // QT_CONFIG(tooltip)
#if QT_CONFIG(statustip)
professionList->setStatusTip(QApplication::translate("MainWindow", "Select your profession", nullptr));
#endif // QT_NO_STATUSTIP
#ifndef QT_NO_WHATSTHIS
#endif // QT_CONFIG(statustip)
#if QT_CONFIG(whatsthis)
professionList->setWhatsThis(QApplication::translate("MainWindow", "Select your profession", nullptr));
#endif // QT_NO_WHATSTHIS
#endif // QT_CONFIG(whatsthis)
countryCombo->setItemText(0, QApplication::translate("MainWindow", "Germany", nullptr));
countryCombo->setItemText(1, QApplication::translate("MainWindow", "India", nullptr));
countryCombo->setItemText(2, QApplication::translate("MainWindow", "Norway", nullptr));
countryCombo->setItemText(3, QApplication::translate("MainWindow", "United States Of America", nullptr));
countryCombo->setItemText(4, QApplication::translate("MainWindow", "United Kingdom", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
countryCombo->setToolTip(QApplication::translate("MainWindow", "Specify your country", nullptr));
#endif // QT_NO_TOOLTIP
#ifndef QT_NO_STATUSTIP
#endif // QT_CONFIG(tooltip)
#if QT_CONFIG(statustip)
countryCombo->setStatusTip(QApplication::translate("MainWindow", "Specify your country here", nullptr));
#endif // QT_NO_STATUSTIP
#endif // QT_CONFIG(statustip)
menu_File->setTitle(QApplication::translate("MainWindow", "&File", nullptr));
menu_Help->setTitle(QApplication::translate("MainWindow", "&Help", nullptr));
} // retranslateUi

View File

@ -83,12 +83,12 @@ public:
formLayout->setWidget(3, QFormLayout::FieldRole, spacing);
#ifndef QT_NO_SHORTCUT
#if QT_CONFIG(shortcut)
label->setBuddy(layoutDirection);
label_2->setBuddy(fontComboBox);
label_3->setBuddy(style);
label_4->setBuddy(spacing);
#endif // QT_NO_SHORTCUT
#endif // QT_CONFIG(shortcut)
retranslateUi(embeddedDialog);

View File

@ -172,9 +172,9 @@ public:
hboxLayout->addLayout(vboxLayout1);
#ifndef QT_NO_SHORTCUT
#if QT_CONFIG(shortcut)
findWhat->setBuddy(led);
#endif // QT_NO_SHORTCUT
#endif // QT_CONFIG(shortcut)
QWidget::setTabOrder(led, findNxt);
QWidget::setTabOrder(findNxt, cancel);
QWidget::setTabOrder(cancel, comments);
@ -194,38 +194,38 @@ public:
void retranslateUi(QDialog *FindDialog)
{
FindDialog->setWindowTitle(QApplication::translate("FindDialog", "Find", nullptr));
#ifndef QT_NO_WHATSTHIS
#if QT_CONFIG(whatsthis)
FindDialog->setWhatsThis(QApplication::translate("FindDialog", "This window allows you to search for some text in the translation source file.", nullptr));
#endif // QT_NO_WHATSTHIS
#endif // QT_CONFIG(whatsthis)
findWhat->setText(QApplication::translate("FindDialog", "&Find what:", nullptr));
#ifndef QT_NO_WHATSTHIS
#if QT_CONFIG(whatsthis)
led->setWhatsThis(QApplication::translate("FindDialog", "Type in the text to search for.", nullptr));
#endif // QT_NO_WHATSTHIS
#endif // QT_CONFIG(whatsthis)
groupBox->setTitle(QApplication::translate("FindDialog", "Options", nullptr));
#ifndef QT_NO_WHATSTHIS
#if QT_CONFIG(whatsthis)
sourceText->setWhatsThis(QApplication::translate("FindDialog", "Source texts are searched when checked.", nullptr));
#endif // QT_NO_WHATSTHIS
#endif // QT_CONFIG(whatsthis)
sourceText->setText(QApplication::translate("FindDialog", "&Source texts", nullptr));
#ifndef QT_NO_WHATSTHIS
#if QT_CONFIG(whatsthis)
translations->setWhatsThis(QApplication::translate("FindDialog", "Translations are searched when checked.", nullptr));
#endif // QT_NO_WHATSTHIS
#endif // QT_CONFIG(whatsthis)
translations->setText(QApplication::translate("FindDialog", "&Translations", nullptr));
#ifndef QT_NO_WHATSTHIS
#if QT_CONFIG(whatsthis)
matchCase->setWhatsThis(QApplication::translate("FindDialog", "Texts such as 'TeX' and 'tex' are considered as different when checked.", nullptr));
#endif // QT_NO_WHATSTHIS
#endif // QT_CONFIG(whatsthis)
matchCase->setText(QApplication::translate("FindDialog", "&Match case", nullptr));
#ifndef QT_NO_WHATSTHIS
#if QT_CONFIG(whatsthis)
comments->setWhatsThis(QApplication::translate("FindDialog", "Comments and contexts are searched when checked.", nullptr));
#endif // QT_NO_WHATSTHIS
#endif // QT_CONFIG(whatsthis)
comments->setText(QApplication::translate("FindDialog", "&Comments", nullptr));
ignoreAccelerators->setText(QApplication::translate("FindDialog", "Ignore &accelerators", nullptr));
#ifndef QT_NO_WHATSTHIS
#if QT_CONFIG(whatsthis)
findNxt->setWhatsThis(QApplication::translate("FindDialog", "Click here to find the next occurrence of the text you typed in.", nullptr));
#endif // QT_NO_WHATSTHIS
#endif // QT_CONFIG(whatsthis)
findNxt->setText(QApplication::translate("FindDialog", "Find Next", nullptr));
#ifndef QT_NO_WHATSTHIS
#if QT_CONFIG(whatsthis)
cancel->setWhatsThis(QApplication::translate("FindDialog", "Click here to close this window.", nullptr));
#endif // QT_NO_WHATSTHIS
#endif // QT_CONFIG(whatsthis)
cancel->setText(QApplication::translate("FindDialog", "Cancel", nullptr));
} // retranslateUi

View File

@ -250,12 +250,12 @@ public:
gridLayout->addWidget(gridPanel, 1, 0, 1, 2);
#ifndef QT_NO_SHORTCUT
#if QT_CONFIG(shortcut)
label_2->setBuddy(defaultSpacingSpinBox);
label->setBuddy(defaultMarginSpinBox);
label_3->setBuddy(marginFunctionLineEdit);
label_3_2->setBuddy(spacingFunctionLineEdit);
#endif // QT_NO_SHORTCUT
#endif // QT_CONFIG(shortcut)
QWidget::setTabOrder(authorLineEdit, defaultMarginSpinBox);
QWidget::setTabOrder(defaultMarginSpinBox, defaultSpacingSpinBox);
QWidget::setTabOrder(defaultSpacingSpinBox, marginFunctionLineEdit);

View File

@ -120,10 +120,10 @@ public:
vboxLayout->addWidget(m_gridGroupBox);
#ifndef QT_NO_SHORTCUT
#if QT_CONFIG(shortcut)
label->setBuddy(m_deltaXSpinBox);
label_2->setBuddy(m_deltaYSpinBox);
#endif // QT_NO_SHORTCUT
#endif // QT_CONFIG(shortcut)
retranslateUi(qdesigner_internal__GridPanel);

View File

@ -273,11 +273,11 @@ public:
vboxLayout->addWidget(framePrepare);
#ifndef QT_NO_SHORTCUT
#if QT_CONFIG(shortcut)
TextLabel1->setBuddy(editIndex);
TextLabel1_2->setBuddy(termsEdit);
TextLabel2->setBuddy(resultBox);
#endif // QT_NO_SHORTCUT
#endif // QT_CONFIG(shortcut)
QWidget::setTabOrder(tabWidget, listContents);
QWidget::setTabOrder(listContents, editIndex);
QWidget::setTabOrder(editIndex, listIndex);
@ -297,73 +297,73 @@ public:
void retranslateUi(QWidget *HelpDialog)
{
HelpDialog->setWindowTitle(QApplication::translate("HelpDialog", "Help", nullptr));
#ifndef QT_NO_WHATSTHIS
#if QT_CONFIG(whatsthis)
HelpDialog->setWhatsThis(QApplication::translate("HelpDialog", "<b>Help</b><p>Choose the topic you want help on from the contents list, or search the index for keywords.</p>", nullptr));
#endif // QT_NO_WHATSTHIS
#ifndef QT_NO_WHATSTHIS
#endif // QT_CONFIG(whatsthis)
#if QT_CONFIG(whatsthis)
tabWidget->setWhatsThis(QApplication::translate("HelpDialog", "Displays help topics organized by category, index or bookmarks. Another tab inherits the full text search.", nullptr));
#endif // QT_NO_WHATSTHIS
#endif // QT_CONFIG(whatsthis)
QTreeWidgetItem *___qtreewidgetitem = listContents->headerItem();
___qtreewidgetitem->setText(0, QApplication::translate("HelpDialog", "column 1", nullptr));
#ifndef QT_NO_WHATSTHIS
#if QT_CONFIG(whatsthis)
listContents->setWhatsThis(QApplication::translate("HelpDialog", "<b>Help topics organized by category.</b><p>Double-click an item to see the topics in that category. To view a topic, just double-click it.</p>", nullptr));
#endif // QT_NO_WHATSTHIS
#endif // QT_CONFIG(whatsthis)
tabWidget->setTabText(tabWidget->indexOf(contentPage), QApplication::translate("HelpDialog", "Con&tents", nullptr));
TextLabel1->setText(QApplication::translate("HelpDialog", "&Look For:", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
editIndex->setToolTip(QApplication::translate("HelpDialog", "Enter keyword", nullptr));
#endif // QT_NO_TOOLTIP
#ifndef QT_NO_WHATSTHIS
#endif // QT_CONFIG(tooltip)
#if QT_CONFIG(whatsthis)
editIndex->setWhatsThis(QApplication::translate("HelpDialog", "<b>Enter a keyword.</b><p>The list will select an item that matches the entered string best.</p>", nullptr));
#endif // QT_NO_WHATSTHIS
#ifndef QT_NO_WHATSTHIS
#endif // QT_CONFIG(whatsthis)
#if QT_CONFIG(whatsthis)
listIndex->setWhatsThis(QApplication::translate("HelpDialog", "<b>List of available help topics.</b><p>Double-click on an item to open its help page. If more than one is found, you must specify which page you want.</p>", nullptr));
#endif // QT_NO_WHATSTHIS
#endif // QT_CONFIG(whatsthis)
tabWidget->setTabText(tabWidget->indexOf(indexPage), QApplication::translate("HelpDialog", "&Index", nullptr));
QTreeWidgetItem *___qtreewidgetitem1 = listBookmarks->headerItem();
___qtreewidgetitem1->setText(0, QApplication::translate("HelpDialog", "column 1", nullptr));
#ifndef QT_NO_WHATSTHIS
#if QT_CONFIG(whatsthis)
listBookmarks->setWhatsThis(QApplication::translate("HelpDialog", "Displays the list of bookmarks.", nullptr));
#endif // QT_NO_WHATSTHIS
#ifndef QT_NO_TOOLTIP
#endif // QT_CONFIG(whatsthis)
#if QT_CONFIG(tooltip)
buttonAdd->setToolTip(QApplication::translate("HelpDialog", "Add new bookmark", nullptr));
#endif // QT_NO_TOOLTIP
#ifndef QT_NO_WHATSTHIS
#endif // QT_CONFIG(tooltip)
#if QT_CONFIG(whatsthis)
buttonAdd->setWhatsThis(QApplication::translate("HelpDialog", "Add the currently displayed page as a new bookmark.", nullptr));
#endif // QT_NO_WHATSTHIS
#endif // QT_CONFIG(whatsthis)
buttonAdd->setText(QApplication::translate("HelpDialog", "&New", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
buttonRemove->setToolTip(QApplication::translate("HelpDialog", "Delete bookmark", nullptr));
#endif // QT_NO_TOOLTIP
#ifndef QT_NO_WHATSTHIS
#endif // QT_CONFIG(tooltip)
#if QT_CONFIG(whatsthis)
buttonRemove->setWhatsThis(QApplication::translate("HelpDialog", "Delete the selected bookmark.", nullptr));
#endif // QT_NO_WHATSTHIS
#endif // QT_CONFIG(whatsthis)
buttonRemove->setText(QApplication::translate("HelpDialog", "&Delete", nullptr));
tabWidget->setTabText(tabWidget->indexOf(bookmarkPage), QApplication::translate("HelpDialog", "&Bookmarks", nullptr));
TextLabel1_2->setText(QApplication::translate("HelpDialog", "Searching f&or:", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
termsEdit->setToolTip(QApplication::translate("HelpDialog", "Enter searchword(s).", nullptr));
#endif // QT_NO_TOOLTIP
#ifndef QT_NO_WHATSTHIS
#endif // QT_CONFIG(tooltip)
#if QT_CONFIG(whatsthis)
termsEdit->setWhatsThis(QApplication::translate("HelpDialog", "<b>Enter search word(s).</b><p>Enter here the word(s) you are looking for. The words may contain wildcards (*). For a sequence of words quote them.</p>", nullptr));
#endif // QT_NO_WHATSTHIS
#ifndef QT_NO_WHATSTHIS
#endif // QT_CONFIG(whatsthis)
#if QT_CONFIG(whatsthis)
resultBox->setWhatsThis(QApplication::translate("HelpDialog", "<b>Found documents</b><p>This list contains all found documents from the last search. The documents are ordered, i.e. the first document has the most matches.</p>", nullptr));
#endif // QT_NO_WHATSTHIS
#endif // QT_CONFIG(whatsthis)
TextLabel2->setText(QApplication::translate("HelpDialog", "Found &Documents:", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
helpButton->setToolTip(QApplication::translate("HelpDialog", "Display the help page.", nullptr));
#endif // QT_NO_TOOLTIP
#ifndef QT_NO_WHATSTHIS
#endif // QT_CONFIG(tooltip)
#if QT_CONFIG(whatsthis)
helpButton->setWhatsThis(QApplication::translate("HelpDialog", "Display the help page for the full text search.", nullptr));
#endif // QT_NO_WHATSTHIS
#endif // QT_CONFIG(whatsthis)
helpButton->setText(QApplication::translate("HelpDialog", "He&lp", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
searchButton->setToolTip(QApplication::translate("HelpDialog", "Start searching.", nullptr));
#endif // QT_NO_TOOLTIP
#ifndef QT_NO_WHATSTHIS
#endif // QT_CONFIG(tooltip)
#if QT_CONFIG(whatsthis)
searchButton->setWhatsThis(QApplication::translate("HelpDialog", "Pressing this button starts the search.", nullptr));
#endif // QT_NO_WHATSTHIS
#endif // QT_CONFIG(whatsthis)
searchButton->setText(QApplication::translate("HelpDialog", "&Search", nullptr));
tabWidget->setTabText(tabWidget->indexOf(searchPage), QApplication::translate("HelpDialog", "&Search", nullptr));
labelPrepare->setText(QApplication::translate("HelpDialog", "Preparing...", nullptr));

View File

@ -44,15 +44,15 @@ public:
void retranslateUi(QWidget *Form)
{
Form->setWindowTitle(qtTrId("windowTitleId"));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
pushButton->setToolTip(qtTrId("buttonToolTipId"));
#endif // QT_NO_TOOLTIP
#ifndef QT_NO_STATUSTIP
#endif // QT_CONFIG(tooltip)
#if QT_CONFIG(statustip)
pushButton->setStatusTip(qtTrId("buttonStatusTipId"));
#endif // QT_NO_STATUSTIP
#ifndef QT_NO_WHATSTHIS
#endif // QT_CONFIG(statustip)
#if QT_CONFIG(whatsthis)
pushButton->setWhatsThis(qtTrId("buttonWhatsThisId"));
#endif // QT_NO_WHATSTHIS
#endif // QT_CONFIG(whatsthis)
pushButton->setText(qtTrId("buttonTextId"));
} // retranslateUi

View File

@ -112,33 +112,33 @@ public:
QTreeWidgetItem *___qtreewidgetitem = languagesList->headerItem();
___qtreewidgetitem->setText(1, QApplication::translate("LanguagesDialog", "File", nullptr));
___qtreewidgetitem->setText(0, QApplication::translate("LanguagesDialog", "Locale", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
upButton->setToolTip(QApplication::translate("LanguagesDialog", "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;\">\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">Move selected language up</p></body></html>", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
upButton->setText(QApplication::translate("LanguagesDialog", "up", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
downButton->setToolTip(QApplication::translate("LanguagesDialog", "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;\">\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;\">Move selected language down</p></body></html>", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
downButton->setText(QApplication::translate("LanguagesDialog", "down", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
removeButton->setToolTip(QApplication::translate("LanguagesDialog", "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;\">\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">Remove selected language</p></body></html>", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
removeButton->setText(QApplication::translate("LanguagesDialog", "remove", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
openFileButton->setToolTip(QApplication::translate("LanguagesDialog", "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;\">\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">Open auxiliary language files</p></body></html>", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
openFileButton->setText(QApplication::translate("LanguagesDialog", "...", nullptr));
okButton->setText(QApplication::translate("LanguagesDialog", "OK", nullptr));
} // retranslateUi

View File

@ -174,24 +174,24 @@ public:
{
qdesigner_internal__ListWidgetEditor->setWindowTitle(QApplication::translate("qdesigner_internal::ListWidgetEditor", "Dialog", nullptr));
groupBox->setTitle(QApplication::translate("qdesigner_internal::ListWidgetEditor", "Items List", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
listWidget->setToolTip(QApplication::translate("qdesigner_internal::ListWidgetEditor", "Items List", nullptr));
#endif // QT_NO_TOOLTIP
#ifndef QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
#if QT_CONFIG(tooltip)
newItemButton->setToolTip(QApplication::translate("qdesigner_internal::ListWidgetEditor", "New Item", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
newItemButton->setText(QApplication::translate("qdesigner_internal::ListWidgetEditor", "&New", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
deleteItemButton->setToolTip(QApplication::translate("qdesigner_internal::ListWidgetEditor", "Delete Item", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
deleteItemButton->setText(QApplication::translate("qdesigner_internal::ListWidgetEditor", "&Delete", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
moveItemUpButton->setToolTip(QApplication::translate("qdesigner_internal::ListWidgetEditor", "Move Item Up", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
moveItemUpButton->setText(QApplication::translate("qdesigner_internal::ListWidgetEditor", "U", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
moveItemDownButton->setToolTip(QApplication::translate("qdesigner_internal::ListWidgetEditor", "Move Item Down", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
moveItemDownButton->setText(QApplication::translate("qdesigner_internal::ListWidgetEditor", "D", nullptr));
label->setText(QApplication::translate("qdesigner_internal::ListWidgetEditor", "Icon", nullptr));
} // retranslateUi

View File

@ -59,9 +59,9 @@ public:
MyDialog->setWindowTitle(QApplication::translate("MyDialog", "Mach 2!", nullptr));
aLabel->setText(QApplication::translate("MyDialog", "Join the life in the fastlane; - PCH enable your project today! -", nullptr));
aButton->setText(QApplication::translate("MyDialog", "&Quit", nullptr));
#ifndef QT_NO_SHORTCUT
#if QT_CONFIG(shortcut)
aButton->setShortcut(QApplication::translate("MyDialog", "Alt+Q", nullptr));
#endif // QT_NO_SHORTCUT
#endif // QT_CONFIG(shortcut)
} // retranslateUi
};

View File

@ -143,11 +143,11 @@ public:
verticalLayout->addWidget(buttonBox);
#ifndef QT_NO_SHORTCUT
#if QT_CONFIG(shortcut)
label->setBuddy(editActionText);
label_3->setBuddy(editObjectName);
label_2->setBuddy(iconSelector);
#endif // QT_NO_SHORTCUT
#endif // QT_CONFIG(shortcut)
QWidget::setTabOrder(editActionText, editObjectName);
retranslateUi(qdesigner_internal__NewActionDialog);

View File

@ -132,12 +132,12 @@ public:
{
qdesigner_internal__OrderDialog->setWindowTitle(QApplication::translate("qdesigner_internal::OrderDialog", "Change Page Order", nullptr));
groupBox->setTitle(QApplication::translate("qdesigner_internal::OrderDialog", "Page Order", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
upButton->setToolTip(QApplication::translate("qdesigner_internal::OrderDialog", "Move page up", nullptr));
#endif // QT_NO_TOOLTIP
#ifndef QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
#if QT_CONFIG(tooltip)
downButton->setToolTip(QApplication::translate("qdesigner_internal::OrderDialog", "Move page down", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
} // retranslateUi
};

View File

@ -213,13 +213,13 @@ public:
statusbar = new QStatusBar(MainWindow);
statusbar->setObjectName(QString::fromUtf8("statusbar"));
MainWindow->setStatusBar(statusbar);
#ifndef QT_NO_SHORTCUT
#if QT_CONFIG(shortcut)
ageLabel->setBuddy(ageSpinBox);
nameLabel->setBuddy(nameCombo);
passwordLabel->setBuddy(passwordEdit);
label->setBuddy(professionList);
countryLabel->setBuddy(professionList);
#endif // QT_NO_SHORTCUT
#endif // QT_CONFIG(shortcut)
menubar->addAction(menu_File->menuAction());
menubar->addAction(menu_Help->menuAction());
@ -252,35 +252,35 @@ public:
nameCombo->setItemText(2, QApplication::translate("MainWindow", "Simon", nullptr));
nameCombo->setItemText(3, QApplication::translate("MainWindow", "Zack", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
nameCombo->setToolTip(QApplication::translate("MainWindow", "Specify your name", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
femaleRadioButton->setStyleSheet(QApplication::translate("MainWindow", "Check this if you are female", nullptr));
femaleRadioButton->setText(QApplication::translate("MainWindow", "&Female", nullptr));
genderLabel->setText(QApplication::translate("MainWindow", "Gender:", nullptr));
ageLabel->setText(QApplication::translate("MainWindow", "&Age:", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
maleRadioButton->setToolTip(QApplication::translate("MainWindow", "Check this if you are male", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
maleRadioButton->setText(QApplication::translate("MainWindow", "&Male", nullptr));
nameLabel->setText(QApplication::translate("MainWindow", "&Name:", nullptr));
passwordLabel->setText(QApplication::translate("MainWindow", "&Password:", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
ageSpinBox->setToolTip(QApplication::translate("MainWindow", "Specify your age", nullptr));
#endif // QT_NO_TOOLTIP
#ifndef QT_NO_STATUSTIP
#endif // QT_CONFIG(tooltip)
#if QT_CONFIG(statustip)
ageSpinBox->setStatusTip(QApplication::translate("MainWindow", "Specify your age", nullptr));
#endif // QT_NO_STATUSTIP
#ifndef QT_NO_TOOLTIP
#endif // QT_CONFIG(statustip)
#if QT_CONFIG(tooltip)
agreeCheckBox->setToolTip(QApplication::translate("MainWindow", "Please read the LICENSE file before checking", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
agreeCheckBox->setText(QApplication::translate("MainWindow", "I &accept the terms and &conditions", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
passwordEdit->setToolTip(QApplication::translate("MainWindow", "Specify your password", nullptr));
#endif // QT_NO_TOOLTIP
#ifndef QT_NO_STATUSTIP
#endif // QT_CONFIG(tooltip)
#if QT_CONFIG(statustip)
passwordEdit->setStatusTip(QApplication::translate("MainWindow", "Specify your password", nullptr));
#endif // QT_NO_STATUSTIP
#endif // QT_CONFIG(statustip)
passwordEdit->setText(QApplication::translate("MainWindow", "Password", nullptr));
const bool __sortingEnabled = professionList->isSortingEnabled();
@ -293,15 +293,15 @@ public:
___qlistwidgetitem2->setText(QApplication::translate("MainWindow", "Fisherman", nullptr));
professionList->setSortingEnabled(__sortingEnabled);
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
professionList->setToolTip(QApplication::translate("MainWindow", "Select your profession", nullptr));
#endif // QT_NO_TOOLTIP
#ifndef QT_NO_STATUSTIP
#endif // QT_CONFIG(tooltip)
#if QT_CONFIG(statustip)
professionList->setStatusTip(QApplication::translate("MainWindow", "Specify your name here", nullptr));
#endif // QT_NO_STATUSTIP
#ifndef QT_NO_WHATSTHIS
#endif // QT_CONFIG(statustip)
#if QT_CONFIG(whatsthis)
professionList->setWhatsThis(QApplication::translate("MainWindow", "Specify your name here", nullptr));
#endif // QT_NO_WHATSTHIS
#endif // QT_CONFIG(whatsthis)
label->setText(QApplication::translate("MainWindow", "Profession:", nullptr));
countryCombo->setItemText(0, QApplication::translate("MainWindow", "Egypt", nullptr));
countryCombo->setItemText(1, QApplication::translate("MainWindow", "France", nullptr));
@ -311,12 +311,12 @@ public:
countryCombo->setItemText(5, QApplication::translate("MainWindow", "Korea", nullptr));
countryCombo->setItemText(6, QApplication::translate("MainWindow", "Norway", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
countryCombo->setToolTip(QApplication::translate("MainWindow", "Specify country of origin", nullptr));
#endif // QT_NO_TOOLTIP
#ifndef QT_NO_STATUSTIP
#endif // QT_CONFIG(tooltip)
#if QT_CONFIG(statustip)
countryCombo->setStatusTip(QApplication::translate("MainWindow", "Specify country of origin", nullptr));
#endif // QT_NO_STATUSTIP
#endif // QT_CONFIG(statustip)
countryLabel->setText(QApplication::translate("MainWindow", "Pro&fession", nullptr));
menu_File->setTitle(QApplication::translate("MainWindow", "&File", nullptr));
menu_Help->setTitle(QApplication::translate("MainWindow", "&Help", nullptr));

View File

@ -165,11 +165,11 @@ public:
unnamed->addLayout(buttonLayout);
#ifndef QT_NO_SHORTCUT
#if QT_CONFIG(shortcut)
target->setBuddy(targetLed);
source->setBuddy(sourceLed);
definition->setBuddy(definitionLed);
#endif // QT_NO_SHORTCUT
#endif // QT_CONFIG(shortcut)
QWidget::setTabOrder(sourceLed, targetLed);
QWidget::setTabOrder(targetLed, definitionLed);
QWidget::setTabOrder(definitionLed, newBut);
@ -185,36 +185,36 @@ public:
void retranslateUi(QDialog *PhraseBookBox)
{
PhraseBookBox->setWindowTitle(QApplication::translate("PhraseBookBox", "Edit Phrase Book", nullptr));
#ifndef QT_NO_WHATSTHIS
#if QT_CONFIG(whatsthis)
PhraseBookBox->setWhatsThis(QApplication::translate("PhraseBookBox", "This window allows you to add, modify, or delete phrases in a phrase book.", nullptr));
#endif // QT_NO_WHATSTHIS
#endif // QT_CONFIG(whatsthis)
target->setText(QApplication::translate("PhraseBookBox", "&Translation:", nullptr));
#ifndef QT_NO_WHATSTHIS
#if QT_CONFIG(whatsthis)
targetLed->setWhatsThis(QApplication::translate("PhraseBookBox", "This is the phrase in the target language corresponding to the source phrase.", nullptr));
#endif // QT_NO_WHATSTHIS
#endif // QT_CONFIG(whatsthis)
source->setText(QApplication::translate("PhraseBookBox", "S&ource phrase:", nullptr));
#ifndef QT_NO_WHATSTHIS
#if QT_CONFIG(whatsthis)
definitionLed->setWhatsThis(QApplication::translate("PhraseBookBox", "This is a definition for the source phrase.", nullptr));
#endif // QT_NO_WHATSTHIS
#ifndef QT_NO_WHATSTHIS
#endif // QT_CONFIG(whatsthis)
#if QT_CONFIG(whatsthis)
sourceLed->setWhatsThis(QApplication::translate("PhraseBookBox", "This is the phrase in the source language.", nullptr));
#endif // QT_NO_WHATSTHIS
#endif // QT_CONFIG(whatsthis)
definition->setText(QApplication::translate("PhraseBookBox", "&Definition:", nullptr));
#ifndef QT_NO_WHATSTHIS
#if QT_CONFIG(whatsthis)
newBut->setWhatsThis(QApplication::translate("PhraseBookBox", "Click here to add the phrase to the phrase book.", nullptr));
#endif // QT_NO_WHATSTHIS
#endif // QT_CONFIG(whatsthis)
newBut->setText(QApplication::translate("PhraseBookBox", "&New Phrase", nullptr));
#ifndef QT_NO_WHATSTHIS
#if QT_CONFIG(whatsthis)
removeBut->setWhatsThis(QApplication::translate("PhraseBookBox", "Click here to remove the phrase from the phrase book.", nullptr));
#endif // QT_NO_WHATSTHIS
#endif // QT_CONFIG(whatsthis)
removeBut->setText(QApplication::translate("PhraseBookBox", "&Remove Phrase", nullptr));
#ifndef QT_NO_WHATSTHIS
#if QT_CONFIG(whatsthis)
saveBut->setWhatsThis(QApplication::translate("PhraseBookBox", "Click here to save the changes made.", nullptr));
#endif // QT_NO_WHATSTHIS
#endif // QT_CONFIG(whatsthis)
saveBut->setText(QApplication::translate("PhraseBookBox", "&Save", nullptr));
#ifndef QT_NO_WHATSTHIS
#if QT_CONFIG(whatsthis)
closeBut->setWhatsThis(QApplication::translate("PhraseBookBox", "Click here to close this window.", nullptr));
#endif // QT_NO_WHATSTHIS
#endif // QT_CONFIG(whatsthis)
closeBut->setText(QApplication::translate("PhraseBookBox", "Close", nullptr));
} // retranslateUi

View File

@ -156,10 +156,10 @@ public:
vboxLayout->addLayout(hboxLayout2);
#ifndef QT_NO_SHORTCUT
#if QT_CONFIG(shortcut)
label->setBuddy(paperSizeCombo);
label_2->setBuddy(paperOrientationCombo);
#endif // QT_NO_SHORTCUT
#endif // QT_CONFIG(shortcut)
retranslateUi(PreviewDialogBase);
QObject::connect(buttonBox, SIGNAL(accepted()), PreviewDialogBase, SLOT(accept()));

View File

@ -272,24 +272,24 @@ public:
void retranslateUi(QDialog *QFileDialog)
{
lookInLabel->setText(QApplication::translate("QFileDialog", "Look in:", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
backButton->setToolTip(QApplication::translate("QFileDialog", "Back", nullptr));
#endif // QT_NO_TOOLTIP
#ifndef QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
#if QT_CONFIG(tooltip)
forwardButton->setToolTip(QApplication::translate("QFileDialog", "Forward", nullptr));
#endif // QT_NO_TOOLTIP
#ifndef QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
#if QT_CONFIG(tooltip)
toParentButton->setToolTip(QApplication::translate("QFileDialog", "Parent Directory", nullptr));
#endif // QT_NO_TOOLTIP
#ifndef QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
#if QT_CONFIG(tooltip)
newFolderButton->setToolTip(QApplication::translate("QFileDialog", "Create New Folder", nullptr));
#endif // QT_NO_TOOLTIP
#ifndef QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
#if QT_CONFIG(tooltip)
listModeButton->setToolTip(QApplication::translate("QFileDialog", "List View", nullptr));
#endif // QT_NO_TOOLTIP
#ifndef QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
#if QT_CONFIG(tooltip)
detailModeButton->setToolTip(QApplication::translate("QFileDialog", "Detail View", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
fileTypeLabel->setText(QApplication::translate("QFileDialog", "Files of type:", nullptr));
Q_UNUSED(QFileDialog);
} // retranslateUi

View File

@ -290,12 +290,12 @@ public:
gridLayout_3->addItem(verticalSpacer, 6, 0, 1, 1);
#ifndef QT_NO_SHORTCUT
#if QT_CONFIG(shortcut)
pageSizeLabel->setBuddy(pageSizeCombo);
widthLabel->setBuddy(pageWidth);
heightLabel->setBuddy(pageHeight);
paperSourceLabel->setBuddy(paperSource);
#endif // QT_NO_SHORTCUT
#endif // QT_CONFIG(shortcut)
retranslateUi(QPageSetupWidget);
@ -316,30 +316,30 @@ public:
reverseLandscape->setText(QApplication::translate("QPageSetupWidget", "Reverse landscape", nullptr));
reversePortrait->setText(QApplication::translate("QPageSetupWidget", "Reverse portrait", nullptr));
groupBox->setTitle(QApplication::translate("QPageSetupWidget", "Margins", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
topMargin->setToolTip(QApplication::translate("QPageSetupWidget", "top margin", nullptr));
#endif // QT_NO_TOOLTIP
#ifndef QT_NO_ACCESSIBILITY
#endif // QT_CONFIG(tooltip)
#if QT_CONFIG(accessibility)
topMargin->setAccessibleName(QApplication::translate("QPageSetupWidget", "top margin", nullptr));
#endif // QT_NO_ACCESSIBILITY
#ifndef QT_NO_TOOLTIP
#endif // QT_CONFIG(accessibility)
#if QT_CONFIG(tooltip)
leftMargin->setToolTip(QApplication::translate("QPageSetupWidget", "left margin", nullptr));
#endif // QT_NO_TOOLTIP
#ifndef QT_NO_ACCESSIBILITY
#endif // QT_CONFIG(tooltip)
#if QT_CONFIG(accessibility)
leftMargin->setAccessibleName(QApplication::translate("QPageSetupWidget", "left margin", nullptr));
#endif // QT_NO_ACCESSIBILITY
#ifndef QT_NO_TOOLTIP
#endif // QT_CONFIG(accessibility)
#if QT_CONFIG(tooltip)
rightMargin->setToolTip(QApplication::translate("QPageSetupWidget", "right margin", nullptr));
#endif // QT_NO_TOOLTIP
#ifndef QT_NO_ACCESSIBILITY
#endif // QT_CONFIG(tooltip)
#if QT_CONFIG(accessibility)
rightMargin->setAccessibleName(QApplication::translate("QPageSetupWidget", "right margin", nullptr));
#endif // QT_NO_ACCESSIBILITY
#ifndef QT_NO_TOOLTIP
#endif // QT_CONFIG(accessibility)
#if QT_CONFIG(tooltip)
bottomMargin->setToolTip(QApplication::translate("QPageSetupWidget", "bottom margin", nullptr));
#endif // QT_NO_TOOLTIP
#ifndef QT_NO_ACCESSIBILITY
#endif // QT_CONFIG(tooltip)
#if QT_CONFIG(accessibility)
bottomMargin->setAccessibleName(QApplication::translate("QPageSetupWidget", "bottom margin", nullptr));
#endif // QT_NO_ACCESSIBILITY
#endif // QT_CONFIG(accessibility)
pagesPerSheetButtonGroup->setTitle(QApplication::translate("QPageSetupWidget", "Page Layout", nullptr));
label->setText(QApplication::translate("QPageSetupWidget", "Page order:", nullptr));
label_2->setText(QApplication::translate("QPageSetupWidget", "Pages per sheet:", nullptr));

View File

@ -260,9 +260,9 @@ public:
horizontalLayout_2->addWidget(tabs);
#ifndef QT_NO_SHORTCUT
#if QT_CONFIG(shortcut)
label->setBuddy(copies);
#endif // QT_NO_SHORTCUT
#endif // QT_CONFIG(shortcut)
retranslateUi(QPrintSettingsOutput);
QObject::connect(printRange, SIGNAL(toggled(bool)), from, SLOT(setEnabled(bool)));

View File

@ -128,10 +128,10 @@ public:
horizontalLayout_2->addWidget(printerGroup);
#ifndef QT_NO_SHORTCUT
#if QT_CONFIG(shortcut)
label->setBuddy(printers);
lOutput->setBuddy(filename);
#endif // QT_NO_SHORTCUT
#endif // QT_CONFIG(shortcut)
retranslateUi(QPrintWidget);

View File

@ -179,14 +179,14 @@ public:
vboxLayout->addLayout(hboxLayout1);
#ifndef QT_NO_SHORTCUT
#if QT_CONFIG(shortcut)
textLabel4->setBuddy(editUsername);
textLabel2->setBuddy(comboDriver);
textLabel3->setBuddy(editDatabase);
textLabel5->setBuddy(editHostname);
textLabel5_2->setBuddy(portSpinBox);
textLabel4_2->setBuddy(editPassword);
#endif // QT_NO_SHORTCUT
#endif // QT_CONFIG(shortcut)
QWidget::setTabOrder(comboDriver, editDatabase);
QWidget::setTabOrder(editDatabase, editUsername);
QWidget::setTabOrder(editUsername, editPassword);

View File

@ -584,117 +584,117 @@ public:
void retranslateUi(QWidget *QtGradientEditor)
{
QtGradientEditor->setWindowTitle(QApplication::translate("QtGradientEditor", "Form", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
gradientWidget->setToolTip(QApplication::translate("QtGradientEditor", "Gradient Editor", nullptr));
#endif // QT_NO_TOOLTIP
#ifndef QT_NO_WHATSTHIS
#endif // QT_CONFIG(tooltip)
#if QT_CONFIG(whatsthis)
gradientWidget->setWhatsThis(QApplication::translate("QtGradientEditor", "This area shows a preview of the gradient being edited. It also allows you to edit parameters specific to the gradient's type such as start and final point, radius, etc. by drag & drop.", nullptr));
#endif // QT_NO_WHATSTHIS
#endif // QT_CONFIG(whatsthis)
label1->setText(QApplication::translate("QtGradientEditor", "1", nullptr));
label2->setText(QApplication::translate("QtGradientEditor", "2", nullptr));
label3->setText(QApplication::translate("QtGradientEditor", "3", nullptr));
label4->setText(QApplication::translate("QtGradientEditor", "4", nullptr));
label5->setText(QApplication::translate("QtGradientEditor", "5", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
gradientStopsWidget->setToolTip(QApplication::translate("QtGradientEditor", "Gradient Stops Editor", nullptr));
#endif // QT_NO_TOOLTIP
#ifndef QT_NO_WHATSTHIS
#endif // QT_CONFIG(tooltip)
#if QT_CONFIG(whatsthis)
gradientStopsWidget->setWhatsThis(QApplication::translate("QtGradientEditor", "This area allows you to edit gradient stops. Double click on the existing stop handle to duplicate it. Double click outside of the existing stop handles to create a new stop. Drag & drop the handle to reposition it. Use right mouse button to popup context menu with extra actions.", nullptr));
#endif // QT_NO_WHATSTHIS
#endif // QT_CONFIG(whatsthis)
zoomLabel->setText(QApplication::translate("QtGradientEditor", "Zoom", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
zoomAllButton->setToolTip(QApplication::translate("QtGradientEditor", "Reset Zoom", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
zoomAllButton->setText(QApplication::translate("QtGradientEditor", "Reset Zoom", nullptr));
positionLabel->setText(QApplication::translate("QtGradientEditor", "Position", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
hLabel->setToolTip(QApplication::translate("QtGradientEditor", "Hue", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
hLabel->setText(QApplication::translate("QtGradientEditor", "H", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
hueColorLine->setToolTip(QApplication::translate("QtGradientEditor", "Hue", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
hueLabel->setText(QApplication::translate("QtGradientEditor", "Hue", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
sLabel->setToolTip(QApplication::translate("QtGradientEditor", "Saturation", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
sLabel->setText(QApplication::translate("QtGradientEditor", "S", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
saturationColorLine->setToolTip(QApplication::translate("QtGradientEditor", "Saturation", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
saturationLabel->setText(QApplication::translate("QtGradientEditor", "Sat", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
vLabel->setToolTip(QApplication::translate("QtGradientEditor", "Value", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
vLabel->setText(QApplication::translate("QtGradientEditor", "V", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
valueColorLine->setToolTip(QApplication::translate("QtGradientEditor", "Value", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
valueLabel->setText(QApplication::translate("QtGradientEditor", "Val", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
aLabel->setToolTip(QApplication::translate("QtGradientEditor", "Alpha", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
aLabel->setText(QApplication::translate("QtGradientEditor", "A", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
alphaColorLine->setToolTip(QApplication::translate("QtGradientEditor", "Alpha", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
alphaLabel->setText(QApplication::translate("QtGradientEditor", "Alpha", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
typeComboBox->setToolTip(QApplication::translate("QtGradientEditor", "Type", nullptr));
#endif // QT_NO_TOOLTIP
#ifndef QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
#if QT_CONFIG(tooltip)
spreadComboBox->setToolTip(QApplication::translate("QtGradientEditor", "Spread", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
colorLabel->setText(QApplication::translate("QtGradientEditor", "Color", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
colorButton->setToolTip(QApplication::translate("QtGradientEditor", "Current stop's color", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
colorButton->setText(QString());
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
hsvRadioButton->setToolTip(QApplication::translate("QtGradientEditor", "Show HSV specification", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
hsvRadioButton->setText(QApplication::translate("QtGradientEditor", "HSV", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
rgbRadioButton->setToolTip(QApplication::translate("QtGradientEditor", "Show RGB specification", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
rgbRadioButton->setText(QApplication::translate("QtGradientEditor", "RGB", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
positionSpinBox->setToolTip(QApplication::translate("QtGradientEditor", "Current stop's position", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
zoomSpinBox->setSuffix(QApplication::translate("QtGradientEditor", "%", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
zoomInButton->setToolTip(QApplication::translate("QtGradientEditor", "Zoom In", nullptr));
#endif // QT_NO_TOOLTIP
#ifndef QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
#if QT_CONFIG(tooltip)
zoomOutButton->setToolTip(QApplication::translate("QtGradientEditor", "Zoom Out", nullptr));
#endif // QT_NO_TOOLTIP
#ifndef QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
#if QT_CONFIG(tooltip)
detailsButton->setToolTip(QApplication::translate("QtGradientEditor", "Toggle details extension", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
detailsButton->setText(QApplication::translate("QtGradientEditor", ">", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
linearButton->setToolTip(QApplication::translate("QtGradientEditor", "Linear Type", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
linearButton->setText(QApplication::translate("QtGradientEditor", "...", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
radialButton->setToolTip(QApplication::translate("QtGradientEditor", "Radial Type", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
radialButton->setText(QApplication::translate("QtGradientEditor", "...", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
conicalButton->setToolTip(QApplication::translate("QtGradientEditor", "Conical Type", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
conicalButton->setText(QApplication::translate("QtGradientEditor", "...", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
padButton->setToolTip(QApplication::translate("QtGradientEditor", "Pad Spread", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
padButton->setText(QApplication::translate("QtGradientEditor", "...", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
repeatButton->setToolTip(QApplication::translate("QtGradientEditor", "Repeat Spread", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
repeatButton->setText(QApplication::translate("QtGradientEditor", "...", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
reflectButton->setToolTip(QApplication::translate("QtGradientEditor", "Reflect Spread", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
reflectButton->setText(QApplication::translate("QtGradientEditor", "...", nullptr));
} // retranslateUi

View File

@ -142,23 +142,23 @@ public:
void retranslateUi(QDialog *QtResourceEditorDialog)
{
QtResourceEditorDialog->setWindowTitle(QApplication::translate("QtResourceEditorDialog", "Dialog", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
newQrcButton->setToolTip(QApplication::translate("QtResourceEditorDialog", "New File", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
newQrcButton->setText(QApplication::translate("QtResourceEditorDialog", "N", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
removeQrcButton->setToolTip(QApplication::translate("QtResourceEditorDialog", "Remove File", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
removeQrcButton->setText(QApplication::translate("QtResourceEditorDialog", "R", nullptr));
importQrcButton->setText(QApplication::translate("QtResourceEditorDialog", "I", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
newResourceButton->setToolTip(QApplication::translate("QtResourceEditorDialog", "New Resource", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
newResourceButton->setText(QApplication::translate("QtResourceEditorDialog", "N", nullptr));
addResourceButton->setText(QApplication::translate("QtResourceEditorDialog", "A", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
removeResourceButton->setToolTip(QApplication::translate("QtResourceEditorDialog", "Remove Resource or File", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
removeResourceButton->setText(QApplication::translate("QtResourceEditorDialog", "R", nullptr));
} // retranslateUi

View File

@ -183,33 +183,33 @@ public:
___qtreewidgetitem->setText(0, QApplication::translate("QtToolBarDialog", "1", nullptr));
label->setText(QApplication::translate("QtToolBarDialog", "Actions", nullptr));
label_2->setText(QApplication::translate("QtToolBarDialog", "Toolbars", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
newButton->setToolTip(QApplication::translate("QtToolBarDialog", "Add new toolbar", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
newButton->setText(QApplication::translate("QtToolBarDialog", "New", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
removeButton->setToolTip(QApplication::translate("QtToolBarDialog", "Remove selected toolbar", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
removeButton->setText(QApplication::translate("QtToolBarDialog", "Remove", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
renameButton->setToolTip(QApplication::translate("QtToolBarDialog", "Rename toolbar", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
renameButton->setText(QApplication::translate("QtToolBarDialog", "Rename", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
upButton->setToolTip(QApplication::translate("QtToolBarDialog", "Move action up", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
upButton->setText(QApplication::translate("QtToolBarDialog", "Up", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
leftButton->setToolTip(QApplication::translate("QtToolBarDialog", "Remove action from toolbar", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
leftButton->setText(QApplication::translate("QtToolBarDialog", "<-", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
rightButton->setToolTip(QApplication::translate("QtToolBarDialog", "Add action to toolbar", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
rightButton->setText(QApplication::translate("QtToolBarDialog", "->", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
downButton->setToolTip(QApplication::translate("QtToolBarDialog", "Move action down", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
downButton->setText(QApplication::translate("QtToolBarDialog", "Down", nullptr));
label_3->setText(QApplication::translate("QtToolBarDialog", "Current Toolbar Actions", nullptr));
} // retranslateUi

View File

@ -117,10 +117,10 @@ public:
vboxLayout->addWidget(buttonBox);
#ifndef QT_NO_SHORTCUT
#if QT_CONFIG(shortcut)
label->setBuddy(templateNameEdit);
label_2->setBuddy(categoryCombo);
#endif // QT_NO_SHORTCUT
#endif // QT_CONFIG(shortcut)
retranslateUi(SaveFormAsTemplate);
QObject::connect(buttonBox, SIGNAL(accepted()), SaveFormAsTemplate, SLOT(accept()));

View File

@ -135,22 +135,22 @@ public:
{
SignalSlotDialogClass->setWindowTitle(QApplication::translate("SignalSlotDialogClass", "Signals and slots", nullptr));
slotGroupBox->setTitle(QApplication::translate("SignalSlotDialogClass", "Slots", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
addSlotButton->setToolTip(QApplication::translate("SignalSlotDialogClass", "Add", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
addSlotButton->setText(QApplication::translate("SignalSlotDialogClass", "...", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
removeSlotButton->setToolTip(QApplication::translate("SignalSlotDialogClass", "Delete", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
removeSlotButton->setText(QApplication::translate("SignalSlotDialogClass", "...", nullptr));
signalGroupBox->setTitle(QApplication::translate("SignalSlotDialogClass", "Signals", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
addSignalButton->setToolTip(QApplication::translate("SignalSlotDialogClass", "Add", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
addSignalButton->setText(QApplication::translate("SignalSlotDialogClass", "...", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
removeSignalButton->setToolTip(QApplication::translate("SignalSlotDialogClass", "Delete", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
removeSignalButton->setText(QApplication::translate("SignalSlotDialogClass", "...", nullptr));
} // retranslateUi

View File

@ -201,9 +201,9 @@ public:
vboxLayout->addWidget(buttonBox);
#ifndef QT_NO_SHORTCUT
#if QT_CONFIG(shortcut)
label->setBuddy(valueEdit);
#endif // QT_NO_SHORTCUT
#endif // QT_CONFIG(shortcut)
retranslateUi(qdesigner_internal__Dialog);
QObject::connect(buttonBox, SIGNAL(accepted()), qdesigner_internal__Dialog, SLOT(accept()));
@ -216,22 +216,22 @@ public:
{
qdesigner_internal__Dialog->setWindowTitle(QApplication::translate("qdesigner_internal::Dialog", "Dialog", nullptr));
groupBox->setTitle(QApplication::translate("qdesigner_internal::Dialog", "StringList", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
newButton->setToolTip(QApplication::translate("qdesigner_internal::Dialog", "New String", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
newButton->setText(QApplication::translate("qdesigner_internal::Dialog", "&New", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
deleteButton->setToolTip(QApplication::translate("qdesigner_internal::Dialog", "Delete String", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
deleteButton->setText(QApplication::translate("qdesigner_internal::Dialog", "&Delete", nullptr));
label->setText(QApplication::translate("qdesigner_internal::Dialog", "&Value:", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
upButton->setToolTip(QApplication::translate("qdesigner_internal::Dialog", "Move String Up", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
upButton->setText(QApplication::translate("qdesigner_internal::Dialog", "Up", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
downButton->setToolTip(QApplication::translate("qdesigner_internal::Dialog", "Move String Down", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
downButton->setText(QApplication::translate("qdesigner_internal::Dialog", "Down", nullptr));
} // retranslateUi

View File

@ -313,50 +313,50 @@ public:
{
qdesigner_internal__TableWidgetEditor->setWindowTitle(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Edit Table Widget", nullptr));
itemsBox->setTitle(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Table Items", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
tableWidget->setToolTip(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Table Items", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
label_3->setText(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Icon", nullptr));
columnsBox->setTitle(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Columns", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
columnsListWidget->setToolTip(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Table Columns", nullptr));
#endif // QT_NO_TOOLTIP
#ifndef QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
#if QT_CONFIG(tooltip)
newColumnButton->setToolTip(QApplication::translate("qdesigner_internal::TableWidgetEditor", "New Column", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
newColumnButton->setText(QApplication::translate("qdesigner_internal::TableWidgetEditor", "New", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
deleteColumnButton->setToolTip(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Delete Column", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
deleteColumnButton->setText(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Delete", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
moveColumnUpButton->setToolTip(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Move Column Up", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
moveColumnUpButton->setText(QApplication::translate("qdesigner_internal::TableWidgetEditor", "U", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
moveColumnDownButton->setToolTip(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Move Column Down", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
moveColumnDownButton->setText(QApplication::translate("qdesigner_internal::TableWidgetEditor", "D", nullptr));
label->setText(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Icon", nullptr));
rowsBox->setTitle(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Rows", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
rowsListWidget->setToolTip(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Table Rows", nullptr));
#endif // QT_NO_TOOLTIP
#ifndef QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
#if QT_CONFIG(tooltip)
newRowButton->setToolTip(QApplication::translate("qdesigner_internal::TableWidgetEditor", "New Row", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
newRowButton->setText(QApplication::translate("qdesigner_internal::TableWidgetEditor", "New", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
deleteRowButton->setToolTip(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Delete Row", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
deleteRowButton->setText(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Delete", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
moveRowUpButton->setToolTip(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Move Row Up", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
moveRowUpButton->setText(QApplication::translate("qdesigner_internal::TableWidgetEditor", "U", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
moveRowDownButton->setToolTip(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Move Row Down", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
moveRowDownButton->setText(QApplication::translate("qdesigner_internal::TableWidgetEditor", "D", nullptr));
label_2->setText(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Icon", nullptr));
} // retranslateUi

View File

@ -81,9 +81,9 @@ public:
vboxLayout->addItem(spacerItem);
#ifndef QT_NO_SHORTCUT
#if QT_CONFIG(shortcut)
searchLabel->setBuddy(lineEdit);
#endif // QT_NO_SHORTCUT
#endif // QT_CONFIG(shortcut)
retranslateUi(Form);
QObject::connect(lineEdit, SIGNAL(returnPressed()), findButton, SLOT(animateClick()));

View File

@ -86,9 +86,9 @@ public:
vboxLayout->addWidget(Layout16);
#ifndef QT_NO_SHORTCUT
#if QT_CONFIG(shortcut)
label->setBuddy(listWidget);
#endif // QT_NO_SHORTCUT
#endif // QT_CONFIG(shortcut)
retranslateUi(TopicChooser);

View File

@ -182,10 +182,10 @@ public:
hboxLayout->addLayout(vboxLayout2);
#ifndef QT_NO_SHORTCUT
#if QT_CONFIG(shortcut)
findWhat->setBuddy(ledFindWhat);
translateTo->setBuddy(ledTranslateTo);
#endif // QT_NO_SHORTCUT
#endif // QT_CONFIG(shortcut)
QWidget::setTabOrder(ledFindWhat, ledTranslateTo);
QWidget::setTabOrder(ledTranslateTo, findNxt);
QWidget::setTabOrder(findNxt, translate);
@ -206,32 +206,32 @@ public:
void retranslateUi(QDialog *TranslateDialog)
{
TranslateDialog->setWindowTitle(QApplication::translate("TranslateDialog", "Qt Linguist", nullptr));
#ifndef QT_NO_WHATSTHIS
#if QT_CONFIG(whatsthis)
TranslateDialog->setWhatsThis(QApplication::translate("TranslateDialog", "This window allows you to search for some text in the translation source file.", nullptr));
#endif // QT_NO_WHATSTHIS
#ifndef QT_NO_WHATSTHIS
#endif // QT_CONFIG(whatsthis)
#if QT_CONFIG(whatsthis)
ledTranslateTo->setWhatsThis(QApplication::translate("TranslateDialog", "Type in the text to search for.", nullptr));
#endif // QT_NO_WHATSTHIS
#endif // QT_CONFIG(whatsthis)
findWhat->setText(QApplication::translate("TranslateDialog", "Find &source text:", nullptr));
translateTo->setText(QApplication::translate("TranslateDialog", "&Translate to:", nullptr));
#ifndef QT_NO_WHATSTHIS
#if QT_CONFIG(whatsthis)
ledFindWhat->setWhatsThis(QApplication::translate("TranslateDialog", "Type in the text to search for.", nullptr));
#endif // QT_NO_WHATSTHIS
#endif // QT_CONFIG(whatsthis)
groupBox->setTitle(QApplication::translate("TranslateDialog", "Search options", nullptr));
#ifndef QT_NO_WHATSTHIS
#if QT_CONFIG(whatsthis)
ckMatchCase->setWhatsThis(QApplication::translate("TranslateDialog", "Texts such as 'TeX' and 'tex' are considered as different when checked.", nullptr));
#endif // QT_NO_WHATSTHIS
#endif // QT_CONFIG(whatsthis)
ckMatchCase->setText(QApplication::translate("TranslateDialog", "Match &case", nullptr));
ckMarkFinished->setText(QApplication::translate("TranslateDialog", "Mark new translation as &finished", nullptr));
#ifndef QT_NO_WHATSTHIS
#if QT_CONFIG(whatsthis)
findNxt->setWhatsThis(QApplication::translate("TranslateDialog", "Click here to find the next occurrence of the text you typed in.", nullptr));
#endif // QT_NO_WHATSTHIS
#endif // QT_CONFIG(whatsthis)
findNxt->setText(QApplication::translate("TranslateDialog", "Find Next", nullptr));
translate->setText(QApplication::translate("TranslateDialog", "Translate", nullptr));
translateAll->setText(QApplication::translate("TranslateDialog", "Translate All", nullptr));
#ifndef QT_NO_WHATSTHIS
#if QT_CONFIG(whatsthis)
cancel->setWhatsThis(QApplication::translate("TranslateDialog", "Click here to close this window.", nullptr));
#endif // QT_NO_WHATSTHIS
#endif // QT_CONFIG(whatsthis)
cancel->setText(QApplication::translate("TranslateDialog", "Cancel", nullptr));
} // retranslateUi

View File

@ -86,9 +86,9 @@ public:
vboxLayout->addWidget(buttonBox);
#ifndef QT_NO_SHORTCUT
#if QT_CONFIG(shortcut)
label->setBuddy(cbLanguageList);
#endif // QT_NO_SHORTCUT
#endif // QT_CONFIG(shortcut)
retranslateUi(TranslationSettings);
QObject::connect(buttonBox, SIGNAL(accepted()), TranslationSettings, SLOT(accept()));

View File

@ -280,57 +280,57 @@ public:
itemsBox->setTitle(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Tree Items", nullptr));
QTreeWidgetItem *___qtreewidgetitem = treeWidget->headerItem();
___qtreewidgetitem->setText(0, QApplication::translate("qdesigner_internal::TreeWidgetEditor", "1", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
treeWidget->setToolTip(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Tree Items", nullptr));
#endif // QT_NO_TOOLTIP
#ifndef QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
#if QT_CONFIG(tooltip)
newItemButton->setToolTip(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "New Item", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
newItemButton->setText(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "&New", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
newSubItemButton->setToolTip(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "New Subitem", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
newSubItemButton->setText(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "New &Subitem", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
deleteItemButton->setToolTip(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Delete Item", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
deleteItemButton->setText(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "&Delete", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
moveItemLeftButton->setToolTip(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Move Item Left (before Parent Item)", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
moveItemLeftButton->setText(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "L", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
moveItemRightButton->setToolTip(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Move Item Right (as a First Subitem of the Next Sibling Item)", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
moveItemRightButton->setText(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "R", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
moveItemUpButton->setToolTip(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Move Item Up", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
moveItemUpButton->setText(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "U", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
moveItemDownButton->setToolTip(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Move Item Down", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
moveItemDownButton->setText(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "D", nullptr));
label_2->setText(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Icon", nullptr));
columnsBox->setTitle(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Columns", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
listWidget->setToolTip(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Tree Columns", nullptr));
#endif // QT_NO_TOOLTIP
#ifndef QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
#if QT_CONFIG(tooltip)
newColumnButton->setToolTip(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "New Column", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
newColumnButton->setText(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "New", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
deleteColumnButton->setToolTip(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Delete Column", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
deleteColumnButton->setText(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Delete", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
moveColumnUpButton->setToolTip(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Move Column Up", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
moveColumnUpButton->setText(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "U", nullptr));
#ifndef QT_NO_TOOLTIP
#if QT_CONFIG(tooltip)
moveColumnDownButton->setToolTip(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Move Column Down", nullptr));
#endif // QT_NO_TOOLTIP
#endif // QT_CONFIG(tooltip)
moveColumnDownButton->setText(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "D", nullptr));
label->setText(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Icon", nullptr));
} // retranslateUi

View File

@ -166,9 +166,9 @@ public:
actionOpenForm->setText(QApplication::translate("TrPreviewToolClass", "&Open Form...", nullptr));
actionLoadTranslation->setText(QApplication::translate("TrPreviewToolClass", "&Load Translation...", nullptr));
actionReloadTranslations->setText(QApplication::translate("TrPreviewToolClass", "&Reload Translations", nullptr));
#ifndef QT_NO_SHORTCUT
#if QT_CONFIG(shortcut)
actionReloadTranslations->setShortcut(QApplication::translate("TrPreviewToolClass", "F5", nullptr));
#endif // QT_NO_SHORTCUT
#endif // QT_CONFIG(shortcut)
actionClose->setText(QApplication::translate("TrPreviewToolClass", "&Close", nullptr));
actionAbout->setText(QApplication::translate("TrPreviewToolClass", "About", nullptr));
actionAbout_Qt->setText(QApplication::translate("TrPreviewToolClass", "About Qt", nullptr));