forked from qt-creator/qt-creator
Doc - using advanced find to search for C++ symbols
Fix UI text capitalization, edit text, and add screen shots. Reviewed-by: con
This commit is contained in:
Binary file not shown.
|
Before Width: | Height: | Size: 7.0 KiB After Width: | Height: | Size: 20 KiB |
BIN
doc/images/qtcreator-search-cpp-symbols.png
Normal file
BIN
doc/images/qtcreator-search-cpp-symbols.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 22 KiB |
@@ -1679,6 +1679,10 @@
|
||||
\o To go to an occurrence, double-click it.
|
||||
\endlist
|
||||
\endlist
|
||||
|
||||
\note You can use \gui{Advanced Find} also to search for symbols. For more
|
||||
information, see \l{Finding Symbols}.
|
||||
|
||||
*/
|
||||
|
||||
|
||||
@@ -1715,6 +1719,14 @@
|
||||
files)
|
||||
\o Header files of used frameworks and libraries
|
||||
\endlist
|
||||
|
||||
\note You can also select \gui{Edit > Find/Replace > Advanced Find >
|
||||
C++ Symbols} to search for classes, methods, enums, and declarations
|
||||
either from files listed as part of the project or from all files that
|
||||
are used by the code, such as include files.
|
||||
|
||||
\image qtcreator-search-cpp-symbols.png
|
||||
|
||||
\o The \gui{Search Results} pane opens and shows the location and
|
||||
number of instances of the symbol in the current project.
|
||||
|
||||
|
||||
@@ -278,10 +278,10 @@ SymbolsFindFilterConfigWidget::SymbolsFindFilterConfigWidget(SymbolsFindFilter *
|
||||
connect(m_typeEnums, SIGNAL(clicked(bool)), this, SLOT(setState()));
|
||||
connect(m_typeDeclarations, SIGNAL(clicked(bool)), this, SLOT(setState()));
|
||||
|
||||
m_searchProjectsOnly = new QRadioButton(tr("Projects Only"));
|
||||
m_searchProjectsOnly = new QRadioButton(tr("Projects only"));
|
||||
layout->addWidget(m_searchProjectsOnly, 2, 1);
|
||||
|
||||
m_searchGlobal = new QRadioButton(tr("Global"));
|
||||
m_searchGlobal = new QRadioButton(tr("All files"));
|
||||
layout->addWidget(m_searchGlobal, 2, 2);
|
||||
|
||||
m_searchGroup = new QButtonGroup(this);
|
||||
|
||||
Reference in New Issue
Block a user