ui: changed wording in the UI to indexing instead of analysing

This commit is contained in:
Eberhard Graether
2016-06-14 12:45:13 +02:00
parent 83e4bcd049
commit 253af27067
14 changed files with 37 additions and 37 deletions
+1 -1
View File
@@ -130,7 +130,7 @@ void QtStartScreen::setupStartScreen()
{
QLabel* welcomeLabel = new QLabel(
"Welcome to the <b>Coati trial</b>!<br /><br />"
"Explore our preanalyzed projects to experience Coati's unique user interface.<br /><br />"
"Explore our preindexed projects to experience Coati's unique user interface.<br /><br />"
"If you want to use Coati on your own source code please "
"<a href=\"http://coati.io/buy-license\" style=\"color: #007AC2;\">purchase a license</a>, "
"or ask us for a temporary test license by writing to <b>support@coati.io</b>.", this);
@@ -82,5 +82,5 @@ QString QtProjectWizzardContentCDBSource::getFileNamesTitle() const
QString QtProjectWizzardContentCDBSource::getFileNamesDescription() const
{
return "source files will be analyzed.";
return "source files will be indexed.";
}
@@ -15,7 +15,7 @@ void QtProjectWizzardContentFlags::populateForm(QGridLayout* layout, int& row)
label->setObjectName("label");
layout->addWidget(label, row, QtProjectWizzardWindow::FRONT_COL, Qt::AlignRight);
addHelpButton("Define compiler flags used during analysis including the dash e.g. -v", layout, row);
addHelpButton("Define compiler flags used during indexing including the dash e.g. -v", layout, row);
m_list = new QtDirectoryListBox(this, true);
layout->addWidget(m_list, row, QtProjectWizzardWindow::BACK_COL);
@@ -209,9 +209,9 @@ QtProjectWizzardContentPathsSource::QtProjectWizzardContentPathsSource(
setInfo(
"Project Paths",
"Add all directories or files you want to analyse. Usually these are all source and header files of "
"Add all directories or files you want to index. Usually these are all source and header files of "
"your project or a subset of them.",
"Project Paths define the files and directories that will be analyzed by Coati. Usually these are the "
"Project Paths define the files and directories that will be indexed by Coati. Usually these are the "
"source and header files of your project or a subset of them."
);
}
@@ -273,12 +273,12 @@ QStringList QtProjectWizzardContentPathsSource::getFileNames() const
QString QtProjectWizzardContentPathsSource::getFileNamesTitle() const
{
return "Analyzed Files";
return "Indexed Files";
}
QString QtProjectWizzardContentPathsSource::getFileNamesDescription() const
{
return "files will be analyzed.";
return "files will be indexed.";
}
QtProjectWizzardContentPathsCDBHeader::QtProjectWizzardContentPathsCDBHeader(
@@ -291,11 +291,11 @@ QtProjectWizzardContentPathsCDBHeader::QtProjectWizzardContentPathsCDBHeader(
setTitleString("Header Paths");
setDescriptionString(
"Where are the header files of the source files? Add the directories or files that should be "
"analyzed if included by one of the source files."
"indexed if included by one of the source files."
);
setHelpString(
"The compilation database only contains source files. Add the header files or directories containing the header "
"files here. Header files will be analyzed if included."
"files here. Header files will be indexed if included."
);
}
@@ -307,8 +307,8 @@ QtProjectWizzardContentPathsExclude::QtProjectWizzardContentPathsExclude(
{
setInfo(
"Exclude Paths",
"Add all directories or files you want to exclude from the analysis.",
"Exclude Paths define the files and directories that will be left out from the analysis by Coati."
"Add all directories or files you want to exclude from indexing.",
"Exclude Paths define the files and directories that will be left out from indexing."
);
}
@@ -330,10 +330,10 @@ QtProjectWizzardContentPathsHeaderSearch::QtProjectWizzardContentPathsHeaderSear
{
setInfo(
"Include Paths",
"Add the paths for resolving #include directives in the analyzed source and header files.",
"Add the paths for resolving #include directives in the indexed source and header files.",
"Include Paths define where additional files, that your project depends on, are found. Usually they are "
"header files of frameworks or libraries that your project uses. These files won't be analyzed, but Coati needs "
"them for correct analysis."
"header files of frameworks or libraries that your project uses. These files won't be indexed, but Coati needs "
"them for correct indexing."
);
}
@@ -363,8 +363,8 @@ QtProjectWizzardContentPathsHeaderSearchGlobal::QtProjectWizzardContentPathsHead
"(See <a href=\"https://coati.io/documentation/#FindingSystemHeaderLocations\">Finding System Header Locations</a> "
"or use the auto detection below).",
"Include Paths define where additional files, that your project depends on, are found. Usually they are "
"header files of frameworks or libraries that your project uses. These files won't be analyzed, but Coati needs "
"them for correct analysis.\n\n"
"header files of frameworks or libraries that your project uses. These files won't be indexed, but Coati needs "
"them for correct indexing.\n\n"
"Include Paths defined here will be used for all projects."
);
@@ -62,12 +62,12 @@ void QtProjectWizzardContentPreferences::populateForm(QGridLayout* layout, int&
layout->setRowMinimumHeight(row++, 20);
// analysis
layout->addWidget(createFormTitle("ANALYSIS"), row, QtProjectWizzardWindow::FRONT_COL, Qt::AlignLeft);
// indexing
layout->addWidget(createFormTitle("INDEXING"), row, QtProjectWizzardWindow::FRONT_COL, Qt::AlignLeft);
row++;
// analysis threads
QLabel* threadsLabel = createFormLabel("Analysis threads");
// indexer threads
QLabel* threadsLabel = createFormLabel("Indexer threads");
m_threads = new QComboBox();
for (int i = 1; i <= 24; i++)
@@ -79,7 +79,7 @@ void QtProjectWizzardContentPreferences::populateForm(QGridLayout* layout, int&
layout->addWidget(m_threads, row, QtProjectWizzardWindow::BACK_COL, Qt::AlignLeft);
addHelpButton(
"Number of parallel threads used to analyse your projects."
"Number of parallel threads used to index your projects."
, layout, row
);
@@ -68,7 +68,7 @@ void QtProjectWizzardContentSelect::populateWindow(QGridLayout* layout)
QToolButton* c = createProjectButton(
"from Compilation\nDatabase", (ResourcePaths::getGuiPath() + "icon/project_cdb_256_256.png").c_str());
m_solutionDescription.push_back("Create a new Coati project by defining what files will be analyzed and header search paths.");
m_solutionDescription.push_back("Create a new Coati project by defining what files will be indexed.");
m_solutionDescription.push_back("Create a project from an existing Compilation Database. Compilation Databases can be created from "
"Make and CMake projects. Have a look at the "
"<a href=\"https://staging.coati.io/documentation/#CreateAProjectFromCompilationDatabase\">"
@@ -24,7 +24,7 @@ void QtProjectWizzardContentSimple::populateWindow(QGridLayout* layout, int& row
layout->setRowStretch(row, 0);
QLabel* text = new QLabel("Search for included files in all subdirectories of the project paths. "
"Warning: This slows down analysis speed.");
"Warning: This slows down indexing speed.");
text->setWordWrap(true);
layout->addWidget(text, row + 1, QtProjectWizzardWindow::FRONT_COL, Qt::AlignTop);
layout->setRowStretch(row + 1, 1);
@@ -44,8 +44,8 @@ void QtProjectWizzardContentSimple::populateForm(QGridLayout* layout, int& row)
layout->addWidget(m_checkBox, row, QtProjectWizzardWindow::BACK_COL);
addHelpButton("Check this box to search for included files in all subdirectories of the project paths. "
"This avoids setting them manually if you are not familiar with the project you want to analyse.\n"
"Warning: This option slows down analysis speed.", layout, row);
"This avoids setting them manually if you are not familiar with the project you want to index.\n"
"Warning: This option slows down indexing speed.", layout, row);
row++;
}
@@ -15,7 +15,7 @@ void QtProjectWizzardContentSourceList::populateWindow(QWidget* widget)
QVBoxLayout* layout = new QVBoxLayout(widget);
layout->setContentsMargins(0, 0, 0, 0);
m_text = new QLabel("0 files will be analyzed.");
m_text = new QLabel("0 files will be indexed.");
m_text->setWordWrap(true);
layout->addWidget(m_text);