summaryrefslogtreecommitdiff
path: root/src/libs/utils
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@digia.com>2013-09-27 10:44:32 +0200
committerEike Ziller <eike.ziller@digia.com>2013-09-27 10:44:32 +0200
commit63ff7452137958215988d9f2f6066de955500be0 (patch)
treed645a26ae9db68cdbf37e9fd997a221c81eea008 /src/libs/utils
parent19c735a4912487e8038f08ea0b617ccce62cd1a3 (diff)
parenta12a9f491cb31ff5c22f1051bb22ccfef6c65217 (diff)
downloadqt-creator-63ff7452137958215988d9f2f6066de955500be0.tar.gz
Merge remote-tracking branch 'origin/2.8'
Conflicts: src/libs/extensionsystem/pluginmanager.cpp src/libs/extensionsystem/pluginspec.cpp src/plugins/coreplugin/basefilewizard.cpp src/plugins/coreplugin/coreplugin.pro src/plugins/coreplugin/coreplugin.qbs src/plugins/coreplugin/editormanager/ieditor.cpp src/plugins/coreplugin/externaltool.cpp src/plugins/coreplugin/icore.cpp src/plugins/cpptools/cppmodelmanager.cpp src/plugins/fakevim/fakevimhandler.cpp src/plugins/find/ifindfilter.cpp src/plugins/projectexplorer/buildstep.cpp src/plugins/projectexplorer/devicesupport/idevice.cpp src/plugins/projectexplorer/runconfiguration.cpp src/plugins/vcsbase/vcsbaseeditor.cpp tests/system/suite_debugger/tst_simple_analyze/test.py Change-Id: I11dc9e60bfc14bad4f8af747d041fc7678a07c17
Diffstat (limited to 'src/libs/utils')
-rw-r--r--src/libs/utils/bracematcher.cpp12
-rw-r--r--src/libs/utils/completingtextedit.cpp2
-rw-r--r--src/libs/utils/fancylineedit.cpp7
-rw-r--r--src/libs/utils/fileinprojectfinder.cpp15
-rw-r--r--src/libs/utils/filesystemwatcher.cpp4
-rw-r--r--src/libs/utils/fileutils.cpp13
-rw-r--r--src/libs/utils/json.cpp33
-rw-r--r--src/libs/utils/networkaccessmanager.cpp2
-rw-r--r--src/libs/utils/pathchooser.cpp2
-rw-r--r--src/libs/utils/projectintropage.cpp8
-rw-r--r--src/libs/utils/qtcprocess.cpp28
-rw-r--r--src/libs/utils/tcpportsgatherer.cpp5
-rw-r--r--src/libs/utils/textfileformat.cpp14
13 files changed, 73 insertions, 72 deletions
diff --git a/src/libs/utils/bracematcher.cpp b/src/libs/utils/bracematcher.cpp
index 770c045e86..036b5f7f4e 100644
--- a/src/libs/utils/bracematcher.cpp
+++ b/src/libs/utils/bracematcher.cpp
@@ -38,13 +38,13 @@
and quotes.
This is a helper class for autocompleter implementations. To use it,
- define "brace", "quote", and "delimiter" characters for given language.
+ define \e brace, \e quote, and \e delimiter characters for a given language.
*/
namespace Utils {
/*!
- * Adds a pair of characters, corresponding to opening and closing braces.
+ * Adds a pair of characters, corresponding to \a opening and \a closing braces.
*/
void BraceMatcher::addBraceCharPair(const QChar opening, const QChar closing)
{
@@ -52,7 +52,7 @@ void BraceMatcher::addBraceCharPair(const QChar opening, const QChar closing)
}
/*!
- * Adds quote character
+ * Adds a \a quote character.
*/
void BraceMatcher::addQuoteChar(const QChar quote)
{
@@ -60,8 +60,8 @@ void BraceMatcher::addQuoteChar(const QChar quote)
}
/*!
- * Adds separator character that should be skipped when overtyping it, e.g.
- * it could be ';' or ',' in C-like languages.
+ * Adds a separator character \a sep that should be skipped when overtyping it.
+ * For example, it could be ';' or ',' in C-like languages.
*/
void BraceMatcher::addDelimiterChar(const QChar sep)
{
@@ -113,7 +113,7 @@ QString BraceMatcher::insertMatchingBrace(const QTextCursor &cursor,
}
/*!
- * Returns true if given character was added as one of character types.
+ * Returns true if the character \a c was added as one of character types.
*/
bool BraceMatcher::isKnownChar(const QChar c) const
{
diff --git a/src/libs/utils/completingtextedit.cpp b/src/libs/utils/completingtextedit.cpp
index 77f061c7b4..1e44ef90f0 100644
--- a/src/libs/utils/completingtextedit.cpp
+++ b/src/libs/utils/completingtextedit.cpp
@@ -44,7 +44,7 @@ static bool isEndOfWordChar(const QChar &c)
\brief The CompletingTextEdit class is a QTextEdit with auto-completion
support.
- Excerpted from Qt examples/tools/customcompleter
+ Excerpted from Qt examples/tools/customcompleter.
*/
namespace Utils {
diff --git a/src/libs/utils/fancylineedit.cpp b/src/libs/utils/fancylineedit.cpp
index 4df20ce614..d945852698 100644
--- a/src/libs/utils/fancylineedit.cpp
+++ b/src/libs/utils/fancylineedit.cpp
@@ -41,11 +41,10 @@
#include <QPropertyAnimation>
#include <QStyle>
-/*! Opens a menu at the specified widget position.
- * This functions computes the position where to show the menu, and opens it with
+/*!
+ * Opens \a menu at the specified \a widget position.
+ * This function computes the position where to show the menu, and opens it with
* QMenu::exec().
- * \param menu The menu to open
- * \param widget The widget next to which to open the menu
*/
static void execMenuAtWidget(QMenu *menu, QWidget *widget)
{
diff --git a/src/libs/utils/fileinprojectfinder.cpp b/src/libs/utils/fileinprojectfinder.cpp
index fbf3d751e7..eb6b679c54 100644
--- a/src/libs/utils/fileinprojectfinder.cpp
+++ b/src/libs/utils/fileinprojectfinder.cpp
@@ -44,16 +44,15 @@ namespace Utils {
\brief The FileInProjectFinder class is a helper class to find the \e original
file in the project directory for a given file URL.
- Often files are copied in the build + deploy process. findFile() searches for an existing file
- in the project directory for a given file path:
+ Often files are copied in the build and deploy process. findFile() searches for an existing file
+ in the project directory for a given file path.
- E.g. following file paths:
+ For example, the following file paths should all be mapped to
+ $PROJECTDIR/qml/app/main.qml:
\list
\li C:/app-build-desktop/qml/app/main.qml (shadow build directory)
\li /Users/x/app-build-desktop/App.app/Contents/Resources/qml/App/main.qml (folder on Mac OS X)
\endlist
-
- should all be mapped to $PROJECTDIR/qml/app/main.qml
*/
FileInProjectFinder::FileInProjectFinder()
@@ -110,14 +109,14 @@ void FileInProjectFinder::setSysroot(const QString &sysroot)
m_cache.clear();
}
-/**
- Returns the best match for the given file url in the project directory.
+/*!
+ Returns the best match for the given file URL in the project directory.
The method first checks whether the file inside the project directory exists.
If not, the leading directory in the path is stripped, and the - now shorter - path is
checked for existence, and so on. Second, it tries to locate the file in the sysroot
folder specified. Third, we walk the list of project files, and search for a file name match
- there. If all fails, it returns the original path from the file url.
+ there. If all fails, it returns the original path from the file URL.
*/
QString FileInProjectFinder::findFile(const QUrl &fileUrl, bool *success) const
{
diff --git a/src/libs/utils/filesystemwatcher.cpp b/src/libs/utils/filesystemwatcher.cpp
index 2811f8c249..8110ce91bc 100644
--- a/src/libs/utils/filesystemwatcher.cpp
+++ b/src/libs/utils/filesystemwatcher.cpp
@@ -163,7 +163,7 @@ bool FileSystemWatcherPrivate::checkLimit() const
}
/*!
- \brief Add to watcher 0.
+ Adds directories to watcher 0.
*/
FileSystemWatcher::FileSystemWatcher(QObject *parent) :
@@ -173,7 +173,7 @@ FileSystemWatcher::FileSystemWatcher(QObject *parent) :
}
/*!
- \brief Add to a watcher with specified id.
+ Adds directories to a watcher with the specified \a id.
*/
FileSystemWatcher::FileSystemWatcher(int id, QObject *parent) :
diff --git a/src/libs/utils/fileutils.cpp b/src/libs/utils/fileutils.cpp
index 7d004811a1..80ef5bc5ff 100644
--- a/src/libs/utils/fileutils.cpp
+++ b/src/libs/utils/fileutils.cpp
@@ -52,7 +52,7 @@ namespace Utils {
\note The \a error parameter is optional.
- \return Whether the operation succeeded.
+ Returns whether the operation succeeded.
*/
bool FileUtils::removeRecursively(const FileName &filePath, QString *error)
{
@@ -118,7 +118,7 @@ bool FileUtils::removeRecursively(const FileName &filePath, QString *error)
\note The \a error parameter is optional.
- \return Whether the operation succeeded.
+ Returns whether the operation succeeded.
*/
bool FileUtils::copyRecursively(const FileName &srcFilePath, const FileName &tgtFilePath,
QString *error)
@@ -162,7 +162,8 @@ bool FileUtils::copyRecursively(const FileName &srcFilePath, const FileName &tgt
true if one of them is newer than \a timeStamp. If \a filePath is a single file, true will
be returned if the file is newer than \a timeStamp.
- \return Whether at least one file in \a filePath has a newer date than \a timeStamp.
+ Returns whether at least one file in \a filePath has a newer date than
+ \a timeStamp.
*/
bool FileUtils::isFileNewerThan(const FileName &filePath, const QDateTime &timeStamp)
{
@@ -181,13 +182,13 @@ bool FileUtils::isFileNewerThan(const FileName &filePath, const QDateTime &timeS
}
/*!
- Recursively resolve possibly present symlinks in \a filePath.
+ Recursively resolves possibly present symlinks in \a filePath.
Unlike QFileInfo::canonicalFilePath(), this function will still return the expected target file
even if the symlink is dangling.
\note Maximum recursion depth == 16.
- return Symlink target file path.
+ Returns the symlink target file path.
*/
FileName FileUtils::resolveSymlinks(const FileName &path)
{
@@ -204,7 +205,7 @@ FileName FileUtils::resolveSymlinks(const FileName &path)
Like QDir::toNativeSeparators(), but use prefix '~' instead of $HOME on unix systems when an
absolute path is given.
- return Possibly shortened path with native separators.
+ Returns the possibly shortened path with native separators.
*/
QString FileUtils::shortNativePath(const FileName &path)
{
diff --git a/src/libs/utils/json.cpp b/src/libs/utils/json.cpp
index 5e12daabac..8a56f9c4a9 100644
--- a/src/libs/utils/json.cpp
+++ b/src/libs/utils/json.cpp
@@ -317,11 +317,12 @@ void JsonSchema::enterNestedPropertySchema(const QString &property)
}
/*!
- * An array schema is allowed to have its *items* specification in the form of another schema
+ * An array schema is allowed to have its \e items specification in the form of
+ * another schema
* or in the form of an array of schemas [Sec. 5.5]. This methods checks whether this is case
* in which the items are a schema.
*
- * \return whether or not the items from the array are a schema
+ * Returns whether or not the items from the array are a schema.
*/
bool JsonSchema::hasItemSchema() const
{
@@ -338,11 +339,11 @@ void JsonSchema::enterNestedItemSchema()
}
/*!
- * An array schema is allowed to have its *items* specification in the form of another schema
+ * An array schema is allowed to have its \e items specification in the form of another schema
* or in the form of an array of schemas [Sec. 5.5]. This methods checks whether this is case
* in which the items are an array of schemas.
*
- * \return whether or not the items from the array are a an array of schemas
+ * Returns whether or not the items from the array are a an array of schemas.
*/
bool JsonSchema::hasItemArraySchema() const
{
@@ -359,14 +360,16 @@ int JsonSchema::itemArraySchemaSize() const
}
/*!
- * When evaluating the items of an array it might be necessary to "enter" a particular schema,
+ * When evaluating the items of an array it might be necessary to \e enter a
+ * particular schema,
* since this API assumes that there's always a valid schema in context (the one the user is
* interested on). This shall only happen if the item at the supplied array index is of type
* object, which is then assumed to be a schema.
*
* The method also marks the context as being inside an array evaluation.
*
- * \return whether it was necessary to "enter" a schema for the supplied array index, false if index is out of bounds
+ * Returns whether it was necessary to enter a schema for the supplied
+ * array \a index, false if index is out of bounds.
*/
bool JsonSchema::maybeEnterNestedArraySchema(int index)
{
@@ -383,7 +386,7 @@ bool JsonSchema::maybeEnterNestedArraySchema(int index)
* array of allowed types for the particular instance [Sec. 5.1]. This method checks whether
* the current schema is one of such.
*
- * \return whether or not the current schema specifies a union type
+ * Returns whether or not the current schema specifies a union type.
*/
bool JsonSchema::hasUnionSchema() const
{
@@ -396,15 +399,16 @@ int JsonSchema::unionSchemaSize() const
}
/*!
- * When evaluating union types it might be necessary to "enter" a particular schema, since this
+ * When evaluating union types it might be necessary to enter a particular
+ * schema, since this
* API assumes that there's always a valid schema in context (the one the user is interested on).
- * This shall only happen if the item at the supplied union index, which is then assumed to be
+ * This shall only happen if the item at the supplied union \a index, which is then assumed to be
* a schema.
*
* The method also marks the context as being inside an union evaluation.
*
- * \param index
- * \return whether or not it was necessary to "enter" a schema for the supplied union index
+ * Returns whether or not it was necessary to enter a schema for the
+ * supplied union index.
*/
bool JsonSchema::maybeEnterNestedUnionSchema(int index)
{
@@ -687,16 +691,13 @@ JsonSchemaManager::~JsonSchemaManager()
}
/*!
- * \brief JsonManager::schemaForFile
- *
- * Try to find a JSON schema to which the supplied file can be validated against. According
+ * Tries to find a JSON schema to validate \a fileName against. According
* to the specification, how the schema/instance association is done is implementation defined.
* Currently we use a quite naive approach which is simply based on file names. Specifically,
* if one opens a foo.json file we'll look for a schema named foo.json. We should probably
* investigate alternative settings later.
*
- * \param fileName - JSON file to be validated
- * \return a valid schema or 0
+ * Returns a valid schema or 0.
*/
JsonSchema *JsonSchemaManager::schemaForFile(const QString &fileName) const
{
diff --git a/src/libs/utils/networkaccessmanager.cpp b/src/libs/utils/networkaccessmanager.cpp
index 68f48420df..19b68fdf28 100644
--- a/src/libs/utils/networkaccessmanager.cpp
+++ b/src/libs/utils/networkaccessmanager.cpp
@@ -43,7 +43,7 @@
\brief The NetworkManager class provides a network access manager for use
with \QC.
- Common initialization, Qt Creator User Agent
+ Common initialization, \QC User Agent.
Preferably, the instance returned by NetworkAccessManager::instance() should be used for the main
thread. The constructor is provided only for multithreaded use.
diff --git a/src/libs/utils/pathchooser.cpp b/src/libs/utils/pathchooser.cpp
index 18e680e4ac..1b434d7adc 100644
--- a/src/libs/utils/pathchooser.cpp
+++ b/src/libs/utils/pathchooser.cpp
@@ -50,7 +50,7 @@
consisting of a QLineEdit and
a "Browse" button.
- Has some validation logic for embedding into QWizardPage.
+ This class has some validation logic for embedding into QWizardPage.
*/
const char * const Utils::PathChooser::browseButtonLabel =
diff --git a/src/libs/utils/projectintropage.cpp b/src/libs/utils/projectintropage.cpp
index 7f2579840b..e7b12675da 100644
--- a/src/libs/utils/projectintropage.cpp
+++ b/src/libs/utils/projectintropage.cpp
@@ -42,13 +42,13 @@
Looks similar to FileWizardPage, but provides additional
functionality:
\list
- \li Description label at the top for displaying introductory text
- \li It does on the fly validation (connected to changed()) and displays
- warnings/errors in a status label at the bottom (the page is complete
+ \li Contains a description label at the top for displaying introductory text.
+ \li Does on the fly validation (connected to changed()) and displays
+ warnings and errors in a status label at the bottom (the page is complete
when fully validated, validatePage() is thus not implemented).
\endlist
- Note: Careful when changing projectintropage.ui. It must have main
+ \note Careful when changing projectintropage.ui. It must have main
geometry cleared and QLayout::SetMinimumSize constraint on the main
layout, otherwise, QWizard will squeeze it due to its strange expanding
hacks.
diff --git a/src/libs/utils/qtcprocess.cpp b/src/libs/utils/qtcprocess.cpp
index 88c82cef68..1897a2846a 100644
--- a/src/libs/utils/qtcprocess.cpp
+++ b/src/libs/utils/qtcprocess.cpp
@@ -200,14 +200,14 @@ static QStringList doSplitArgs(const QString &args, QtcProcess::SplitError *err)
}
/*!
- Splits \a args according to system shell word splitting and quoting rules.
+ Splits \a _args according to system shell word splitting and quoting rules.
\section1 Unix
The behavior is based on the POSIX shell and bash:
\list
- \li Whitespace splits tokens
- \li The backslash quotes the following character
+ \li Whitespace splits tokens.
+ \li The backslash quotes the following character.
\li A string enclosed in single quotes is not split. No shell meta
characters are interpreted.
\li A string enclosed in double quotes is not split. Within the string,
@@ -219,17 +219,25 @@ static QStringList doSplitArgs(const QString &args, QtcProcess::SplitError *err)
If \a abortOnMeta is \c true, encounters of unhandled meta characters are
treated as errors.
+ If \a err is not NULL, stores a status code at the pointer target. For more
+ information, see \l SplitError.
+
+ If \env is not NULL, performs variable substitution with the
+ given environment.
+
+ Returns a list of unquoted words or an empty list if an error occurred.
+
\section1 Windows
The behavior is defined by the Microsoft C runtime:
\list
- \li Whitespace splits tokens
- \li A string enclosed in double quotes is not split
+ \li Whitespace splits tokens.
+ \li A string enclosed in double quotes is not split.
\list
\li 3N double quotes within a quoted string yield N literal quotes.
This is not documented on MSDN.
\endlist
- \li Backslashes have special semantics iff they are followed by a double quote:
+ \li Backslashes have special semantics if they are followed by a double quote:
\list
\li 2N backslashes + double quote => N backslashes and begin/end quoting
\li 2N+1 backslashes + double quote => N backslashes + literal quote
@@ -248,14 +256,6 @@ static QStringList doSplitArgs(const QString &args, QtcProcess::SplitError *err)
As the quoting levels are independent from each other and have different
semantics, you need a command line like \c{"foo "\^"" bar"} to get
\c{foo " bar}.
-
- \param cmd the command to split
- \param abortOnMeta see above
- \param err if not NULL, a status code will be stored at the pointer
- target, see \l SplitError
- \param env if not NULL, perform variable substitution with the
- given environment.
- \return a list of unquoted words or an empty list if an error occurred
*/
QStringList QtcProcess::splitArgs(const QString &_args, bool abortOnMeta, SplitError *err,
diff --git a/src/libs/utils/tcpportsgatherer.cpp b/src/libs/utils/tcpportsgatherer.cpp
index 0f56da91e6..a346b34548 100644
--- a/src/libs/utils/tcpportsgatherer.cpp
+++ b/src/libs/utils/tcpportsgatherer.cpp
@@ -250,7 +250,8 @@ void TcpPortsGathererPrivate::updateNetstat()
\brief The TcpPortsGatherer class gathers the list of local TCP ports
already in use.
- Query the system for the list of local TCP ports already in use. This information can be used
+ Queries the system for the list of local TCP ports already in use. This
+ information can be used
to select a port for use in a range.
*/
@@ -283,7 +284,7 @@ QList<int> TcpPortsGatherer::usedPorts() const
}
/*!
- Select a port out of \a freePorts that is not yet used.
+ Selects a port out of \a freePorts that is not yet used.
Returns the port, or -1 if no free port is available.
*/
diff --git a/src/libs/utils/textfileformat.cpp b/src/libs/utils/textfileformat.cpp
index 26dac75df3..bbd90e7a8a 100644
--- a/src/libs/utils/textfileformat.cpp
+++ b/src/libs/utils/textfileformat.cpp
@@ -78,7 +78,7 @@ TextFileFormat::TextFileFormat() :
}
/*!
- \brief Detect the format of text data.
+ Detects the format of text data.
*/
TextFileFormat TextFileFormat::detect(const QByteArray &data)
@@ -111,7 +111,7 @@ TextFileFormat TextFileFormat::detect(const QByteArray &data)
}
/*!
- \brief Returns a piece of text suitable as display for a encoding error.
+ Returns a piece of text suitable as display for a encoding error.
*/
QByteArray TextFileFormat::decodingErrorSample(const QByteArray &data)
@@ -179,7 +179,7 @@ bool decodeTextFileContent(const QByteArray &dataBA,
}
/*!
- \brief Decode data to a plain string.
+ Decodes data to a plain string.
*/
bool TextFileFormat::decode(const QByteArray &data, QString *target) const
@@ -189,7 +189,7 @@ bool TextFileFormat::decode(const QByteArray &data, QString *target) const
}
/*!
- \brief Decode data to a list of strings.
+ Decodes data to a list of strings.
Intended for use with progress bars loading large files.
*/
@@ -236,7 +236,7 @@ TextFileFormat::ReadResult readTextFile(const QString &fileName, const QTextCode
}
/*!
- \brief Read text file into a list of strings.
+ Reads a text file into a list of strings.
*/
TextFileFormat::ReadResult
@@ -254,7 +254,7 @@ TextFileFormat::ReadResult
}
/*!
- \brief Read text file into a string.
+ Reads a text file into a string.
*/
TextFileFormat::ReadResult
@@ -305,7 +305,7 @@ TextFileFormat::ReadResult TextFileFormat::readFileUTF8(const QString &fileName,
}
/*!
- \brief Write out a text file.
+ Writes out a text file.
*/
bool TextFileFormat::writeFile(const QString &fileName, QString plainText, QString *errorString) const