Merge remote-tracking branch 'origin/5.11' into dev
Change-Id: If950406391f79d99f0101f0b6755395accb26f34
This commit is contained in:
commit
02268b8496
@ -461,10 +461,24 @@ UnixMakefileGenerator::findLibraries(bool linkPrl, bool mergeLflags)
|
||||
opt = (*++it).toQString();
|
||||
else
|
||||
opt = opt.mid(10).trimmed();
|
||||
static const QChar suffixMarker = ',';
|
||||
const int suffixPosition = opt.indexOf(suffixMarker);
|
||||
const bool hasSuffix = suffixPosition >= 0;
|
||||
QString frameworkName = opt;
|
||||
if (hasSuffix) {
|
||||
frameworkName.truncate(suffixPosition);
|
||||
opt.remove(suffixMarker); // Apply suffix by removing marker
|
||||
}
|
||||
for (const QMakeLocalFileName &dir : qAsConst(frameworkdirs)) {
|
||||
QString prl = dir.local() + "/" + opt + ".framework/" + opt + Option::prl_ext;
|
||||
if (processPrlFile(prl))
|
||||
QString frameworkDirectory = dir.local() + "/" + frameworkName + + ".framework/";
|
||||
QString suffixedPrl = frameworkDirectory + opt + Option::prl_ext;
|
||||
if (processPrlFile(suffixedPrl))
|
||||
break;
|
||||
if (hasSuffix) {
|
||||
QString unsuffixedPrl = frameworkDirectory + frameworkName + Option::prl_ext;
|
||||
if (processPrlFile(unsuffixedPrl))
|
||||
break;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
if (opt.length() == 10)
|
||||
|
@ -54,11 +54,14 @@ QList<QDate> dateList;
|
||||
//! [0]
|
||||
|
||||
|
||||
//! [1]
|
||||
QList<QString> list;
|
||||
list << "one" << "two" << "three";
|
||||
// list: ["one", "two", "three"]
|
||||
//! [1]
|
||||
//! [1a]
|
||||
QList<QString> list = { "one", "two", "three" };
|
||||
//! [1a]
|
||||
|
||||
|
||||
//! [1b]
|
||||
list << "four" << "five";
|
||||
//! [1b]
|
||||
|
||||
|
||||
//! [2]
|
||||
|
@ -61,10 +61,13 @@ public:
|
||||
Widget::Widget(QWidget *parent)
|
||||
: QWidget(parent)
|
||||
{
|
||||
//! [0]
|
||||
QStringList fonts;
|
||||
fonts << "Arial" << "Helvetica" << "Times" << "Courier";
|
||||
//! [0]
|
||||
//! [0a]
|
||||
QStringList fonts = { "Arial", "Helvetica", "Times" };
|
||||
//! [0a]
|
||||
|
||||
//! [0b]
|
||||
fonts << "Courier" << "Verdana";
|
||||
//! [0b]
|
||||
|
||||
//! [1]
|
||||
for (int i = 0; i < fonts.size(); ++i)
|
||||
|
@ -3268,14 +3268,15 @@ QByteArray qgetenv(const char *varName)
|
||||
|
||||
|
||||
/*!
|
||||
QString qEnvironmentVariable(const char *varName, const QString &defaultValue);
|
||||
\fn QString qEnvironmentVariable(const char *varName, const QString &defaultValue)
|
||||
\fn QString qEnvironmentVariable(const char *varName)
|
||||
|
||||
\relates <QtGlobal>
|
||||
\since 5.10
|
||||
|
||||
Returns the value of the environment variable with name \a varName as a
|
||||
QString. If no variable by that name is found in the environment, this
|
||||
function returns \a defaultValue.
|
||||
These functions return the value of the environment variable, \a varName, as a
|
||||
QString. If no variable \a varName is found in the environment and \a defaultValue
|
||||
is provided, \a defaultValue is returned. Otherwise QString() is returned.
|
||||
|
||||
The Qt environment manipulation functions are thread-safe, but this
|
||||
requires that the C library equivalent functions like getenv and putenv are
|
||||
@ -3344,9 +3345,6 @@ QString qEnvironmentVariable(const char *varName, const QString &defaultValue)
|
||||
#endif
|
||||
}
|
||||
|
||||
/*!
|
||||
\internal
|
||||
*/
|
||||
QString qEnvironmentVariable(const char *varName)
|
||||
{
|
||||
return qEnvironmentVariable(varName, QString());
|
||||
|
@ -208,6 +208,7 @@ static bool isDefaultCategory(const char *category)
|
||||
/*!
|
||||
Returns true if writing to \c stderr is supported.
|
||||
|
||||
\internal
|
||||
\sa stderrHasConsoleAttached()
|
||||
*/
|
||||
static bool systemHasStderr()
|
||||
@ -236,6 +237,7 @@ static bool systemHasStderr()
|
||||
the output might still end up visible to the user. For this reason, we don't guard
|
||||
the stderr output in the default message handler with stderrHasConsoleAttached().
|
||||
|
||||
\internal
|
||||
\sa systemHasStderr()
|
||||
*/
|
||||
bool stderrHasConsoleAttached()
|
||||
@ -288,6 +290,7 @@ namespace QtPrivate {
|
||||
This is normally the case if \c stderr has a console attached, but may be overridden
|
||||
by the user by setting the QT_FORCE_STDERR_LOGGING environment variable to \c 1.
|
||||
|
||||
\internal
|
||||
\sa stderrHasConsoleAttached()
|
||||
*/
|
||||
bool shouldLogToStderr()
|
||||
|
@ -408,15 +408,20 @@ void **QListData::erase(void **xi)
|
||||
from strings.
|
||||
|
||||
QList stores a list of items. The default constructor creates an
|
||||
empty list. To insert items into the list, you can use
|
||||
operator<<():
|
||||
empty list. You can use the initializer-list constructor to create
|
||||
a list with elements:
|
||||
|
||||
\snippet code/src_corelib_tools_qlistdata.cpp 1
|
||||
\snippet code/src_corelib_tools_qlistdata.cpp 1a
|
||||
|
||||
QList provides these basic functions to add, move, and remove
|
||||
items: insert(), replace(), removeAt(), move(), and swap(). In
|
||||
addition, it provides the following convenience functions:
|
||||
append(), prepend(), removeFirst(), and removeLast().
|
||||
append(), \l{operator<<()}, \l{operator+=()}, prepend(), removeFirst(),
|
||||
and removeLast().
|
||||
|
||||
\l{operator<<()} allows to conveniently add multiple elements to a list:
|
||||
|
||||
\snippet code/src_corelib_tools_qlistdata.cpp 1b
|
||||
|
||||
QList uses 0-based indexes, just like C++ arrays. To access the
|
||||
item at a particular index position, you can use operator[](). On
|
||||
|
@ -98,14 +98,25 @@ QT_BEGIN_NAMESPACE
|
||||
|
||||
\tableofcontents
|
||||
|
||||
\section1 Initializing
|
||||
|
||||
The default constructor creates an empty list. You can use the
|
||||
initializer-list constructor to create a list with elements:
|
||||
|
||||
\snippet qstringlist/main.cpp 0a
|
||||
|
||||
\section1 Adding Strings
|
||||
|
||||
Strings can be added to a list using the \l
|
||||
{QList::insert()}{insert()} \l
|
||||
{QList::append()}{append()}, \l
|
||||
{QList::operator+=()}{operator+=()} and \l
|
||||
{QStringList::operator<<()}{operator<<()} functions. For example:
|
||||
{operator<<()} functions.
|
||||
|
||||
\snippet qstringlist/main.cpp 0
|
||||
\l{operator<<()} can be used to
|
||||
conveniently add multiple elements to a list:
|
||||
|
||||
\snippet qstringlist/main.cpp 0b
|
||||
|
||||
\section1 Iterating Over the Strings
|
||||
|
||||
|
@ -530,6 +530,14 @@ bool QWindowsInputContext::endComposition(HWND hwnd)
|
||||
if (m_compositionContext.focusObject.isNull())
|
||||
return false;
|
||||
|
||||
// QTBUG-58300: Ignore WM_IME_ENDCOMPOSITION when CTRL is pressed to prevent
|
||||
// for example the text being cleared when pressing CTRL+A
|
||||
if (m_locale.language() == QLocale::Korean
|
||||
&& QGuiApplication::queryKeyboardModifiers().testFlag(Qt::ControlModifier)) {
|
||||
reset();
|
||||
return true;
|
||||
}
|
||||
|
||||
m_endCompositionRecursionGuard = true;
|
||||
|
||||
imeNotifyCancelComposition(m_compositionContext.hwnd);
|
||||
|
@ -4996,11 +4996,13 @@ QSize QStyleSheetStyle::sizeFromContents(ContentsType ct, const QStyleOption *op
|
||||
if (!subRule.hasGeometry()) {
|
||||
QSize nativeContentsSize;
|
||||
bool nullIcon = hdr->icon.isNull();
|
||||
const int margin = pixelMetric(QStyle::PM_HeaderMargin, hdr, w);
|
||||
int iconSize = nullIcon ? 0 : pixelMetric(QStyle::PM_SmallIconSize, hdr, w);
|
||||
const QSize txt = subRule.hasFont ? QFontMetrics(subRule.font).size(0, hdr->text)
|
||||
: hdr->fontMetrics.size(0, hdr->text);
|
||||
nativeContentsSize.setHeight(qMax(iconSize, txt.height()));
|
||||
nativeContentsSize.setWidth(iconSize + txt.width());
|
||||
nativeContentsSize.setHeight(margin + qMax(iconSize, txt.height()) + margin);
|
||||
nativeContentsSize.setWidth((nullIcon ? 0 : margin) + iconSize
|
||||
+ (hdr->text.isNull() ? 0 : margin) + txt.width() + margin);
|
||||
sz = sz.expandedTo(nativeContentsSize);
|
||||
}
|
||||
return subRule.size(sz);
|
||||
|
@ -2878,10 +2878,6 @@ void tst_QFile::nativeHandleLeaks()
|
||||
#endif
|
||||
|
||||
QCOMPARE( fd2, fd1 );
|
||||
|
||||
#ifdef Q_OS_WIN
|
||||
QCOMPARE( handle2, handle1 );
|
||||
#endif
|
||||
}
|
||||
|
||||
void tst_QFile::readEof_data()
|
||||
|
Loading…
Reference in New Issue
Block a user