summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Loehning <robert.loehning@nokia.com>2012-06-12 17:16:41 +0200
committerChristian Stenger <christian.stenger@nokia.com>2012-06-25 10:00:50 +0200
commit1776cee64bda30ba70513b6bbec421347198a1f4 (patch)
treec4b117f1d0b5f8eabc6c892b5507622b0c8f6fe9
parent79ca1f3d7caed96dea172fc8abfd368eb03c5c19 (diff)
downloadqt-creator-1776cee64bda30ba70513b6bbec421347198a1f4.tar.gz
Squish: Check for elements in project tree
Change-Id: I11a74d6d9703871b20f9c0a59bf613717e6553ef Reviewed-by: Christian Stenger <christian.stenger@nokia.com>
-rw-r--r--tests/system/shared/project.py38
-rw-r--r--tests/system/suite_general/tst_openqt_creator/test.py4
-rw-r--r--tests/system/suite_general/tst_openqt_creator/testdata/projecttree_creator.tsv8262
-rw-r--r--tests/system/suite_general/tst_openqt_creator/testdata/projecttree_speedcrunch.tsv83
4 files changed, 8387 insertions, 0 deletions
diff --git a/tests/system/shared/project.py b/tests/system/shared/project.py
index 78ffe84209..11706094f5 100644
--- a/tests/system/shared/project.py
+++ b/tests/system/shared/project.py
@@ -1,3 +1,4 @@
+import __builtin__
import re
processStarted = False
@@ -467,3 +468,40 @@ def prepareTemplate(sourceExample):
templateDir = os.path.abspath(tempDir() + "/template")
shutil.copytree(sourceExample, templateDir)
return templateDir
+
+def __iterateChildren__(model, parent, nestingLevel=0):
+ children = []
+ for currentIndex in [model.index(row, 0, parent) for row in range(model.rowCount(parent))]:
+ children.append([str(currentIndex.text), nestingLevel])
+ if model.hasChildren(currentIndex):
+ children.extend(__iterateChildren__(model, currentIndex, nestingLevel + 1))
+ return children
+
+# This will write the data to a file which can then be used for comparing
+def __writeProjectTreeFile__(projectTree, filename):
+ f = open(filename, "w+")
+ f.write('"text"\t"nestinglevel"\n')
+ for elem in projectTree:
+ f.write('"%s"\t"%s"\n' % (elem[0], elem[1]))
+ f.close()
+
+def __getTestData__(record):
+ return [testData.field(record, "text"),
+ __builtin__.int(testData.field(record, "nestinglevel"))]
+
+def compareProjectTree(rootObject, dataset):
+ root = waitForObject(rootObject)
+ tree = __iterateChildren__(root.model(), root)
+
+ # __writeProjectTreeFile__(tree, dataset)
+
+ for i, current in enumerate(map(__getTestData__, testData.dataset(dataset))):
+ try:
+ # Just removing everything up to the found item
+ # Writing a pass would result in truly massive logs
+ tree = tree[tree.index(current) + 1:]
+ except ValueError:
+ test.fail('Could not find "%s" with nesting level %s' % tuple(current),
+ 'Line %s in dataset' % str(i + 1))
+ return
+ test.passes("No errors found in project tree")
diff --git a/tests/system/suite_general/tst_openqt_creator/test.py b/tests/system/suite_general/tst_openqt_creator/test.py
index 2fd8983796..dd8e6ae49f 100644
--- a/tests/system/suite_general/tst_openqt_creator/test.py
+++ b/tests/system/suite_general/tst_openqt_creator/test.py
@@ -15,6 +15,10 @@ def main():
# Wait for parsing to complete
waitForSignal("{type='CppTools::Internal::CppModelManager' unnamed='1'}", "sourceFilesRefreshed(QStringList)", 300000)
+ naviTreeView = "{column='0' container=':Qt Creator_Utils::NavigationTreeView' text='%s' type='QModelIndex'}"
+ compareProjectTree(naviTreeView % "speedcrunch", "projecttree_speedcrunch.tsv")
+ compareProjectTree(naviTreeView % "qtcreator", "projecttree_creator.tsv")
+
# Now check some basic lookups in the search box
selectFromLocator(": Qlist::QList", "QList::QList")
test.compare(wordUnderCursor(waitForObject(":Qt Creator_CppEditor::Internal::CPPEditorWidget")), "QList")
diff --git a/tests/system/suite_general/tst_openqt_creator/testdata/projecttree_creator.tsv b/tests/system/suite_general/tst_openqt_creator/testdata/projecttree_creator.tsv
new file mode 100644
index 0000000000..3674a58a46
--- /dev/null
+++ b/tests/system/suite_general/tst_openqt_creator/testdata/projecttree_creator.tsv
@@ -0,0 +1,8262 @@
+"text" "nestinglevel"
+"qtcreator.pro" "0"
+"bin" "0"
+"bin.pro" "1"
+"Other files" "1"
+"qtcreator.sh" "2"
+"doc" "0"
+"doc.pri" "1"
+"Other files" "1"
+"api" "2"
+"coding-style.qdoc" "3"
+"creating-plugins.qdoc" "3"
+"external-tool-spec.qdoc" "3"
+"first-plugin.qdoc" "3"
+"getting-and-building.qdoc" "3"
+"plugin-lifecycle.qdoc" "3"
+"plugin-specifications.qdoc" "3"
+"qtcreator-api.qdoc" "3"
+"qtcreator-dev-wizards.qdoc" "3"
+"qtcreator-dev.qdoc" "3"
+"qtcreator-dev.qdocconf" "3"
+"config" "2"
+"compat.qdocconf" "3"
+"macros.qdocconf" "3"
+"qt-cpp-ignore.qdocconf" "3"
+"qt-defines.qdocconf" "3"
+"qt-html-default-styles.qdocconf" "3"
+"qt-html-templates.qdocconf" "3"
+"src" "2"
+"qtcreator.qdoc" "3"
+"addressbook-sdk.qdoc" "2"
+"qtcreator.qdocconf" "2"
+"qtcomponents" "0"
+"qtcomponents.pro" "1"
+"qtcreator" "1"
+"qtcreator.pri" "2"
+"QML" "1"
+"custom" "2"
+"behaviors" "3"
+"ButtonBehavior.qml" "4"
+"ModalPopupBehavior.qml" "4"
+"private" "3"
+"ChoiceListPopup.qml" "4"
+"BasicButton.qml" "3"
+"Button.qml" "3"
+"ButtonColumn.qml" "3"
+"ButtonRow.qml" "3"
+"CheckBox.qml" "3"
+"ChoiceList.qml" "3"
+"GroupBox.qml" "3"
+"ProgressBar.qml" "3"
+"Slider.qml" "3"
+"SpinBox.qml" "3"
+"SplitterRow.qml" "3"
+"TextField.qml" "3"
+"Button.qml" "2"
+"ButtonRow.qml" "2"
+"CheckBox.qml" "2"
+"ChoiceList.qml" "2"
+"ContextMenu.qml" "2"
+"Dial.qml" "2"
+"Frame.qml" "2"
+"GroupBox.qml" "2"
+"Menu.qml" "2"
+"MenuItem.qml" "2"
+"ProgressBar.qml" "2"
+"RadioButton.qml" "2"
+"ScrollArea.qml" "2"
+"ScrollBar.qml" "2"
+"Slider.qml" "2"
+"SpinBox.qml" "2"
+"SplitterRow.qml" "2"
+"Switch.qml" "2"
+"Tab.qml" "2"
+"TabBar.qml" "2"
+"TabFrame.qml" "2"
+"TableColumn.qml" "2"
+"TableView.qml" "2"
+"TextArea.qml" "2"
+"TextField.qml" "2"
+"ToolBar.qml" "2"
+"ToolButton.qml" "2"
+"Other files" "1"
+"custom" "2"
+"ButtonGroup.js" "3"
+"components.pro" "3"
+"qmldir" "3"
+"images" "2"
+"folder_new.png" "3"
+"qmldir" "2"
+"qtcreator" "0"
+"qtcreator.pri" "1"
+"share" "0"
+"share.pro" "1"
+"static" "1"
+"static.pro" "2"
+"qtcreator" "2"
+"qtcreator.pri" "3"
+"QML" "2"
+"qml/qmlobserver" "3"
+"browser" "4"
+"Browser.qml" "5"
+"startup" "4"
+"Logo.qml" "5"
+"startup.qml" "5"
+"qmldesigner/propertyeditor" "3"
+"Qt" "4"
+"AlignmentHorizontalButtons.qml" "5"
+"AlignmentVerticalButtons.qml" "5"
+"AnchorBox.qml" "5"
+"AnchorButtons.qml" "5"
+"BorderImageSpecifics.qml" "5"
+"CheckBox.qml" "5"
+"ColorGroupBox.qml" "5"
+"ColorLabel.qml" "5"
+"ColorScheme.qml" "5"
+"ColorTypeButtons.qml" "5"
+"ComboBox.qml" "5"
+"DoubleSpinBox.qml" "5"
+"DoubleSpinBoxAlternate.qml" "5"
+"emptyPane.qml" "5"
+"ExpressionEditor.qml" "5"
+"Extended.qml" "5"
+"ExtendedFunctionButton.qml" "5"
+"ExtendedPane.qml" "5"
+"ExtendedSwitches.qml" "5"
+"FlagedButton.qml" "5"
+"FlickableGroupBox.qml" "5"
+"FlickableSpecifics.qml" "5"
+"FlipableSpecifics.qml" "5"
+"FlowSpecifics.qml" "5"
+"FontComboBox.qml" "5"
+"FontGroupBox.qml" "5"
+"FontStyleButtons.qml" "5"
+"Geometry.qml" "5"
+"GridSpecifics.qml" "5"
+"GridViewSpecifics.qml" "5"
+"GroupBox.qml" "5"
+"GroupBoxOption.qml" "5"
+"HorizontalLayout.qml" "5"
+"HorizontalWhiteLine.qml" "5"
+"ImageSpecifics.qml" "5"
+"IntEditor.qml" "5"
+"ItemPane.qml" "5"
+"Label.qml" "5"
+"Layout.qml" "5"
+"LayoutPane.qml" "5"
+"LineEdit.qml" "5"
+"ListViewSpecifics.qml" "5"
+"Modifiers.qml" "5"
+"MouseAreaSpecifics.qml" "5"
+"PathViewSpecifics.qml" "5"
+"PlaceHolder.qml" "5"
+"PropertyFrame.qml" "5"
+"RectangleColorGroupBox.qml" "5"
+"RectangleSpecifics.qml" "5"
+"RowSpecifics.qml" "5"
+"ScrollArea.qml" "5"
+"SliderWidget.qml" "5"
+"SpinBox.qml" "5"
+"StandardTextColorGroupBox.qml" "5"
+"StandardTextGroupBox.qml" "5"
+"Switches.qml" "5"
+"TextEditor.qml" "5"
+"TextEditSpecifics.qml" "5"
+"TextInputGroupBox.qml" "5"
+"TextInputSpecifics.qml" "5"
+"TextSpecifics.qml" "5"
+"Transformation.qml" "5"
+"Type.qml" "5"
+"VerticalLayout.qml" "5"
+"Visibility.qml" "5"
+"QtWebKit" "4"
+"WebViewSpecifics.qml" "5"
+"templates/qtquickapp/qml/app" "3"
+"meego10" "4"
+"main.qml" "5"
+"MainPage.qml" "5"
+"qtquick10" "4"
+"main.qml" "5"
+"symbian11" "4"
+"main.qml" "5"
+"MainPage.qml" "5"
+"welcomescreen" "3"
+"dummydata" "4"
+"examplesModel.qml" "5"
+"pagesModel.qml" "5"
+"projectList.qml" "5"
+"sessionList.qml" "5"
+"tutorialsModel.qml" "5"
+"widgets" "4"
+"dummydata" "5"
+"context" "6"
+"ExampleDelegate.qml" "7"
+"ExampleGridView.qml" "7"
+"examplesModel.qml" "6"
+"mockupTags.qml" "6"
+"pagesModel.qml" "6"
+"tabsModel.qml" "6"
+"CustomColors.qml" "5"
+"CustomFonts.qml" "5"
+"CustomizedGridView.qml" "5"
+"CustomTab.qml" "5"
+"Delegate.qml" "5"
+"Feedback.qml" "5"
+"GettingStartedItem.qml" "5"
+"LinkedText.qml" "5"
+"LinksBar.qml" "5"
+"Logo.qml" "5"
+"PageCaption.qml" "5"
+"PageLoader.qml" "5"
+"ProjectItem.qml" "5"
+"RecentProjects.qml" "5"
+"SearchBar.qml" "5"
+"SessionItem.qml" "5"
+"Sessions.qml" "5"
+"ToolTip.qml" "5"
+"develop.qml" "4"
+"examples.qml" "4"
+"gettingstarted.qml" "4"
+"tutorials.qml" "4"
+"welcomescreen.qml" "4"
+"Other files" "2"
+"designer" "3"
+"templates" "4"
+"Dialog_with_Buttons_Bottom.ui" "5"
+"Dialog_with_Buttons_Right.ui" "5"
+"Dialog_without_Buttons.ui" "5"
+"Main_Window.ui" "5"
+"Widget.ui" "5"
+"templates.xml" "4"
+"dumper" "3"
+"test" "4"
+"dumpertest.pro" "5"
+"main.cpp" "5"
+"bridge.py" "4"
+"dumper.cpp" "4"
+"dumper.h" "4"
+"dumper.pro" "4"
+"dumper.py" "4"
+"dumper_p.h" "4"
+"LGPL_EXCEPTION.TXT" "4"
+"LICENSE.LGPL" "4"
+"pdumper.py" "4"
+"qttypes.py" "4"
+"generic-highlighter" "3"
+"alert.xml" "4"
+"autoconf.xml" "4"
+"bash.xml" "4"
+"cmake.xml" "4"
+"css.xml" "4"
+"doxygen.xml" "4"
+"dtd.xml" "4"
+"html.xml" "4"
+"ini.xml" "4"
+"java.xml" "4"
+"javadoc.xml" "4"
+"perl.xml" "4"
+"ruby.xml" "4"
+"valgrind-suppression.xml" "4"
+"xml.xml" "4"
+"yacc.xml" "4"
+"glsl" "3"
+"glsl_120.frag" "4"
+"glsl_120.vert" "4"
+"glsl_120_common.glsl" "4"
+"glsl_es_100.frag" "4"
+"glsl_es_100.vert" "4"
+"glsl_es_100_common.glsl" "4"
+"qml" "3"
+"qmldump" "4"
+"LGPL_EXCEPTION.TXT" "5"
+"LICENSE.LGPL" "5"
+"main.cpp" "5"
+"qmldump.pro" "5"
+"qmlstreamwriter.cpp" "5"
+"qmlstreamwriter.h" "5"
+"qmljsdebugger" "4"
+"editor" "5"
+"abstractliveedittool.cpp" "6"
+"abstractliveedittool.h" "6"
+"boundingrecthighlighter.cpp" "6"
+"boundingrecthighlighter.h" "6"
+"colorpickertool.cpp" "6"
+"colorpickertool.h" "6"
+"livelayeritem.cpp" "6"
+"livelayeritem.h" "6"
+"liverubberbandselectionmanipulator.cpp" "6"
+"liverubberbandselectionmanipulator.h" "6"
+"liveselectionindicator.cpp" "6"
+"liveselectionindicator.h" "6"
+"liveselectionrectangle.cpp" "6"
+"liveselectionrectangle.h" "6"
+"liveselectiontool.cpp" "6"
+"liveselectiontool.h" "6"
+"livesingleselectionmanipulator.cpp" "6"
+"livesingleselectionmanipulator.h" "6"
+"subcomponentmasklayeritem.cpp" "6"
+"subcomponentmasklayeritem.h" "6"
+"zoomtool.cpp" "6"
+"zoomtool.h" "6"
+"include" "5"
+"qt_private" "6"
+"qdeclarativedebughelper_p.h" "7"
+"qdeclarativedebugservice_p.h" "7"
+"qdeclarativestate_p.h" "7"
+"jsdebuggeragent.h" "6"
+"qdeclarativeinspectorservice.h" "6"
+"qdeclarativeviewinspector.h" "6"
+"qdeclarativeviewobserver.h" "6"
+"qmlinspectorconstants.h" "6"
+"qmljsdebugger_global.h" "6"
+"protocol" "5"
+"inspectorprotocol.h" "6"
+"protocol.pri" "6"
+"jsdebuggeragent.cpp" "5"
+"qdeclarativeinspectorservice.cpp" "5"
+"qdeclarativeviewinspector.cpp" "5"
+"qdeclarativeviewinspector_p.h" "5"
+"qmljsdebugger-lib.pri" "5"
+"qmljsdebugger-src.pri" "5"
+"qmljsdebugger.pro" "5"
+"qmlobserver" "4"
+"browser" "5"
+"images" "6"
+"folder.png" "7"
+"titlebar.png" "7"
+"titlebar.sci" "7"
+"up.png" "7"
+"browser.qrc" "6"
+"startup" "5"
+"qt-back.png" "6"
+"qt-blue.jpg" "6"
+"qt-front.png" "6"
+"qt-sketch.jpg" "6"
+"qt-text.png" "6"
+"quick-blur.png" "6"
+"quick-regular.png" "6"
+"shadow.png" "6"
+"startup.qrc" "6"
+"white-star.png" "6"
+"deviceorientation.cpp" "5"
+"deviceorientation.h" "5"
+"deviceorientation_harmattan.cpp" "5"
+"deviceorientation_maemo5.cpp" "5"
+"deviceorientation_symbian.cpp" "5"
+"LGPL_EXCEPTION.TXT" "5"
+"LICENSE.LGPL" "5"
+"loggerwidget.cpp" "5"
+"loggerwidget.h" "5"
+"main.cpp" "5"
+"proxysettings.cpp" "5"
+"proxysettings.h" "5"
+"proxysettings.ui" "5"
+"proxysettings_maemo5.ui" "5"
+"qdeclarativetester.cpp" "5"
+"qdeclarativetester.h" "5"
+"qml.icns" "5"
+"qml.pri" "5"
+"qmlobserver.pro" "5"
+"qmlruntime.cpp" "5"
+"qmlruntime.h" "5"
+"recopts.ui" "5"
+"recopts_maemo5.ui" "5"
+"texteditautoresizer_maemo5.h" "5"
+"qmlpuppet" "4"
+"commands" "5"
+"changeauxiliarycommand.cpp" "6"
+"changeauxiliarycommand.h" "6"
+"changebindingscommand.cpp" "6"
+"changebindingscommand.h" "6"
+"changefileurlcommand.cpp" "6"
+"changefileurlcommand.h" "6"
+"changeidscommand.cpp" "6"
+"changeidscommand.h" "6"
+"changenodesourcecommand.cpp" "6"
+"changenodesourcecommand.h" "6"
+"changestatecommand.cpp" "6"
+"changestatecommand.h" "6"
+"changevaluescommand.cpp" "6"
+"changevaluescommand.h" "6"
+"childrenchangedcommand.cpp" "6"
+"childrenchangedcommand.h" "6"
+"clearscenecommand.cpp" "6"
+"clearscenecommand.h" "6"
+"commands.pri" "6"
+"completecomponentcommand.cpp" "6"
+"completecomponentcommand.h" "6"
+"componentcompletedcommand.cpp" "6"
+"componentcompletedcommand.h" "6"
+"createinstancescommand.cpp" "6"
+"createinstancescommand.h" "6"
+"createscenecommand.cpp" "6"
+"createscenecommand.h" "6"
+"informationchangedcommand.cpp" "6"
+"informationchangedcommand.h" "6"
+"pixmapchangedcommand.cpp" "6"
+"pixmapchangedcommand.h" "6"
+"removeinstancescommand.cpp" "6"
+"removeinstancescommand.h" "6"
+"removepropertiescommand.cpp" "6"
+"removepropertiescommand.h" "6"
+"reparentinstancescommand.cpp" "6"
+"reparentinstancescommand.h" "6"
+"statepreviewimagechangedcommand.cpp" "6"
+"statepreviewimagechangedcommand.h" "6"
+"synchronizecommand.cpp" "6"
+"synchronizecommand.h" "6"
+"tokencommand.cpp" "6"
+"tokencommand.h" "6"
+"valueschangedcommand.cpp" "6"
+"valueschangedcommand.h" "6"
+"container" "5"
+"addimportcontainer.cpp" "6"
+"addimportcontainer.h" "6"
+"container.pri" "6"
+"idcontainer.cpp" "6"
+"idcontainer.h" "6"
+"imagecontainer.cpp" "6"
+"imagecontainer.h" "6"
+"informationcontainer.cpp" "6"
+"informationcontainer.h" "6"
+"instancecontainer.cpp" "6"
+"instancecontainer.h" "6"
+"propertyabstractcontainer.cpp" "6"
+"propertyabstractcontainer.h" "6"
+"propertybindingcontainer.cpp" "6"
+"propertybindingcontainer.h" "6"
+"propertyvaluecontainer.cpp" "6"
+"propertyvaluecontainer.h" "6"
+"reparentcontainer.cpp" "6"
+"reparentcontainer.h" "6"
+"html" "5"
+"welcome.html" "6"
+"images" "5"
+"template_image.png" "6"
+"webkit.png" "6"
+"instances" "5"
+"anchorchangesnodeinstance.cpp" "6"
+"anchorchangesnodeinstance.h" "6"
+"behaviornodeinstance.cpp" "6"
+"behaviornodeinstance.h" "6"
+"childrenchangeeventfilter.cpp" "6"
+"childrenchangeeventfilter.h" "6"
+"componentnodeinstance.cpp" "6"
+"componentnodeinstance.h" "6"
+"dummycontextobject.cpp" "6"
+"dummycontextobject.h" "6"
+"dummynodeinstance.cpp" "6"
+"dummynodeinstance.h" "6"
+"instances.pri" "6"
+"nodeinstanceclientproxy.cpp" "6"
+"nodeinstanceclientproxy.h" "6"
+"nodeinstancemetaobject.cpp" "6"
+"nodeinstancemetaobject.h" "6"
+"nodeinstanceserver.cpp" "6"
+"nodeinstanceserver.h" "6"
+"nodeinstancesignalspy.cpp" "6"
+"nodeinstancesignalspy.h" "6"
+"objectnodeinstance.cpp" "6"
+"objectnodeinstance.h" "6"
+"qmlpropertychangesnodeinstance.cpp" "6"
+"qmlpropertychangesnodeinstance.h" "6"
+"qmlstatenodeinstance.cpp" "6"
+"qmlstatenodeinstance.h" "6"
+"qmltransitionnodeinstance.cpp" "6"
+"qmltransitionnodeinstance.h" "6"
+"servernodeinstance.cpp" "6"
+"servernodeinstance.h" "6"
+"interfaces" "5"
+"commondefines.h" "6"
+"interfaces.pri" "6"
+"nodeinstanceclientinterface.h" "6"
+"nodeinstanceserverinterface.cpp" "6"
+"nodeinstanceserverinterface.h" "6"
+"qml2puppet" "5"
+"instances" "6"
+"instances.pri" "7"
+"qt5informationnodeinstanceserver.cpp" "7"
+"qt5informationnodeinstanceserver.h" "7"
+"qt5nodeinstanceclientproxy.cpp" "7"
+"qt5nodeinstanceclientproxy.h" "7"
+"qt5nodeinstanceserver.cpp" "7"
+"qt5nodeinstanceserver.h" "7"
+"qt5previewnodeinstanceserver.cpp" "7"
+"qt5previewnodeinstanceserver.h" "7"
+"qt5rendernodeinstanceserver.cpp" "7"
+"qt5rendernodeinstanceserver.h" "7"
+"sgitemnodeinstance.cpp" "7"
+"sgitemnodeinstance.h" "7"
+"main.cpp" "6"
+"qml2puppet.pro" "6"
+"qmlpuppet" "5"
+"instances" "6"
+"graphicsobjectnodeinstance.cpp" "7"
+"graphicsobjectnodeinstance.h" "7"
+"instances.pri" "7"
+"positionernodeinstance.cpp" "7"
+"positionernodeinstance.h" "7"
+"qmlgraphicsitemnodeinstance.cpp" "7"
+"qmlgraphicsitemnodeinstance.h" "7"
+"qt4informationnodeinstanceserver.cpp" "7"
+"qt4informationnodeinstanceserver.h" "7"
+"qt4nodeinstanceclientproxy.cpp" "7"
+"qt4nodeinstanceclientproxy.h" "7"
+"qt4nodeinstanceserver.cpp" "7"
+"qt4nodeinstanceserver.h" "7"
+"qt4previewnodeinstanceserver.cpp" "7"
+"qt4previewnodeinstanceserver.h" "7"
+"qt4rendernodeinstanceserver.cpp" "7"
+"qt4rendernodeinstanceserver.h" "7"
+"main.cpp" "6"
+"qmlpuppet.pri" "6"
+"qmlpuppet.pro" "6"
+"qmlpuppet.pro" "5"
+"qmlpuppet.qrc" "5"
+"qmlpuppet_utilities.pri" "5"
+"qml-type-descriptions" "3"
+"builtins.qmltypes" "4"
+"qmlproject.qmltypes" "4"
+"qmlruntime.qmltypes" "4"
+"qt-labs-folderlistmodel.qmltypes" "4"
+"qt-labs-gestures.qmltypes" "4"
+"qt-labs-particles.qmltypes" "4"
+"qtmobility-connectivity.qmltypes" "4"
+"qtmobility-contacts.qmltypes" "4"
+"qtmobility-feedback.qmltypes" "4"
+"qtmobility-gallery.qmltypes" "4"
+"qtmobility-location.qmltypes" "4"
+"qtmobility-messaging.qmltypes" "4"
+"qtmobility-organizer.qmltypes" "4"
+"qtmobility-publishsubscribe.qmltypes" "4"
+"qtmobility-sensors.qmltypes" "4"
+"qtmobility-serviceframework.qmltypes" "4"
+"qtmobility-systeminfo.qmltypes" "4"
+"qtmultimediakit.qmltypes" "4"
+"qtwebkit.qmltypes" "4"
+"qmldesigner/propertyeditor/Qt" "3"
+"images" "4"
+"alignmentbottom-h-icon.png" "5"
+"alignmentbottom-icon.png" "5"
+"alignmentcenterh-h-icon.png" "5"
+"alignmentcenterh-icon.png" "5"
+"alignmentleft-h-icon.png" "5"
+"alignmentleft-icon.png" "5"
+"alignmentmiddle-h-icon.png" "5"
+"alignmentmiddle-icon.png" "5"
+"alignmentright-h-icon.png" "5"
+"alignmentright-icon.png" "5"
+"alignmenttop-h-icon.png" "5"
+"alignmenttop-icon.png" "5"
+"apply.png" "5"
+"behaivour.png" "5"
+"blended-image-icon.png" "5"
+"bold-h-icon.png" "5"
+"bold-icon.png" "5"
+"button.png" "5"
+"cancel.png" "5"
+"default-icon.png" "5"
+"downArrow.png" "5"
+"expression.png" "5"
+"extended.png" "5"
+"grid-icon.png" "5"
+"icon_color_gradient.png" "5"
+"icon_color_none.png" "5"
+"icon_color_solid.png" "5"
+"image-icon.png" "5"
+"italic-h-icon.png" "5"
+"italic-icon.png" "5"
+"item-icon.png" "5"
+"layout.png" "5"
+"leftArrow.png" "5"
+"list-icon.png" "5"
+"mouse-area-icon.png" "5"
+"placeholder.png" "5"
+"rect-icon.png" "5"
+"reset-button.png" "5"
+"rightArrow.png" "5"
+"standard.png" "5"
+"strikeout-h-icon.png" "5"
+"strikeout-icon.png" "5"
+"submenu.png" "5"
+"text-edit-icon.png" "5"
+"text-icon.png" "5"
+"underline-h-icon.png" "5"
+"underline-icon.png" "5"
+"upArrow.png" "5"
+"anchorbottom.css" "4"
+"anchorbox.css" "4"
+"anchorfill.css" "4"
+"anchorhorizontal.css" "4"
+"anchorleft.css" "4"
+"anchorright.css" "4"
+"anchorspacer.css" "4"
+"anchortop.css" "4"
+"anchorvertical.css" "4"
+"applybutton.css" "4"
+"aspectlock.css" "4"
+"cancelbutton.css" "4"
+"checkbox_tr.css" "4"
+"layoutWidget.css" "4"
+"propertyEditor.css" "4"
+"specialCheckBox.css" "4"
+"styledbuttonleft.css" "4"
+"styledbuttonmiddle.css" "4"
+"styledbuttonright.css" "4"
+"switch.css" "4"
+"typeLabel.css" "4"
+"qmlicons" "3"
+"Qt/16x16" "4"
+"BorderImage.png" "5"
+"BusyIndicator.png" "5"
+"Button.png" "5"
+"ButtonColumn.png" "5"
+"ButtonRow.png" "5"
+"CheckBox.png" "5"
+"ChoiceList.png" "5"
+"ColorAnimation.png" "5"
+"Component.png" "5"
+"CountBubble.png" "5"
+"DatePickerDialog.png" "5"
+"Flickable.png" "5"
+"Flipable.png" "5"
+"FocusScope.png" "5"
+"GridView.png" "5"
+"Image.png" "5"
+"InfoBanner.png" "5"
+"item-icon16.png" "5"
+"Item.png" "5"
+"ListButton.png" "5"
+"ListDelegate.png" "5"
+"ListView.png" "5"
+"MoreIndicator.png" "5"
+"MouseArea.png" "5"
+"PageIndicator.png" "5"
+"ParallelAnimation.png" "5"
+"PathView.png" "5"
+"PauseAnimation.png" "5"
+"ProgressBar.png" "5"
+"PropertyChanges.png" "5"
+"RadioButton.png" "5"
+"RatingIndicator.png" "5"
+"Rectangle.png" "5"
+"SequentialAnimation.png" "5"
+"Slider.png" "5"
+"State.png" "5"
+"Switch.png" "5"
+"TabBar.png" "5"
+"TabButton.png" "5"
+"Text.png" "5"
+"TextArea.png" "5"
+"TextEdit.png" "5"
+"TextField.png" "5"
+"TextInput.png" "5"
+"TimePickerDialog.png" "5"
+"ToolBar.png" "5"
+"Transition.png" "5"
+"Tumbler.png" "5"
+"TumblerButton.png" "5"
+"TumblerColumn.png" "5"
+"TumblerDialog.png" "5"
+"Window.png" "5"
+"QtWebkit/16x16" "4"
+"WebView.png" "5"
+"schemes" "3"
+"MS_Visual_C++.kms" "4"
+"Xcode.kms" "4"
+"snippets" "3"
+"cpp.xml" "4"
+"qml.xml" "4"
+"text.xml" "4"
+"styles" "3"
+"darkvim.xml" "4"
+"default.xml" "4"
+"grayscale.xml" "4"
+"inkpot.xml" "4"
+"intellij.xml" "4"
+"templates" "3"
+"html5app" "4"
+"html" "5"
+"index.html" "6"
+"html5applicationviewer" "5"
+"touchnavigation" "6"
+"navigationcontroller.cpp" "7"
+"navigationcontroller.h" "7"
+"touchnavigation.pri" "7"
+"webnavigation.cpp" "7"
+"webnavigation.h" "7"
+"webtouchevent.cpp" "7"
+"webtouchevent.h" "7"
+"webtouchnavigation.cpp" "7"
+"webtouchnavigation.h" "7"
+"webtouchphysics.cpp" "7"
+"webtouchphysics.h" "7"
+"webtouchphysicsinterface.cpp" "7"
+"webtouchphysicsinterface.h" "7"
+"webtouchscroller.cpp" "7"
+"webtouchscroller.h" "7"
+"html5applicationviewer.cpp" "6"
+"html5applicationviewer.h" "6"
+"html5applicationviewer.pri" "6"
+"app.pro" "5"
+"main.cpp" "5"
+"mobileapp" "4"
+"app.pro" "5"
+"main.cpp" "5"
+"mainwindow.cpp" "5"
+"mainwindow.h" "5"
+"mainwindow.ui" "5"
+"qt4project" "4"
+"customwidgetwizard" "5"
+"tpl_collection.cpp" "6"
+"tpl_collection.h" "6"
+"tpl_plugin.pro" "6"
+"tpl_resources.qrc" "6"
+"tpl_single.cpp" "6"
+"tpl_single.h" "6"
+"tpl_widget.cpp" "6"
+"tpl_widget.h" "6"
+"tpl_widget_include.pri" "6"
+"tpl_widget_lib.pro" "6"
+"main.cpp" "5"
+"mywidget.cpp" "5"
+"mywidget.h" "5"
+"mywidget_form.cpp" "5"
+"mywidget_form.h" "5"
+"widget.ui" "5"
+"qtquickapp" "4"
+"qmlapplicationviewer" "5"
+"qmlapplicationviewer.cpp" "6"
+"qmlapplicationviewer.h" "6"
+"qmlapplicationviewer.pri" "6"
+"app.pro" "5"
+"main.cpp" "5"
+"shared" "4"
+"app.desktop" "5"
+"deployment.pri" "5"
+"icon64.png" "5"
+"icon80.png" "5"
+"manifest.aegis" "5"
+"symbianicon.svg" "5"
+"wizards" "4"
+"helloworld" "5"
+"console.png" "6"
+"main.cpp" "6"
+"project.pro" "6"
+"wizard_sample.xml" "6"
+"listmodel" "5"
+"listmodel.cpp" "6"
+"listmodel.h" "6"
+"wizard_sample.xml" "6"
+"plaincapp" "5"
+"console.png" "6"
+"main.c" "6"
+"project.pro" "6"
+"wizard.xml" "6"
+"plaincapp-cmake" "5"
+"CMakeLists.txt" "6"
+"console.png" "6"
+"main.c" "6"
+"wizard.xml" "6"
+"plaincppapp" "5"
+"console.png" "6"
+"main.cpp" "6"
+"project.pro" "6"
+"wizard.xml" "6"
+"plaincppapp-cmake" "5"
+"CMakeLists.txt" "6"
+"console.png" "6"
+"main.cpp" "6"
+"wizard.xml" "6"
+"qml-extension" "5"
+"lib.png" "6"
+"object.cpp" "6"
+"object.h" "6"
+"plugin.cpp" "6"
+"plugin.h" "6"
+"project.pro" "6"
+"qmldir" "6"
+"wizard.xml" "6"
+"qtcreatorplugin" "5"
+"myplugin.cpp" "6"
+"myplugin.h" "6"
+"MyPlugin.pluginspec.in" "6"
+"myplugin.pro" "6"
+"myplugin_global.h" "6"
+"mypluginconstants.h" "6"
+"qtcreator_logo_24.png" "6"
+"wizard.xml" "6"
+"scriptgeneratedproject" "5"
+"generate.pl" "6"
+"wizard_sample.xml" "6"
+"README.txt" "5"
+"welcomescreen" "3"
+"qtcreator/externaltools" "4"
+"lrelease.xml" "5"
+"lupdate.xml" "5"
+"qmlviewer.xml" "5"
+"sort.xml" "5"
+"qtcreator" "4"
+"translations" "1"
+"translations.pro" "2"
+"qtcreator" "2"
+"qtcreator.pri" "3"
+"src" "0"
+"src.pro" "1"
+"aggregation" "1"
+"aggregation.pro" "2"
+"qtcreator" "2"
+"qtcreator.pri" "3"
+"qtcreatorlibrary" "2"
+"qtcreatorlibrary.pri" "3"
+"rpath" "2"
+"rpath.pri" "3"
+"Headers" "2"
+"aggregate.h" "3"
+"aggregation_global.h" "3"
+"Sources" "2"
+"aggregate.cpp" "3"
+"app" "1"
+"app.pro" "2"
+"qtcreator" "2"
+"qtcreator.pri" "3"
+"qtlockedfile" "2"
+"qtlockedfile.pri" "3"
+"Headers" "3"
+"qtlockedfile.h" "4"
+"Sources" "3"
+"qtlockedfile.cpp" "4"
+"qtlockedfile_unix.cpp" "4"
+"qtlockedfile_win.cpp" "4"
+"qtsingleapplication" "2"
+"qtsingleapplication.pri" "3"
+"Headers" "3"
+"qtlocalpeer.h" "4"
+"qtsingleapplication.h" "4"
+"Sources" "3"
+"qtlocalpeer.cpp" "4"
+"qtsingleapplication.cpp" "4"
+"rpath" "2"
+"rpath.pri" "3"
+"Sources" "2"
+"main.cpp" "3"
+"Other files" "2"
+"app_version.h.in" "3"
+"Info.plist.in" "3"
+"qtcreator.icns" "3"
+"qtcreator.rc" "3"
+"extensionsystem" "1"
+"extensionsystem.pro" "2"
+"aggregation" "2"
+"aggregation.pri" "3"
+"extensionsystem_dependencies" "2"
+"extensionsystem_dependencies.pri" "3"
+"qtcreator" "2"
+"qtcreator.pri" "3"
+"qtcreatorlibrary" "2"
+"qtcreatorlibrary.pri" "3"
+"rpath" "2"
+"rpath.pri" "3"
+"Headers" "2"
+"extensionsystem_global.h" "3"
+"invoker.h" "3"
+"iplugin.h" "3"
+"iplugin_p.h" "3"
+"optionsparser.h" "3"
+"plugincollection.h" "3"
+"plugindetailsview.h" "3"
+"pluginerroroverview.h" "3"
+"pluginerrorview.h" "3"
+"pluginmanager.h" "3"
+"pluginmanager_p.h" "3"
+"pluginspec.h" "3"
+"pluginspec_p.h" "3"
+"pluginview.h" "3"
+"pluginview_p.h" "3"
+"Sources" "2"
+"invoker.cpp" "3"
+"iplugin.cpp" "3"
+"optionsparser.cpp" "3"
+"plugincollection.cpp" "3"
+"plugindetailsview.cpp" "3"
+"pluginerroroverview.cpp" "3"
+"pluginerrorview.cpp" "3"
+"pluginmanager.cpp" "3"
+"pluginspec.cpp" "3"
+"pluginview.cpp" "3"
+"Forms" "2"
+"plugindetailsview.ui" "3"
+"pluginerroroverview.ui" "3"
+"pluginerrorview.ui" "3"
+"pluginview.ui" "3"
+"Resources" "2"
+"pluginview.qrc" "3"
+"libs" "1"
+"libs.pro" "2"
+"3rdparty" "2"
+"3rdparty.pro" "3"
+"botan" "3"
+"botan.pro" "4"
+"src" "4"
+"src.pro" "5"
+"qtcreator" "5"
+"qtcreator.pri" "6"
+"qtcreatorlibrary" "5"
+"qtcreatorlibrary.pri" "6"
+"rpath" "5"
+"rpath.pri" "6"
+"Headers" "5"
+"algo_factory" "6"
+"algo_cache.h" "7"
+"algo_factory.h" "7"
+"alloc" "6"
+"alloc_mmap" "7"
+"mmap_mem.h" "8"
+"mem_pool" "7"
+"mem_pool.h" "8"
+"system_alloc" "7"
+"defalloc.h" "8"
+"allocate.h" "7"
+"secmem.h" "7"
+"asn1" "6"
+"alg_id.h" "7"
+"asn1_int.h" "7"
+"asn1_obj.h" "7"
+"asn1_oid.h" "7"
+"ber_dec.h" "7"
+"der_enc.h" "7"
+"benchmark" "6"
+"benchmark.h" "7"
+"block" "6"
+"aes" "7"
+"aes.h" "8"
+"blowfish" "7"
+"blowfish.h" "8"
+"cast" "7"
+"cast128.h" "8"
+"cast256.h" "8"
+"des" "7"
+"des.h" "8"
+"desx.h" "8"
+"gost_28147" "7"
+"gost_28147.h" "8"
+"idea" "7"
+"idea.h" "8"
+"kasumi" "7"
+"kasumi.h" "8"
+"lion" "7"
+"lion.h" "8"
+"lubyrack" "7"
+"lubyrack.h" "8"
+"mars" "7"
+"mars.h" "8"
+"misty1" "7"
+"misty1.h" "8"
+"noekeon" "7"
+"noekeon.h" "8"
+"rc2" "7"
+"rc2.h" "8"
+"rc5" "7"
+"rc5.h" "8"
+"rc6" "7"
+"rc6.h" "8"
+"safer" "7"
+"safer_sk.h" "8"
+"seed" "7"
+"seed.h" "8"
+"serpent" "7"
+"serpent.h" "8"
+"skipjack" "7"
+"skipjack.h" "8"
+"square" "7"
+"square.h" "8"
+"tea" "7"
+"tea.h" "8"
+"twofish" "7"
+"twofish.h" "8"
+"xtea" "7"
+"xtea.h" "8"
+"block_cipher.h" "7"
+"cert" "6"
+"cvc" "7"
+"cvc_ado.h" "8"
+"cvc_ca.h" "8"
+"cvc_cert.h" "8"
+"cvc_gen_cert.h" "8"
+"cvc_key.h" "8"
+"cvc_req.h" "8"
+"cvc_self.h" "8"
+"eac_asn_obj.h" "8"
+"eac_obj.h" "8"
+"ecdsa_sig.h" "8"
+"freestore.h" "8"
+"signed_obj.h" "8"
+"x509" "7"
+"certstor.h" "8"
+"crl_ent.h" "8"
+"pkcs10.h" "8"
+"x509_ca.h" "8"
+"x509_crl.h" "8"
+"x509_ext.h" "8"
+"x509_obj.h" "8"
+"x509cert.h" "8"
+"x509find.h" "8"
+"x509self.h" "8"
+"x509stor.h" "8"
+"checksum" "6"
+"adler32" "7"
+"adler32.h" "8"
+"crc24" "7"
+"crc24.h" "8"
+"crc32" "7"
+"crc32.h" "8"
+"cms" "6"
+"cms_dec.h" "7"
+"cms_enc.h" "7"
+"codec" "6"
+"base64" "7"
+"base64.h" "8"
+"hex" "7"
+"hex.h" "8"
+"openpgp" "7"
+"openpgp.h" "8"
+"pem" "7"
+"pem.h" "8"
+"cryptobox" "6"
+"cryptobox.h" "7"
+"engine" "6"
+"def_engine" "7"
+"def_eng.h" "8"
+"engine.h" "7"
+"entropy" "6"
+"cryptoapi_rng" "7"
+"es_capi.h" "8"
+"dev_random" "7"
+"es_dev.h" "8"
+"egd" "7"
+"es_egd.h" "8"
+"proc_walk" "7"
+"es_ftw.h" "8"
+"unix_procs" "7"
+"es_unix.h" "8"
+"unix_cmd.h" "8"
+"win32_stats" "7"
+"es_win32.h" "8"
+"entropy_src.h" "7"
+"filters" "6"
+"fd_unix" "7"
+"fd_unix.h" "8"
+"basefilt.h" "7"
+"buf_filt.h" "7"
+"data_snk.h" "7"
+"data_src.h" "7"
+"filter.h" "7"
+"filters.h" "7"
+"out_buf.h" "7"
+"pbe.h" "7"
+"pipe.h" "7"
+"secqueue.h" "7"
+"hash" "6"
+"fork256" "7"
+"fork256.h" "8"
+"gost_3411" "7"
+"gost_3411.h" "8"
+"has160" "7"
+"has160.h" "8"
+"md2" "7"
+"md2.h" "8"
+"md4" "7"
+"md4.h" "8"
+"md5" "7"
+"md5.h" "8"
+"mdx_hash" "7"
+"mdx_hash.h" "8"
+"par_hash" "7"
+"par_hash.h" "8"
+"rmd128" "7"
+"rmd128.h" "8"
+"rmd160" "7"
+"rmd160.h" "8"
+"sha1" "7"
+"sha160.h" "8"
+"sha2" "7"
+"sha2_32.h" "8"
+"sha2_64.h" "8"
+"skein" "7"
+"skein_512.h" "8"
+"tiger" "7"
+"tiger.h" "8"
+"whirlpool" "7"
+"whrlpool.h" "8"
+"hash.h" "7"
+"kdf" "6"
+"kdf1" "7"
+"kdf1.h" "8"
+"kdf2" "7"
+"kdf2.h" "8"
+"mgf1" "7"
+"mgf1.h" "8"
+"ssl_prf" "7"
+"prf_ssl3.h" "8"
+"tls_prf" "7"
+"prf_tls.h" "8"
+"x942_prf" "7"
+"prf_x942.h" "8"
+"kdf.h" "7"
+"libstate" "6"
+"oid_lookup" "7"
+"oids.h" "8"
+"botan.h" "7"
+"init.h" "7"
+"libstate.h" "7"
+"look_pk.h" "7"
+"lookup.h" "7"
+"pk_engine.h" "7"
+"scan_name.h" "7"
+"mac" "6"
+"cbc_mac" "7"
+"cbc_mac.h" "8"
+"cmac" "7"
+"cmac.h" "8"
+"hmac" "7"
+"hmac.h" "8"
+"ssl3mac" "7"
+"ssl3_mac.h" "8"
+"x919_mac" "7"
+"x919_mac.h" "8"
+"mac.h" "7"
+"math" "6"
+"bigint" "7"
+"mp_generic" "8"
+"mp_asm.h" "9"
+"mp_asmi.h" "9"
+"bigint.h" "8"
+"divide.h" "8"
+"mp_core.h" "8"
+"mp_types.h" "8"
+"gfpmath" "7"
+"curve_gfp.h" "8"
+"gfp_element.h" "8"
+"gfp_modulus.h" "8"
+"point_gfp.h" "8"
+"numbertheory" "7"
+"blinding.h" "8"
+"def_powm.h" "8"
+"numthry.h" "8"
+"pow_mod.h" "8"
+"reducer.h" "8"
+"modes" "6"
+"cbc" "7"
+"cbc.h" "8"
+"cfb" "7"
+"cfb.h" "8"
+"ctr" "7"
+"ctr.h" "8"
+"cts" "7"
+"cts.h" "8"
+"eax" "7"
+"eax.h" "8"
+"ecb" "7"
+"ecb.h" "8"
+"mode_pad" "7"
+"mode_pad.h" "8"
+"ofb" "7"
+"ofb.h" "8"
+"xts" "7"
+"xts.h" "8"
+"modebase.h" "7"
+"mutex" "6"
+"noop_mutex" "7"
+"mux_noop.h" "8"
+"pthreads" "7"
+"mux_pthr.h" "8"
+"win32_crit_section" "7"
+"mux_win32.h" "8"
+"mutex.h" "7"
+"pbe" "6"
+"pbes1" "7"
+"pbes1.h" "8"
+"pbes2" "7"
+"pbes2.h" "8"
+"get_pbe.h" "7"
+"pk_pad" "6"
+"eme1" "7"
+"eme1.h" "8"
+"eme_pkcs" "7"
+"eme_pkcs.h" "8"
+"emsa1" "7"
+"emsa1.h" "8"
+"emsa1_bsi" "7"
+"emsa1_bsi.h" "8"
+"emsa2" "7"
+"emsa2.h" "8"
+"emsa3" "7"
+"emsa3.h" "8"
+"emsa4" "7"
+"emsa4.h" "8"
+"emsa_raw" "7"
+"emsa_raw.h" "8"
+"hash_id" "7"
+"hash_id.h" "8"
+"eme.h" "7"
+"emsa.h" "7"
+"pubkey" "6"
+"dh" "7"
+"dh.h" "8"
+"dh_core.h" "8"
+"dh_op.h" "8"
+"dl_algo" "7"
+"dl_algo.h" "8"
+"dl_group" "7"
+"dl_group.h" "8"
+"dlies" "7"
+"dlies.h" "8"
+"dsa" "7"
+"dsa.h" "8"
+"dsa_core.h" "8"
+"dsa_op.h" "8"
+"ec_dompar" "7"
+"ec_dompar.h" "8"
+"ecc_key" "7"
+"ecc_key.h" "8"
+"ecdsa" "7"
+"ecdsa.h" "8"
+"ecdsa_core.h" "8"
+"ecdsa_op.h" "8"
+"eckaeg" "7"
+"eckaeg.h" "8"
+"eckaeg_core.h" "8"
+"eckaeg_op.h" "8"
+"elgamal" "7"
+"elg_core.h" "8"
+"elg_op.h" "8"
+"elgamal.h" "8"
+"if_algo" "7"
+"if_algo.h" "8"
+"if_core.h" "8"
+"if_op.h" "8"
+"keypair" "7"
+"keypair.h" "8"
+"nr" "7"
+"nr.h" "8"
+"nr_core.h" "8"
+"nr_op.h" "8"
+"pk_codecs" "7"
+"pkcs8.h" "8"
+"x509_key.h" "8"
+"rsa" "7"
+"rsa.h" "8"
+"rw" "7"
+"rw.h" "8"
+"pk_algs.h" "7"
+"pk_filts.h" "7"
+"pk_keys.h" "7"
+"pubkey.h" "7"
+"pubkey_enums.h" "7"
+"rng" "6"
+"auto_rng" "7"
+"auto_rng.h" "8"
+"hmac_rng" "7"
+"hmac_rng.h" "8"
+"randpool" "7"
+"randpool.h" "8"
+"x931_rng" "7"
+"x931_rng.h" "8"
+"rng.h" "7"
+"s2k" "6"
+"pbkdf1" "7"
+"pbkdf1.h" "8"
+"pbkdf2" "7"
+"pbkdf2.h" "8"
+"pgps2k" "7"
+"pgp_s2k.h" "8"
+"s2k.h" "7"
+"selftest" "6"
+"selftest.h" "7"
+"stream" "6"
+"arc4" "7"
+"arc4.h" "8"
+"salsa20" "7"
+"salsa20.h" "8"
+"turing" "7"
+"turing.h" "8"
+"wid_wake" "7"
+"wid_wake.h" "8"
+"stream_cipher.h" "7"
+"sym_algo" "6"
+"sym_algo.h" "7"
+"symkey.h" "7"
+"timer" "6"
+"gettimeofday" "7"
+"tm_unix.h" "8"
+"posix_rt" "7"
+"tm_posix.h" "8"
+"win32_query_perf_ctr" "7"
+"tm_win32.h" "8"
+"timer.h" "7"
+"utils" "6"
+"buf_comp" "7"
+"buf_comp.h" "8"
+"datastor" "7"
+"datastor.h" "8"
+"bit_ops.h" "7"
+"bswap.h" "7"
+"charset.h" "7"
+"exceptn.h" "7"
+"loadstor.h" "7"
+"mem_ops.h" "7"
+"parsing.h" "7"
+"rotate.h" "7"
+"sharedpointer.h" "7"
+"stl_util.h" "7"
+"types.h" "7"
+"ui.h" "7"
+"util.h" "7"
+"version.h" "7"
+"xor_buf.h" "7"
+"Sources" "5"
+"algo_factory" "6"
+"algo_factory.cpp" "7"
+"prov_weight.cpp" "7"
+"alloc" "6"
+"alloc_mmap" "7"
+"mmap_mem.cpp" "8"
+"mem_pool" "7"
+"mem_pool.cpp" "8"
+"system_alloc" "7"
+"defalloc.cpp" "8"
+"asn1" "6"
+"alg_id.cpp" "7"
+"asn1_alt.cpp" "7"
+"asn1_att.cpp" "7"
+"asn1_dn.cpp" "7"
+"asn1_int.cpp" "7"
+"asn1_oid.cpp" "7"
+"asn1_str.cpp" "7"
+"asn1_tm.cpp" "7"
+"ber_dec.cpp" "7"
+"der_enc.cpp" "7"
+"benchmark" "6"
+"benchmark.cpp" "7"
+"block" "6"
+"aes" "7"
+"aes.cpp" "8"
+"aes_tab.cpp" "8"
+"blowfish" "7"
+"blfs_tab.cpp" "8"
+"blowfish.cpp" "8"
+"cast" "7"
+"cast128.cpp" "8"
+"cast256.cpp" "8"
+"cast_tab.cpp" "8"
+"des" "7"
+"des.cpp" "8"
+"des_tab.cpp" "8"
+"desx.cpp" "8"
+"gost_28147" "7"
+"gost_28147.cpp" "8"
+"idea" "7"
+"idea.cpp" "8"
+"kasumi" "7"
+"kasumi.cpp" "8"
+"lion" "7"
+"lion.cpp" "8"
+"lubyrack" "7"
+"lubyrack.cpp" "8"
+"mars" "7"
+"mars.cpp" "8"
+"mars_tab.cpp" "8"
+"misty1" "7"
+"misty1.cpp" "8"
+"noekeon" "7"
+"noekeon.cpp" "8"
+"rc2" "7"
+"rc2.cpp" "8"
+"rc5" "7"
+"rc5.cpp" "8"
+"rc6" "7"
+"rc6.cpp" "8"
+"safer" "7"
+"safe_tab.cpp" "8"
+"safer_sk.cpp" "8"
+"seed" "7"
+"seed.cpp" "8"
+"seed_tab.cpp" "8"
+"serpent" "7"
+"serpent.cpp" "8"
+"skipjack" "7"
+"skipjack.cpp" "8"
+"square" "7"
+"sqr_tab.cpp" "8"
+"square.cpp" "8"
+"tea" "7"
+"tea.cpp" "8"
+"twofish" "7"
+"two_tab.cpp" "8"
+"twofish.cpp" "8"
+"xtea" "7"
+"xtea.cpp" "8"
+"cert" "6"
+"cvc" "7"
+"asn1_eac_str.cpp" "8"
+"asn1_eac_tm.cpp" "8"
+"cvc_ado.cpp" "8"
+"cvc_ca.cpp" "8"
+"cvc_cert.cpp" "8"
+"cvc_req.cpp" "8"
+"cvc_self.cpp" "8"
+"ecdsa_sig.cpp" "8"
+"signed_obj.cpp" "8"
+"x509" "7"
+"certstor.cpp" "8"
+"crl_ent.cpp" "8"
+"pkcs10.cpp" "8"
+"x509_ca.cpp" "8"
+"x509_crl.cpp" "8"
+"x509_ext.cpp" "8"
+"x509_obj.cpp" "8"
+"x509cert.cpp" "8"
+"x509find.cpp" "8"
+"x509opt.cpp" "8"
+"x509self.cpp" "8"
+"x509stor.cpp" "8"
+"checksum" "6"
+"adler32" "7"
+"adler32.cpp" "8"
+"crc24" "7"
+"crc24.cpp" "8"
+"crc32" "7"
+"crc32.cpp" "8"
+"cms" "6"
+"cms_algo.cpp" "7"
+"cms_comp.cpp" "7"
+"cms_dalg.cpp" "7"
+"cms_dec.cpp" "7"
+"cms_ealg.cpp" "7"
+"cms_enc.cpp" "7"
+"codec" "6"
+"base64" "7"
+"b64_char.cpp" "8"
+"base64.cpp" "8"
+"hex" "7"
+"hex.cpp" "8"
+"hex_char.cpp" "8"
+"openpgp" "7"
+"openpgp.cpp" "8"
+"pem" "7"
+"pem.cpp" "8"
+"cryptobox" "6"
+"cryptobox.cpp" "7"
+"engine/def_engine" "6"
+"def_mode.cpp" "7"
+"def_pk_ops.cpp" "7"
+"def_powm.cpp" "7"
+"lookup_block.cpp" "7"
+"lookup_hash.cpp" "7"
+"lookup_mac.cpp" "7"
+"lookup_stream.cpp" "7"
+"entropy" "6"
+"cryptoapi_rng" "7"
+"es_capi.cpp" "8"
+"dev_random" "7"
+"es_dev.cpp" "8"
+"egd" "7"
+"es_egd.cpp" "8"
+"proc_walk" "7"
+"es_ftw.cpp" "8"
+"unix_procs" "7"
+"es_unix.cpp" "8"
+"unix_cmd.cpp" "8"
+"unix_src.cpp" "8"
+"win32_stats" "7"
+"es_win32.cpp" "8"
+"filters" "6"
+"fd_unix" "7"
+"fd_unix.cpp" "8"
+"algo_filt.cpp" "7"
+"basefilt.cpp" "7"
+"buf_filt.cpp" "7"
+"data_snk.cpp" "7"
+"data_src.cpp" "7"
+"filter.cpp" "7"
+"out_buf.cpp" "7"
+"pipe.cpp" "7"
+"pipe_io.cpp" "7"
+"pipe_rw.cpp" "7"
+"secqueue.cpp" "7"
+"hash" "6"
+"fork256" "7"
+"fork256.cpp" "8"
+"gost_3411" "7"
+"gost_3411.cpp" "8"
+"has160" "7"
+"has160.cpp" "8"
+"md2" "7"
+"md2.cpp" "8"
+"md4" "7"
+"md4.cpp" "8"
+"md5" "7"
+"md5.cpp" "8"
+"mdx_hash" "7"
+"mdx_hash.cpp" "8"
+"par_hash" "7"
+"par_hash.cpp" "8"
+"rmd128" "7"
+"rmd128.cpp" "8"
+"rmd160" "7"
+"rmd160.cpp" "8"
+"sha1" "7"
+"sha160.cpp" "8"
+"sha2" "7"
+"sha2_32.cpp" "8"
+"sha2_64.cpp" "8"
+"skein" "7"
+"skein_512.cpp" "8"
+"tiger" "7"
+"tig_tab.cpp" "8"
+"tiger.cpp" "8"
+"whirlpool" "7"
+"whrl_tab.cpp" "8"
+"whrlpool.cpp" "8"
+"kdf" "6"
+"kdf1" "7"
+"kdf1.cpp" "8"
+"kdf2" "7"
+"kdf2.cpp" "8"
+"mgf1" "7"
+"mgf1.cpp" "8"
+"ssl_prf" "7"
+"prf_ssl3.cpp" "8"
+"tls_prf" "7"
+"prf_tls.cpp" "8"
+"x942_prf" "7"
+"prf_x942.cpp" "8"
+"kdf.cpp" "7"
+"libstate" "6"
+"oid_lookup" "7"
+"oids.cpp" "8"
+"get_enc.cpp" "7"
+"init.cpp" "7"
+"libstate.cpp" "7"
+"look_pk.cpp" "7"
+"lookup.cpp" "7"
+"pk_engine.cpp" "7"
+"policy.cpp" "7"
+"scan_name.cpp" "7"
+"mac" "6"
+"cbc_mac" "7"
+"cbc_mac.cpp" "8"
+"cmac" "7"
+"cmac.cpp" "8"
+"hmac" "7"
+"hmac.cpp" "8"
+"ssl3mac" "7"
+"ssl3_mac.cpp" "8"
+"x919_mac" "7"
+"x919_mac.cpp" "8"
+"mac.cpp" "7"
+"math" "6"
+"bigint" "7"
+"monty_generic" "8"
+"mp_monty.cpp" "9"
+"mulop_generic" "8"
+"mp_mulop.cpp" "9"
+"big_code.cpp" "8"
+"big_io.cpp" "8"
+"big_ops2.cpp" "8"
+"big_ops3.cpp" "8"
+"big_rand.cpp" "8"
+"bigint.cpp" "8"
+"divide.cpp" "8"
+"mp_asm.cpp" "8"
+"mp_comba.cpp" "8"
+"mp_karat.cpp" "8"
+"mp_misc.cpp" "8"
+"mp_shift.cpp" "8"
+"gfpmath" "7"
+"curve_gfp.cpp" "8"
+"gfp_element.cpp" "8"
+"point_gfp.cpp" "8"
+"numbertheory" "7"
+"blinding.cpp" "8"
+"dsa_gen.cpp" "8"
+"jacobi.cpp" "8"
+"make_prm.cpp" "8"
+"mp_numth.cpp" "8"
+"numthry.cpp" "8"
+"pow_mod.cpp" "8"
+"powm_fw.cpp" "8"
+"powm_mnt.cpp" "8"
+"primes.cpp" "8"
+"reducer.cpp" "8"
+"ressol.cpp" "8"
+"modes" "6"
+"cbc" "7"
+"cbc.cpp" "8"
+"cfb" "7"
+"cfb.cpp" "8"
+"ctr" "7"
+"ctr.cpp" "8"
+"cts" "7"
+"cts.cpp" "8"
+"eax" "7"
+"eax.cpp" "8"
+"eax_dec.cpp" "8"
+"ecb" "7"
+"ecb.cpp" "8"
+"mode_pad" "7"
+"mode_pad.cpp" "8"
+"ofb" "7"
+"ofb.cpp" "8"
+"xts" "7"
+"xts.cpp" "8"
+"modebase.cpp" "7"
+"mutex" "6"
+"noop_mutex" "7"
+"mux_noop.cpp" "8"
+"pthreads" "7"
+"mux_pthr.cpp" "8"
+"win32_crit_section" "7"
+"mux_win32.cpp" "8"
+"pbe" "6"
+"pbes1" "7"
+"pbes1.cpp" "8"
+"pbes2" "7"
+"pbes2.cpp" "8"
+"get_pbe.cpp" "7"
+"pk_pad" "6"
+"eme1" "7"
+"eme1.cpp" "8"
+"eme_pkcs" "7"
+"eme_pkcs.cpp" "8"
+"emsa1" "7"
+"emsa1.cpp" "8"
+"emsa1_bsi" "7"
+"emsa1_bsi.cpp" "8"
+"emsa2" "7"
+"emsa2.cpp" "8"
+"emsa3" "7"
+"emsa3.cpp" "8"
+"emsa4" "7"
+"emsa4.cpp" "8"
+"emsa_raw" "7"
+"emsa_raw.cpp" "8"
+"hash_id" "7"
+"hash_id.cpp" "8"
+"eme.cpp" "7"
+"pubkey" "6"
+"dh" "7"
+"dh.cpp" "8"
+"dh_core.cpp" "8"
+"dl_algo" "7"
+"dl_algo.cpp" "8"
+"dl_group" "7"
+"dl_group.cpp" "8"
+"dlies" "7"
+"dlies.cpp" "8"
+"dsa" "7"
+"dsa.cpp" "8"
+"dsa_core.cpp" "8"
+"dsa_op.cpp" "8"
+"ec_dompar" "7"
+"ec_dompar.cpp" "8"
+"ecc_key" "7"
+"ecc_key.cpp" "8"
+"ecdsa" "7"
+"ecdsa.cpp" "8"
+"ecdsa_core.cpp" "8"
+"ecdsa_op.cpp" "8"
+"eckaeg" "7"
+"eckaeg.cpp" "8"
+"eckaeg_core.cpp" "8"
+"eckaeg_op.cpp" "8"
+"elgamal" "7"
+"elg_core.cpp" "8"
+"elg_op.cpp" "8"
+"elgamal.cpp" "8"
+"if_algo" "7"
+"if_algo.cpp" "8"
+"if_core.cpp" "8"
+"if_op.cpp" "8"
+"keypair" "7"
+"keypair.cpp" "8"
+"nr" "7"
+"nr.cpp" "8"
+"nr_core.cpp" "8"
+"nr_op.cpp" "8"
+"pk_codecs" "7"
+"pkcs8.cpp" "8"
+"x509_key.cpp" "8"
+"rsa" "7"
+"rsa.cpp" "8"
+"rw" "7"
+"rw.cpp" "8"
+"pk_algs.cpp" "7"
+"pk_filts.cpp" "7"
+"pk_keys.cpp" "7"
+"pubkey.cpp" "7"
+"pubkey_enums.cpp" "7"
+"rng" "6"
+"auto_rng" "7"
+"auto_rng.cpp" "8"
+"hmac_rng" "7"
+"hmac_rng.cpp" "8"
+"randpool" "7"
+"randpool.cpp" "8"
+"x931_rng" "7"
+"x931_rng.cpp" "8"
+"rng.cpp" "7"
+"s2k" "6"
+"pbkdf1" "7"
+"pbkdf1.cpp" "8"
+"pbkdf2" "7"
+"pbkdf2.cpp" "8"
+"pgps2k" "7"
+"pgp_s2k.cpp" "8"
+"s2k.cpp" "7"
+"selftest" "6"
+"selftest.cpp" "7"
+"stream" "6"
+"arc4" "7"
+"arc4.cpp" "8"
+"salsa20" "7"
+"salsa20.cpp" "8"
+"turing" "7"
+"tur_tab.cpp" "8"
+"turing.cpp" "8"
+"wid_wake" "7"
+"wid_wake.cpp" "8"
+"stream_cipher.cpp" "7"
+"sym_algo" "6"
+"symkey.cpp" "7"
+"timer" "6"
+"gettimeofday" "7"
+"tm_unix.cpp" "8"
+"posix_rt" "7"
+"tm_posix.cpp" "8"
+"win32_query_perf_ctr" "7"
+"tm_win32.cpp" "8"
+"timer.cpp" "7"
+"utils" "6"
+"datastor" "7"
+"datastor.cpp" "8"
+"charset.cpp" "7"
+"exceptn.cpp" "7"
+"mlock.cpp" "7"
+"parsing.cpp" "7"
+"ui.cpp" "7"
+"util.cpp" "7"
+"version.cpp" "7"
+"cdb_detect" "2"
+"cdb_detect.pri" "3"
+"cplusplus" "2"
+"cplusplus.pro" "3"
+"cplusplus" "3"
+"cplusplus.pri" "4"
+"Headers" "4"
+"AST.h" "5"
+"ASTfwd.h" "5"
+"ASTMatcher.h" "5"
+"ASTPatternBuilder.h" "5"
+"ASTVisitor.h" "5"
+"Bind.h" "5"
+"Control.h" "5"
+"CoreTypes.h" "5"
+"CPlusPlus.h" "5"
+"CPlusPlusForwardDeclarations.h" "5"
+"DiagnosticClient.h" "5"
+"FullySpecifiedType.h" "5"
+"Lexer.h" "5"
+"Literals.h" "5"
+"LiteralTable.h" "5"
+"MemoryPool.h" "5"
+"Name.h" "5"
+"Names.h" "5"
+"NameVisitor.h" "5"
+"ObjectiveCTypeQualifiers.h" "5"
+"Parser.h" "5"
+"QtContextKeywords.h" "5"
+"Scope.h" "5"
+"Symbol.h" "5"
+"Symbols.h" "5"
+"SymbolVisitor.h" "5"
+"Templates.h" "5"
+"Token.h" "5"
+"TranslationUnit.h" "5"
+"Type.h" "5"
+"TypeMatcher.h" "5"
+"TypeVisitor.h" "5"
+"Sources" "4"
+"AST.cpp" "5"
+"ASTClone.cpp" "5"
+"ASTMatch0.cpp" "5"
+"ASTMatcher.cpp" "5"
+"ASTPatternBuilder.cpp" "5"
+"ASTVisit.cpp" "5"
+"ASTVisitor.cpp" "5"
+"Bind.cpp" "5"
+"Control.cpp" "5"
+"CoreTypes.cpp" "5"
+"DiagnosticClient.cpp" "5"
+"FullySpecifiedType.cpp" "5"
+"Keywords.cpp" "5"
+"Lexer.cpp" "5"
+"Literals.cpp" "5"
+"LiteralTable.cpp" "5"
+"MemoryPool.cpp" "5"
+"Name.cpp" "5"
+"Names.cpp" "5"
+"NameVisitor.cpp" "5"
+"ObjectiveCAtKeywords.cpp" "5"
+"ObjectiveCTypeQualifiers.cpp" "5"
+"Parser.cpp" "5"
+"QtContextKeywords.cpp" "5"
+"Scope.cpp" "5"
+"Symbol.cpp" "5"
+"Symbols.cpp" "5"
+"SymbolVisitor.cpp" "5"
+"Templates.cpp" "5"
+"Token.cpp" "5"
+"TranslationUnit.cpp" "5"
+"Type.cpp" "5"
+"TypeMatcher.cpp" "5"
+"TypeVisitor.cpp" "5"
+"cplusplus-lib" "3"
+"cplusplus-lib.pri" "4"
+"Headers" "4"
+"ASTParent.h" "5"
+"ASTPath.h" "5"
+"BackwardsScanner.h" "5"
+"CppDocument.h" "5"
+"CppRewriter.h" "5"
+"DependencyTable.h" "5"
+"DeprecatedGenTemplateInstance.h" "5"
+"ExpressionUnderCursor.h" "5"
+"FastPreprocessor.h" "5"
+"findcdbbreakpoint.h" "5"
+"FindUsages.h" "5"
+"Icons.h" "5"
+"LookupContext.h" "5"
+"LookupItem.h" "5"
+"Macro.h" "5"
+"MatchingText.h" "5"
+"NamePrettyPrinter.h" "5"
+"Overview.h" "5"
+"OverviewModel.h" "5"
+"pp-cctype.h" "5"
+"pp-engine.h" "5"
+"pp-scanner.h" "5"
+"pp.h" "5"
+"PreprocessorClient.h" "5"
+"PreprocessorEnvironment.h" "5"
+"ResolveExpression.h" "5"
+"SimpleLexer.h" "5"
+"SnapshotSymbolVisitor.h" "5"
+"SymbolNameVisitor.h" "5"
+"TypeOfExpression.h" "5"
+"TypePrettyPrinter.h" "5"
+"Sources" "4"
+"ASTParent.cpp" "5"
+"ASTPath.cpp" "5"
+"BackwardsScanner.cpp" "5"
+"CppDocument.cpp" "5"
+"CppRewriter.cpp" "5"
+"DependencyTable.cpp" "5"
+"DeprecatedGenTemplateInstance.cpp" "5"
+"ExpressionUnderCursor.cpp" "5"
+"FastPreprocessor.cpp" "5"
+"findcdbbreakpoint.cpp" "5"
+"FindUsages.cpp" "5"
+"Icons.cpp" "5"
+"LookupContext.cpp" "5"
+"LookupItem.cpp" "5"
+"Macro.cpp" "5"
+"MatchingText.cpp" "5"
+"NamePrettyPrinter.cpp" "5"
+"Overview.cpp" "5"
+"OverviewModel.cpp" "5"
+"pp-engine.cpp" "5"
+"pp-scanner.cpp" "5"
+"PreprocessorClient.cpp" "5"
+"PreprocessorEnvironment.cpp" "5"
+"ResolveExpression.cpp" "5"
+"SimpleLexer.cpp" "5"
+"SnapshotSymbolVisitor.cpp" "5"
+"SymbolNameVisitor.cpp" "5"
+"TypeOfExpression.cpp" "5"
+"TypePrettyPrinter.cpp" "5"
+"Resources" "4"
+"cplusplus.qrc" "5"
+"languageutils" "3"
+"languageutils.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorlibrary" "3"
+"qtcreatorlibrary.pri" "4"
+"rpath" "3"
+"rpath.pri" "4"
+"glsl" "2"
+"glsl.pro" "3"
+"glsl-lib" "3"
+"glsl-lib.pri" "4"
+"Headers" "4"
+"glsl.h" "5"
+"glslast.h" "5"
+"glslastdump.h" "5"
+"glslastvisitor.h" "5"
+"glslengine.h" "5"
+"glsllexer.h" "5"
+"glslmemorypool.h" "5"
+"glslparser.h" "5"
+"glslparsertable_p.h" "5"
+"glslsemantic.h" "5"
+"glslsymbol.h" "5"
+"glslsymbols.h" "5"
+"glsltype.h" "5"
+"glsltypes.h" "5"
+"Sources" "4"
+"glslast.cpp" "5"
+"glslastdump.cpp" "5"
+"glslastvisitor.cpp" "5"
+"glslengine.cpp" "5"
+"glslkeywords.cpp" "5"
+"glsllexer.cpp" "5"
+"glslmemorypool.cpp" "5"
+"glslparser.cpp" "5"
+"glslparsertable.cpp" "5"
+"glslsemantic.cpp" "5"
+"glslsymbol.cpp" "5"
+"glslsymbols.cpp" "5"
+"glsltype.cpp" "5"
+"glsltypes.cpp" "5"
+"Other files" "4"
+"glsl.g" "5"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorlibrary" "3"
+"qtcreatorlibrary.pri" "4"
+"rpath" "3"
+"rpath.pri" "4"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"languageutils" "2"
+"languageutils.pro" "3"
+"languageutils-lib" "3"
+"languageutils-lib.pri" "4"
+"Headers" "4"
+"componentversion.h" "5"
+"fakemetaobject.h" "5"
+"languageutils_global.h" "5"
+"Sources" "4"
+"componentversion.cpp" "5"
+"fakemetaobject.cpp" "5"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorlibrary" "3"
+"qtcreatorlibrary.pri" "4"
+"rpath" "3"
+"rpath.pri" "4"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"process_ctrlc_stub" "2"
+"process_ctrlc_stub.pro" "3"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"Sources" "3"
+"process_ctrlc_stub.cpp" "4"
+"process_stub" "2"
+"process_stub.pro" "3"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"Sources" "3"
+"process_stub_unix.c" "4"
+"process_stub_win.c" "4"
+"qmleditorwidgets" "2"
+"qmleditorwidgets.pro" "3"
+"easingpane" "3"
+"easingpane.pri" "4"
+"Headers" "4"
+"easingcontextpane.h" "5"
+"easinggraph.h" "5"
+"Sources" "4"
+"easingcontextpane.cpp" "5"
+"easinggraph.cpp" "5"
+"Forms" "4"
+"easingcontextpane.ui" "5"
+"Resources" "4"
+"easingpane.qrc" "5"
+"qmleditorwidgets-lib" "3"
+"qmleditorwidgets-lib.pri" "4"
+"Headers" "4"
+"colorbox.h" "5"
+"colorbutton.h" "5"
+"colorwidgets.h" "5"
+"contextpanetextwidget.h" "5"
+"contextpanewidget.h" "5"
+"contextpanewidgetimage.h" "5"
+"contextpanewidgetrectangle.h" "5"
+"customcolordialog.h" "5"
+"filewidget.h" "5"
+"fontsizespinbox.h" "5"
+"gradientline.h" "5"
+"huecontrol.h" "5"
+"qmleditorwidgets_global.h" "5"
+"Sources" "4"
+"colorbox.cpp" "5"
+"colorbutton.cpp" "5"
+"colorwidgets.cpp" "5"
+"contextpanetextwidget.cpp" "5"
+"contextpanewidget.cpp" "5"
+"contextpanewidgetimage.cpp" "5"
+"contextpanewidgetrectangle.cpp" "5"
+"customcolordialog.cpp" "5"
+"filewidget.cpp" "5"
+"fontsizespinbox.cpp" "5"
+"gradientline.cpp" "5"
+"huecontrol.cpp" "5"
+"Forms" "4"
+"contextpanetext.ui" "5"
+"contextpanewidgetborderimage.ui" "5"
+"contextpanewidgetimage.ui" "5"
+"contextpanewidgetrectangle.ui" "5"
+"Resources" "4"
+"resources.qrc" "5"
+"Other files" "4"
+"qmleditorwidgets.pri" "5"
+"qmljs" "3"
+"qmljs.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorlibrary" "3"
+"qtcreatorlibrary.pri" "4"
+"rpath" "3"
+"rpath.pri" "4"
+"qmljs" "2"
+"qmljs.pro" "3"
+"languageutils" "3"
+"languageutils.pri" "4"
+"parser" "3"
+"parser.pri" "4"
+"Headers" "4"
+"qmldirparser_p.h" "5"
+"qmlerror.h" "5"
+"qmljsast_p.h" "5"
+"qmljsastfwd_p.h" "5"
+"qmljsastvisitor_p.h" "5"
+"qmljsengine_p.h" "5"
+"qmljsglobal_p.h" "5"
+"qmljsgrammar_p.h" "5"
+"qmljskeywords_p.h" "5"
+"qmljslexer_p.h" "5"
+"qmljsmemorypool_p.h" "5"
+"qmljsparser_p.h" "5"
+"Sources" "4"
+"qmldirparser.cpp" "5"
+"qmlerror.cpp" "5"
+"qmljsast.cpp" "5"
+"qmljsastvisitor.cpp" "5"
+"qmljsengine_p.cpp" "5"
+"qmljsgrammar.cpp" "5"
+"qmljslexer.cpp" "5"
+"qmljsparser.cpp" "5"
+"qmljs-lib" "3"
+"qmljs-lib.pri" "4"
+"Headers" "4"
+"jsoncheck.h" "5"
+"qmljs_global.h" "5"
+"qmljsbind.h" "5"
+"qmljscheck.h" "5"
+"qmljscodeformatter.h" "5"
+"qmljscompletioncontextfinder.h" "5"
+"qmljscontext.h" "5"
+"qmljsdelta.h" "5"
+"qmljsdocument.h" "5"
+"qmljsevaluate.h" "5"
+"qmljsicons.h" "5"
+"qmljsicontextpane.h" "5"
+"qmljsindenter.h" "5"
+"qmljsinterpreter.h" "5"
+"qmljslineinfo.h" "5"
+"qmljslink.h" "5"
+"qmljsmodelmanagerinterface.h" "5"
+"qmljspropertyreader.h" "5"
+"qmljsreformatter.h" "5"
+"qmljsrewriter.h" "5"
+"qmljsscanner.h" "5"
+"qmljsscopeastpath.h" "5"
+"qmljsscopebuilder.h" "5"
+"qmljsscopechain.h" "5"
+"qmljsstaticanalysismessage.h" "5"
+"qmljstypedescriptionreader.h" "5"
+"qmljsutils.h" "5"
+"qmljsvalueowner.h" "5"
+"Sources" "4"
+"jsoncheck.cpp" "5"
+"qmljsbind.cpp" "5"
+"qmljscheck.cpp" "5"
+"qmljscodeformatter.cpp" "5"
+"qmljscompletioncontextfinder.cpp" "5"
+"qmljscontext.cpp" "5"
+"qmljsdelta.cpp" "5"
+"qmljsdocument.cpp" "5"
+"qmljsevaluate.cpp" "5"
+"qmljsicons.cpp" "5"
+"qmljsindenter.cpp" "5"
+"qmljsinterpreter.cpp" "5"
+"qmljslineinfo.cpp" "5"
+"qmljslink.cpp" "5"
+"qmljsmodelmanagerinterface.cpp" "5"
+"qmljspropertyreader.cpp" "5"
+"qmljsreformatter.cpp" "5"
+"qmljsrewriter.cpp" "5"
+"qmljsscanner.cpp" "5"
+"qmljsscopeastpath.cpp" "5"
+"qmljsscopebuilder.cpp" "5"
+"qmljsscopechain.cpp" "5"
+"qmljsstaticanalysismessage.cpp" "5"
+"qmljstypedescriptionreader.cpp" "5"
+"qmljsutils.cpp" "5"
+"qmljsvalueowner.cpp" "5"
+"Resources" "4"
+"qmljs.qrc" "5"
+"Other files" "4"
+"parser" "5"
+"qmljs.g" "6"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorlibrary" "3"
+"qtcreatorlibrary.pri" "4"
+"rpath" "3"
+"rpath.pri" "4"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"qtcreatorcdbext" "2"
+"qtcreatorcdbext.pro" "3"
+"cdb_detect" "3"
+"cdb_detect.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"Headers" "3"
+"base64.h" "4"
+"common.h" "4"
+"containers.h" "4"
+"eventcallback.h" "4"
+"extensioncontext.h" "4"
+"gdbmihelpers.h" "4"
+"iinterfacepointer.h" "4"
+"knowntype.h" "4"
+"outputcallback.h" "4"
+"stringutils.h" "4"
+"symbolgroup.h" "4"
+"symbolgroupnode.h" "4"
+"symbolgroupvalue.h" "4"
+"Sources" "3"
+"base64.cpp" "4"
+"common.cpp" "4"
+"containers.cpp" "4"
+"eventcallback.cpp" "4"
+"extensioncontext.cpp" "4"
+"gdbmihelpers.cpp" "4"
+"outputcallback.cpp" "4"
+"qtcreatorcdbextension.cpp" "4"
+"stringutils.cpp" "4"
+"symbolgroup.cpp" "4"
+"symbolgroupnode.cpp" "4"
+"symbolgroupvalue.cpp" "4"
+"styleitem" "2"
+"styleitem.pro" "3"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"Headers" "3"
+"qdeclarativefolderlistmodel.h" "4"
+"qrangemodel.h" "4"
+"qrangemodel_p.h" "4"
+"qstyleitem.h" "4"
+"qstyleplugin.h" "4"
+"qtmenu.h" "4"
+"qtmenubar.h" "4"
+"qtmenuitem.h" "4"
+"qwheelarea.h" "4"
+"Sources" "3"
+"qdeclarativefolderlistmodel.cpp" "4"
+"qrangemodel.cpp" "4"
+"qstyleitem.cpp" "4"
+"qstyleplugin.cpp" "4"
+"qtmenu.cpp" "4"
+"qtmenubar.cpp" "4"
+"qtmenuitem.cpp" "4"
+"qwheelarea.cpp" "4"
+"symbianutils" "2"
+"symbianutils.pro" "3"
+"json" "3"
+"json.pri" "4"
+"Headers" "4"
+"json.h" "5"
+"json_global.h" "5"
+"Sources" "4"
+"json.cpp" "5"
+"private_headers" "3"
+"private_headers.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorlibrary" "3"
+"qtcreatorlibrary.pri" "4"
+"rpath" "3"
+"rpath.pri" "4"
+"symbianutils" "3"
+"symbianutils.pri" "4"
+"Headers" "4"
+"callback.h" "5"
+"codadevice.h" "5"
+"codamessage.h" "5"
+"codautils.h" "5"
+"codautils_p.h" "5"
+"symbiandevicemanager.h" "5"
+"symbianutils_global.h" "5"
+"virtualserialdevice.h" "5"
+"Sources" "4"
+"codadevice.cpp" "5"
+"codamessage.cpp" "5"
+"codautils.cpp" "5"
+"symbiandevicemanager.cpp" "5"
+"virtualserialdevice.cpp" "5"
+"virtualserialdevice_posix.cpp" "5"
+"virtualserialdevice_win.cpp" "5"
+"utils" "2"
+"utils.pro" "3"
+"private_headers" "3"
+"private_headers.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorlibrary" "3"
+"qtcreatorlibrary.pri" "4"
+"rpath" "3"
+"rpath.pri" "4"
+"utils-lib" "3"
+"utils-lib.pri" "4"
+"Headers" "4"
+"annotateditemdelegate.h" "5"
+"basevalidatinglineedit.h" "5"
+"buildablehelperlibrary.h" "5"
+"changeset.h" "5"
+"checkablemessagebox.h" "5"
+"classnamevalidatinglineedit.h" "5"
+"codegeneration.h" "5"
+"completingtextedit.h" "5"
+"consoleprocess.h" "5"
+"consoleprocess_p.h" "5"
+"crumblepath.h" "5"
+"detailsbutton.h" "5"
+"detailswidget.h" "5"
+"environment.h" "5"
+"environmentmodel.h" "5"
+"faketooltip.h" "5"
+"fancylineedit.h" "5"
+"fancymainwindow.h" "5"
+"fileinprojectfinder.h" "5"
+"filenamevalidatinglineedit.h" "5"
+"filesearch.h" "5"
+"filesystemwatcher.h" "5"
+"fileutils.h" "5"
+"filewizarddialog.h" "5"
+"filewizardpage.h" "5"
+"filterlineedit.h" "5"
+"flowlayout.h" "5"
+"historycompleter.h" "5"
+"htmldocextractor.h" "5"
+"ipaddresslineedit.h" "5"
+"iwelcomepage.h" "5"
+"json.h" "5"
+"linecolumnlabel.h" "5"
+"listutils.h" "5"
+"multitask.h" "5"
+"navigationtreeview.h" "5"
+"networkaccessmanager.h" "5"
+"newclasswidget.h" "5"
+"outputformat.h" "5"
+"outputformatter.h" "5"
+"parameteraction.h" "5"
+"pathchooser.h" "5"
+"pathlisteditor.h" "5"
+"persistentsettings.h" "5"
+"projectintropage.h" "5"
+"projectnamevalidatinglineedit.h" "5"
+"qtcassert.h" "5"
+"qtcolorbutton.h" "5"
+"qtcprocess.h" "5"
+"reloadpromptutils.h" "5"
+"runextensions.h" "5"
+"savedaction.h" "5"
+"savefile.h" "5"
+"settingsselector.h" "5"
+"statuslabel.h" "5"
+"stringutils.h" "5"
+"styledbar.h" "5"
+"stylehelper.h" "5"
+"submiteditorwidget.h" "5"
+"submitfieldwidget.h" "5"
+"synchronousprocess.h" "5"
+"textfileformat.h" "5"
+"treewidgetcolumnstretcher.h" "5"
+"uncommentselection.h" "5"
+"unixutils.h" "5"
+"utils_global.h" "5"
+"winutils.h" "5"
+"wizard.h" "5"
+"Sources" "4"
+"annotateditemdelegate.cpp" "5"
+"basevalidatinglineedit.cpp" "5"
+"buildablehelperlibrary.cpp" "5"
+"changeset.cpp" "5"
+"checkablemessagebox.cpp" "5"
+"classnamevalidatinglineedit.cpp" "5"
+"codegeneration.cpp" "5"
+"completingtextedit.cpp" "5"
+"consoleprocess.cpp" "5"
+"consoleprocess_unix.cpp" "5"
+"consoleprocess_win.cpp" "5"
+"crumblepath.cpp" "5"
+"detailsbutton.cpp" "5"
+"detailswidget.cpp" "5"
+"environment.cpp" "5"
+"environmentmodel.cpp" "5"
+"faketooltip.cpp" "5"
+"fancylineedit.cpp" "5"
+"fancymainwindow.cpp" "5"
+"fileinprojectfinder.cpp" "5"
+"filenamevalidatinglineedit.cpp" "5"
+"filesearch.cpp" "5"
+"filesystemwatcher.cpp" "5"
+"fileutils.cpp" "5"
+"filewizarddialog.cpp" "5"
+"filewizardpage.cpp" "5"
+"filterlineedit.cpp" "5"
+"flowlayout.cpp" "5"
+"historycompleter.cpp" "5"
+"htmldocextractor.cpp" "5"
+"ipaddresslineedit.cpp" "5"
+"iwelcomepage.cpp" "5"
+"json.cpp" "5"
+"linecolumnlabel.cpp" "5"
+"navigationtreeview.cpp" "5"
+"networkaccessmanager.cpp" "5"
+"newclasswidget.cpp" "5"
+"outputformatter.cpp" "5"
+"parameteraction.cpp" "5"
+"pathchooser.cpp" "5"
+"pathlisteditor.cpp" "5"
+"persistentsettings.cpp" "5"
+"projectintropage.cpp" "5"
+"projectnamevalidatinglineedit.cpp" "5"
+"qtcolorbutton.cpp" "5"
+"qtcprocess.cpp" "5"
+"reloadpromptutils.cpp" "5"
+"savedaction.cpp" "5"
+"savefile.cpp" "5"
+"settingsselector.cpp" "5"
+"statuslabel.cpp" "5"
+"stringutils.cpp" "5"
+"styledbar.cpp" "5"
+"stylehelper.cpp" "5"
+"submiteditorwidget.cpp" "5"
+"submitfieldwidget.cpp" "5"
+"synchronousprocess.cpp" "5"
+"textfileformat.cpp" "5"
+"treewidgetcolumnstretcher.cpp" "5"
+"uncommentselection.cpp" "5"
+"unixutils.cpp" "5"
+"winutils.cpp" "5"
+"wizard.cpp" "5"
+"Forms" "4"
+"filewizardpage.ui" "5"
+"newclasswidget.ui" "5"
+"projectintropage.ui" "5"
+"submiteditorwidget.ui" "5"
+"Resources" "4"
+"utils.qrc" "5"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"Headers" "3"
+"proxyaction.h" "4"
+"Sources" "3"
+"proxyaction.cpp" "4"
+"zeroconf" "2"
+"zeroconf.pro" "3"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorlibrary" "3"
+"qtcreatorlibrary.pri" "4"
+"rpath" "3"
+"rpath.pri" "4"
+"Headers" "3"
+"dns_sd_types.h" "4"
+"mdnsderived.h" "4"
+"servicebrowser.h" "4"
+"servicebrowser_p.h" "4"
+"syssocket.h" "4"
+"zeroconf_global.h" "4"
+"Sources" "3"
+"avahiLib.cpp" "4"
+"dnsSdLib.cpp" "4"
+"embeddedLib.cpp" "4"
+"mdnsderived.cpp" "4"
+"servicebrowser.cpp" "4"
+"plugins" "1"
+"plugins.pro" "2"
+"analyzerbase" "2"
+"analyzerbase.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"analyzerbase_dependencies" "3"
+"analyzerbase_dependencies.pri" "4"
+"botan" "3"
+"botan.pri" "4"
+"coreplugin" "3"
+"coreplugin.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"cplusplus" "3"
+"cplusplus.pri" "4"
+"cpptools" "3"
+"cpptools.pri" "4"
+"cpptools_dependencies" "3"
+"cpptools_dependencies.pri" "4"
+"debugger" "3"
+"debugger.pri" "4"
+"debugger_dependencies" "3"
+"debugger_dependencies.pri" "4"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"find" "3"
+"find.pri" "4"
+"find_dependencies" "3"
+"find_dependencies.pri" "4"
+"languageutils" "3"
+"languageutils.pri" "4"
+"locator" "3"
+"locator.pri" "4"
+"locator_dependencies" "3"
+"locator_dependencies.pri" "4"
+"projectexplorer" "3"
+"projectexplorer.pri" "4"
+"projectexplorer_dependencies" "3"
+"projectexplorer_dependencies.pri" "4"
+"qmljs" "3"
+"qmljs.pri" "4"
+"qt4projectmanager" "3"
+"qt4projectmanager.pri" "4"
+"qt4projectmanager_dependencies" "3"
+"qt4projectmanager_dependencies.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/analyzerbase" "5"
+"AnalyzerBase.pluginspec.in" "6"
+"qtsupport" "3"
+"qtsupport.pri" "4"
+"qtsupport_dependencies" "3"
+"qtsupport_dependencies.pri" "4"
+"remotelinux" "3"
+"remotelinux.pri" "4"
+"remotelinux_dependencies" "3"
+"remotelinux_dependencies.pri" "4"
+"symbianutils" "3"
+"symbianutils.pri" "4"
+"texteditor" "3"
+"texteditor.pri" "4"
+"texteditor_dependencies" "3"
+"texteditor_dependencies.pri" "4"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"Headers" "3"
+"analyzerbase_global.h" "4"
+"analyzerconstants.h" "4"
+"analyzermanager.h" "4"
+"analyzeroptionspage.h" "4"
+"analyzerplugin.h" "4"
+"analyzerrunconfigwidget.h" "4"
+"analyzerruncontrol.h" "4"
+"analyzerruncontrolfactory.h" "4"
+"analyzersettings.h" "4"
+"analyzerstartparameters.h" "4"
+"analyzerutils.h" "4"
+"ianalyzerengine.h" "4"
+"ianalyzertool.h" "4"
+"startremotedialog.h" "4"
+"Sources" "3"
+"analyzermanager.cpp" "4"
+"analyzeroptionspage.cpp" "4"
+"analyzerplugin.cpp" "4"
+"analyzerrunconfigwidget.cpp" "4"
+"analyzerruncontrol.cpp" "4"
+"analyzerruncontrolfactory.cpp" "4"
+"analyzersettings.cpp" "4"
+"analyzerutils.cpp" "4"
+"ianalyzerengine.cpp" "4"
+"ianalyzertool.cpp" "4"
+"startremotedialog.cpp" "4"
+"Forms" "3"
+"startremotedialog.ui" "4"
+"Resources" "3"
+"analyzerbase.qrc" "4"
+"autotoolsprojectmanager" "2"
+"autotoolsprojectmanager.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"autotoolsprojectmanager_dependencies" "3"
+"autotoolsprojectmanager_dependencies.pri" "4"
+"coreplugin" "3"
+"coreplugin.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"cplusplus" "3"
+"cplusplus.pri" "4"
+"cpptools" "3"
+"cpptools.pri" "4"
+"cpptools_dependencies" "3"
+"cpptools_dependencies.pri" "4"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"find" "3"
+"find.pri" "4"
+"find_dependencies" "3"
+"find_dependencies.pri" "4"
+"languageutils" "3"
+"languageutils.pri" "4"
+"locator" "3"
+"locator.pri" "4"
+"locator_dependencies" "3"
+"locator_dependencies.pri" "4"
+"projectexplorer" "3"
+"projectexplorer.pri" "4"
+"projectexplorer_dependencies" "3"
+"projectexplorer_dependencies.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/autotoolsprojectmanager" "5"
+"AutotoolsProjectManager.pluginspec.in" "6"
+"texteditor" "3"
+"texteditor.pri" "4"
+"texteditor_dependencies" "3"
+"texteditor_dependencies.pri" "4"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"Headers" "3"
+"autogenstep.h" "4"
+"autoreconfstep.h" "4"
+"autotoolsbuildconfiguration.h" "4"
+"autotoolsbuildsettingswidget.h" "4"
+"autotoolsmanager.h" "4"
+"autotoolsopenprojectwizard.h" "4"
+"autotoolsproject.h" "4"
+"autotoolsprojectconstants.h" "4"
+"autotoolsprojectfile.h" "4"
+"autotoolsprojectnode.h" "4"
+"autotoolsprojectplugin.h" "4"
+"autotoolstarget.h" "4"
+"configurestep.h" "4"
+"makefileparser.h" "4"
+"makefileparserthread.h" "4"
+"makestep.h" "4"
+"Sources" "3"
+"autogenstep.cpp" "4"
+"autoreconfstep.cpp" "4"
+"autotoolsbuildconfiguration.cpp" "4"
+"autotoolsbuildsettingswidget.cpp" "4"
+"autotoolsmanager.cpp" "4"
+"autotoolsopenprojectwizard.cpp" "4"
+"autotoolsproject.cpp" "4"
+"autotoolsprojectfile.cpp" "4"
+"autotoolsprojectnode.cpp" "4"
+"autotoolsprojectplugin.cpp" "4"
+"autotoolstarget.cpp" "4"
+"configurestep.cpp" "4"
+"makefileparser.cpp" "4"
+"makefileparserthread.cpp" "4"
+"makestep.cpp" "4"
+"Resources" "3"
+"autotoolsproject.qrc" "4"
+"bazaar" "2"
+"bazaar.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"bazaar_dependencies" "3"
+"bazaar_dependencies.pri" "4"
+"coreplugin" "3"
+"coreplugin.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"cplusplus" "3"
+"cplusplus.pri" "4"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"find" "3"
+"find.pri" "4"
+"find_dependencies" "3"
+"find_dependencies.pri" "4"
+"locator" "3"
+"locator.pri" "4"
+"locator_dependencies" "3"
+"locator_dependencies.pri" "4"
+"projectexplorer" "3"
+"projectexplorer.pri" "4"
+"projectexplorer_dependencies" "3"
+"projectexplorer_dependencies.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/bazaar" "5"
+"Bazaar.pluginspec.in" "6"
+"texteditor" "3"
+"texteditor.pri" "4"
+"texteditor_dependencies" "3"
+"texteditor_dependencies.pri" "4"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"vcsbase" "3"
+"vcsbase.pri" "4"
+"vcsbase_dependencies" "3"
+"vcsbase_dependencies.pri" "4"
+"Headers" "3"
+"annotationhighlighter.h" "4"
+"bazaarclient.h" "4"
+"bazaarcommitwidget.h" "4"
+"bazaarcontrol.h" "4"
+"bazaareditor.h" "4"
+"bazaarplugin.h" "4"
+"bazaarsettings.h" "4"
+"branchinfo.h" "4"
+"cloneoptionspanel.h" "4"
+"clonewizard.h" "4"
+"clonewizardpage.h" "4"
+"commiteditor.h" "4"
+"constants.h" "4"
+"optionspage.h" "4"
+"pullorpushdialog.h" "4"
+"Sources" "3"
+"annotationhighlighter.cpp" "4"
+"bazaarclient.cpp" "4"
+"bazaarcommitwidget.cpp" "4"
+"bazaarcontrol.cpp" "4"
+"bazaareditor.cpp" "4"
+"bazaarplugin.cpp" "4"
+"bazaarsettings.cpp" "4"
+"branchinfo.cpp" "4"
+"cloneoptionspanel.cpp" "4"
+"clonewizard.cpp" "4"
+"clonewizardpage.cpp" "4"
+"commiteditor.cpp" "4"
+"optionspage.cpp" "4"
+"pullorpushdialog.cpp" "4"
+"Forms" "3"
+"bazaarcommitpanel.ui" "4"
+"cloneoptionspanel.ui" "4"
+"optionspage.ui" "4"
+"pullorpushdialog.ui" "4"
+"revertdialog.ui" "4"
+"Resources" "3"
+"bazaar.qrc" "4"
+"bineditor" "2"
+"bineditor.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"bineditor_dependencies" "3"
+"bineditor_dependencies.pri" "4"
+"coreplugin" "3"
+"coreplugin.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"find" "3"
+"find.pri" "4"
+"find_dependencies" "3"
+"find_dependencies.pri" "4"
+"locator" "3"
+"locator.pri" "4"
+"locator_dependencies" "3"
+"locator_dependencies.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/bineditor" "5"
+"BinEditor.pluginspec.in" "6"
+"texteditor" "3"
+"texteditor.pri" "4"
+"texteditor_dependencies" "3"
+"texteditor_dependencies.pri" "4"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"Headers" "3"
+"bineditor.h" "4"
+"bineditorconstants.h" "4"
+"bineditorplugin.h" "4"
+"markup.h" "4"
+"Sources" "3"
+"bineditor.cpp" "4"
+"bineditorplugin.cpp" "4"
+"bookmarks" "2"
+"bookmarks.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"coreplugin" "3"
+"coreplugin.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"find" "3"
+"find.pri" "4"
+"find_dependencies" "3"
+"find_dependencies.pri" "4"
+"locator" "3"
+"locator.pri" "4"
+"locator_dependencies" "3"
+"locator_dependencies.pri" "4"
+"projectexplorer" "3"
+"projectexplorer.pri" "4"
+"projectexplorer_dependencies" "3"
+"projectexplorer_dependencies.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/bookmarks" "5"
+"Bookmarks.pluginspec.in" "6"
+"texteditor" "3"
+"texteditor.pri" "4"
+"texteditor_dependencies" "3"
+"texteditor_dependencies.pri" "4"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"Headers" "3"
+"bookmark.h" "4"
+"bookmarkmanager.h" "4"
+"bookmarks_global.h" "4"
+"bookmarksplugin.h" "4"
+"Sources" "3"
+"bookmark.cpp" "4"
+"bookmarkmanager.cpp" "4"
+"bookmarksplugin.cpp" "4"
+"Resources" "3"
+"bookmarks.qrc" "4"
+"classview" "2"
+"classview.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"classview_dependencies" "3"
+"classview_dependencies.pri" "4"
+"coreplugin" "3"
+"coreplugin.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"cplusplus" "3"
+"cplusplus.pri" "4"
+"cpptools" "3"
+"cpptools.pri" "4"
+"cpptools_dependencies" "3"
+"cpptools_dependencies.pri" "4"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"find" "3"
+"find.pri" "4"
+"find_dependencies" "3"
+"find_dependencies.pri" "4"
+"languageutils" "3"
+"languageutils.pri" "4"
+"locator" "3"
+"locator.pri" "4"
+"locator_dependencies" "3"
+"locator_dependencies.pri" "4"
+"projectexplorer" "3"
+"projectexplorer.pri" "4"
+"projectexplorer_dependencies" "3"
+"projectexplorer_dependencies.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/classview" "5"
+"ClassView.pluginspec.in" "6"
+"texteditor" "3"
+"texteditor.pri" "4"
+"texteditor_dependencies" "3"
+"texteditor_dependencies.pri" "4"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"Headers" "3"
+"classviewconstants.h" "4"
+"classviewmanager.h" "4"
+"classviewnavigationwidget.h" "4"
+"classviewnavigationwidgetfactory.h" "4"
+"classviewparser.h" "4"
+"classviewparsertreeitem.h" "4"
+"classviewplugin.h" "4"
+"classviewsymbolinformation.h" "4"
+"classviewsymbollocation.h" "4"
+"classviewtreeitemmodel.h" "4"
+"classviewutils.h" "4"
+"Sources" "3"
+"classviewmanager.cpp" "4"
+"classviewnavigationwidget.cpp" "4"
+"classviewnavigationwidgetfactory.cpp" "4"
+"classviewparser.cpp" "4"
+"classviewparsertreeitem.cpp" "4"
+"classviewplugin.cpp" "4"
+"classviewsymbolinformation.cpp" "4"
+"classviewsymbollocation.cpp" "4"
+"classviewtreeitemmodel.cpp" "4"
+"classviewutils.cpp" "4"
+"Forms" "3"
+"classviewnavigationwidget.ui" "4"
+"Resources" "3"
+"classview.qrc" "4"
+"cmakeprojectmanager" "2"
+"cmakeprojectmanager.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"cmakeprojectmanager_dependencies" "3"
+"cmakeprojectmanager_dependencies.pri" "4"
+"coreplugin" "3"
+"coreplugin.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"cplusplus" "3"
+"cplusplus.pri" "4"
+"cpptools" "3"
+"cpptools.pri" "4"
+"cpptools_dependencies" "3"
+"cpptools_dependencies.pri" "4"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"find" "3"
+"find.pri" "4"
+"find_dependencies" "3"
+"find_dependencies.pri" "4"
+"languageutils" "3"
+"languageutils.pri" "4"
+"locator" "3"
+"locator.pri" "4"
+"locator_dependencies" "3"
+"locator_dependencies.pri" "4"
+"projectexplorer" "3"
+"projectexplorer.pri" "4"
+"projectexplorer_dependencies" "3"
+"projectexplorer_dependencies.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/cmakeprojectmanager" "5"
+"CMakeProjectManager.pluginspec.in" "6"
+"texteditor" "3"
+"texteditor.pri" "4"
+"texteditor_dependencies" "3"
+"texteditor_dependencies.pri" "4"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"Headers" "3"
+"cmakebuildconfiguration.h" "4"
+"cmakeeditor.h" "4"
+"cmakeeditorfactory.h" "4"
+"cmakehighlighter.h" "4"
+"cmakelocatorfilter.h" "4"
+"cmakeopenprojectwizard.h" "4"
+"cmakeproject.h" "4"
+"cmakeprojectconstants.h" "4"
+"cmakeprojectmanager.h" "4"
+"cmakeprojectnodes.h" "4"
+"cmakeprojectplugin.h" "4"
+"cmakerunconfiguration.h" "4"
+"cmaketarget.h" "4"
+"cmakeuicodemodelsupport.h" "4"
+"makestep.h" "4"
+"Sources" "3"
+"cmakebuildconfiguration.cpp" "4"
+"cmakeeditor.cpp" "4"
+"cmakeeditorfactory.cpp" "4"
+"cmakehighlighter.cpp" "4"
+"cmakelocatorfilter.cpp" "4"
+"cmakeopenprojectwizard.cpp" "4"
+"cmakeproject.cpp" "4"
+"cmakeprojectmanager.cpp" "4"
+"cmakeprojectnodes.cpp" "4"
+"cmakeprojectplugin.cpp" "4"
+"cmakerunconfiguration.cpp" "4"
+"cmaketarget.cpp" "4"
+"cmakeuicodemodelsupport.cpp" "4"
+"makestep.cpp" "4"
+"Resources" "3"
+"cmakeproject.qrc" "4"
+"Other files" "3"
+"CMakeProject.mimetypes.xml" "4"
+"coreplugin" "2"
+"coreplugin.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/coreplugin" "5"
+"Core.pluginspec.in" "6"
+"scriptwrapper" "3"
+"scriptwrapper.pri" "4"
+"Headers" "4"
+"wrap_helpers.h" "5"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"Headers" "3"
+"actionmanager" "4"
+"actioncontainer.h" "5"
+"actioncontainer_p.h" "5"
+"actionmanager.h" "5"
+"actionmanager_p.h" "5"
+"command.h" "5"
+"command_p.h" "5"
+"commandmappings.h" "5"
+"commandsfile.h" "5"
+"dialogs" "4"
+"externaltoolconfig.h" "5"
+"ioptionspage.h" "5"
+"iwizard.h" "5"
+"newdialog.h" "5"
+"openwithdialog.h" "5"
+"promptoverwritedialog.h" "5"
+"saveitemsdialog.h" "5"
+"settingsdialog.h" "5"
+"shortcutsettings.h" "5"
+"editormanager" "4"
+"editormanager.h" "5"
+"editorview.h" "5"
+"ieditor.h" "5"
+"ieditorfactory.h" "5"
+"iexternaleditor.h" "5"
+"openeditorsmodel.h" "5"
+"openeditorsview.h" "5"
+"openeditorswindow.h" "5"
+"systemeditor.h" "5"
+"progressmanager" "4"
+"futureprogress.h" "5"
+"progressbar.h" "5"
+"progressmanager.h" "5"
+"progressmanager_p.h" "5"
+"progressview.h" "5"
+"scriptmanager" "4"
+"metatypedeclarations.h" "5"
+"scriptmanager.h" "5"
+"scriptmanager_p.h" "5"
+"basefilewizard.h" "4"
+"core_global.h" "4"
+"coreconstants.h" "4"
+"coreplugin.h" "4"
+"designmode.h" "4"
+"documentmanager.h" "4"
+"editmode.h" "4"
+"editortoolbar.h" "4"
+"externaltool.h" "4"
+"externaltoolmanager.h" "4"
+"fancyactionbar.h" "4"
+"fancytabwidget.h" "4"
+"featureprovider.h" "4"
+"fileiconprovider.h" "4"
+"fileutils.h" "4"
+"findplaceholder.h" "4"
+"generalsettings.h" "4"
+"generatedfile.h" "4"
+"helpmanager.h" "4"
+"icontext.h" "4"
+"icore.h" "4"
+"icorelistener.h" "4"
+"id.h" "4"
+"idocument.h" "4"
+"idocumentfactory.h" "4"
+"ifilewizardextension.h" "4"
+"imode.h" "4"
+"inavigationwidgetfactory.h" "4"
+"infobar.h" "4"
+"ioutputpane.h" "4"
+"iversioncontrol.h" "4"
+"mainwindow.h" "4"
+"manhattanstyle.h" "4"
+"messagemanager.h" "4"
+"messageoutputwindow.h" "4"
+"mimedatabase.h" "4"
+"mimetypemagicdialog.h" "4"
+"mimetypesettings.h" "4"
+"minisplitter.h" "4"
+"modemanager.h" "4"
+"navigationsubwidget.h" "4"
+"navigationwidget.h" "4"
+"outputpane.h" "4"
+"outputpanemanager.h" "4"
+"outputwindow.h" "4"
+"plugindialog.h" "4"
+"rightpane.h" "4"
+"settingsdatabase.h" "4"
+"sidebar.h" "4"
+"sidebarwidget.h" "4"
+"statusbarmanager.h" "4"
+"statusbarwidget.h" "4"
+"styleanimator.h" "4"
+"tabpositionindicator.h" "4"
+"textdocument.h" "4"
+"toolsettings.h" "4"
+"variablechooser.h" "4"
+"variablemanager.h" "4"
+"vcsmanager.h" "4"
+"versiondialog.h" "4"
+"Sources" "3"
+"actionmanager" "4"
+"actioncontainer.cpp" "5"
+"actionmanager.cpp" "5"
+"command.cpp" "5"
+"commandmappings.cpp" "5"
+"commandsfile.cpp" "5"
+"dialogs" "4"
+"externaltoolconfig.cpp" "5"
+"ioptionspage.cpp" "5"
+"iwizard.cpp" "5"
+"newdialog.cpp" "5"
+"openwithdialog.cpp" "5"
+"promptoverwritedialog.cpp" "5"
+"saveitemsdialog.cpp" "5"
+"settingsdialog.cpp" "5"
+"shortcutsettings.cpp" "5"
+"editormanager" "4"
+"editormanager.cpp" "5"
+"editorview.cpp" "5"
+"ieditor.cpp" "5"
+"iexternaleditor.cpp" "5"
+"openeditorsmodel.cpp" "5"
+"openeditorsview.cpp" "5"
+"openeditorswindow.cpp" "5"
+"systemeditor.cpp" "5"
+"progressmanager" "4"
+"futureprogress.cpp" "5"
+"progressbar.cpp" "5"
+"progressmanager.cpp" "5"
+"progressmanager_mac.mm" "5"
+"progressmanager_win.cpp" "5"
+"progressmanager_x11.cpp" "5"
+"progressview.cpp" "5"
+"scriptmanager" "4"
+"scriptmanager.cpp" "5"
+"basefilewizard.cpp" "4"
+"coreplugin.cpp" "4"
+"designmode.cpp" "4"
+"documentmanager.cpp" "4"
+"editmode.cpp" "4"
+"editortoolbar.cpp" "4"
+"externaltool.cpp" "4"
+"fancyactionbar.cpp" "4"
+"fancytabwidget.cpp" "4"
+"featureprovider.cpp" "4"
+"fileiconprovider.cpp" "4"
+"fileutils.cpp" "4"
+"findplaceholder.cpp" "4"
+"generalsettings.cpp" "4"
+"generatedfile.cpp" "4"
+"helpmanager.cpp" "4"
+"icore.cpp" "4"
+"id.cpp" "4"
+"idocument.cpp" "4"
+"imode.cpp" "4"
+"inavigationwidgetfactory.cpp" "4"
+"infobar.cpp" "4"
+"mainwindow.cpp" "4"
+"manhattanstyle.cpp" "4"
+"messagemanager.cpp" "4"
+"messageoutputwindow.cpp" "4"
+"mimedatabase.cpp" "4"
+"mimetypemagicdialog.cpp" "4"
+"mimetypesettings.cpp" "4"
+"minisplitter.cpp" "4"
+"modemanager.cpp" "4"
+"navigationsubwidget.cpp" "4"
+"navigationwidget.cpp" "4"
+"outputpane.cpp" "4"
+"outputpanemanager.cpp" "4"
+"outputwindow.cpp" "4"
+"plugindialog.cpp" "4"
+"rightpane.cpp" "4"
+"settingsdatabase.cpp" "4"
+"sidebar.cpp" "4"
+"sidebarwidget.cpp" "4"
+"statusbarmanager.cpp" "4"
+"statusbarwidget.cpp" "4"
+"styleanimator.cpp" "4"
+"tabpositionindicator.cpp" "4"
+"textdocument.cpp" "4"
+"toolsettings.cpp" "4"
+"variablechooser.cpp" "4"
+"variablemanager.cpp" "4"
+"vcsmanager.cpp" "4"
+"versiondialog.cpp" "4"
+"Forms" "3"
+"actionmanager" "4"
+"commandmappings.ui" "5"
+"dialogs" "4"
+"externaltoolconfig.ui" "5"
+"newdialog.ui" "5"
+"openwithdialog.ui" "5"
+"saveitemsdialog.ui" "5"
+"editormanager" "4"
+"openeditorsview.ui" "5"
+"generalsettings.ui" "4"
+"mimetypemagicdialog.ui" "4"
+"mimetypesettingspage.ui" "4"
+"variablechooser.ui" "4"
+"Resources" "3"
+"core.qrc" "4"
+"fancyactionbar.qrc" "4"
+"Other files" "3"
+"editormanager" "4"
+"BinFiles.mimetypes.xml" "5"
+"cpaster" "2"
+"cpaster.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"coreplugin" "3"
+"coreplugin.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"cpaster" "3"
+"cpaster.pri" "4"
+"Headers" "4"
+"cgi.h" "5"
+"splitter.h" "5"
+"Sources" "4"
+"cgi.cpp" "5"
+"splitter.cpp" "5"
+"cpaster_dependencies" "3"
+"cpaster_dependencies.pri" "4"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"find" "3"
+"find.pri" "4"
+"find_dependencies" "3"
+"find_dependencies.pri" "4"
+"locator" "3"
+"locator.pri" "4"
+"locator_dependencies" "3"
+"locator_dependencies.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/cpaster" "5"
+"CodePaster.pluginspec.in" "6"
+"texteditor" "3"
+"texteditor.pri" "4"
+"texteditor_dependencies" "3"
+"texteditor_dependencies.pri" "4"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"Headers" "3"
+"codepasterprotocol.h" "4"
+"codepastersettings.h" "4"
+"columnindicatortextedit.h" "4"
+"cpasterconstants.h" "4"
+"cpasterplugin.h" "4"
+"fileshareprotocol.h" "4"
+"fileshareprotocolsettingspage.h" "4"
+"kdepasteprotocol.h" "4"
+"pastebindotcaprotocol.h" "4"
+"pastebindotcomprotocol.h" "4"
+"pasteselectdialog.h" "4"
+"pasteview.h" "4"
+"protocol.h" "4"
+"settings.h" "4"
+"settingspage.h" "4"
+"Sources" "3"
+"codepasterprotocol.cpp" "4"
+"codepastersettings.cpp" "4"
+"columnindicatortextedit.cpp" "4"
+"cpasterplugin.cpp" "4"
+"fileshareprotocol.cpp" "4"
+"fileshareprotocolsettingspage.cpp" "4"
+"kdepasteprotocol.cpp" "4"
+"pastebindotcaprotocol.cpp" "4"
+"pastebindotcomprotocol.cpp" "4"
+"pasteselectdialog.cpp" "4"
+"pasteview.cpp" "4"
+"protocol.cpp" "4"
+"settings.cpp" "4"
+"settingspage.cpp" "4"
+"Forms" "3"
+"fileshareprotocolsettingswidget.ui" "4"
+"pastebindotcomsettings.ui" "4"
+"pasteselect.ui" "4"
+"pasteview.ui" "4"
+"settingspage.ui" "4"
+"cppeditor" "2"
+"cppeditor.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"coreplugin" "3"
+"coreplugin.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"cplusplus" "3"
+"cplusplus.pri" "4"
+"cppeditor_dependencies" "3"
+"cppeditor_dependencies.pri" "4"
+"cpptools" "3"
+"cpptools.pri" "4"
+"cpptools_dependencies" "3"
+"cpptools_dependencies.pri" "4"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"find" "3"
+"find.pri" "4"
+"find_dependencies" "3"
+"find_dependencies.pri" "4"
+"languageutils" "3"
+"languageutils.pri" "4"
+"locator" "3"
+"locator.pri" "4"
+"locator_dependencies" "3"
+"locator_dependencies.pri" "4"
+"projectexplorer" "3"
+"projectexplorer.pri" "4"
+"projectexplorer_dependencies" "3"
+"projectexplorer_dependencies.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/cppeditor" "5"
+"CppEditor.pluginspec.in" "6"
+"texteditor" "3"
+"texteditor.pri" "4"
+"texteditor_dependencies" "3"
+"texteditor_dependencies.pri" "4"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"Headers" "3"
+"cppautocompleter.h" "4"
+"cppclasswizard.h" "4"
+"cppcompleteswitch.h" "4"
+"cppeditor.h" "4"
+"cppeditor_global.h" "4"
+"cppeditorconstants.h" "4"
+"cppeditorenums.h" "4"
+"cppelementevaluator.h" "4"
+"cppfilewizard.h" "4"
+"cppfunctiondecldeflink.h" "4"
+"cpphighlighter.h" "4"
+"cpphoverhandler.h" "4"
+"cppinsertdecldef.h" "4"
+"cppinsertqtpropertymembers.h" "4"
+"cppoutline.h" "4"
+"cppplugin.h" "4"
+"cppquickfix.h" "4"
+"cppquickfixassistant.h" "4"
+"cppsnippetprovider.h" "4"
+"cpptypehierarchy.h" "4"
+"Sources" "3"
+"cppautocompleter.cpp" "4"
+"cppclasswizard.cpp" "4"
+"cppcompleteswitch.cpp" "4"
+"cppeditor.cpp" "4"
+"cppelementevaluator.cpp" "4"
+"cppfilewizard.cpp" "4"
+"cppfunctiondecldeflink.cpp" "4"
+"cpphighlighter.cpp" "4"
+"cpphoverhandler.cpp" "4"
+"cppinsertdecldef.cpp" "4"
+"cppinsertqtpropertymembers.cpp" "4"
+"cppoutline.cpp" "4"
+"cppplugin.cpp" "4"
+"cppquickfix.cpp" "4"
+"cppquickfixassistant.cpp" "4"
+"cppquickfixes.cpp" "4"
+"cppsnippetprovider.cpp" "4"
+"cpptypehierarchy.cpp" "4"
+"Resources" "3"
+"cppeditor.qrc" "4"
+"Other files" "3"
+"CppEditor.mimetypes.xml" "4"
+"cpptools" "2"
+"cpptools.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"coreplugin" "3"
+"coreplugin.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"cplusplus" "3"
+"cplusplus.pri" "4"
+"cpptools_dependencies" "3"
+"cpptools_dependencies.pri" "4"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"find" "3"
+"find.pri" "4"
+"find_dependencies" "3"
+"find_dependencies.pri" "4"
+"languageutils" "3"
+"languageutils.pri" "4"
+"locator" "3"
+"locator.pri" "4"
+"locator_dependencies" "3"
+"locator_dependencies.pri" "4"
+"projectexplorer" "3"
+"projectexplorer.pri" "4"
+"projectexplorer_dependencies" "3"
+"projectexplorer_dependencies.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/cpptools" "5"
+"CppTools.pluginspec.in" "6"
+"texteditor" "3"
+"texteditor.pri" "4"
+"texteditor_dependencies" "3"
+"texteditor_dependencies.pri" "4"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"Headers" "3"
+"abstracteditorsupport.h" "4"
+"commentssettings.h" "4"
+"completionsettingspage.h" "4"
+"cppchecksymbols.h" "4"
+"cppclassesfilter.h" "4"
+"cppcodeformatter.h" "4"
+"cppcodestylepreferences.h" "4"
+"cppcodestylepreferencesfactory.h" "4"
+"cppcodestylesettings.h" "4"
+"cppcodestylesettingspage.h" "4"
+"cppcompletionassist.h" "4"
+"cppcompletionassistprovider.h" "4"
+"cppcompletionsupport.h" "4"
+"cppcurrentdocumentfilter.h" "4"
+"cppdoxygen.h" "4"
+"cppfilesettingspage.h" "4"
+"cppfindreferences.h" "4"
+"cppfunctionsfilter.h" "4"
+"cpphighlightingsupport.h" "4"
+"cpphighlightingsupportinternal.h" "4"
+"cpplocalsymbols.h" "4"
+"cpplocatorfilter.h" "4"
+"cppmodelmanager.h" "4"
+"cppqtstyleindenter.h" "4"
+"cpprefactoringchanges.h" "4"
+"cppsemanticinfo.h" "4"
+"cpptools_global.h" "4"
+"cpptoolsconstants.h" "4"
+"cpptoolseditorsupport.h" "4"
+"cpptoolsplugin.h" "4"
+"cpptoolsreuse.h" "4"
+"cpptoolssettings.h" "4"
+"doxygengenerator.h" "4"
+"insertionpointlocator.h" "4"
+"searchsymbols.h" "4"
+"symbolfinder.h" "4"
+"symbolsfindfilter.h" "4"
+"uicodecompletionsupport.h" "4"
+"Sources" "3"
+"abstracteditorsupport.cpp" "4"
+"commentssettings.cpp" "4"
+"completionsettingspage.cpp" "4"
+"cppchecksymbols.cpp" "4"
+"cppclassesfilter.cpp" "4"
+"cppcodeformatter.cpp" "4"
+"cppcodegen_test.cpp" "4"
+"cppcodestylepreferences.cpp" "4"
+"cppcodestylepreferencesfactory.cpp" "4"
+"cppcodestylesettings.cpp" "4"
+"cppcodestylesettingspage.cpp" "4"
+"cppcompletionassist.cpp" "4"
+"cppcompletionassistprovider.cpp" "4"
+"cppcompletionsupport.cpp" "4"
+"cppcurrentdocumentfilter.cpp" "4"
+"cppdoxygen.cpp" "4"
+"cppfilesettingspage.cpp" "4"
+"cppfindreferences.cpp" "4"
+"cppfunctionsfilter.cpp" "4"
+"cpphighlightingsupport.cpp" "4"
+"cpphighlightingsupportinternal.cpp" "4"
+"cpplocalsymbols.cpp" "4"
+"cpplocatorfilter.cpp" "4"
+"cppmodelmanager.cpp" "4"
+"cppqtstyleindenter.cpp" "4"
+"cpprefactoringchanges.cpp" "4"
+"cppsemanticinfo.cpp" "4"
+"cpptoolseditorsupport.cpp" "4"
+"cpptoolsplugin.cpp" "4"
+"cpptoolsreuse.cpp" "4"
+"cpptoolssettings.cpp" "4"
+"doxygengenerator.cpp" "4"
+"insertionpointlocator.cpp" "4"
+"searchsymbols.cpp" "4"
+"symbolfinder.cpp" "4"
+"symbolsfindfilter.cpp" "4"
+"uicodecompletionsupport.cpp" "4"
+"Forms" "3"
+"completionsettingspage.ui" "4"
+"cppcodestylesettingspage.ui" "4"
+"cppfilesettingspage.ui" "4"
+"cvs" "2"
+"cvs.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"coreplugin" "3"
+"coreplugin.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"cplusplus" "3"
+"cplusplus.pri" "4"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"find" "3"
+"find.pri" "4"
+"find_dependencies" "3"
+"find_dependencies.pri" "4"
+"locator" "3"
+"locator.pri" "4"
+"locator_dependencies" "3"
+"locator_dependencies.pri" "4"
+"projectexplorer" "3"
+"projectexplorer.pri" "4"
+"projectexplorer_dependencies" "3"
+"projectexplorer_dependencies.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/cvs" "5"
+"CVS.pluginspec.in" "6"
+"texteditor" "3"
+"texteditor.pri" "4"
+"texteditor_dependencies" "3"
+"texteditor_dependencies.pri" "4"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"vcsbase" "3"
+"vcsbase.pri" "4"
+"vcsbase_dependencies" "3"
+"vcsbase_dependencies.pri" "4"
+"Headers" "3"
+"annotationhighlighter.h" "4"
+"checkoutwizard.h" "4"
+"checkoutwizardpage.h" "4"
+"cvsconstants.h" "4"
+"cvscontrol.h" "4"
+"cvseditor.h" "4"
+"cvsplugin.h" "4"
+"cvssettings.h" "4"
+"cvssubmiteditor.h" "4"
+"cvsutils.h" "4"
+"settingspage.h" "4"
+"Sources" "3"
+"annotationhighlighter.cpp" "4"
+"checkoutwizard.cpp" "4"
+"checkoutwizardpage.cpp" "4"
+"cvscontrol.cpp" "4"
+"cvseditor.cpp" "4"
+"cvsplugin.cpp" "4"
+"cvssettings.cpp" "4"
+"cvssubmiteditor.cpp" "4"
+"cvsutils.cpp" "4"
+"settingspage.cpp" "4"
+"Forms" "3"
+"settingspage.ui" "4"
+"Resources" "3"
+"cvs.qrc" "4"
+"debugger" "2"
+"debugger.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"botan" "3"
+"botan.pri" "4"
+"cdb" "3"
+"cdb.pri" "4"
+"Headers" "4"
+"bytearrayinputstream.h" "5"
+"cdbengine.h" "5"
+"cdboptions.h" "5"
+"cdboptionspage.h" "5"
+"cdbparsehelpers.h" "5"
+"Sources" "4"
+"bytearrayinputstream.cpp" "5"
+"cdbengine.cpp" "5"
+"cdboptions.cpp" "5"
+"cdboptionspage.cpp" "5"
+"cdbparsehelpers.cpp" "5"
+"Forms" "4"
+"cdboptionspagewidget.ui" "5"
+"coreplugin" "3"
+"coreplugin.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"cplusplus" "3"
+"cplusplus.pri" "4"
+"cpptools" "3"
+"cpptools.pri" "4"
+"cpptools_dependencies" "3"
+"cpptools_dependencies.pri" "4"
+"debugger_dependencies" "3"
+"debugger_dependencies.pri" "4"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"find" "3"
+"find.pri" "4"
+"find_dependencies" "3"
+"find_dependencies.pri" "4"
+"gdb" "3"
+"gdb.pri" "4"
+"Headers" "4"
+"abstractgdbadapter.h" "5"
+"abstractgdbprocess.h" "5"
+"abstractplaingdbadapter.h" "5"
+"attachgdbadapter.h" "5"
+"codagdbadapter.h" "5"
+"coregdbadapter.h" "5"
+"gdbengine.h" "5"
+"gdbmi.h" "5"
+"gdboptionspage.h" "5"
+"localgdbprocess.h" "5"
+"localplaingdbadapter.h" "5"
+"remotegdbprocess.h" "5"
+"remotegdbserveradapter.h" "5"
+"remoteplaingdbadapter.h" "5"
+"symbian.h" "5"
+"termgdbadapter.h" "5"
+"Sources" "4"
+"abstractgdbadapter.cpp" "5"
+"abstractgdbprocess.cpp" "5"
+"abstractplaingdbadapter.cpp" "5"
+"attachgdbadapter.cpp" "5"
+"classicgdbengine.cpp" "5"
+"codagdbadapter.cpp" "5"
+"coregdbadapter.cpp" "5"
+"gdbengine.cpp" "5"
+"gdbmi.cpp" "5"
+"gdboptionspage.cpp" "5"
+"localgdbprocess.cpp" "5"
+"localplaingdbadapter.cpp" "5"
+"pythongdbengine.cpp" "5"
+"remotegdbprocess.cpp" "5"
+"remotegdbserveradapter.cpp" "5"
+"remoteplaingdbadapter.cpp" "5"
+"symbian.cpp" "5"
+"termgdbadapter.cpp" "5"
+"Resources" "4"
+"gdb.qrc" "5"
+"languageutils" "3"
+"languageutils.pri" "4"
+"lldbhost" "3"
+"lldbhost.pri" "4"
+"Headers" "4"
+"ipcenginehost.h" "5"
+"lldbenginehost.h" "5"
+"lldboptionspage.h" "5"
+"Sources" "4"
+"ipcenginehost.cpp" "5"
+"lldbenginehost.cpp" "5"
+"lldboptionspage.cpp" "5"
+"Forms" "4"
+"lldboptionspagewidget.ui" "5"
+"locator" "3"
+"locator.pri" "4"
+"locator_dependencies" "3"
+"locator_dependencies.pri" "4"
+"modeltest" "3"
+"modeltest.pri" "4"
+"Headers" "4"
+"modeltest.h" "5"
+"Sources" "4"
+"modeltest.cpp" "5"
+"pdb" "3"
+"pdb.pri" "4"
+"Headers" "4"
+"pdbengine.h" "5"
+"Sources" "4"
+"pdbengine.cpp" "5"
+"projectexplorer" "3"
+"projectexplorer.pri" "4"
+"projectexplorer_dependencies" "3"
+"projectexplorer_dependencies.pri" "4"
+"qml" "3"
+"qml.pri" "4"
+"Headers" "4"
+"interactiveinterpreter.h" "5"
+"qmladapter.h" "5"
+"qmlcppengine.h" "5"
+"qmlengine.h" "5"
+"qmlv8debuggerclient.h" "5"
+"qmlv8debuggerclientconstants.h" "5"
+"qscriptdebuggerclient.h" "5"
+"Sources" "4"
+"interactiveinterpreter.cpp" "5"
+"qmladapter.cpp" "5"
+"qmlcppengine.cpp" "5"
+"qmlengine.cpp" "5"
+"qmlv8debuggerclient.cpp" "5"
+"qscriptdebuggerclient.cpp" "5"
+"qmljs" "3"
+"qmljs.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/debugger" "5"
+"Debugger.pluginspec.in" "6"
+"registryaccess" "3"
+"registryaccess.pri" "4"
+"Headers" "4"
+"registryaccess.h" "5"
+"Sources" "4"
+"registryaccess.cpp" "5"
+"script" "3"
+"script.pri" "4"
+"Headers" "4"
+"scriptengine.h" "5"
+"Sources" "4"
+"scriptengine.cpp" "5"
+"shared" "3"
+"shared.pri" "4"
+"Headers" "4"
+"backtrace.h" "5"
+"cdbsymbolpathlisteditor.h" "5"
+"hostutils.h" "5"
+"peutils.h" "5"
+"Sources" "4"
+"backtrace.cpp" "5"
+"cdbsymbolpathlisteditor.cpp" "5"
+"hostutils.cpp" "5"
+"peutils.cpp" "5"
+"symbianutils" "3"
+"symbianutils.pri" "4"
+"texteditor" "3"
+"texteditor.pri" "4"
+"texteditor_dependencies" "3"
+"texteditor_dependencies.pri" "4"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"Headers" "3"
+"basewindow.h" "4"
+"breakhandler.h" "4"
+"breakpoint.h" "4"
+"breakpointmarker.h" "4"
+"breakwindow.h" "4"
+"commonoptionspage.h" "4"
+"debugger_global.h" "4"
+"debuggeractions.h" "4"
+"debuggerconstants.h" "4"
+"debuggercore.h" "4"
+"debuggerdialogs.h" "4"
+"debuggerengine.h" "4"
+"debuggerinternalconstants.h" "4"
+"debuggermainwindow.h" "4"
+"debuggerplugin.h" "4"
+"debuggerruncontrolfactory.h" "4"
+"debuggerrunner.h" "4"
+"debuggersourcepathmappingwidget.h" "4"
+"debuggerstartparameters.h" "4"
+"debuggerstreamops.h" "4"
+"debuggerstringutils.h" "4"
+"debuggertoolchaincombobox.h" "4"
+"debuggertooltipmanager.h" "4"
+"disassembleragent.h" "4"
+"disassemblerlines.h" "4"
+"logwindow.h" "4"
+"memoryagent.h" "4"
+"memoryview.h" "4"
+"moduleshandler.h" "4"
+"moduleswindow.h" "4"
+"name_demangler.h" "4"
+"outputcollector.h" "4"
+"procinterrupt.h" "4"
+"qtmessagelogeditor.h" "4"
+"qtmessageloghandler.h" "4"
+"qtmessagelogitemdelegate.h" "4"
+"qtmessagelogproxymodel.h" "4"
+"qtmessagelogview.h" "4"
+"qtmessagelogwindow.h" "4"
+"registerhandler.h" "4"
+"registerpostmortemaction.h" "4"
+"registerwindow.h" "4"
+"snapshothandler.h" "4"
+"snapshotwindow.h" "4"
+"sourceagent.h" "4"
+"sourcefileshandler.h" "4"
+"sourcefileswindow.h" "4"
+"stackframe.h" "4"
+"stackhandler.h" "4"
+"stackwindow.h" "4"
+"threaddata.h" "4"
+"threadshandler.h" "4"
+"threadswindow.h" "4"
+"watchdelegatewidgets.h" "4"
+"watchhandler.h" "4"
+"watchutils.h" "4"
+"watchwindow.h" "4"
+"Sources" "3"
+"basewindow.cpp" "4"
+"breakhandler.cpp" "4"
+"breakpoint.cpp" "4"
+"breakpointmarker.cpp" "4"
+"breakwindow.cpp" "4"
+"commonoptionspage.cpp" "4"
+"debuggeractions.cpp" "4"
+"debuggerdialogs.cpp" "4"
+"debuggerengine.cpp" "4"
+"debuggermainwindow.cpp" "4"
+"debuggerplugin.cpp" "4"
+"debuggerrunner.cpp" "4"
+"debuggersourcepathmappingwidget.cpp" "4"
+"debuggerstreamops.cpp" "4"
+"debuggertoolchaincombobox.cpp" "4"
+"debuggertooltipmanager.cpp" "4"
+"disassembleragent.cpp" "4"
+"disassemblerlines.cpp" "4"
+"logwindow.cpp" "4"
+"memoryagent.cpp" "4"
+"memoryview.cpp" "4"
+"moduleshandler.cpp" "4"
+"moduleswindow.cpp" "4"
+"name_demangler.cpp" "4"
+"outputcollector.cpp" "4"
+"procinterrupt.cpp" "4"
+"qtmessagelogeditor.cpp" "4"
+"qtmessageloghandler.cpp" "4"
+"qtmessagelogitemdelegate.cpp" "4"
+"qtmessagelogproxymodel.cpp" "4"
+"qtmessagelogview.cpp" "4"
+"qtmessagelogwindow.cpp" "4"
+"registerhandler.cpp" "4"
+"registerpostmortemaction.cpp" "4"
+"registerwindow.cpp" "4"
+"snapshothandler.cpp" "4"
+"snapshotwindow.cpp" "4"
+"sourceagent.cpp" "4"
+"sourcefileshandler.cpp" "4"
+"sourcefileswindow.cpp" "4"
+"stackframe.cpp" "4"
+"stackhandler.cpp" "4"
+"stackwindow.cpp" "4"
+"threadshandler.cpp" "4"
+"threadswindow.cpp" "4"
+"watchdata.cpp" "4"
+"watchdelegatewidgets.cpp" "4"
+"watchhandler.cpp" "4"
+"watchutils.cpp" "4"
+"watchwindow.cpp" "4"
+"Forms" "3"
+"attachcoredialog.ui" "4"
+"attachexternaldialog.ui" "4"
+"attachtoqmlportdialog.ui" "4"
+"breakcondition.ui" "4"
+"breakpoint.ui" "4"
+"commonoptionspage.ui" "4"
+"startexternaldialog.ui" "4"
+"startremotedialog.ui" "4"
+"startremoteenginedialog.ui" "4"
+"Resources" "3"
+"debugger.qrc" "4"
+"designer" "2"
+"designer.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"coreplugin" "3"
+"coreplugin.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"cplusplus" "3"
+"cplusplus.pri" "4"
+"cpp" "3"
+"cpp.pri" "4"
+"Headers" "4"
+"cppsettingspage.h" "5"
+"formclasswizard.h" "5"
+"formclasswizarddialog.h" "5"
+"formclasswizardpage.h" "5"
+"formclasswizardparameters.h" "5"
+"Sources" "4"
+"cppsettingspage.cpp" "5"
+"formclasswizard.cpp" "5"
+"formclasswizarddialog.cpp" "5"
+"formclasswizardpage.cpp" "5"
+"formclasswizardparameters.cpp" "5"
+"Forms" "4"
+"cppsettingspagewidget.ui" "5"
+"formclasswizardpage.ui" "5"
+"cpptools" "3"
+"cpptools.pri" "4"
+"cpptools_dependencies" "3"
+"cpptools_dependencies.pri" "4"
+"designer_dependencies" "3"
+"designer_dependencies.pri" "4"
+"designerintegration" "3"
+"designerintegration.pri" "4"
+"Headers" "4"
+"formresizer.h" "5"
+"sizehandlerect.h" "5"
+"widgethost.h" "5"
+"widgethostconstants.h" "5"
+"Sources" "4"
+"formresizer.cpp" "5"
+"sizehandlerect.cpp" "5"
+"widgethost.cpp" "5"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"find" "3"
+"find.pri" "4"
+"find_dependencies" "3"
+"find_dependencies.pri" "4"
+"languageutils" "3"
+"languageutils.pri" "4"
+"locator" "3"
+"locator.pri" "4"
+"locator_dependencies" "3"
+"locator_dependencies.pri" "4"
+"projectexplorer" "3"
+"projectexplorer.pri" "4"
+"projectexplorer_dependencies" "3"
+"projectexplorer_dependencies.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/designer" "5"
+"Designer.pluginspec.in" "6"
+"texteditor" "3"
+"texteditor.pri" "4"
+"texteditor_dependencies" "3"
+"texteditor_dependencies.pri" "4"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"Headers" "3"
+"codemodelhelpers.h" "4"
+"designer_export.h" "4"
+"designerconstants.h" "4"
+"designercontext.h" "4"
+"designerxmleditor.h" "4"
+"editordata.h" "4"
+"editorwidget.h" "4"
+"formeditorfactory.h" "4"
+"formeditorplugin.h" "4"
+"formeditorstack.h" "4"
+"formeditorw.h" "4"
+"formtemplatewizardpage.h" "4"
+"formwindoweditor.h" "4"
+"formwindowfile.h" "4"
+"formwizard.h" "4"
+"formwizarddialog.h" "4"
+"qtcreatorintegration.h" "4"
+"qtdesignerformclasscodegenerator.h" "4"
+"resourcehandler.h" "4"
+"settingsmanager.h" "4"
+"settingspage.h" "4"
+"Sources" "3"
+"codemodelhelpers.cpp" "4"
+"designercontext.cpp" "4"
+"designerxmleditor.cpp" "4"
+"editorwidget.cpp" "4"
+"formeditorfactory.cpp" "4"
+"formeditorplugin.cpp" "4"
+"formeditorstack.cpp" "4"
+"formeditorw.cpp" "4"
+"formtemplatewizardpage.cpp" "4"
+"formwindoweditor.cpp" "4"
+"formwindowfile.cpp" "4"
+"formwizard.cpp" "4"
+"formwizarddialog.cpp" "4"
+"qtcreatorintegration.cpp" "4"
+"qtdesignerformclasscodegenerator.cpp" "4"
+"resourcehandler.cpp" "4"
+"settingsmanager.cpp" "4"
+"settingspage.cpp" "4"
+"Resources" "3"
+"designer.qrc" "4"
+"Other files" "3"
+"Designer.mimetypes.xml" "4"
+"README.txt" "4"
+"dumper" "2"
+"dumper.pro" "3"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorlibrary" "3"
+"qtcreatorlibrary.pri" "4"
+"rpath" "3"
+"rpath.pri" "4"
+"Sources" "3"
+"dumper.cpp" "5"
+"fakevim" "2"
+"fakevim.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"coreplugin" "3"
+"coreplugin.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"find" "3"
+"find.pri" "4"
+"find_dependencies" "3"
+"find_dependencies.pri" "4"
+"locator" "3"
+"locator.pri" "4"
+"locator_dependencies" "3"
+"locator_dependencies.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/fakevim" "5"
+"FakeVim.pluginspec.in" "6"
+"texteditor" "3"
+"texteditor.pri" "4"
+"texteditor_dependencies" "3"
+"texteditor_dependencies.pri" "4"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"Headers" "3"
+"fakevimactions.h" "4"
+"fakevimhandler.h" "4"
+"fakevimplugin.h" "4"
+"Sources" "3"
+"fakevimactions.cpp" "4"
+"fakevimhandler.cpp" "4"
+"fakevimplugin.cpp" "4"
+"Forms" "3"
+"fakevimoptions.ui" "4"
+"find" "2"
+"find.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"coreplugin" "3"
+"coreplugin.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"find_dependencies" "3"
+"find_dependencies.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/find" "5"
+"Find.pluginspec.in" "6"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"Headers" "3"
+"basetextfind.h" "4"
+"currentdocumentfind.h" "4"
+"find_global.h" "4"
+"findplugin.h" "4"
+"findtoolbar.h" "4"
+"findtoolwindow.h" "4"
+"ifindfilter.h" "4"
+"ifindsupport.h" "4"
+"searchresulttreeitemdelegate.h" "4"
+"searchresulttreeitemroles.h" "4"
+"searchresulttreeitems.h" "4"
+"searchresulttreemodel.h" "4"
+"searchresulttreeview.h" "4"
+"searchresultwidget.h" "4"
+"searchresultwindow.h" "4"
+"textfindconstants.h" "4"
+"treeviewfind.h" "4"
+"Sources" "3"
+"basetextfind.cpp" "4"
+"currentdocumentfind.cpp" "4"
+"findplugin.cpp" "4"
+"findtoolbar.cpp" "4"
+"findtoolwindow.cpp" "4"
+"ifindfilter.cpp" "4"
+"ifindsupport.cpp" "4"
+"searchresulttreeitemdelegate.cpp" "4"
+"searchresulttreeitems.cpp" "4"
+"searchresulttreemodel.cpp" "4"
+"searchresulttreeview.cpp" "4"
+"searchresultwidget.cpp" "4"
+"searchresultwindow.cpp" "4"
+"treeviewfind.cpp" "4"
+"Forms" "3"
+"finddialog.ui" "4"
+"findwidget.ui" "4"
+"Resources" "3"
+"find.qrc" "4"
+"genericprojectmanager" "2"
+"genericprojectmanager.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"coreplugin" "3"
+"coreplugin.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"cplusplus" "3"
+"cplusplus.pri" "4"
+"cpptools" "3"
+"cpptools.pri" "4"
+"cpptools_dependencies" "3"
+"cpptools_dependencies.pri" "4"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"find" "3"
+"find.pri" "4"
+"find_dependencies" "3"
+"find_dependencies.pri" "4"
+"genericprojectmanager_dependencies" "3"
+"genericprojectmanager_dependencies.pri" "4"
+"languageutils" "3"
+"languageutils.pri" "4"
+"locator" "3"
+"locator.pri" "4"
+"locator_dependencies" "3"
+"locator_dependencies.pri" "4"
+"projectexplorer" "3"
+"projectexplorer.pri" "4"
+"projectexplorer_dependencies" "3"
+"projectexplorer_dependencies.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/genericprojectmanager" "5"
+"GenericProjectManager.pluginspec.in" "6"
+"texteditor" "3"
+"texteditor.pri" "4"
+"texteditor_dependencies" "3"
+"texteditor_dependencies.pri" "4"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"Headers" "3"
+"filesselectionwizardpage.h" "4"
+"genericbuildconfiguration.h" "4"
+"genericmakestep.h" "4"
+"genericproject.h" "4"
+"genericprojectconstants.h" "4"
+"genericprojectfileseditor.h" "4"
+"genericprojectmanager.h" "4"
+"genericprojectnodes.h" "4"
+"genericprojectplugin.h" "4"
+"genericprojectwizard.h" "4"
+"generictarget.h" "4"
+"pkgconfigtool.h" "4"
+"selectablefilesmodel.h" "4"
+"Sources" "3"
+"filesselectionwizardpage.cpp" "4"
+"genericbuildconfiguration.cpp" "4"
+"genericmakestep.cpp" "4"
+"genericproject.cpp" "4"
+"genericprojectfileseditor.cpp" "4"
+"genericprojectmanager.cpp" "4"
+"genericprojectnodes.cpp" "4"
+"genericprojectplugin.cpp" "4"
+"genericprojectwizard.cpp" "4"
+"generictarget.cpp" "4"
+"pkgconfigtool.cpp" "4"
+"selectablefilesmodel.cpp" "4"
+"Forms" "3"
+"genericmakestep.ui" "4"
+"Resources" "3"
+"genericproject.qrc" "4"
+"git" "2"
+"git.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"coreplugin" "3"
+"coreplugin.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"cplusplus" "3"
+"cplusplus.pri" "4"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"find" "3"
+"find.pri" "4"
+"find_dependencies" "3"
+"find_dependencies.pri" "4"
+"gitorious" "3"
+"gitorious.pri" "4"
+"Headers" "4"
+"gitorious.h" "5"
+"gitoriousclonewizard.h" "5"
+"gitorioushostwidget.h" "5"
+"gitorioushostwizardpage.h" "5"
+"gitoriousprojectwidget.h" "5"
+"gitoriousprojectwizardpage.h" "5"
+"gitoriousrepositorywizardpage.h" "5"
+"Sources" "4"
+"gitorious.cpp" "5"
+"gitoriousclonewizard.cpp" "5"
+"gitorioushostwidget.cpp" "5"
+"gitorioushostwizardpage.cpp" "5"
+"gitoriousprojectwidget.cpp" "5"
+"gitoriousprojectwizardpage.cpp" "5"
+"gitoriousrepositorywizardpage.cpp" "5"
+"Forms" "4"
+"gitorioushostwidget.ui" "5"
+"gitoriousprojectwidget.ui" "5"
+"gitoriousrepositorywizardpage.ui" "5"
+"locator" "3"
+"locator.pri" "4"
+"locator_dependencies" "3"
+"locator_dependencies.pri" "4"
+"projectexplorer" "3"
+"projectexplorer.pri" "4"
+"projectexplorer_dependencies" "3"
+"projectexplorer_dependencies.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/git" "5"
+"Git.pluginspec.in" "6"
+"texteditor" "3"
+"texteditor.pri" "4"
+"texteditor_dependencies" "3"
+"texteditor_dependencies.pri" "4"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"vcsbase" "3"
+"vcsbase.pri" "4"
+"vcsbase_dependencies" "3"
+"vcsbase_dependencies.pri" "4"
+"Headers" "3"
+"annotationhighlighter.h" "4"
+"branchadddialog.h" "4"
+"branchdialog.h" "4"
+"branchmodel.h" "4"
+"changeselectiondialog.h" "4"
+"clonewizard.h" "4"
+"clonewizardpage.h" "4"
+"commitdata.h" "4"
+"gitclient.h" "4"
+"gitconstants.h" "4"
+"giteditor.h" "4"
+"gitplugin.h" "4"
+"gitsettings.h" "4"
+"gitsubmiteditor.h" "4"
+"gitsubmiteditorwidget.h" "4"
+"gitutils.h" "4"
+"gitversioncontrol.h" "4"
+"remotedialog.h" "4"
+"remotemodel.h" "4"
+"settingspage.h" "4"
+"stashdialog.h" "4"
+"Sources" "3"
+"annotationhighlighter.cpp" "4"
+"branchadddialog.cpp" "4"
+"branchdialog.cpp" "4"
+"branchmodel.cpp" "4"
+"changeselectiondialog.cpp" "4"
+"clonewizard.cpp" "4"
+"clonewizardpage.cpp" "4"
+"commitdata.cpp" "4"
+"gitclient.cpp" "4"
+"giteditor.cpp" "4"
+"gitplugin.cpp" "4"
+"gitsettings.cpp" "4"
+"gitsubmiteditor.cpp" "4"
+"gitsubmiteditorwidget.cpp" "4"
+"gitutils.cpp" "4"
+"gitversioncontrol.cpp" "4"
+"remotedialog.cpp" "4"
+"remotemodel.cpp" "4"
+"settingspage.cpp" "4"
+"stashdialog.cpp" "4"
+"Forms" "3"
+"branchadddialog.ui" "4"
+"branchdialog.ui" "4"
+"changeselectiondialog.ui" "4"
+"gitsubmitpanel.ui" "4"
+"remoteadditiondialog.ui" "4"
+"remotedialog.ui" "4"
+"settingspage.ui" "4"
+"stashdialog.ui" "4"
+"Resources" "3"
+"git.qrc" "4"
+"glsleditor" "2"
+"glsleditor.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"coreplugin" "3"
+"coreplugin.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"cplusplus" "3"
+"cplusplus.pri" "4"
+"cpptools" "3"
+"cpptools.pri" "4"
+"cpptools_dependencies" "3"
+"cpptools_dependencies.pri" "4"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"find" "3"
+"find.pri" "4"
+"find_dependencies" "3"
+"find_dependencies.pri" "4"
+"glsl" "3"
+"glsl.pri" "4"
+"glsleditor_dependencies" "3"
+"glsleditor_dependencies.pri" "4"
+"languageutils" "3"
+"languageutils.pri" "4"
+"locator" "3"
+"locator.pri" "4"
+"locator_dependencies" "3"
+"locator_dependencies.pri" "4"
+"projectexplorer" "3"
+"projectexplorer.pri" "4"
+"projectexplorer_dependencies" "3"
+"projectexplorer_dependencies.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/glsleditor" "5"
+"GLSLEditor.pluginspec.in" "6"
+"texteditor" "3"
+"texteditor.pri" "4"
+"texteditor_dependencies" "3"
+"texteditor_dependencies.pri" "4"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"Headers" "3"
+"glslautocompleter.h" "4"
+"glslcompletionassist.h" "4"
+"glsleditor.h" "4"
+"glsleditor_global.h" "4"
+"glsleditoractionhandler.h" "4"
+"glsleditorconstants.h" "4"
+"glsleditoreditable.h" "4"
+"glsleditorfactory.h" "4"
+"glsleditorplugin.h" "4"
+"glslfilewizard.h" "4"
+"glslhighlighter.h" "4"
+"glslhoverhandler.h" "4"
+"glslindenter.h" "4"
+"reuse.h" "4"
+"Sources" "3"
+"glslautocompleter.cpp" "4"
+"glslcompletionassist.cpp" "4"
+"glsleditor.cpp" "4"
+"glsleditoractionhandler.cpp" "4"
+"glsleditoreditable.cpp" "4"
+"glsleditorfactory.cpp" "4"
+"glsleditorplugin.cpp" "4"
+"glslfilewizard.cpp" "4"
+"glslhighlighter.cpp" "4"
+"glslhoverhandler.cpp" "4"
+"glslindenter.cpp" "4"
+"reuse.cpp" "4"
+"Resources" "3"
+"glsleditor.qrc" "4"
+"Other files" "3"
+"GLSLEditor.mimetypes.xml" "4"
+"helloworld" "2"
+"helloworld.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"coreplugin" "3"
+"coreplugin.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/helloworld" "5"
+"HelloWorld.pluginspec.in" "6"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"Headers" "3"
+"helloworldplugin.h" "4"
+"helloworldwindow.h" "4"
+"Sources" "3"
+"helloworldplugin.cpp" "4"
+"helloworldwindow.cpp" "4"
+"help" "2"
+"help.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"coreplugin" "3"
+"coreplugin.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"find" "3"
+"find.pri" "4"
+"find_dependencies" "3"
+"find_dependencies.pri" "4"
+"help" "3"
+"help.pri" "4"
+"Headers" "4"
+"bookmarkmanager.h" "5"
+"contentwindow.h" "5"
+"filternamedialog.h" "5"
+"indexwindow.h" "5"
+"topicchooser.h" "5"
+"Sources" "4"
+"bookmarkmanager.cpp" "5"
+"contentwindow.cpp" "5"
+"filternamedialog.cpp" "5"
+"indexwindow.cpp" "5"
+"topicchooser.cpp" "5"
+"Forms" "4"
+"bookmarkdialog.ui" "5"
+"filternamedialog.ui" "5"
+"topicchooser.ui" "5"
+"help_dependencies" "3"
+"help_dependencies.pri" "4"
+"locator" "3"
+"locator.pri" "4"
+"locator_dependencies" "3"
+"locator_dependencies.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/help" "5"
+"Help.pluginspec.in" "6"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"Headers" "3"
+"centralwidget.h" "4"
+"docsettingspage.h" "4"
+"externalhelpwindow.h" "4"
+"filtersettingspage.h" "4"
+"generalsettingspage.h" "4"
+"help_global.h" "4"
+"helpconstants.h" "4"
+"helpfindsupport.h" "4"
+"helpindexfilter.h" "4"
+"helpmode.h" "4"
+"helpplugin.h" "4"
+"helpviewer.h" "4"
+"helpviewer_p.h" "4"
+"localhelpmanager.h" "4"
+"openpagesmanager.h" "4"
+"openpagesmodel.h" "4"
+"openpagesswitcher.h" "4"
+"openpageswidget.h" "4"
+"remotehelpfilter.h" "4"
+"searchwidget.h" "4"
+"xbelsupport.h" "4"
+"Sources" "3"
+"centralwidget.cpp" "4"
+"docsettingspage.cpp" "4"
+"externalhelpwindow.cpp" "4"
+"filtersettingspage.cpp" "4"
+"generalsettingspage.cpp" "4"
+"helpfindsupport.cpp" "4"
+"helpindexfilter.cpp" "4"
+"helpmode.cpp" "4"
+"helpplugin.cpp" "4"
+"helpviewer.cpp" "4"
+"helpviewer_qtb.cpp" "4"
+"helpviewer_qwv.cpp" "4"
+"localhelpmanager.cpp" "4"
+"openpagesmanager.cpp" "4"
+"openpagesmodel.cpp" "4"
+"openpagesswitcher.cpp" "4"
+"openpageswidget.cpp" "4"
+"remotehelpfilter.cpp" "4"
+"searchwidget.cpp" "4"
+"xbelsupport.cpp" "4"
+"Forms" "3"
+"docsettingspage.ui" "4"
+"filtersettingspage.ui" "4"
+"generalsettingspage.ui" "4"
+"remotehelpfilter.ui" "4"
+"Resources" "3"
+"help.qrc" "4"
+"imageviewer" "2"
+"imageviewer.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"coreplugin" "3"
+"coreplugin.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"imageviewer_dependencies" "3"
+"imageviewer_dependencies.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/imageviewer" "5"
+"ImageViewer.pluginspec.in" "6"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"Headers" "3"
+"imageview.h" "4"
+"imageviewer.h" "4"
+"imagevieweractionhandler.h" "4"
+"imageviewerconstants.h" "4"
+"imageviewerfactory.h" "4"
+"imageviewerfile.h" "4"
+"imageviewerplugin.h" "4"
+"Sources" "3"
+"imageview.cpp" "4"
+"imageviewer.cpp" "4"
+"imagevieweractionhandler.cpp" "4"
+"imageviewerfactory.cpp" "4"
+"imageviewerfile.cpp" "4"
+"imageviewerplugin.cpp" "4"
+"Forms" "3"
+"imageviewertoolbar.ui" "4"
+"Resources" "3"
+"imageviewer.qrc" "4"
+"Other files" "3"
+"ImageViewer.mimetypes.xml" "4"
+"locator" "2"
+"locator.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"coreplugin" "3"
+"coreplugin.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"locator_dependencies" "3"
+"locator_dependencies.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/locator" "5"
+"Locator.pluginspec.in" "6"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"Headers" "3"
+"basefilefilter.h" "4"
+"commandlocator.h" "4"
+"directoryfilter.h" "4"
+"executefilter.h" "4"
+"filesystemfilter.h" "4"
+"ilocatorfilter.h" "4"
+"locator_global.h" "4"
+"locatorconstants.h" "4"
+"locatorfiltersfilter.h" "4"
+"locatormanager.h" "4"
+"locatorplugin.h" "4"
+"locatorwidget.h" "4"
+"opendocumentsfilter.h" "4"
+"settingspage.h" "4"
+"Sources" "3"
+"basefilefilter.cpp" "4"
+"commandlocator.cpp" "4"
+"directoryfilter.cpp" "4"
+"executefilter.cpp" "4"
+"filesystemfilter.cpp" "4"
+"ilocatorfilter.cpp" "4"
+"locatorfiltersfilter.cpp" "4"
+"locatormanager.cpp" "4"
+"locatorplugin.cpp" "4"
+"locatorwidget.cpp" "4"
+"opendocumentsfilter.cpp" "4"
+"settingspage.cpp" "4"
+"Forms" "3"
+"directoryfilter.ui" "4"
+"filesystemfilter.ui" "4"
+"settingspage.ui" "4"
+"Resources" "3"
+"locator.qrc" "4"
+"macros" "2"
+"macros.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"coreplugin" "3"
+"coreplugin.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"find" "3"
+"find.pri" "4"
+"find_dependencies" "3"
+"find_dependencies.pri" "4"
+"locator" "3"
+"locator.pri" "4"
+"locator_dependencies" "3"
+"locator_dependencies.pri" "4"
+"macros_dependencies" "3"
+"macros_dependencies.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/macros" "5"
+"Macros.pluginspec.in" "6"
+"texteditor" "3"
+"texteditor.pri" "4"
+"texteditor_dependencies" "3"
+"texteditor_dependencies.pri" "4"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"Headers" "3"
+"actionmacrohandler.h" "4"
+"findmacrohandler.h" "4"
+"imacrohandler.h" "4"
+"macro.h" "4"
+"macroevent.h" "4"
+"macrolocatorfilter.h" "4"
+"macromanager.h" "4"
+"macrooptionspage.h" "4"
+"macrooptionswidget.h" "4"
+"macros_global.h" "4"
+"macrosconstants.h" "4"
+"macrosplugin.h" "4"
+"macrotextfind.h" "4"
+"savedialog.h" "4"
+"texteditormacrohandler.h" "4"
+"Sources" "3"
+"actionmacrohandler.cpp" "4"
+"findmacrohandler.cpp" "4"
+"imacrohandler.cpp" "4"
+"macro.cpp" "4"
+"macroevent.cpp" "4"
+"macrolocatorfilter.cpp" "4"
+"macromanager.cpp" "4"
+"macrooptionspage.cpp" "4"
+"macrooptionswidget.cpp" "4"
+"macrosplugin.cpp" "4"
+"macrotextfind.cpp" "4"
+"savedialog.cpp" "4"
+"texteditormacrohandler.cpp" "4"
+"Forms" "3"
+"macrooptionswidget.ui" "4"
+"savedialog.ui" "4"
+"Resources" "3"
+"macros.qrc" "4"
+"madde" "2"
+"madde.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"botan" "3"
+"botan.pri" "4"
+"coreplugin" "3"
+"coreplugin.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"cplusplus" "3"
+"cplusplus.pri" "4"
+"cpptools" "3"
+"cpptools.pri" "4"
+"cpptools_dependencies" "3"
+"cpptools_dependencies.pri" "4"
+"debugger" "3"
+"debugger.pri" "4"
+"debugger_dependencies" "3"
+"debugger_dependencies.pri" "4"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"find" "3"
+"find.pri" "4"
+"find_dependencies" "3"
+"find_dependencies.pri" "4"
+"languageutils" "3"
+"languageutils.pri" "4"
+"locator" "3"
+"locator.pri" "4"
+"locator_dependencies" "3"
+"locator_dependencies.pri" "4"
+"madde_dependencies" "3"
+"madde_dependencies.pri" "4"
+"projectexplorer" "3"
+"projectexplorer.pri" "4"
+"projectexplorer_dependencies" "3"
+"projectexplorer_dependencies.pri" "4"
+"qmljs" "3"
+"qmljs.pri" "4"
+"qt4projectmanager" "3"
+"qt4projectmanager.pri" "4"
+"qt4projectmanager_dependencies" "3"
+"qt4projectmanager_dependencies.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/madde" "5"
+"Madde.pluginspec.in" "6"
+"qtsupport" "3"
+"qtsupport.pri" "4"
+"qtsupport_dependencies" "3"
+"qtsupport_dependencies.pri" "4"
+"remotelinux" "3"
+"remotelinux.pri" "4"
+"remotelinux_dependencies" "3"
+"remotelinux_dependencies.pri" "4"
+"symbianutils" "3"
+"symbianutils.pri" "4"
+"texteditor" "3"
+"texteditor.pri" "4"
+"texteditor_dependencies" "3"
+"texteditor_dependencies.pri" "4"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"Headers" "3"
+"madde_exports.h" "4"
+"maddedeviceconfigurationfactory.h" "4"
+"maddedevicetester.h" "4"
+"maddeplugin.h" "4"
+"maddeuploadandinstallpackagesteps.h" "4"
+"maemoconstants.h" "4"
+"maemodebugsupport.h" "4"
+"maemodeploybymountsteps.h" "4"
+"maemodeployconfigurationwidget.h" "4"
+"maemodeploymentmounter.h" "4"
+"maemodeploystepfactory.h" "4"
+"maemodeviceconfigwizard.h" "4"
+"maemoglobal.h" "4"
+"maemoinstalltosysrootstep.h" "4"
+"maemomountspecification.h" "4"
+"maemopackagecreationfactory.h" "4"
+"maemopackagecreationstep.h" "4"
+"maemopackagecreationwidget.h" "4"
+"maemopackageinstaller.h" "4"
+"maemopublishedprojectmodel.h" "4"
+"maemopublisherfremantlefree.h" "4"
+"maemopublishingbuildsettingspagefremantlefree.h" "4"
+"maemopublishingfileselectiondialog.h" "4"
+"maemopublishingresultpagefremantlefree.h" "4"
+"maemopublishinguploadsettingspagefremantlefree.h" "4"
+"maemopublishingwizardfactories.h" "4"
+"maemopublishingwizardfremantlefree.h" "4"
+"maemoqemumanager.h" "4"
+"maemoqemuruntime.h" "4"
+"maemoqemuruntimeparser.h" "4"
+"maemoqemusettings.h" "4"
+"maemoqemusettingswidget.h" "4"
+"maemoqtversion.h" "4"
+"maemoqtversionfactory.h" "4"
+"maemoremotecopyfacility.h" "4"
+"maemoremotemounter.h" "4"
+"maemoremotemountsmodel.h" "4"
+"maemorunconfiguration.h" "4"
+"maemorunconfigurationwidget.h" "4"
+"maemoruncontrol.h" "4"
+"maemorunfactories.h" "4"
+"maemosettingspages.h" "4"
+"maemosshrunner.h" "4"
+"maemotoolchain.h" "4"
+"qt4maemodeployconfiguration.h" "4"
+"qt4maemotarget.h" "4"
+"qt4maemotargetfactory.h" "4"
+"Sources" "3"
+"maddedeviceconfigurationfactory.cpp" "4"
+"maddedevicetester.cpp" "4"
+"maddeplugin.cpp" "4"
+"maddeuploadandinstallpackagesteps.cpp" "4"
+"maemodebugsupport.cpp" "4"
+"maemodeploybymountsteps.cpp" "4"
+"maemodeployconfigurationwidget.cpp" "4"
+"maemodeploymentmounter.cpp" "4"
+"maemodeploystepfactory.cpp" "4"
+"maemodeviceconfigwizard.cpp" "4"
+"maemoglobal.cpp" "4"
+"maemoinstalltosysrootstep.cpp" "4"
+"maemomountspecification.cpp" "4"
+"maemopackagecreationfactory.cpp" "4"
+"maemopackagecreationstep.cpp" "4"
+"maemopackagecreationwidget.cpp" "4"
+"maemopackageinstaller.cpp" "4"
+"maemopublishedprojectmodel.cpp" "4"
+"maemopublisherfremantlefree.cpp" "4"
+"maemopublishingbuildsettingspagefremantlefree.cpp" "4"
+"maemopublishingfileselectiondialog.cpp" "4"
+"maemopublishingresultpagefremantlefree.cpp" "4"
+"maemopublishinguploadsettingspagefremantlefree.cpp" "4"
+"maemopublishingwizardfactories.cpp" "4"
+"maemopublishingwizardfremantlefree.cpp" "4"
+"maemoqemumanager.cpp" "4"
+"maemoqemuruntimeparser.cpp" "4"
+"maemoqemusettings.cpp" "4"
+"maemoqemusettingswidget.cpp" "4"
+"maemoqtversion.cpp" "4"
+"maemoqtversionfactory.cpp" "4"
+"maemoremotecopyfacility.cpp" "4"
+"maemoremotemounter.cpp" "4"
+"maemoremotemountsmodel.cpp" "4"
+"maemorunconfiguration.cpp" "4"
+"maemorunconfigurationwidget.cpp" "4"
+"maemoruncontrol.cpp" "4"
+"maemorunfactories.cpp" "4"
+"maemosettingspages.cpp" "4"
+"maemosshrunner.cpp" "4"
+"maemotoolchain.cpp" "4"
+"qt4maemodeployconfiguration.cpp" "4"
+"qt4maemotarget.cpp" "4"
+"qt4maemotargetfactory.cpp" "4"
+"Forms" "3"
+"maemodeployconfigurationwidget.ui" "4"
+"maemodeviceconfigwizardkeycreationpage.ui" "4"
+"maemodeviceconfigwizardkeydeploymentpage.ui" "4"
+"maemodeviceconfigwizardpreviouskeysetupcheckpage.ui" "4"
+"maemodeviceconfigwizardreusekeyscheckpage.ui" "4"
+"maemodeviceconfigwizardstartpage.ui" "4"
+"maemopackagecreationwidget.ui" "4"
+"maemopublishingbuildsettingspagefremantlefree.ui" "4"
+"maemopublishingfileselectiondialog.ui" "4"
+"maemopublishingresultpagefremantlefree.ui" "4"
+"maemopublishinguploadsettingspagefremantlefree.ui" "4"
+"maemoqemusettingswidget.ui" "4"
+"Resources" "3"
+"qt-maemo.qrc" "4"
+"mercurial" "2"
+"mercurial.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"coreplugin" "3"
+"coreplugin.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"cplusplus" "3"
+"cplusplus.pri" "4"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"find" "3"
+"find.pri" "4"
+"find_dependencies" "3"
+"find_dependencies.pri" "4"
+"locator" "3"
+"locator.pri" "4"
+"locator_dependencies" "3"
+"locator_dependencies.pri" "4"
+"mercurial_dependencies" "3"
+"mercurial_dependencies.pri" "4"
+"projectexplorer" "3"
+"projectexplorer.pri" "4"
+"projectexplorer_dependencies" "3"
+"projectexplorer_dependencies.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/mercurial" "5"
+"Mercurial.pluginspec.in" "6"
+"texteditor" "3"
+"texteditor.pri" "4"
+"texteditor_dependencies" "3"
+"texteditor_dependencies.pri" "4"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"vcsbase" "3"
+"vcsbase.pri" "4"
+"vcsbase_dependencies" "3"
+"vcsbase_dependencies.pri" "4"
+"Headers" "3"
+"annotationhighlighter.h" "4"
+"clonewizard.h" "4"
+"clonewizardpage.h" "4"
+"commiteditor.h" "4"
+"constants.h" "4"
+"mercurialclient.h" "4"
+"mercurialcommitwidget.h" "4"
+"mercurialcontrol.h" "4"
+"mercurialeditor.h" "4"
+"mercurialplugin.h" "4"
+"mercurialsettings.h" "4"
+"optionspage.h" "4"
+"revertdialog.h" "4"
+"srcdestdialog.h" "4"
+"Sources" "3"
+"annotationhighlighter.cpp" "4"
+"clonewizard.cpp" "4"
+"clonewizardpage.cpp" "4"
+"commiteditor.cpp" "4"
+"mercurialclient.cpp" "4"
+"mercurialcommitwidget.cpp" "4"
+"mercurialcontrol.cpp" "4"
+"mercurialeditor.cpp" "4"
+"mercurialplugin.cpp" "4"
+"mercurialsettings.cpp" "4"
+"optionspage.cpp" "4"
+"revertdialog.cpp" "4"
+"srcdestdialog.cpp" "4"
+"Forms" "3"
+"mercurialcommitpanel.ui" "4"
+"optionspage.ui" "4"
+"revertdialog.ui" "4"
+"srcdestdialog.ui" "4"
+"Resources" "3"
+"mercurial.qrc" "4"
+"perforce" "2"
+"perforce.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"coreplugin" "3"
+"coreplugin.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"cplusplus" "3"
+"cplusplus.pri" "4"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"find" "3"
+"find.pri" "4"
+"find_dependencies" "3"
+"find_dependencies.pri" "4"
+"locator" "3"
+"locator.pri" "4"
+"locator_dependencies" "3"
+"locator_dependencies.pri" "4"
+"perforce_dependencies" "3"
+"perforce_dependencies.pri" "4"
+"projectexplorer" "3"
+"projectexplorer.pri" "4"
+"projectexplorer_dependencies" "3"
+"projectexplorer_dependencies.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/perforce" "5"
+"Perforce.pluginspec.in" "6"
+"texteditor" "3"
+"texteditor.pri" "4"
+"texteditor_dependencies" "3"
+"texteditor_dependencies.pri" "4"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"vcsbase" "3"
+"vcsbase.pri" "4"
+"vcsbase_dependencies" "3"
+"vcsbase_dependencies.pri" "4"
+"Headers" "3"
+"annotationhighlighter.h" "4"
+"changenumberdialog.h" "4"
+"pendingchangesdialog.h" "4"
+"perforcechecker.h" "4"
+"perforceconstants.h" "4"
+"perforceeditor.h" "4"
+"perforceplugin.h" "4"
+"perforcesettings.h" "4"
+"perforcesubmiteditor.h" "4"
+"perforcesubmiteditorwidget.h" "4"
+"perforceversioncontrol.h" "4"
+"settingspage.h" "4"
+"Sources" "3"
+"annotationhighlighter.cpp" "4"
+"changenumberdialog.cpp" "4"
+"pendingchangesdialog.cpp" "4"
+"perforcechecker.cpp" "4"
+"perforceeditor.cpp" "4"
+"perforceplugin.cpp" "4"
+"perforcesettings.cpp" "4"
+"perforcesubmiteditor.cpp" "4"
+"perforcesubmiteditorwidget.cpp" "4"
+"perforceversioncontrol.cpp" "4"
+"settingspage.cpp" "4"
+"Forms" "3"
+"changenumberdialog.ui" "4"
+"pendingchangesdialog.ui" "4"
+"settingspage.ui" "4"
+"submitpanel.ui" "4"
+"Resources" "3"
+"perforce.qrc" "4"
+"private_headers" "2"
+"private_headers.pri" "3"
+"projectexplorer" "2"
+"projectexplorer.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"botan" "3"
+"botan.pri" "4"
+"coreplugin" "3"
+"coreplugin.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"customwizard" "3"
+"customwizard.pri" "4"
+"Headers" "4"
+"customwizard.h" "5"
+"customwizardpage.h" "5"
+"customwizardparameters.h" "5"
+"customwizardpreprocessor.h" "5"
+"customwizardscriptgenerator.h" "5"
+"Sources" "4"
+"customwizard.cpp" "5"
+"customwizardpage.cpp" "5"
+"customwizardparameters.cpp" "5"
+"customwizardpreprocessor.cpp" "5"
+"customwizardscriptgenerator.cpp" "5"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"find" "3"
+"find.pri" "4"
+"find_dependencies" "3"
+"find_dependencies.pri" "4"
+"locator" "3"
+"locator.pri" "4"
+"locator_dependencies" "3"
+"locator_dependencies.pri" "4"
+"projectexplorer_dependencies" "3"
+"projectexplorer_dependencies.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/projectexplorer" "5"
+"ProjectExplorer.pluginspec.in" "6"
+"texteditor" "3"
+"texteditor.pri" "4"
+"texteditor_dependencies" "3"
+"texteditor_dependencies.pri" "4"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"Headers" "3"
+"publishing" "4"
+"ipublishingwizardfactory.h" "5"
+"publishingwizardselectiondialog.h" "5"
+"abi.h" "4"
+"abiwidget.h" "4"
+"abstractmsvctoolchain.h" "4"
+"abstractprocessstep.h" "4"
+"allprojectsfilter.h" "4"
+"allprojectsfind.h" "4"
+"applicationlauncher.h" "4"
+"applicationrunconfiguration.h" "4"
+"appoutputpane.h" "4"
+"baseprojectwizarddialog.h" "4"
+"buildconfiguration.h" "4"
+"buildconfigurationmodel.h" "4"
+"buildenvironmentwidget.h" "4"
+"buildmanager.h" "4"
+"buildprogress.h" "4"
+"buildsettingspropertiespage.h" "4"
+"buildstep.h" "4"
+"buildsteplist.h" "4"
+"buildstepspage.h" "4"
+"cesdkhandler.h" "4"
+"clangparser.h" "4"
+"codestylesettingspropertiespage.h" "4"
+"compileoutputwindow.h" "4"
+"copytaskhandler.h" "4"
+"corelistenercheckingforrunningbuild.h" "4"
+"currentprojectfilter.h" "4"
+"currentprojectfind.h" "4"
+"dependenciespanel.h" "4"
+"deployconfiguration.h" "4"
+"deployconfigurationmodel.h" "4"
+"doubletabwidget.h" "4"
+"editorconfiguration.h" "4"
+"editorsettingspropertiespage.h" "4"
+"environmentitemswidget.h" "4"
+"environmentwidget.h" "4"
+"foldernavigationwidget.h" "4"
+"gccparser.h" "4"
+"gcctoolchain.h" "4"
+"gcctoolchainfactories.h" "4"
+"gnumakeparser.h" "4"
+"headerpath.h" "4"
+"ioutputparser.h" "4"
+"iprojectmanager.h" "4"
+"iprojectproperties.h" "4"
+"itaskhandler.h" "4"
+"ldparser.h" "4"
+"linuxiccparser.h" "4"
+"localapplicationruncontrol.h" "4"
+"metatypedeclarations.h" "4"
+"miniprojecttargetselector.h" "4"
+"msvcparser.h" "4"
+"msvctoolchain.h" "4"
+"namedwidget.h" "4"
+"nodesvisitor.h" "4"
+"outputparser_test.h" "4"
+"pluginfilefactory.h" "4"
+"processparameters.h" "4"
+"processstep.h" "4"
+"project.h" "4"
+"projectconfiguration.h" "4"
+"projectexplorer.h" "4"
+"projectexplorer_export.h" "4"
+"projectexplorerconstants.h" "4"
+"projectexplorersettings.h" "4"
+"projectexplorersettingspage.h" "4"
+"projectfilewizardextension.h" "4"
+"projectmodels.h" "4"
+"projectnodes.h" "4"
+"projecttreewidget.h" "4"
+"projectwelcomepage.h" "4"
+"projectwindow.h" "4"
+"projectwizardpage.h" "4"
+"removefiledialog.h" "4"
+"runconfiguration.h" "4"
+"runconfigurationmodel.h" "4"
+"runsettingspropertiespage.h" "4"
+"session.h" "4"
+"sessiondialog.h" "4"
+"settingsaccessor.h" "4"
+"showineditortaskhandler.h" "4"
+"showoutputtaskhandler.h" "4"
+"target.h" "4"
+"targetselector.h" "4"
+"targetsettingspanel.h" "4"
+"targetsettingswidget.h" "4"
+"task.h" "4"
+"taskhub.h" "4"
+"taskmodel.h" "4"
+"taskwindow.h" "4"
+"toolchain.h" "4"
+"toolchainconfigwidget.h" "4"
+"toolchainmanager.h" "4"
+"toolchainoptionspage.h" "4"
+"vcsannotatetaskhandler.h" "4"
+"wincetoolchain.h" "4"
+"windebuginterface.h" "4"
+"Sources" "3"
+"publishing" "4"
+"publishingwizardselectiondialog.cpp" "5"
+"abi.cpp" "4"
+"abiwidget.cpp" "4"
+"abstractmsvctoolchain.cpp" "4"
+"abstractprocessstep.cpp" "4"
+"allprojectsfilter.cpp" "4"
+"allprojectsfind.cpp" "4"
+"applicationlauncher.cpp" "4"
+"applicationrunconfiguration.cpp" "4"
+"appoutputpane.cpp" "4"
+"baseprojectwizarddialog.cpp" "4"
+"buildconfiguration.cpp" "4"
+"buildconfigurationmodel.cpp" "4"
+"buildenvironmentwidget.cpp" "4"
+"buildmanager.cpp" "4"
+"buildprogress.cpp" "4"
+"buildsettingspropertiespage.cpp" "4"
+"buildstep.cpp" "4"
+"buildsteplist.cpp" "4"
+"buildstepspage.cpp" "4"
+"cesdkhandler.cpp" "4"
+"clangparser.cpp" "4"
+"codestylesettingspropertiespage.cpp" "4"
+"compileoutputwindow.cpp" "4"
+"copytaskhandler.cpp" "4"
+"corelistenercheckingforrunningbuild.cpp" "4"
+"currentprojectfilter.cpp" "4"
+"currentprojectfind.cpp" "4"
+"dependenciespanel.cpp" "4"
+"deployconfiguration.cpp" "4"
+"deployconfigurationmodel.cpp" "4"
+"doubletabwidget.cpp" "4"
+"editorconfiguration.cpp" "4"
+"editorsettingspropertiespage.cpp" "4"
+"environmentitemswidget.cpp" "4"
+"environmentwidget.cpp" "4"
+"foldernavigationwidget.cpp" "4"
+"gccparser.cpp" "4"
+"gcctoolchain.cpp" "4"
+"gnumakeparser.cpp" "4"
+"ioutputparser.cpp" "4"
+"ldparser.cpp" "4"
+"linuxiccparser.cpp" "4"
+"localapplicationruncontrol.cpp" "4"
+"miniprojecttargetselector.cpp" "4"
+"msvcparser.cpp" "4"
+"msvctoolchain.cpp" "4"
+"namedwidget.cpp" "4"
+"nodesvisitor.cpp" "4"
+"outputparser_test.cpp" "4"
+"pluginfilefactory.cpp" "4"
+"processparameters.cpp" "4"
+"processstep.cpp" "4"
+"project.cpp" "4"
+"projectconfiguration.cpp" "4"
+"projectexplorer.cpp" "4"
+"projectexplorersettingspage.cpp" "4"
+"projectfilewizardextension.cpp" "4"
+"projectmodels.cpp" "4"
+"projectnodes.cpp" "4"
+"projecttreewidget.cpp" "4"
+"projectwelcomepage.cpp" "4"
+"projectwindow.cpp" "4"
+"projectwizardpage.cpp" "4"
+"removefiledialog.cpp" "4"
+"runconfiguration.cpp" "4"
+"runconfigurationmodel.cpp" "4"
+"runsettingspropertiespage.cpp" "4"
+"session.cpp" "4"
+"sessiondialog.cpp" "4"
+"settingsaccessor.cpp" "4"
+"showineditortaskhandler.cpp" "4"
+"showoutputtaskhandler.cpp" "4"
+"target.cpp" "4"
+"targetselector.cpp" "4"
+"targetsettingspanel.cpp" "4"
+"targetsettingswidget.cpp" "4"
+"task.cpp" "4"
+"taskhub.cpp" "4"
+"taskmodel.cpp" "4"
+"taskwindow.cpp" "4"
+"toolchain.cpp" "4"
+"toolchainconfigwidget.cpp" "4"
+"toolchainmanager.cpp" "4"
+"toolchainoptionspage.cpp" "4"
+"vcsannotatetaskhandler.cpp" "4"
+"wincetoolchain.cpp" "4"
+"windebuginterface.cpp" "4"
+"Forms" "3"
+"publishing" "4"
+"publishingwizardselectiondialog.ui" "5"
+"codestylesettingspropertiespage.ui" "4"
+"doubletabwidget.ui" "4"
+"editorsettingspropertiespage.ui" "4"
+"processstep.ui" "4"
+"projectexplorersettingspage.ui" "4"
+"projectwizardpage.ui" "4"
+"removefiledialog.ui" "4"
+"sessiondialog.ui" "4"
+"targetsettingswidget.ui" "4"
+"toolchainoptionspage.ui" "4"
+"Resources" "3"
+"projectexplorer.qrc" "4"
+"ptracepreload" "2"
+"ptracepreload.pro" "3"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorlibrary" "3"
+"qtcreatorlibrary.pri" "4"
+"rpath" "3"
+"rpath.pri" "4"
+"Sources" "3"
+"ptracepreload.c" "4"
+"qmldesigner" "2"
+"qmldesigner.pro" "3"
+"customstyleplugin" "3"
+"customstyleplugin.pro" "4"
+"customstyleplugin" "4"
+"customstyleplugin.pri" "5"
+"Headers" "5"
+"iwidgetplugin.h" "7"
+"customstyleplugin.h" "6"
+"Sources" "5"
+"customstyleplugin.cpp" "6"
+"Resources" "5"
+"customstyleplugin.qrc" "6"
+"Other files" "5"
+"customstyle.metainfo" "6"
+"iwidgetplugin" "4"
+"iwidgetplugin.pri" "5"
+"plugindestdir" "4"
+"plugindestdir.pri" "5"
+"private_headers" "4"
+"private_headers.pri" "5"
+"qtcreator" "4"
+"qtcreator.pri" "5"
+"desktopplugin" "3"
+"desktopplugin.pro" "4"
+"desktopplugin" "4"
+"desktopplugin.pri" "5"
+"Headers" "5"
+"iwidgetplugin.h" "7"
+"desktopplugin.h" "6"
+"Sources" "5"
+"desktopplugin.cpp" "6"
+"Resources" "5"
+"desktopplugin.qrc" "6"
+"Other files" "5"
+"desktop.metainfo" "6"
+"iwidgetplugin" "4"
+"iwidgetplugin.pri" "5"
+"plugindestdir" "4"
+"plugindestdir.pri" "5"
+"private_headers" "4"
+"private_headers.pri" "5"
+"qtcreator" "4"
+"qtcreator.pri" "5"
+"extrasplugin" "3"
+"extrasplugin.pro" "4"
+"extrasplugin" "4"
+"extrasplugin.pri" "5"
+"Headers" "5"
+"iwidgetplugin.h" "7"
+"extrasplugin.h" "6"
+"Sources" "5"
+"extrasplugin.cpp" "6"
+"Resources" "5"
+"extrasplugin.qrc" "6"
+"Other files" "5"
+"extras.metainfo" "6"
+"iwidgetplugin" "4"
+"iwidgetplugin.pri" "5"
+"plugindestdir" "4"
+"plugindestdir.pri" "5"
+"private_headers" "4"
+"private_headers.pri" "5"
+"qtcreator" "4"
+"qtcreator.pri" "5"
+"meegoplugin" "3"
+"meegoplugin.pro" "4"
+"iwidgetplugin" "4"
+"iwidgetplugin.pri" "5"
+"meegoplugin" "4"
+"meegoplugin.pri" "5"
+"Headers" "5"
+"iwidgetplugin.h" "7"
+"meegoplugin.h" "6"
+"Sources" "5"
+"meegoplugin.cpp" "6"
+"Resources" "5"
+"meegoplugin.qrc" "6"
+"Other files" "5"
+"meego.metainfo" "6"
+"plugindestdir" "4"
+"plugindestdir.pri" "5"
+"private_headers" "4"
+"private_headers.pri" "5"
+"qtcreator" "4"
+"qtcreator.pri" "5"
+"qmldesignerplugin" "3"
+"qmldesignerplugin.pro" "4"
+"aggregation" "4"
+"aggregation.pri" "5"
+"botan" "4"
+"botan.pri" "5"
+"commands" "4"
+"commands.pri" "5"
+"Headers" "5"
+"changeauxiliarycommand.h" "6"
+"changebindingscommand.h" "6"
+"changefileurlcommand.h" "6"
+"changeidscommand.h" "6"
+"changenodesourcecommand.h" "6"
+"changestatecommand.h" "6"
+"changevaluescommand.h" "6"
+"childrenchangedcommand.h" "6"
+"clearscenecommand.h" "6"
+"completecomponentcommand.h" "6"
+"componentcompletedcommand.h" "6"
+"createinstancescommand.h" "6"
+"createscenecommand.h" "6"
+"informationchangedcommand.h" "6"
+"pixmapchangedcommand.h" "6"
+"removeinstancescommand.h" "6"
+"removepropertiescommand.h" "6"
+"reparentinstancescommand.h" "6"
+"statepreviewimagechangedcommand.h" "6"
+"synchronizecommand.h" "6"
+"tokencommand.h" "6"
+"valueschangedcommand.h" "6"
+"Sources" "5"
+"changeauxiliarycommand.cpp" "6"
+"changebindingscommand.cpp" "6"
+"changefileurlcommand.cpp" "6"
+"changeidscommand.cpp" "6"
+"changenodesourcecommand.cpp" "6"
+"changestatecommand.cpp" "6"
+"changevaluescommand.cpp" "6"
+"childrenchangedcommand.cpp" "6"
+"clearscenecommand.cpp" "6"
+"completecomponentcommand.cpp" "6"
+"componentcompletedcommand.cpp" "6"
+"createinstancescommand.cpp" "6"
+"createscenecommand.cpp" "6"
+"informationchangedcommand.cpp" "6"
+"pixmapchangedcommand.cpp" "6"
+"removeinstancescommand.cpp" "6"
+"removepropertiescommand.cpp" "6"
+"reparentinstancescommand.cpp" "6"
+"statepreviewimagechangedcommand.cpp" "6"
+"synchronizecommand.cpp" "6"
+"tokencommand.cpp" "6"
+"valueschangedcommand.cpp" "6"
+"config" "4"
+"config.pri" "5"
+"container" "4"
+"container.pri" "5"
+"Headers" "5"
+"addimportcontainer.h" "6"
+"idcontainer.h" "6"
+"imagecontainer.h" "6"
+"informationcontainer.h" "6"
+"instancecontainer.h" "6"
+"propertyabstractcontainer.h" "6"
+"propertybindingcontainer.h" "6"
+"propertyvaluecontainer.h" "6"
+"reparentcontainer.h" "6"
+"Sources" "5"
+"addimportcontainer.cpp" "6"
+"idcontainer.cpp" "6"
+"imagecontainer.cpp" "6"
+"informationcontainer.cpp" "6"
+"instancecontainer.cpp" "6"
+"propertyabstractcontainer.cpp" "6"
+"propertybindingcontainer.cpp" "6"
+"propertyvaluecontainer.cpp" "6"
+"reparentcontainer.cpp" "6"
+"coreplugin" "4"
+"coreplugin.pri" "5"
+"coreplugin_dependencies" "4"
+"coreplugin_dependencies.pri" "5"
+"cplusplus" "4"
+"cplusplus.pri" "5"
+"cpptools" "4"
+"cpptools.pri" "5"
+"cpptools_dependencies" "4"
+"cpptools_dependencies.pri" "5"
+"debugger" "4"
+"debugger.pri" "5"
+"debugger_dependencies" "4"
+"debugger_dependencies.pri" "5"
+"designercore" "4"
+"designercore.pri" "5"
+"Headers" "5"
+"include" "6"
+"abstractproperty.h" "7"
+"abstractview.h" "7"
+"basetexteditmodifier.h" "7"
+"bindingproperty.h" "7"
+"componenttextmodifier.h" "7"
+"corelib_global.h" "7"
+"customnotifications.h" "7"
+"exception.h" "7"
+"forwardview.h" "7"
+"import.h" "7"
+"invalidargumentexception.h" "7"
+"invalididexception.h" "7"
+"invalidmetainfoexception.h" "7"
+"invalidmodelstateexception.h" "7"
+"invalidpropertyexception.h" "7"
+"invalidqmlsourceexception.h" "7"
+"invalidreparentingexception.h" "7"
+"invalidslideindexexception.h" "7"
+"itemlibraryinfo.h" "7"
+"mathutils.h" "7"
+"metainfo.h" "7"
+"metainfoparser.h" "7"
+"model.h" "7"
+"modelmerger.h" "7"
+"modelnode.h" "7"
+"modelnodepositionstorage.h" "7"
+"nodeabstractproperty.h" "7"
+"nodeinstanceview.h" "7"
+"nodelistproperty.h" "7"
+"nodemetainfo.h" "7"
+"nodeproperty.h" "7"
+"notimplementedexception.h" "7"
+"plaintexteditmodifier.h" "7"
+"propertycontainer.h" "7"
+"propertynode.h" "7"
+"qmlanchors.h" "7"
+"qmlchangeset.h" "7"
+"qmlitemnode.h" "7"
+"qmlmodelnodefacade.h" "7"
+"qmlmodelview.h" "7"
+"qmlobjectnode.h" "7"
+"qmlstate.h" "7"
+"removebasestateexception.h" "7"
+"rewriterview.h" "7"
+"rewritingexception.h" "7"
+"subcomponentmanager.h" "7"
+"textmodifier.h" "7"
+"variantproperty.h" "7"
+"model" "6"
+"internalbindingproperty.h" "7"
+"internalnode_p.h" "7"
+"internalnodeabstractproperty.h" "7"
+"internalnodelistproperty.h" "7"
+"internalnodeproperty.h" "7"
+"internalproperty.h" "7"
+"internalvariantproperty.h" "7"
+"model_p.h" "7"
+"modelnodecontextmenu.h" "7"
+"modelnodepositionrecalculator.h" "7"
+"modeltotextmerger.h" "7"
+"painteventfilter_p.h" "7"
+"propertyparser.h" "7"
+"qmltextgenerator.h" "7"
+"rewriteaction.h" "7"
+"rewriteactioncompressor.h" "7"
+"texttomodelmerger.h" "7"
+"variantparser.h" "7"
+"viewlogger.h" "7"
+"pluginmanager" "6"
+"widgetpluginmanager.h" "7"
+"widgetpluginpath.h" "7"
+"rewritertransaction.h" "6"
+"Sources" "5"
+"exceptions" "6"
+"exception.cpp" "7"
+"invalidargumentexception.cpp" "7"
+"invalididexception.cpp" "7"
+"invalidmetainfoexception.cpp" "7"
+"invalidmodelnodeexception.cpp" "7"
+"invalidmodelstateexception.cpp" "7"
+"invalidpropertyexception.cpp" "7"
+"invalidqmlsourceexception.cpp" "7"
+"invalidreparentingexception.cpp" "7"
+"invalidslideindexexception.cpp" "7"
+"notimplementedexception.cpp" "7"
+"removebasestateexception.cpp" "7"
+"rewritingexception.cpp" "7"
+"metainfo" "6"
+"itemlibraryinfo.cpp" "7"
+"metainfo.cpp" "7"
+"metainfoparser.cpp" "7"
+"nodemetainfo.cpp" "7"
+"subcomponentmanager.cpp" "7"
+"model" "6"
+"abstractproperty.cpp" "7"
+"abstractview.cpp" "7"
+"basetexteditmodifier.cpp" "7"
+"bindingproperty.cpp" "7"
+"componenttextmodifier.cpp" "7"
+"import.cpp" "7"
+"internalbindingproperty.cpp" "7"
+"internalnode.cpp" "7"
+"internalnodeabstractproperty.cpp" "7"
+"internalnodelistproperty.cpp" "7"
+"internalnodeproperty.cpp" "7"
+"internalproperty.cpp" "7"
+"internalvariantproperty.cpp" "7"
+"model.cpp" "7"
+"modelmerger.cpp" "7"
+"modelnode.cpp" "7"
+"modelnodecontextmenu.cpp" "7"
+"modelnodepositionrecalculator.cpp" "7"
+"modelnodepositionstorage.cpp" "7"
+"modeltotextmerger.cpp" "7"
+"nodeabstractproperty.cpp" "7"
+"nodelistproperty.cpp" "7"
+"nodeproperty.cpp" "7"
+"painteventfilter.cpp" "7"
+"plaintexteditmodifier.cpp" "7"
+"propertycontainer.cpp" "7"
+"propertynode.cpp" "7"
+"propertyparser.cpp" "7"
+"qmlanchors.cpp" "7"
+"qmlchangeset.cpp" "7"
+"qmlitemnode.cpp" "7"
+"qmlmodelnodefacade.cpp" "7"
+"qmlmodelview.cpp" "7"
+"qmlobjectnode.cpp" "7"
+"qmlstate.cpp" "7"
+"qmltextgenerator.cpp" "7"
+"rewriteaction.cpp" "7"
+"rewriteactioncompressor.cpp" "7"
+"rewriterview.cpp" "7"
+"textmodifier.cpp" "7"
+"texttomodelmerger.cpp" "7"
+"variantparser.cpp" "7"
+"variantproperty.cpp" "7"
+"viewlogger.cpp" "7"
+"pluginmanager" "6"
+"widgetpluginmanager.cpp" "7"
+"widgetpluginpath.cpp" "7"
+"rewritertransaction.cpp" "6"
+"extensionsystem" "4"
+"extensionsystem.pri" "5"
+"extensionsystem_dependencies" "4"
+"extensionsystem_dependencies.pri" "5"
+"filemanager" "4"
+"filemanager.pri" "5"
+"Headers" "5"
+"addarraymembervisitor.h" "6"
+"addobjectvisitor.h" "6"
+"addpropertyvisitor.h" "6"
+"astobjecttextextractor.h" "6"
+"changeimportsvisitor.h" "6"
+"changeobjecttypevisitor.h" "6"
+"changepropertyvisitor.h" "6"
+"firstdefinitionfinder.h" "6"
+"moveobjectbeforeobjectvisitor.h" "6"
+"moveobjectvisitor.h" "6"
+"objectlengthcalculator.h" "6"
+"qmlrefactoring.h" "6"
+"qmlrewriter.h" "6"
+"removepropertyvisitor.h" "6"
+"removeuiobjectmembervisitor.h" "6"
+"Sources" "5"
+"addarraymembervisitor.cpp" "6"
+"addobjectvisitor.cpp" "6"
+"addpropertyvisitor.cpp" "6"
+"astobjecttextextractor.cpp" "6"
+"changeimportsvisitor.cpp" "6"
+"changeobjecttypevisitor.cpp" "6"
+"changepropertyvisitor.cpp" "6"
+"firstdefinitionfinder.cpp" "6"
+"moveobjectbeforeobjectvisitor.cpp" "6"
+"moveobjectvisitor.cpp" "6"
+"objectlengthcalculator.cpp" "6"
+"qmlrefactoring.cpp" "6"
+"qmlrewriter.cpp" "6"
+"removepropertyvisitor.cpp" "6"
+"removeuiobjectmembervisitor.cpp" "6"
+"find" "4"
+"find.pri" "5"
+"find_dependencies" "4"
+"find_dependencies.pri" "5"
+"formeditor" "4"
+"formeditor.pri" "5"
+"Headers" "5"
+"abstractformeditortool.h" "6"
+"anchorcontroller.h" "6"
+"anchorhandleitem.h" "6"
+"anchorindicator.h" "6"
+"anchorlinecontroller.h" "6"
+"anchorlinehandleitem.h" "6"
+"anchorlineindicator.h" "6"
+"anchormanipulator.h" "6"
+"anchortool.h" "6"
+"controlelement.h" "6"
+"dragtool.h" "6"
+"formeditorgraphicsview.h" "6"
+"formeditoritem.h" "6"
+"formeditorscene.h" "6"
+"formeditorview.h" "6"
+"formeditorwidget.h" "6"
+"itemutilfunctions.h" "6"
+"layeritem.h" "6"
+"lineeditaction.h" "6"
+"movemanipulator.h" "6"
+"movetool.h" "6"
+"numberseriesaction.h" "6"
+"onedimensionalcluster.h" "6"
+"resizecontroller.h" "6"
+"resizehandleitem.h" "6"
+"resizeindicator.h" "6"
+"resizemanipulator.h" "6"
+"resizetool.h" "6"
+"rubberbandselectionmanipulator.h" "6"
+"scaleitem.h" "6"
+"scalemanipulator.h" "6"
+"selectionindicator.h" "6"
+"selectionrectangle.h" "6"
+"selectiontool.h" "6"
+"singleselectionmanipulator.h" "6"
+"snapper.h" "6"
+"snappinglinecreator.h" "6"
+"toolbox.h" "6"
+"zoomaction.h" "6"
+"Sources" "5"
+"abstractformeditortool.cpp" "6"
+"anchorcontroller.cpp" "6"
+"anchorhandleitem.cpp" "6"
+"anchorindicator.cpp" "6"
+"anchorlinecontroller.cpp" "6"
+"anchorlinehandleitem.cpp" "6"
+"anchorlineindicator.cpp" "6"
+"anchormanipulator.cpp" "6"
+"anchortool.cpp" "6"
+"controlelement.cpp" "6"
+"dragtool.cpp" "6"
+"formeditorgraphicsview.cpp" "6"
+"formeditoritem.cpp" "6"
+"formeditorscene.cpp" "6"
+"formeditorview.cpp" "6"
+"formeditorwidget.cpp" "6"
+"itemutilfunctions.cpp" "6"
+"layeritem.cpp" "6"
+"lineeditaction.cpp" "6"
+"movemanipulator.cpp" "6"
+"movetool.cpp" "6"
+"numberseriesaction.cpp" "6"
+"onedimensionalcluster.cpp" "6"
+"resizecontroller.cpp" "6"
+"resizehandleitem.cpp" "6"
+"resizeindicator.cpp" "6"
+"resizemanipulator.cpp" "6"
+"resizetool.cpp" "6"
+"rubberbandselectionmanipulator.cpp" "6"
+"scaleitem.cpp" "6"
+"scalemanipulator.cpp" "6"
+"selectionindicator.cpp" "6"
+"selectionrectangle.cpp" "6"
+"selectiontool.cpp" "6"
+"singleselectionmanipulator.cpp" "6"
+"snapper.cpp" "6"
+"snappinglinecreator.cpp" "6"
+"toolbox.cpp" "6"
+"zoomaction.cpp" "6"
+"Resources" "5"
+"formeditor.qrc" "6"
+"instances" "4"
+"instances.pri" "5"
+"Headers" "5"
+"nodeinstance.h" "7"
+"nodeinstanceserverproxy.h" "6"
+"Sources" "5"
+"nodeinstance.cpp" "6"
+"nodeinstanceserverproxy.cpp" "6"
+"nodeinstanceview.cpp" "6"
+"integration" "4"
+"integration.pri" "5"
+"Headers" "5"
+"componentaction.h" "6"
+"componentview.h" "6"
+"designdocumentcontroller.h" "6"
+"designdocumentcontrollerview.h" "6"
+"integrationcore.h" "6"
+"stackedutilitypanelcontroller.h" "6"
+"utilitypanelcontroller.h" "6"
+"xuifiledialog.h" "6"
+"Sources" "5"
+"componentaction.cpp" "6"
+"componentview.cpp" "6"
+"designdocumentcontroller.cpp" "6"
+"designdocumentcontrollerview.cpp" "6"
+"integrationcore.cpp" "6"
+"stackedutilitypanelcontroller.cpp" "6"
+"utilitypanelcontroller.cpp" "6"
+"xuifiledialog.cpp" "6"
+"interfaces" "4"
+"interfaces.pri" "5"
+"Headers" "5"
+"commondefines.h" "6"
+"nodeinstanceclientinterface.h" "6"
+"nodeinstanceserverinterface.h" "6"
+"Sources" "5"
+"nodeinstanceserverinterface.cpp" "6"
+"itemlibrary" "4"
+"itemlibrary.pri" "5"
+"Headers" "5"
+"customdraganddrop.h" "6"
+"itemlibrarycomponents.h" "6"
+"itemlibraryimageprovider.h" "6"
+"itemlibrarymodel.h" "6"
+"itemlibraryview.h" "6"
+"itemlibrarywidget.h" "6"
+"Sources" "5"
+"customdraganddrop.cpp" "6"
+"itemlibrarycomponents.cpp" "6"
+"itemlibraryimageprovider.cpp" "6"
+"itemlibrarymodel.cpp" "6"
+"itemlibraryview.cpp" "6"
+"itemlibrarywidget.cpp" "6"
+"Resources" "5"
+"itemlibrary.qrc" "6"
+"QML" "5"
+"qml" "6"
+"ItemsView.qml" "7"
+"ItemsViewStyle.qml" "7"
+"ItemView.qml" "7"
+"Scrollbar.qml" "7"
+"SectionView.qml" "7"
+"Selector.qml" "7"
+"languageutils" "4"
+"languageutils.pri" "5"
+"locator" "4"
+"locator.pri" "5"
+"locator_dependencies" "4"
+"locator_dependencies.pri" "5"
+"navigator" "4"
+"navigator.pri" "5"
+"Headers" "5"
+"navigatortreemodel.h" "6"
+"navigatortreeview.h" "6"
+"navigatorview.h" "6"
+"navigatorwidget.h" "6"
+"Sources" "5"
+"navigatortreemodel.cpp" "6"
+"navigatortreeview.cpp" "6"
+"navigatorview.cpp" "6"
+"navigatorwidget.cpp" "6"
+"Resources" "5"
+"navigator.qrc" "6"
+"pluginmanager" "4"
+"pluginmanager.pri" "5"
+"Headers" "5"
+"iplugin.h" "6"
+"pluginmanager.h" "6"
+"pluginpath.h" "6"
+"Sources" "5"
+"iplugin.cpp" "6"
+"pluginmanager.cpp" "6"
+"pluginpath.cpp" "6"
+"private_headers" "4"
+"private_headers.pri" "5"
+"projectexplorer" "4"
+"projectexplorer.pri" "5"
+"projectexplorer_dependencies" "4"
+"projectexplorer_dependencies.pri" "5"
+"propertyeditor" "4"
+"propertyeditor.pri" "5"
+"Headers" "5"
+"basiclayouts.h" "6"
+"basicwidgets.h" "6"
+"behaviordialog.h" "6"
+"declarativewidgetview.h" "6"
+"designerpropertymap.h" "6"
+"filewidget.h" "6"
+"fontwidget.h" "6"
+"gradientlineqmladaptor.h" "6"
+"layoutwidget.h" "6"
+"originwidget.h" "6"
+"propertyeditor.h" "6"
+"propertyeditorcontextobject.h" "6"
+"propertyeditortransaction.h" "6"
+"propertyeditorvalue.h" "6"
+"qlayoutobject.h" "6"
+"qmlanchorbindingproxy.h" "6"
+"qproxylayoutitem.h" "6"
+"resetwidget.h" "6"
+"siblingcombobox.h" "6"
+"Sources" "5"
+"basiclayouts.cpp" "6"
+"basicwidgets.cpp" "6"
+"behaviordialog.cpp" "6"
+"declarativewidgetview.cpp" "6"
+"filewidget.cpp" "6"
+"fontwidget.cpp" "6"
+"gradientlineqmladaptor.cpp" "6"
+"layoutwidget.cpp" "6"
+"originwidget.cpp" "6"
+"propertyeditor.cpp" "6"
+"propertyeditorcontextobject.cpp" "6"
+"propertyeditortransaction.cpp" "6"
+"propertyeditorvalue.cpp" "6"
+"qlayoutobject.cpp" "6"
+"qmlanchorbindingproxy.cpp" "6"
+"qproxylayoutitem.cpp" "6"
+"resetwidget.cpp" "6"
+"siblingcombobox.cpp" "6"
+"Forms" "5"
+"behaviordialog.ui" "6"
+"Resources" "5"
+"propertyeditor.qrc" "6"
+"qmldesigner_dependencies" "4"
+"qmldesigner_dependencies.pri" "5"
+"qmleditorwidgets" "4"
+"qmleditorwidgets.pri" "5"
+"qmljs" "4"
+"qmljs.pri" "5"
+"qmljseditor" "4"
+"qmljseditor.pri" "5"
+"qmljseditor_dependencies" "4"
+"qmljseditor_dependencies.pri" "5"
+"qmljstools" "4"
+"qmljstools.pri" "5"
+"qmljstools_dependencies" "4"
+"qmljstools_dependencies.pri" "5"
+"qmlprojectmanager" "4"
+"qmlprojectmanager.pri" "5"
+"qmlprojectmanager_dependencies" "4"
+"qmlprojectmanager_dependencies.pri" "5"
+"qt4projectmanager" "4"
+"qt4projectmanager.pri" "5"
+"qt4projectmanager_dependencies" "4"
+"qt4projectmanager_dependencies.pri" "5"
+"qtcreator" "4"
+"qtcreator.pri" "5"
+"qtcreatorplugin" "4"
+"qtcreatorplugin.pri" "5"
+"Other files" "5"
+"plugins/qmldesigner" "6"
+"QmlDesigner.pluginspec.in" "7"
+"qts60stylethemeio" "4"
+"qts60stylethemeio.pri" "5"
+"qtsupport" "4"
+"qtsupport.pri" "5"
+"qtsupport_dependencies" "4"
+"qtsupport_dependencies.pri" "5"
+"resources" "4"
+"resources.pri" "5"
+"Resources" "5"
+"resources.qrc" "6"
+"stateseditor" "4"
+"stateseditor.pri" "5"
+"Headers" "5"
+"stateseditorimageprovider.cpp" "6"
+"stateseditormodel.h" "6"
+"stateseditorview.h" "6"
+"stateseditorwidget.h" "6"
+"Sources" "5"
+"stateseditorimageprovider.cpp" "6"
+"stateseditormodel.cpp" "6"
+"stateseditorview.cpp" "6"
+"stateseditorwidget.cpp" "6"
+"Resources" "5"
+"stateseditor.qrc" "6"
+"QML" "5"
+"HorizontalScrollBar.qml" "6"
+"stateslist.qml" "6"
+"symbianutils" "4"
+"symbianutils.pri" "5"
+"texteditor" "4"
+"texteditor.pri" "5"
+"texteditor_dependencies" "4"
+"texteditor_dependencies.pri" "5"
+"utils" "4"
+"utils.pri" "5"
+"utils_dependencies" "4"
+"utils_dependencies.pri" "5"
+"Headers" "4"
+"designersettings.h" "5"
+"designmodecontext.h" "5"
+"designmodewidget.h" "5"
+"qmldesignerconstants.h" "5"
+"qmldesignerplugin.h" "5"
+"settingspage.h" "5"
+"styledoutputpaneplaceholder.h" "5"
+"Sources" "4"
+"designersettings.cpp" "5"
+"designmodecontext.cpp" "5"
+"designmodewidget.cpp" "5"
+"qmldesignerplugin.cpp" "5"
+"settingspage.cpp" "5"
+"styledoutputpaneplaceholder.cpp" "5"
+"Forms" "4"
+"settingspage.ui" "5"
+"qtquickplugin" "3"
+"qtquickplugin.pro" "4"
+"iwidgetplugin" "4"
+"iwidgetplugin.pri" "5"
+"plugindestdir" "4"
+"plugindestdir.pri" "5"
+"private_headers" "4"
+"private_headers.pri" "5"
+"qtcreator" "4"
+"qtcreator.pri" "5"
+"qtquickplugin" "4"
+"qtquickplugin.pri" "5"
+"Headers" "5"
+"iwidgetplugin.h" "7"
+"qtquickplugin.h" "6"
+"Sources" "5"
+"qtquickplugin.cpp" "6"
+"Resources" "5"
+"qtquickplugin.qrc" "6"
+"Other files" "5"
+"quick.metainfo" "6"
+"symbianplugin" "3"
+"symbianplugin.pro" "4"
+"iwidgetplugin" "4"
+"iwidgetplugin.pri" "5"
+"plugindestdir" "4"
+"plugindestdir.pri" "5"
+"private_headers" "4"
+"private_headers.pri" "5"
+"qtcreator" "4"
+"qtcreator.pri" "5"
+"symbianplugin" "4"
+"symbianplugin.pri" "5"
+"Headers" "5"
+"iwidgetplugin.h" "7"
+"symbianplugin.h" "6"
+"Sources" "5"
+"symbianplugin.cpp" "6"
+"Resources" "5"
+"symbianplugin.qrc" "6"
+"Other files" "5"
+"symbian.metainfo" "6"
+"qmljseditor" "2"
+"qmljseditor.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"coreplugin" "3"
+"coreplugin.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"cplusplus" "3"
+"cplusplus.pri" "4"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"find" "3"
+"find.pri" "4"
+"find_dependencies" "3"
+"find_dependencies.pri" "4"
+"languageutils" "3"
+"languageutils.pri" "4"
+"locator" "3"
+"locator.pri" "4"
+"locator_dependencies" "3"
+"locator_dependencies.pri" "4"
+"projectexplorer" "3"
+"projectexplorer.pri" "4"
+"projectexplorer_dependencies" "3"
+"projectexplorer_dependencies.pri" "4"
+"qmleditorwidgets" "3"
+"qmleditorwidgets.pri" "4"
+"qmljs" "3"
+"qmljs.pri" "4"
+"qmljseditor_dependencies" "3"
+"qmljseditor_dependencies.pri" "4"
+"qmljstools" "3"
+"qmljstools.pri" "4"
+"qmljstools_dependencies" "3"
+"qmljstools_dependencies.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/qmljseditor" "5"
+"QmlJSEditor.pluginspec.in" "6"
+"qtsupport" "3"
+"qtsupport.pri" "4"
+"qtsupport_dependencies" "3"
+"qtsupport_dependencies.pri" "4"
+"texteditor" "3"
+"texteditor.pri" "4"
+"texteditor_dependencies" "3"
+"texteditor_dependencies.pri" "4"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"Headers" "3"
+"jsfilewizard.h" "4"
+"qmlexpressionundercursor.h" "4"
+"qmlfilewizard.h" "4"
+"qmljsautocompleter.h" "4"
+"qmljscompletionassist.h" "4"
+"qmljscomponentfromobjectdef.h" "4"
+"qmljscomponentnamedialog.h" "4"
+"qmljseditor.h" "4"
+"qmljseditor_global.h" "4"
+"qmljseditoractionhandler.h" "4"
+"qmljseditorconstants.h" "4"
+"qmljseditoreditable.h" "4"
+"qmljseditorfactory.h" "4"
+"qmljseditorplugin.h" "4"
+"qmljsfindreferences.h" "4"
+"qmljshighlighter.h" "4"
+"qmljshoverhandler.h" "4"
+"qmljsoutline.h" "4"
+"qmljsoutlinetreeview.h" "4"
+"qmljspreviewrunner.h" "4"
+"qmljsquickfix.h" "4"
+"qmljsquickfixassist.h" "4"
+"qmljsreuse.h" "4"
+"qmljssemantichighlighter.h" "4"
+"qmljssemanticinfoupdater.h" "4"
+"qmljssnippetprovider.h" "4"
+"qmljswrapinloader.h" "4"
+"qmloutlinemodel.h" "4"
+"qmltaskmanager.h" "4"
+"quicktoolbar.h" "4"
+"quicktoolbarsettingspage.h" "4"
+"Sources" "3"
+"jsfilewizard.cpp" "4"
+"qmlexpressionundercursor.cpp" "4"
+"qmlfilewizard.cpp" "4"
+"qmljsautocompleter.cpp" "4"
+"qmljscompletionassist.cpp" "4"
+"qmljscomponentfromobjectdef.cpp" "4"
+"qmljscomponentnamedialog.cpp" "4"
+"qmljseditor.cpp" "4"
+"qmljseditoractionhandler.cpp" "4"
+"qmljseditoreditable.cpp" "4"
+"qmljseditorfactory.cpp" "4"
+"qmljseditorplugin.cpp" "4"
+"qmljsfindreferences.cpp" "4"
+"qmljshighlighter.cpp" "4"
+"qmljshoverhandler.cpp" "4"
+"qmljsoutline.cpp" "4"
+"qmljsoutlinetreeview.cpp" "4"
+"qmljspreviewrunner.cpp" "4"
+"qmljsquickfix.cpp" "4"
+"qmljsquickfixassist.cpp" "4"
+"qmljsquickfixes.cpp" "4"
+"qmljsreuse.cpp" "4"
+"qmljssemantichighlighter.cpp" "4"
+"qmljssemanticinfoupdater.cpp" "4"
+"qmljssnippetprovider.cpp" "4"
+"qmljswrapinloader.cpp" "4"
+"qmloutlinemodel.cpp" "4"
+"qmltaskmanager.cpp" "4"
+"quicktoolbar.cpp" "4"
+"quicktoolbarsettingspage.cpp" "4"
+"Forms" "3"
+"qmljscomponentnamedialog.ui" "4"
+"quicktoolbarsettingspage.ui" "4"
+"Resources" "3"
+"qmljseditor.qrc" "4"
+"Other files" "3"
+"QmlJSEditor.mimetypes.xml" "4"
+"qmljstools" "2"
+"qmljstools.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"coreplugin" "3"
+"coreplugin.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"cplusplus" "3"
+"cplusplus.pri" "4"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"find" "3"
+"find.pri" "4"
+"find_dependencies" "3"
+"find_dependencies.pri" "4"
+"languageutils" "3"
+"languageutils.pri" "4"
+"locator" "3"
+"locator.pri" "4"
+"locator_dependencies" "3"
+"locator_dependencies.pri" "4"
+"projectexplorer" "3"
+"projectexplorer.pri" "4"
+"projectexplorer_dependencies" "3"
+"projectexplorer_dependencies.pri" "4"
+"qmljs" "3"
+"qmljs.pri" "4"
+"qmljstools-lib" "3"
+"qmljstools-lib.pri" "4"
+"Headers" "4"
+"qmljscodestylepreferencesfactory.h" "5"
+"qmljscodestylesettingspage.h" "5"
+"qmljsfindexportedcpptypes.h" "5"
+"qmljsfunctionfilter.h" "5"
+"qmljsindenter.h" "5"
+"qmljslocatordata.h" "5"
+"qmljsmodelmanager.h" "5"
+"qmljsplugindumper.h" "5"
+"qmljsqtstylecodeformatter.h" "5"
+"qmljsrefactoringchanges.h" "5"
+"qmljstools_global.h" "5"
+"qmljstoolsconstants.h" "5"
+"qmljstoolsplugin.h" "5"
+"qmljstoolssettings.h" "5"
+"Sources" "4"
+"qmljscodestylepreferencesfactory.cpp" "5"
+"qmljscodestylesettingspage.cpp" "5"
+"qmljsfindexportedcpptypes.cpp" "5"
+"qmljsfunctionfilter.cpp" "5"
+"qmljsindenter.cpp" "5"
+"qmljslocatordata.cpp" "5"
+"qmljsmodelmanager.cpp" "5"
+"qmljsplugindumper.cpp" "5"
+"qmljsqtstylecodeformatter.cpp" "5"
+"qmljsrefactoringchanges.cpp" "5"
+"qmljstools_test.cpp" "5"
+"qmljstoolsplugin.cpp" "5"
+"qmljstoolssettings.cpp" "5"
+"Forms" "4"
+"qmljscodestylesettingspage.ui" "5"
+"qmljstools_dependencies" "3"
+"qmljstools_dependencies.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/qmljstools" "5"
+"QmlJSTools.pluginspec.in" "6"
+"qtsupport" "3"
+"qtsupport.pri" "4"
+"qtsupport_dependencies" "3"
+"qtsupport_dependencies.pri" "4"
+"texteditor" "3"
+"texteditor.pri" "4"
+"texteditor_dependencies" "3"
+"texteditor_dependencies.pri" "4"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"qmlprofiler" "2"
+"qmlprofiler.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"analyzerbase" "3"
+"analyzerbase.pri" "4"
+"analyzerbase_dependencies" "3"
+"analyzerbase_dependencies.pri" "4"
+"botan" "3"
+"botan.pri" "4"
+"canvas" "3"
+"canvas.pri" "4"
+"Headers" "4"
+"qdeclarativecanvas_p.h" "5"
+"qdeclarativecanvastimer_p.h" "5"
+"qdeclarativecontext2d_p.h" "5"
+"qmlprofilercanvas.h" "5"
+"Sources" "4"
+"qdeclarativecanvas.cpp" "5"
+"qdeclarativecanvastimer.cpp" "5"
+"qdeclarativecontext2d.cpp" "5"
+"qmlprofilercanvas.cpp" "5"
+"coreplugin" "3"
+"coreplugin.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"cplusplus" "3"
+"cplusplus.pri" "4"
+"cpptools" "3"
+"cpptools.pri" "4"
+"cpptools_dependencies" "3"
+"cpptools_dependencies.pri" "4"
+"debugger" "3"
+"debugger.pri" "4"
+"debugger_dependencies" "3"
+"debugger_dependencies.pri" "4"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"find" "3"
+"find.pri" "4"
+"find_dependencies" "3"
+"find_dependencies.pri" "4"
+"languageutils" "3"
+"languageutils.pri" "4"
+"locator" "3"
+"locator.pri" "4"
+"locator_dependencies" "3"
+"locator_dependencies.pri" "4"
+"projectexplorer" "3"
+"projectexplorer.pri" "4"
+"projectexplorer_dependencies" "3"
+"projectexplorer_dependencies.pri" "4"
+"qmleditorwidgets" "3"
+"qmleditorwidgets.pri" "4"
+"qmljs" "3"
+"qmljs.pri" "4"
+"qmljseditor" "3"
+"qmljseditor.pri" "4"
+"qmljseditor_dependencies" "3"
+"qmljseditor_dependencies.pri" "4"
+"qmljstools" "3"
+"qmljstools.pri" "4"
+"qmljstools_dependencies" "3"
+"qmljstools_dependencies.pri" "4"
+"qmlprojectmanager" "3"
+"qmlprojectmanager.pri" "4"
+"qmlprojectmanager_dependencies" "3"
+"qmlprojectmanager_dependencies.pri" "4"
+"qt4projectmanager" "3"
+"qt4projectmanager.pri" "4"
+"qt4projectmanager_dependencies" "3"
+"qt4projectmanager_dependencies.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/qmlprofiler" "5"
+"QmlProfiler.pluginspec.in" "6"
+"qtsupport" "3"
+"qtsupport.pri" "4"
+"qtsupport_dependencies" "3"
+"qtsupport_dependencies.pri" "4"
+"remotelinux" "3"
+"remotelinux.pri" "4"
+"remotelinux_dependencies" "3"
+"remotelinux_dependencies.pri" "4"
+"symbianutils" "3"
+"symbianutils.pri" "4"
+"texteditor" "3"
+"texteditor.pri" "4"
+"texteditor_dependencies" "3"
+"texteditor_dependencies.pri" "4"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"Headers" "3"
+"abstractqmlprofilerrunner.h" "4"
+"codaqmlprofilerrunner.h" "4"
+"localqmlprofilerrunner.h" "4"
+"qmlprofiler_global.h" "4"
+"qmlprofilerattachdialog.h" "4"
+"qmlprofilerconstants.h" "4"
+"qmlprofilerdetailsrewriter.h" "4"
+"qmlprofilerengine.h" "4"
+"qmlprofilereventview.h" "4"
+"qmlprofilerplugin.h" "4"
+"qmlprofilertool.h" "4"
+"remotelinuxqmlprofilerrunner.h" "4"
+"Sources" "3"
+"codaqmlprofilerrunner.cpp" "4"
+"localqmlprofilerrunner.cpp" "4"
+"qmlprofilerattachdialog.cpp" "4"
+"qmlprofilerdetailsrewriter.cpp" "4"
+"qmlprofilerengine.cpp" "4"
+"qmlprofilereventview.cpp" "4"
+"qmlprofilerplugin.cpp" "4"
+"qmlprofilertool.cpp" "4"
+"remotelinuxqmlprofilerrunner.cpp" "4"
+"Forms" "3"
+"qmlprofilerattachdialog.ui" "4"
+"Resources" "3"
+"qml" "4"
+"qmlprofiler.qrc" "5"
+"QML" "3"
+"qml" "4"
+"Detail.qml" "5"
+"Label.qml" "5"
+"MainView.qml" "5"
+"Overview.qml" "5"
+"RangeDetails.qml" "5"
+"RangeMover.qml" "5"
+"SelectionRange.qml" "5"
+"SelectionRangeDetails.qml" "5"
+"TimeDisplay.qml" "5"
+"TimeMarks.qml" "5"
+"qmlprojectmanager" "2"
+"qmlprojectmanager.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"botan" "3"
+"botan.pri" "4"
+"coreplugin" "3"
+"coreplugin.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"cplusplus" "3"
+"cplusplus.pri" "4"
+"cpptools" "3"
+"cpptools.pri" "4"
+"cpptools_dependencies" "3"
+"cpptools_dependencies.pri" "4"
+"debugger" "3"
+"debugger.pri" "4"
+"debugger_dependencies" "3"
+"debugger_dependencies.pri" "4"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"fileformat" "3"
+"fileformat.pri" "4"
+"Headers" "4"
+"filefilteritems.h" "5"
+"qmlprojectfileformat.h" "5"
+"qmlprojectitem.h" "5"
+"Sources" "4"
+"filefilteritems.cpp" "5"
+"qmlprojectfileformat.cpp" "5"
+"qmlprojectitem.cpp" "5"
+"find" "3"
+"find.pri" "4"
+"find_dependencies" "3"
+"find_dependencies.pri" "4"
+"languageutils" "3"
+"languageutils.pri" "4"
+"locator" "3"
+"locator.pri" "4"
+"locator_dependencies" "3"
+"locator_dependencies.pri" "4"
+"projectexplorer" "3"
+"projectexplorer.pri" "4"
+"projectexplorer_dependencies" "3"
+"projectexplorer_dependencies.pri" "4"
+"qmleditorwidgets" "3"
+"qmleditorwidgets.pri" "4"
+"qmljs" "3"
+"qmljs.pri" "4"
+"qmljseditor" "3"
+"qmljseditor.pri" "4"
+"qmljseditor_dependencies" "3"
+"qmljseditor_dependencies.pri" "4"
+"qmljstools" "3"
+"qmljstools.pri" "4"
+"qmljstools_dependencies" "3"
+"qmljstools_dependencies.pri" "4"
+"qmlprojectmanager_dependencies" "3"
+"qmlprojectmanager_dependencies.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/qmlprojectmanager" "5"
+"QmlProjectManager.pluginspec.in" "6"
+"qtsupport" "3"
+"qtsupport.pri" "4"
+"qtsupport_dependencies" "3"
+"qtsupport_dependencies.pri" "4"
+"symbianutils" "3"
+"symbianutils.pri" "4"
+"texteditor" "3"
+"texteditor.pri" "4"
+"texteditor_dependencies" "3"
+"texteditor_dependencies.pri" "4"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"Headers" "3"
+"qmlproject.h" "4"
+"qmlprojectapplicationwizard.h" "4"
+"qmlprojectconstants.h" "4"
+"qmlprojectfile.h" "4"
+"qmlprojectmanager.h" "4"
+"qmlprojectmanager_global.h" "4"
+"qmlprojectmanagerconstants.h" "4"
+"qmlprojectnodes.h" "4"
+"qmlprojectplugin.h" "4"
+"qmlprojectrunconfiguration.h" "4"
+"qmlprojectrunconfigurationfactory.h" "4"
+"qmlprojectrunconfigurationwidget.h" "4"
+"qmlprojectruncontrol.h" "4"
+"qmlprojecttarget.h" "4"
+"Sources" "3"
+"qmlproject.cpp" "4"
+"qmlprojectapplicationwizard.cpp" "4"
+"qmlprojectfile.cpp" "4"
+"qmlprojectmanager.cpp" "4"
+"qmlprojectnodes.cpp" "4"
+"qmlprojectplugin.cpp" "4"
+"qmlprojectrunconfiguration.cpp" "4"
+"qmlprojectrunconfigurationfactory.cpp" "4"
+"qmlprojectrunconfigurationwidget.cpp" "4"
+"qmlprojectruncontrol.cpp" "4"
+"qmlprojecttarget.cpp" "4"
+"Resources" "3"
+"qmlproject.qrc" "4"
+"Other files" "3"
+"QmlProject.mimetypes.xml" "4"
+"qt4projectmanager" "2"
+"qt4projectmanager.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"botan" "3"
+"botan.pri" "4"
+"coreplugin" "3"
+"coreplugin.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"cplusplus" "3"
+"cplusplus.pri" "4"
+"cpptools" "3"
+"cpptools.pri" "4"
+"cpptools_dependencies" "3"
+"cpptools_dependencies.pri" "4"
+"customwidgetwizard" "3"
+"customwidgetwizard.pri" "4"
+"Headers" "4"
+"classdefinition.h" "5"
+"classlist.h" "5"
+"customwidgetpluginwizardpage.h" "5"
+"customwidgetwidgetswizardpage.h" "5"
+"customwidgetwizard.h" "5"
+"customwidgetwizarddialog.h" "5"
+"filenamingparameters.h" "5"
+"plugingenerator.h" "5"
+"pluginoptions.h" "5"
+"Sources" "4"
+"classdefinition.cpp" "5"
+"classlist.cpp" "5"
+"customwidgetpluginwizardpage.cpp" "5"
+"customwidgetwidgetswizardpage.cpp" "5"
+"customwidgetwizard.cpp" "5"
+"customwidgetwizarddialog.cpp" "5"
+"plugingenerator.cpp" "5"
+"Forms" "4"
+"classdefinition.ui" "5"
+"customwidgetpluginwizardpage.ui" "5"
+"customwidgetwidgetswizardpage.ui" "5"
+"debugger" "3"
+"debugger.pri" "4"
+"debugger_dependencies" "3"
+"debugger_dependencies.pri" "4"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"find" "3"
+"find.pri" "4"
+"find_dependencies" "3"
+"find_dependencies.pri" "4"
+"json" "3"
+"json.pri" "4"
+"Headers" "4"
+"json.h" "5"
+"json_global.h" "5"
+"Sources" "4"
+"json.cpp" "5"
+"languageutils" "3"
+"languageutils.pri" "4"
+"locator" "3"
+"locator.pri" "4"
+"locator_dependencies" "3"
+"locator_dependencies.pri" "4"
+"projectexplorer" "3"
+"projectexplorer.pri" "4"
+"projectexplorer_dependencies" "3"
+"projectexplorer_dependencies.pri" "4"
+"qmljs" "3"
+"qmljs.pri" "4"
+"qt-desktop" "3"
+"qt-desktop.pri" "4"
+"Headers" "4"
+"desktopqtversion.h" "5"
+"desktopqtversionfactory.h" "5"
+"qt4desktoptarget.h" "5"
+"qt4desktoptargetfactory.h" "5"
+"qt4runconfiguration.h" "5"
+"qt4simulatortarget.h" "5"
+"qt4simulatortargetfactory.h" "5"
+"simulatorqtversion.h" "5"
+"simulatorqtversionfactory.h" "5"
+"Sources" "4"
+"desktopqtversion.cpp" "5"
+"desktopqtversionfactory.cpp" "5"
+"qt4desktoptarget.cpp" "5"
+"qt4desktoptargetfactory.cpp" "5"
+"qt4runconfiguration.cpp" "5"
+"qt4simulatortarget.cpp" "5"
+"qt4simulatortargetfactory.cpp" "5"
+"simulatorqtversion.cpp" "5"
+"simulatorqtversionfactory.cpp" "5"
+"qt-s60" "3"
+"qt-s60.pri" "4"
+"Headers" "4"
+"abldparser.h" "5"
+"certificatepathchooser.h" "5"
+"codaruncontrol.h" "5"
+"gccetoolchain.h" "5"
+"passphraseforkeydialog.h" "5"
+"qt4symbiantarget.h" "5"
+"qt4symbiantargetfactory.h" "5"
+"rvctparser.h" "5"
+"rvcttoolchain.h" "5"
+"s60certificatedetailsdialog.h" "5"
+"s60certificateinfo.h" "5"
+"s60createpackageparser.h" "5"
+"s60createpackagestep.h" "5"
+"s60deployconfiguration.h" "5"
+"s60deployconfigurationwidget.h" "5"
+"s60deploystep.h" "5"
+"s60devicedebugruncontrol.h" "5"
+"s60devicerunconfiguration.h" "5"
+"s60devicerunconfigurationwidget.h" "5"
+"s60manager.h" "5"
+"s60publisherovi.h" "5"
+"s60publishingbuildsettingspageovi.h" "5"
+"s60publishingresultspageovi.h" "5"
+"s60publishingsissettingspageovi.h" "5"
+"s60publishingwizardfactories.h" "5"
+"s60publishingwizardovi.h" "5"
+"s60runcontrolbase.h" "5"
+"s60runcontrolfactory.h" "5"
+"s60symbiancertificate.h" "5"
+"sbsv2parser.h" "5"
+"symbianqtversion.h" "5"
+"symbianqtversionfactory.h" "5"
+"Sources" "4"
+"abldparser.cpp" "5"
+"certificatepathchooser.cpp" "5"
+"codaruncontrol.cpp" "5"
+"gccetoolchain.cpp" "5"
+"passphraseforkeydialog.cpp" "5"
+"qt4symbiantarget.cpp" "5"
+"qt4symbiantargetfactory.cpp" "5"
+"rvctparser.cpp" "5"
+"rvcttoolchain.cpp" "5"
+"s60certificatedetailsdialog.cpp" "5"
+"s60certificateinfo.cpp" "5"
+"s60createpackageparser.cpp" "5"
+"s60createpackagestep.cpp" "5"
+"s60deployconfiguration.cpp" "5"
+"s60deployconfigurationwidget.cpp" "5"
+"s60deploystep.cpp" "5"
+"s60devicedebugruncontrol.cpp" "5"
+"s60devicerunconfiguration.cpp" "5"
+"s60devicerunconfigurationwidget.cpp" "5"
+"s60manager.cpp" "5"
+"s60publisherovi.cpp" "5"
+"s60publishingbuildsettingspageovi.cpp" "5"
+"s60publishingresultspageovi.cpp" "5"
+"s60publishingsissettingspageovi.cpp" "5"
+"s60publishingwizardfactories.cpp" "5"
+"s60publishingwizardovi.cpp" "5"
+"s60runcontrolbase.cpp" "5"
+"s60runcontrolfactory.cpp" "5"
+"s60symbiancertificate.cpp" "5"
+"sbsv2parser.cpp" "5"
+"symbianqtversion.cpp" "5"
+"symbianqtversionfactory.cpp" "5"
+"Forms" "4"
+"rvcttoolchainconfigwidget.ui" "5"
+"s60certificatedetailsdialog.ui" "5"
+"s60createpackagestep.ui" "5"
+"s60publishingbuildsettingspageovi.ui" "5"
+"s60publishingresultspageovi.ui" "5"
+"s60publishingsissettingspageovi.ui" "5"
+"qt4projectmanager_dependencies" "3"
+"qt4projectmanager_dependencies.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/qt4projectmanager" "5"
+"Qt4ProjectManager.pluginspec.in" "6"
+"qtsupport" "3"
+"qtsupport.pri" "4"
+"qtsupport_dependencies" "3"
+"qtsupport_dependencies.pri" "4"
+"symbianutils" "3"
+"symbianutils.pri" "4"
+"texteditor" "3"
+"texteditor.pri" "4"
+"texteditor_dependencies" "3"
+"texteditor_dependencies.pri" "4"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"Headers" "3"
+"wizards" "4"
+"abstractmobileapp.h" "5"
+"abstractmobileappwizard.h" "5"
+"consoleappwizard.h" "5"
+"consoleappwizarddialog.h" "5"
+"emptyprojectwizard.h" "5"
+"emptyprojectwizarddialog.h" "5"
+"filespage.h" "5"
+"guiappwizard.h" "5"
+"guiappwizarddialog.h" "5"
+"html5app.h" "5"
+"html5appwizard.h" "5"
+"html5appwizardpages.h" "5"
+"libraryparameters.h" "5"
+"librarywizard.h" "5"
+"librarywizarddialog.h" "5"
+"mobileapp.h" "5"
+"mobileappwizard.h" "5"
+"mobileappwizardpages.h" "5"
+"mobilelibraryparameters.h" "5"
+"mobilelibrarywizardoptionpage.h" "5"
+"modulespage.h" "5"
+"qtprojectparameters.h" "5"
+"qtquickapp.h" "5"
+"qtquickappwizard.h" "5"
+"qtquickappwizardpages.h" "5"
+"qtwizard.h" "5"
+"subdirsprojectwizard.h" "5"
+"subdirsprojectwizarddialog.h" "5"
+"targetsetuppage.h" "5"
+"testwizard.h" "5"
+"testwizarddialog.h" "5"
+"testwizardpage.h" "5"
+"addlibrarywizard.h" "4"
+"buildconfigurationinfo.h" "4"
+"externaleditors.h" "4"
+"findqt4profiles.h" "4"
+"librarydetailscontroller.h" "4"
+"makestep.h" "4"
+"profilecompletionassist.h" "4"
+"profileeditor.h" "4"
+"profileeditorfactory.h" "4"
+"profilehighlighter.h" "4"
+"profilehoverhandler.h" "4"
+"profilekeywords.h" "4"
+"qmakeparser.h" "4"
+"qmakestep.h" "4"
+"qt4basetargetfactory.h" "4"
+"qt4buildconfiguration.h" "4"
+"qt4nodes.h" "4"
+"qt4project.h" "4"
+"qt4projectconfigwidget.h" "4"
+"qt4projectmanager.h" "4"
+"qt4projectmanager_global.h" "4"
+"qt4projectmanagerconstants.h" "4"
+"qt4projectmanagerplugin.h" "4"
+"qt4target.h" "4"
+"qt4targetsetupwidget.h" "4"
+"qtmodulesinfo.h" "4"
+"qtuicodemodelsupport.h" "4"
+"unconfiguredprojectpanel.h" "4"
+"unconfiguredsettingsoptionpage.h" "4"
+"winceqtversion.h" "4"
+"winceqtversionfactory.h" "4"
+"Sources" "3"
+"wizards" "4"
+"abstractmobileapp.cpp" "5"
+"abstractmobileappwizard.cpp" "5"
+"consoleappwizard.cpp" "5"
+"consoleappwizarddialog.cpp" "5"
+"emptyprojectwizard.cpp" "5"
+"emptyprojectwizarddialog.cpp" "5"
+"filespage.cpp" "5"
+"guiappwizard.cpp" "5"
+"guiappwizarddialog.cpp" "5"
+"html5app.cpp" "5"
+"html5appwizard.cpp" "5"
+"html5appwizardpages.cpp" "5"
+"libraryparameters.cpp" "5"
+"librarywizard.cpp" "5"
+"librarywizarddialog.cpp" "5"
+"mobileapp.cpp" "5"
+"mobileappwizard.cpp" "5"
+"mobileappwizardpages.cpp" "5"
+"mobilelibraryparameters.cpp" "5"
+"mobilelibrarywizardoptionpage.cpp" "5"
+"modulespage.cpp" "5"
+"qtprojectparameters.cpp" "5"
+"qtquickapp.cpp" "5"
+"qtquickappwizard.cpp" "5"
+"qtquickappwizardpages.cpp" "5"
+"qtwizard.cpp" "5"
+"subdirsprojectwizard.cpp" "5"
+"subdirsprojectwizarddialog.cpp" "5"
+"targetsetuppage.cpp" "5"
+"testwizard.cpp" "5"
+"testwizarddialog.cpp" "5"
+"testwizardpage.cpp" "5"
+"addlibrarywizard.cpp" "4"
+"externaleditors.cpp" "4"
+"findqt4profiles.cpp" "4"
+"librarydetailscontroller.cpp" "4"
+"makestep.cpp" "4"
+"profilecompletionassist.cpp" "4"
+"profileeditor.cpp" "4"
+"profileeditorfactory.cpp" "4"
+"profilehighlighter.cpp" "4"
+"profilehoverhandler.cpp" "4"
+"profilekeywords.cpp" "4"
+"qmakeparser.cpp" "4"
+"qmakestep.cpp" "4"
+"qt4buildconfiguration.cpp" "4"
+"qt4nodes.cpp" "4"
+"qt4project.cpp" "4"
+"qt4projectconfigwidget.cpp" "4"
+"qt4projectmanager.cpp" "4"
+"qt4projectmanagerplugin.cpp" "4"
+"qt4target.cpp" "4"
+"qtmodulesinfo.cpp" "4"
+"qtuicodemodelsupport.cpp" "4"
+"unconfiguredprojectpanel.cpp" "4"
+"unconfiguredsettingsoptionpage.cpp" "4"
+"winceqtversion.cpp" "4"
+"winceqtversionfactory.cpp" "4"
+"Forms" "3"
+"wizards" "4"
+"html5appwizardsourcespage.ui" "5"
+"mobileappwizardgenericoptionspage.ui" "5"
+"mobileappwizardharmattanoptionspage.ui" "5"
+"mobileappwizardmaemooptionspage.ui" "5"
+"mobileappwizardsymbianoptionspage.ui" "5"
+"mobilelibrarywizardoptionpage.ui" "5"
+"qtquickcomponentsetoptionspage.ui" "5"
+"targetsetuppage.ui" "5"
+"testwizardpage.ui" "5"
+"librarydetailswidget.ui" "4"
+"makestep.ui" "4"
+"qmakestep.ui" "4"
+"qt4projectconfigwidget.ui" "4"
+"Resources" "3"
+"wizards" "4"
+"wizards.qrc" "5"
+"qt4projectmanager.qrc" "4"
+"Other files" "3"
+"Qt4ProjectManager.mimetypes.xml" "4"
+"qtcreator" "2"
+"qtcreator.pri" "3"
+"qtcreator-lldb" "2"
+"qtcreator-lldb.pro" "3"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"Headers" "3"
+"lldb" "5"
+"ipcengineguest.h" "6"
+"breakpoint.h" "5"
+"debuggerstreamops.h" "5"
+"disassemblerlines.h" "5"
+"stackframe.h" "5"
+"watchdata.h" "5"
+"lldbengineguest.h" "4"
+"Sources" "3"
+"lldb" "5"
+"ipcengineguest.cpp" "6"
+"breakpoint.cpp" "5"
+"debuggerstreamops.cpp" "5"
+"disassemblerlines.cpp" "5"
+"stackframe.cpp" "5"
+"watchdata.cpp" "5"
+"lldbengineguest.cpp" "4"
+"main.cpp" "4"
+"qtsupport" "2"
+"qtsupport.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"coreplugin" "3"
+"coreplugin.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"find" "3"
+"find.pri" "4"
+"find_dependencies" "3"
+"find_dependencies.pri" "4"
+"locator" "3"
+"locator.pri" "4"
+"locator_dependencies" "3"
+"locator_dependencies.pri" "4"
+"projectexplorer" "3"
+"projectexplorer.pri" "4"
+"projectexplorer_dependencies" "3"
+"projectexplorer_dependencies.pri" "4"
+"proparser" "3"
+"proparser.pri" "4"
+"Headers" "4"
+"ioutils.h" "5"
+"profileevaluator.h" "5"
+"profileparser.h" "5"
+"proitems.h" "5"
+"proparser_global.h" "5"
+"prowriter.h" "5"
+"Sources" "4"
+"ioutils.cpp" "5"
+"profileevaluator.cpp" "5"
+"profileparser.cpp" "5"
+"proitems.cpp" "5"
+"prowriter.cpp" "5"
+"Resources" "4"
+"proparser.qrc" "5"
+"qmljs" "3"
+"qmljs.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/qtsupport" "5"
+"QtSupport.pluginspec.in" "6"
+"qtsupport_dependencies" "3"
+"qtsupport_dependencies.pri" "4"
+"texteditor" "3"
+"texteditor.pri" "4"
+"texteditor_dependencies" "3"
+"texteditor_dependencies.pri" "4"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"Headers" "3"
+"baseqtversion.h" "4"
+"debugginghelperbuildtask.h" "4"
+"exampleslistmodel.h" "4"
+"gettingstartedwelcomepage.h" "4"
+"profilereader.h" "4"
+"qmldebugginglibrary.h" "4"
+"qmldumptool.h" "4"
+"qmlobservertool.h" "4"
+"qtoptionspage.h" "4"
+"qtoutputformatter.h" "4"
+"qtparser.h" "4"
+"qtsupport_global.h" "4"
+"qtsupportconstants.h" "4"
+"qtsupportplugin.h" "4"
+"qtversionfactory.h" "4"
+"qtversionmanager.h" "4"
+"screenshotcropper.h" "4"
+"Sources" "3"
+"baseqtversion.cpp" "4"
+"debugginghelperbuildtask.cpp" "4"
+"exampleslistmodel.cpp" "4"
+"gettingstartedwelcomepage.cpp" "4"
+"profilereader.cpp" "4"
+"qmldebugginglibrary.cpp" "4"
+"qmldumptool.cpp" "4"
+"qmlobservertool.cpp" "4"
+"qtoptionspage.cpp" "4"
+"qtoutputformatter.cpp" "4"
+"qtparser.cpp" "4"
+"qtsupportplugin.cpp" "4"
+"qtversionfactory.cpp" "4"
+"qtversionmanager.cpp" "4"
+"screenshotcropper.cpp" "4"
+"Forms" "3"
+"debugginghelper.ui" "4"
+"qtversioninfo.ui" "4"
+"qtversionmanager.ui" "4"
+"showbuildlog.ui" "4"
+"remotelinux" "2"
+"remotelinux.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"botan" "3"
+"botan.pri" "4"
+"coreplugin" "3"
+"coreplugin.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"cplusplus" "3"
+"cplusplus.pri" "4"
+"cpptools" "3"
+"cpptools.pri" "4"
+"cpptools_dependencies" "3"
+"cpptools_dependencies.pri" "4"
+"debugger" "3"
+"debugger.pri" "4"
+"debugger_dependencies" "3"
+"debugger_dependencies.pri" "4"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"find" "3"
+"find.pri" "4"
+"find_dependencies" "3"
+"find_dependencies.pri" "4"
+"languageutils" "3"
+"languageutils.pri" "4"
+"locator" "3"
+"locator.pri" "4"
+"locator_dependencies" "3"
+"locator_dependencies.pri" "4"
+"projectexplorer" "3"
+"projectexplorer.pri" "4"
+"projectexplorer_dependencies" "3"
+"projectexplorer_dependencies.pri" "4"
+"qmljs" "3"
+"qmljs.pri" "4"
+"qt4projectmanager" "3"
+"qt4projectmanager.pri" "4"
+"qt4projectmanager_dependencies" "3"
+"qt4projectmanager_dependencies.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/remotelinux" "5"
+"RemoteLinux.pluginspec.in" "6"
+"qtsupport" "3"
+"qtsupport.pri" "4"
+"qtsupport_dependencies" "3"
+"qtsupport_dependencies.pri" "4"
+"remotelinux_dependencies" "3"
+"remotelinux_dependencies.pri" "4"
+"symbianutils" "3"
+"symbianutils.pri" "4"
+"texteditor" "3"
+"texteditor.pri" "4"
+"texteditor_dependencies" "3"
+"texteditor_dependencies.pri" "4"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"Headers" "3"
+"abstractembeddedlinuxtarget.h" "4"
+"abstractpackagingstep.h" "4"
+"abstractremotelinuxdeployservice.h" "4"
+"abstractremotelinuxdeploystep.h" "4"
+"abstractuploadandinstallpackageservice.h" "4"
+"deployablefile.h" "4"
+"deployablefilesperprofile.h" "4"
+"deploymentinfo.h" "4"
+"deploymentsettingsassistant.h" "4"
+"embeddedlinuxqtversion.h" "4"
+"embeddedlinuxqtversionfactory.h" "4"
+"embeddedlinuxtargetfactory.h" "4"
+"genericdirectuploadservice.h" "4"
+"genericdirectuploadstep.h" "4"
+"genericembeddedlinuxtarget.h" "4"
+"genericlinuxdeviceconfigurationfactory.h" "4"
+"genericlinuxdeviceconfigurationwidget.h" "4"
+"genericlinuxdeviceconfigurationwizard.h" "4"
+"genericlinuxdeviceconfigurationwizardpages.h" "4"
+"genericremotelinuxdeploystepfactory.h" "4"
+"linuxdeviceconfiguration.h" "4"
+"linuxdevicetestdialog.h" "4"
+"linuxdevicetester.h" "4"
+"packageuploader.h" "4"
+"profilesupdatedialog.h" "4"
+"publickeydeploymentdialog.h" "4"
+"remotelinux_constants.h" "4"
+"remotelinux_export.h" "4"
+"remotelinuxapplicationrunner.h" "4"
+"remotelinuxcustomcommanddeploymentstep.h" "4"
+"remotelinuxcustomcommanddeployservice.h" "4"
+"remotelinuxdebugsupport.h" "4"
+"remotelinuxdeployconfiguration.h" "4"
+"remotelinuxdeployconfigurationfactory.h" "4"
+"remotelinuxdeployconfigurationwidget.h" "4"
+"remotelinuxenvironmentreader.h" "4"
+"remotelinuxpackageinstaller.h" "4"
+"remotelinuxplugin.h" "4"
+"remotelinuxprocessesdialog.h" "4"
+"remotelinuxprocesslist.h" "4"
+"remotelinuxrunconfiguration.h" "4"
+"remotelinuxrunconfigurationfactory.h" "4"
+"remotelinuxrunconfigurationwidget.h" "4"
+"remotelinuxruncontrol.h" "4"
+"remotelinuxruncontrolfactory.h" "4"
+"remotelinuxusedportsgatherer.h" "4"
+"remotelinuxutils.h" "4"
+"sshkeydeployer.h" "4"
+"startgdbserverdialog.h" "4"
+"tarpackagecreationstep.h" "4"
+"typespecificdeviceconfigurationlistmodel.h" "4"
+"uploadandinstalltarpackagestep.h" "4"
+"Sources" "3"
+"abstractembeddedlinuxtarget.cpp" "4"
+"abstractpackagingstep.cpp" "4"
+"abstractremotelinuxdeployservice.cpp" "4"
+"abstractremotelinuxdeploystep.cpp" "4"
+"abstractuploadandinstallpackageservice.cpp" "4"
+"deployablefilesperprofile.cpp" "4"
+"deploymentinfo.cpp" "4"
+"deploymentsettingsassistant.cpp" "4"
+"embeddedlinuxqtversion.cpp" "4"
+"embeddedlinuxqtversionfactory.cpp" "4"
+"embeddedlinuxtargetfactory.cpp" "4"
+"genericdirectuploadservice.cpp" "4"
+"genericdirectuploadstep.cpp" "4"
+"genericembeddedlinuxtarget.cpp" "4"
+"genericlinuxdeviceconfigurationfactory.cpp" "4"
+"genericlinuxdeviceconfigurationwidget.cpp" "4"
+"genericlinuxdeviceconfigurationwizard.cpp" "4"
+"genericlinuxdeviceconfigurationwizardpages.cpp" "4"
+"genericremotelinuxdeploystepfactory.cpp" "4"
+"linuxdeviceconfiguration.cpp" "4"
+"linuxdevicetestdialog.cpp" "4"
+"linuxdevicetester.cpp" "4"
+"packageuploader.cpp" "4"
+"profilesupdatedialog.cpp" "4"
+"publickeydeploymentdialog.cpp" "4"
+"remotelinuxapplicationrunner.cpp" "4"
+"remotelinuxcustomcommanddeploymentstep.cpp" "4"
+"remotelinuxcustomcommanddeployservice.cpp" "4"
+"remotelinuxdebugsupport.cpp" "4"
+"remotelinuxdeployconfiguration.cpp" "4"
+"remotelinuxdeployconfigurationfactory.cpp" "4"
+"remotelinuxdeployconfigurationwidget.cpp" "4"
+"remotelinuxenvironmentreader.cpp" "4"
+"remotelinuxpackageinstaller.cpp" "4"
+"remotelinuxplugin.cpp" "4"
+"remotelinuxprocessesdialog.cpp" "4"
+"remotelinuxprocesslist.cpp" "4"
+"remotelinuxrunconfiguration.cpp" "4"
+"remotelinuxrunconfigurationfactory.cpp" "4"
+"remotelinuxrunconfigurationwidget.cpp" "4"
+"remotelinuxruncontrol.cpp" "4"
+"remotelinuxruncontrolfactory.cpp" "4"
+"remotelinuxusedportsgatherer.cpp" "4"
+"remotelinuxutils.cpp" "4"
+"sshkeydeployer.cpp" "4"
+"startgdbserverdialog.cpp" "4"
+"tarpackagecreationstep.cpp" "4"
+"typespecificdeviceconfigurationlistmodel.cpp" "4"
+"uploadandinstalltarpackagestep.cpp" "4"
+"Forms" "3"
+"genericlinuxdeviceconfigurationwidget.ui" "4"
+"genericlinuxdeviceconfigurationwizardsetuppage.ui" "4"
+"linuxdevicetestdialog.ui" "4"
+"profilesupdatedialog.ui" "4"
+"remotelinuxdeployconfigurationwidget.ui" "4"
+"remotelinuxprocessesdialog.ui" "4"
+"Resources" "3"
+"remotelinux.qrc" "4"
+"resourceeditor" "2"
+"resourceeditor.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"coreplugin" "3"
+"coreplugin.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"qrceditor" "3"
+"qrceditor.pri" "4"
+"Headers" "4"
+"qrceditor.h" "5"
+"resourcefile_p.h" "5"
+"resourceview.h" "5"
+"undocommands_p.h" "5"
+"Sources" "4"
+"qrceditor.cpp" "5"
+"resourcefile.cpp" "5"
+"resourceview.cpp" "5"
+"undocommands.cpp" "5"
+"Forms" "4"
+"qrceditor.ui" "5"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/resourceeditor" "5"
+"ResourceEditor.pluginspec.in" "6"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"Headers" "3"
+"resourceeditorconstants.h" "4"
+"resourceeditorfactory.h" "4"
+"resourceeditorplugin.h" "4"
+"resourceeditorw.h" "4"
+"resourcewizard.h" "4"
+"Sources" "3"
+"resourceeditorfactory.cpp" "4"
+"resourceeditorplugin.cpp" "4"
+"resourceeditorw.cpp" "4"
+"resourcewizard.cpp" "4"
+"Resources" "3"
+"resourceeditor.qrc" "4"
+"subversion" "2"
+"subversion.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"coreplugin" "3"
+"coreplugin.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"cplusplus" "3"
+"cplusplus.pri" "4"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"find" "3"
+"find.pri" "4"
+"find_dependencies" "3"
+"find_dependencies.pri" "4"
+"locator" "3"
+"locator.pri" "4"
+"locator_dependencies" "3"
+"locator_dependencies.pri" "4"
+"projectexplorer" "3"
+"projectexplorer.pri" "4"
+"projectexplorer_dependencies" "3"
+"projectexplorer_dependencies.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/subversion" "5"
+"Subversion.pluginspec.in" "6"
+"texteditor" "3"
+"texteditor.pri" "4"
+"texteditor_dependencies" "3"
+"texteditor_dependencies.pri" "4"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"vcsbase" "3"
+"vcsbase.pri" "4"
+"vcsbase_dependencies" "3"
+"vcsbase_dependencies.pri" "4"
+"Headers" "3"
+"annotationhighlighter.h" "4"
+"checkoutwizard.h" "4"
+"checkoutwizardpage.h" "4"
+"settingspage.h" "4"
+"subversionconstants.h" "4"
+"subversioncontrol.h" "4"
+"subversioneditor.h" "4"
+"subversionplugin.h" "4"
+"subversionsettings.h" "4"
+"subversionsubmiteditor.h" "4"
+"Sources" "3"
+"annotationhighlighter.cpp" "4"
+"checkoutwizard.cpp" "4"
+"checkoutwizardpage.cpp" "4"
+"settingspage.cpp" "4"
+"subversioncontrol.cpp" "4"
+"subversioneditor.cpp" "4"
+"subversionplugin.cpp" "4"
+"subversionsettings.cpp" "4"
+"subversionsubmiteditor.cpp" "4"
+"Forms" "3"
+"settingspage.ui" "4"
+"Resources" "3"
+"subversion.qrc" "4"
+"tasklist" "2"
+"tasklist.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"coreplugin" "3"
+"coreplugin.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"find" "3"
+"find.pri" "4"
+"find_dependencies" "3"
+"find_dependencies.pri" "4"
+"locator" "3"
+"locator.pri" "4"
+"locator_dependencies" "3"
+"locator_dependencies.pri" "4"
+"projectexplorer" "3"
+"projectexplorer.pri" "4"
+"projectexplorer_dependencies" "3"
+"projectexplorer_dependencies.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/tasklist" "5"
+"TaskList.pluginspec.in" "6"
+"texteditor" "3"
+"texteditor.pri" "4"
+"texteditor_dependencies" "3"
+"texteditor_dependencies.pri" "4"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"Headers" "3"
+"stopmonitoringhandler.h" "4"
+"taskfile.h" "4"
+"taskfilefactory.h" "4"
+"tasklist_export.h" "4"
+"tasklistconstants.h" "4"
+"tasklistplugin.h" "4"
+"Sources" "3"
+"stopmonitoringhandler.cpp" "4"
+"taskfile.cpp" "4"
+"taskfilefactory.cpp" "4"
+"tasklistplugin.cpp" "4"
+"Resources" "3"
+"tasklist.qrc" "4"
+"Other files" "3"
+"TaskList.mimetypes.xml" "4"
+"texteditor" "2"
+"texteditor.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"coreplugin" "3"
+"coreplugin.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"find" "3"
+"find.pri" "4"
+"find_dependencies" "3"
+"find_dependencies.pri" "4"
+"locator" "3"
+"locator.pri" "4"
+"locator_dependencies" "3"
+"locator_dependencies.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/texteditor" "5"
+"TextEditor.pluginspec.in" "6"
+"texteditor_dependencies" "3"
+"texteditor_dependencies.pri" "4"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"Headers" "3"
+"codeassist" "4"
+"assistenums.h" "5"
+"basicproposalitem.h" "5"
+"basicproposalitemlistmodel.h" "5"
+"codeassistant.h" "5"
+"completionassistprovider.h" "5"
+"defaultassistinterface.h" "5"
+"functionhintproposal.h" "5"
+"functionhintproposalwidget.h" "5"
+"genericproposal.h" "5"
+"genericproposalwidget.h" "5"
+"iassistinterface.h" "5"
+"iassistprocessor.h" "5"
+"iassistproposal.h" "5"
+"iassistproposalitem.h" "5"
+"iassistproposalmodel.h" "5"
+"iassistproposalwidget.h" "5"
+"iassistprovider.h" "5"
+"ifunctionhintproposalmodel.h" "5"
+"igenericproposalmodel.h" "5"
+"quickfixassistprocessor.h" "5"
+"quickfixassistprovider.h" "5"
+"runner.h" "5"
+"generichighlighter" "4"
+"context.h" "5"
+"definitiondownloader.h" "5"
+"dynamicrule.h" "5"
+"highlightdefinition.h" "5"
+"highlightdefinitionhandler.h" "5"
+"highlightdefinitionmetadata.h" "5"
+"highlighter.h" "5"
+"highlighterexception.h" "5"
+"highlightersettings.h" "5"
+"highlightersettingspage.h" "5"
+"includerulesinstruction.h" "5"
+"itemdata.h" "5"
+"keywordlist.h" "5"
+"managedefinitionsdialog.h" "5"
+"manager.h" "5"
+"progressdata.h" "5"
+"reuse.h" "5"
+"rule.h" "5"
+"specificrules.h" "5"
+"snippets" "4"
+"isnippetprovider.h" "5"
+"plaintextsnippetprovider.h" "5"
+"reuse.h" "5"
+"snippet.h" "5"
+"snippetassistcollector.h" "5"
+"snippeteditor.h" "5"
+"snippetscollection.h" "5"
+"snippetssettings.h" "5"
+"snippetssettingspage.h" "5"
+"tooltip" "4"
+"effects.h" "5"
+"reuse.h" "5"
+"tipcontents.h" "5"
+"tipfactory.h" "5"
+"tips.h" "5"
+"tooltip.h" "5"
+"autocompleter.h" "4"
+"basefilefind.h" "4"
+"basefilefind_p.h" "4"
+"basehoverhandler.h" "4"
+"basetextdocument.h" "4"
+"basetextdocumentlayout.h" "4"
+"basetexteditor.h" "4"
+"basetexteditor_p.h" "4"
+"basetextmark.h" "4"
+"behaviorsettings.h" "4"
+"behaviorsettingspage.h" "4"
+"behaviorsettingswidget.h" "4"
+"circularclipboard.h" "4"
+"codecselector.h" "4"
+"codestyleeditor.h" "4"
+"codestylepool.h" "4"
+"codestyleselectorwidget.h" "4"
+"colorscheme.h" "4"
+"colorschemeedit.h" "4"
+"completionsettings.h" "4"
+"convenience.h" "4"
+"displaysettings.h" "4"
+"displaysettingspage.h" "4"
+"extraencodingsettings.h" "4"
+"findincurrentfile.h" "4"
+"findinfiles.h" "4"
+"findinopenfiles.h" "4"
+"fontsettings.h" "4"
+"fontsettingspage.h" "4"
+"helpitem.h" "4"
+"icodestylepreferences.h" "4"
+"icodestylepreferencesfactory.h" "4"
+"indenter.h" "4"
+"ioutlinewidget.h" "4"
+"itexteditor.h" "4"
+"itextmark.h" "4"
+"linenumberfilter.h" "4"
+"normalindenter.h" "4"
+"outlinefactory.h" "4"
+"plaintexteditor.h" "4"
+"plaintexteditorfactory.h" "4"
+"quickfix.h" "4"
+"refactoringchanges.h" "4"
+"refactoroverlay.h" "4"
+"semantichighlighter.h" "4"
+"simplecodestylepreferences.h" "4"
+"simplecodestylepreferenceswidget.h" "4"
+"storagesettings.h" "4"
+"syntaxhighlighter.h" "4"
+"tabsettings.h" "4"
+"tabsettingswidget.h" "4"
+"texteditor_global.h" "4"
+"texteditoractionhandler.h" "4"
+"texteditorconstants.h" "4"
+"texteditoroptionspage.h" "4"
+"texteditoroverlay.h" "4"
+"texteditorplugin.h" "4"
+"texteditorsettings.h" "4"
+"textfilewizard.h" "4"
+"typingsettings.h" "4"
+"Sources" "3"
+"codeassist" "4"
+"basicproposalitem.cpp" "5"
+"basicproposalitemlistmodel.cpp" "5"
+"codeassistant.cpp" "5"
+"completionassistprovider.cpp" "5"
+"defaultassistinterface.cpp" "5"
+"functionhintproposal.cpp" "5"
+"functionhintproposalwidget.cpp" "5"
+"genericproposal.cpp" "5"
+"genericproposalwidget.cpp" "5"
+"iassistinterface.cpp" "5"
+"iassistprocessor.cpp" "5"
+"iassistproposal.cpp" "5"
+"iassistproposalitem.cpp" "5"
+"iassistproposalmodel.cpp" "5"
+"iassistproposalwidget.cpp" "5"
+"iassistprovider.cpp" "5"
+"ifunctionhintproposalmodel.cpp" "5"
+"igenericproposalmodel.cpp" "5"
+"quickfixassistprocessor.cpp" "5"
+"quickfixassistprovider.cpp" "5"
+"runner.cpp" "5"
+"generichighlighter" "4"
+"context.cpp" "5"
+"definitiondownloader.cpp" "5"
+"dynamicrule.cpp" "5"
+"highlightdefinition.cpp" "5"
+"highlightdefinitionhandler.cpp" "5"
+"highlightdefinitionmetadata.cpp" "5"
+"highlighter.cpp" "5"
+"highlightersettings.cpp" "5"
+"highlightersettingspage.cpp" "5"
+"includerulesinstruction.cpp" "5"
+"itemdata.cpp" "5"
+"keywordlist.cpp" "5"
+"managedefinitionsdialog.cpp" "5"
+"manager.cpp" "5"
+"progressdata.cpp" "5"
+"rule.cpp" "5"
+"specificrules.cpp" "5"
+"snippets" "4"
+"isnippetprovider.cpp" "5"
+"plaintextsnippetprovider.cpp" "5"
+"snippet.cpp" "5"
+"snippetassistcollector.cpp" "5"
+"snippeteditor.cpp" "5"
+"snippetscollection.cpp" "5"
+"snippetssettings.cpp" "5"
+"snippetssettingspage.cpp" "5"
+"tooltip" "4"
+"tipcontents.cpp" "5"
+"tipfactory.cpp" "5"
+"tips.cpp" "5"
+"tooltip.cpp" "5"
+"autocompleter.cpp" "4"
+"basefilefind.cpp" "4"
+"basehoverhandler.cpp" "4"
+"basetextdocument.cpp" "4"
+"basetextdocumentlayout.cpp" "4"
+"basetexteditor.cpp" "4"
+"basetextmark.cpp" "4"
+"behaviorsettings.cpp" "4"
+"behaviorsettingspage.cpp" "4"
+"behaviorsettingswidget.cpp" "4"
+"circularclipboard.cpp" "4"
+"codecselector.cpp" "4"
+"codestyleeditor.cpp" "4"
+"codestylepool.cpp" "4"
+"codestyleselectorwidget.cpp" "4"
+"colorscheme.cpp" "4"
+"colorschemeedit.cpp" "4"
+"completionsettings.cpp" "4"
+"convenience.cpp" "4"
+"displaysettings.cpp" "4"
+"displaysettingspage.cpp" "4"
+"extraencodingsettings.cpp" "4"
+"findincurrentfile.cpp" "4"
+"findinfiles.cpp" "4"
+"findinopenfiles.cpp" "4"
+"fontsettings.cpp" "4"
+"fontsettingspage.cpp" "4"
+"helpitem.cpp" "4"
+"icodestylepreferences.cpp" "4"
+"icodestylepreferencesfactory.cpp" "4"
+"indenter.cpp" "4"
+"itexteditor.cpp" "4"
+"itextmark.cpp" "4"
+"linenumberfilter.cpp" "4"
+"normalindenter.cpp" "4"
+"outlinefactory.cpp" "4"
+"plaintexteditor.cpp" "4"
+"plaintexteditorfactory.cpp" "4"
+"quickfix.cpp" "4"
+"refactoringchanges.cpp" "4"
+"refactoroverlay.cpp" "4"
+"semantichighlighter.cpp" "4"
+"simplecodestylepreferences.cpp" "4"
+"simplecodestylepreferenceswidget.cpp" "4"
+"storagesettings.cpp" "4"
+"syntaxhighlighter.cpp" "4"
+"tabsettings.cpp" "4"
+"tabsettingswidget.cpp" "4"
+"texteditoractionhandler.cpp" "4"
+"texteditoroptionspage.cpp" "4"
+"texteditoroverlay.cpp" "4"
+"texteditorplugin.cpp" "4"
+"texteditorsettings.cpp" "4"
+"textfilewizard.cpp" "4"
+"typingsettings.cpp" "4"
+"Forms" "3"
+"generichighlighter" "4"
+"highlightersettingspage.ui" "5"
+"managedefinitionsdialog.ui" "5"
+"snippets" "4"
+"snippetssettingspage.ui" "5"
+"behaviorsettingspage.ui" "4"
+"behaviorsettingswidget.ui" "4"
+"codestyleselectorwidget.ui" "4"
+"colorschemeedit.ui" "4"
+"displaysettingspage.ui" "4"
+"fontsettingspage.ui" "4"
+"tabsettingswidget.ui" "4"
+"Resources" "3"
+"texteditor.qrc" "4"
+"Other files" "3"
+"TextEditor.mimetypes.xml" "4"
+"todo" "2"
+"todo.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"coreplugin" "3"
+"coreplugin.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"cplusplus" "3"
+"cplusplus.pri" "4"
+"cpptools" "3"
+"cpptools.pri" "4"
+"cpptools_dependencies" "3"
+"cpptools_dependencies.pri" "4"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"find" "3"
+"find.pri" "4"
+"find_dependencies" "3"
+"find_dependencies.pri" "4"
+"languageutils" "3"
+"languageutils.pri" "4"
+"locator" "3"
+"locator.pri" "4"
+"locator_dependencies" "3"
+"locator_dependencies.pri" "4"
+"projectexplorer" "3"
+"projectexplorer.pri" "4"
+"projectexplorer_dependencies" "3"
+"projectexplorer_dependencies.pri" "4"
+"qmljs" "3"
+"qmljs.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/todo" "5"
+"Todo.pluginspec.in" "6"
+"texteditor" "3"
+"texteditor.pri" "4"
+"texteditor_dependencies" "3"
+"texteditor_dependencies.pri" "4"
+"todo_dependencies" "3"
+"todo_dependencies.pri" "4"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"Headers" "3"
+"constants.h" "4"
+"cpptodoitemsscanner.h" "4"
+"keyword.h" "4"
+"keyworddialog.h" "4"
+"lineparser.h" "4"
+"optionsdialog.h" "4"
+"optionspage.h" "4"
+"qmljstodoitemsscanner.h" "4"
+"settings.h" "4"
+"todoitem.h" "4"
+"todoitemsmodel.h" "4"
+"todoitemsprovider.h" "4"
+"todoitemsscanner.h" "4"
+"todooutputpane.h" "4"
+"todoplugin.h" "4"
+"Sources" "3"
+"cpptodoitemsscanner.cpp" "4"
+"keyword.cpp" "4"
+"keyworddialog.cpp" "4"
+"lineparser.cpp" "4"
+"optionsdialog.cpp" "4"
+"optionspage.cpp" "4"
+"qmljstodoitemsscanner.cpp" "4"
+"settings.cpp" "4"
+"todoitemsmodel.cpp" "4"
+"todoitemsprovider.cpp" "4"
+"todoitemsscanner.cpp" "4"
+"todooutputpane.cpp" "4"
+"todoplugin.cpp" "4"
+"Forms" "3"
+"keyworddialog.ui" "4"
+"optionsdialog.ui" "4"
+"Resources" "3"
+"todoplugin.qrc" "4"
+"Other files" "3"
+"Todo.pluginspec.in" "4"
+"updateinfo" "2"
+"updateinfo.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"coreplugin" "3"
+"coreplugin.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/updateinfo" "5"
+"UpdateInfo.pluginspec.in" "6"
+"updateinfo_dependencies" "3"
+"updateinfo_dependencies.pri" "4"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"Headers" "3"
+"updateinfobutton.h" "4"
+"updateinfoplugin.h" "4"
+"Sources" "3"
+"updateinfobutton.cpp" "4"
+"updateinfoplugin.cpp" "4"
+"Resources" "3"
+"updateinfo.qrc" "4"
+"valgrind" "2"
+"valgrind.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"analyzerbase" "3"
+"analyzerbase.pri" "4"
+"analyzerbase_dependencies" "3"
+"analyzerbase_dependencies.pri" "4"
+"botan" "3"
+"botan.pri" "4"
+"callgrind" "3"
+"callgrind.pri" "4"
+"Headers" "4"
+"callgrindabstractmodel.h" "5"
+"callgrindcallmodel.h" "5"
+"callgrindcontroller.h" "5"
+"callgrindcostitem.h" "5"
+"callgrindcycledetection.h" "5"
+"callgrinddatamodel.h" "5"
+"callgrindfunction.h" "5"
+"callgrindfunction_p.h" "5"
+"callgrindfunctioncall.h" "5"
+"callgrindfunctioncycle.h" "5"
+"callgrindparsedata.h" "5"
+"callgrindparser.h" "5"
+"callgrindproxymodel.h" "5"
+"callgrindrunner.h" "5"
+"callgrindstackbrowser.h" "5"
+"Sources" "4"
+"callgrindcallmodel.cpp" "5"
+"callgrindcontroller.cpp" "5"
+"callgrindcostitem.cpp" "5"
+"callgrindcycledetection.cpp" "5"
+"callgrinddatamodel.cpp" "5"
+"callgrindfunction.cpp" "5"
+"callgrindfunctioncall.cpp" "5"
+"callgrindfunctioncycle.cpp" "5"
+"callgrindparsedata.cpp" "5"
+"callgrindparser.cpp" "5"
+"callgrindproxymodel.cpp" "5"
+"callgrindrunner.cpp" "5"
+"callgrindstackbrowser.cpp" "5"
+"coreplugin" "3"
+"coreplugin.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"cplusplus" "3"
+"cplusplus.pri" "4"
+"cpptools" "3"
+"cpptools.pri" "4"
+"cpptools_dependencies" "3"
+"cpptools_dependencies.pri" "4"
+"debugger" "3"
+"debugger.pri" "4"
+"debugger_dependencies" "3"
+"debugger_dependencies.pri" "4"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"find" "3"
+"find.pri" "4"
+"find_dependencies" "3"
+"find_dependencies.pri" "4"
+"languageutils" "3"
+"languageutils.pri" "4"
+"locator" "3"
+"locator.pri" "4"
+"locator_dependencies" "3"
+"locator_dependencies.pri" "4"
+"memcheck" "3"
+"memcheck.pri" "4"
+"Headers" "4"
+"memcheckrunner.h" "5"
+"Sources" "4"
+"memcheckrunner.cpp" "5"
+"projectexplorer" "3"
+"projectexplorer.pri" "4"
+"projectexplorer_dependencies" "3"
+"projectexplorer_dependencies.pri" "4"
+"qmljs" "3"
+"qmljs.pri" "4"
+"qt4projectmanager" "3"
+"qt4projectmanager.pri" "4"
+"qt4projectmanager_dependencies" "3"
+"qt4projectmanager_dependencies.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/valgrind" "5"
+"Valgrind.pluginspec.in" "6"
+"qtsupport" "3"
+"qtsupport.pri" "4"
+"qtsupport_dependencies" "3"
+"qtsupport_dependencies.pri" "4"
+"remotelinux" "3"
+"remotelinux.pri" "4"
+"remotelinux_dependencies" "3"
+"remotelinux_dependencies.pri" "4"
+"symbianutils" "3"
+"symbianutils.pri" "4"
+"texteditor" "3"
+"texteditor.pri" "4"
+"texteditor_dependencies" "3"
+"texteditor_dependencies.pri" "4"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"valgrind_dependencies" "3"
+"valgrind_dependencies.pri" "4"
+"xmlprotocol" "3"
+"xmlprotocol.pri" "4"
+"Headers" "4"
+"announcethread.h" "5"
+"error.h" "5"
+"errorlistmodel.h" "5"
+"frame.h" "5"
+"modelhelpers.h" "5"
+"parser.h" "5"
+"stack.h" "5"
+"stackmodel.h" "5"
+"status.h" "5"
+"suppression.h" "5"
+"threadedparser.h" "5"
+"Sources" "4"
+"announcethread.cpp" "5"
+"error.cpp" "5"
+"errorlistmodel.cpp" "5"
+"frame.cpp" "5"
+"modelhelpers.cpp" "5"
+"parser.cpp" "5"
+"stack.cpp" "5"
+"stackmodel.cpp" "5"
+"status.cpp" "5"
+"suppression.cpp" "5"
+"threadedparser.cpp" "5"
+"Headers" "3"
+"callgrindcostdelegate.h" "4"
+"callgrindcostview.h" "4"
+"callgrindengine.h" "4"
+"callgrindhelper.h" "4"
+"callgrindnamedelegate.h" "4"
+"callgrindtextmark.h" "4"
+"callgrindtool.h" "4"
+"callgrindvisualisation.h" "4"
+"memcheckengine.h" "4"
+"memcheckerrorview.h" "4"
+"memchecktool.h" "4"
+"suppressiondialog.h" "4"
+"valgrindconfigwidget.h" "4"
+"valgrindengine.h" "4"
+"valgrindplugin.h" "4"
+"valgrindprocess.h" "4"
+"valgrindrunner.h" "4"
+"valgrindsettings.h" "4"
+"valgrindtool.h" "4"
+"workarounds.h" "4"
+"Sources" "3"
+"callgrindcostdelegate.cpp" "4"
+"callgrindcostview.cpp" "4"
+"callgrindengine.cpp" "4"
+"callgrindhelper.cpp" "4"
+"callgrindnamedelegate.cpp" "4"
+"callgrindtextmark.cpp" "4"
+"callgrindtool.cpp" "4"
+"callgrindvisualisation.cpp" "4"
+"memcheckengine.cpp" "4"
+"memcheckerrorview.cpp" "4"
+"memchecktool.cpp" "4"
+"suppressiondialog.cpp" "4"
+"valgrindconfigwidget.cpp" "4"
+"valgrindengine.cpp" "4"
+"valgrindplugin.cpp" "4"
+"valgrindprocess.cpp" "4"
+"valgrindrunner.cpp" "4"
+"valgrindsettings.cpp" "4"
+"valgrindtool.cpp" "4"
+"workarounds.cpp" "4"
+"Forms" "3"
+"valgrindconfigwidget.ui" "4"
+"vcsbase" "2"
+"vcsbase.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"coreplugin" "3"
+"coreplugin.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"cplusplus" "3"
+"cplusplus.pri" "4"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"find" "3"
+"find.pri" "4"
+"find_dependencies" "3"
+"find_dependencies.pri" "4"
+"locator" "3"
+"locator.pri" "4"
+"locator_dependencies" "3"
+"locator_dependencies.pri" "4"
+"projectexplorer" "3"
+"projectexplorer.pri" "4"
+"projectexplorer_dependencies" "3"
+"projectexplorer_dependencies.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/vcsbase" "5"
+"VcsBase.pluginspec.in" "6"
+"texteditor" "3"
+"texteditor.pri" "4"
+"texteditor_dependencies" "3"
+"texteditor_dependencies.pri" "4"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"vcsbase_dependencies" "3"
+"vcsbase_dependencies.pri" "4"
+"Headers" "3"
+"baseannotationhighlighter.h" "4"
+"basecheckoutwizard.h" "4"
+"basecheckoutwizardpage.h" "4"
+"basevcseditorfactory.h" "4"
+"basevcssubmiteditorfactory.h" "4"
+"checkoutjobs.h" "4"
+"checkoutprogresswizardpage.h" "4"
+"checkoutwizarddialog.h" "4"
+"cleandialog.h" "4"
+"command.h" "4"
+"commonsettingspage.h" "4"
+"commonvcssettings.h" "4"
+"corelistener.h" "4"
+"diffhighlighter.h" "4"
+"nicknamedialog.h" "4"
+"submiteditorfile.h" "4"
+"submitfilemodel.h" "4"
+"vcsbase_global.h" "4"
+"vcsbaseclient.h" "4"
+"vcsbaseclientsettings.h" "4"
+"vcsbaseconstants.h" "4"
+"vcsbaseeditor.h" "4"
+"vcsbaseeditorparameterwidget.h" "4"
+"vcsbaseoptionspage.h" "4"
+"vcsbaseoutputwindow.h" "4"
+"vcsbaseplugin.h" "4"
+"vcsbasesubmiteditor.h" "4"
+"vcsconfigurationpage.h" "4"
+"vcsplugin.h" "4"
+"Sources" "3"
+"baseannotationhighlighter.cpp" "4"
+"basecheckoutwizard.cpp" "4"
+"basecheckoutwizardpage.cpp" "4"
+"basevcseditorfactory.cpp" "4"
+"basevcssubmiteditorfactory.cpp" "4"
+"checkoutjobs.cpp" "4"
+"checkoutprogresswizardpage.cpp" "4"
+"checkoutwizarddialog.cpp" "4"
+"cleandialog.cpp" "4"
+"command.cpp" "4"
+"commonsettingspage.cpp" "4"
+"commonvcssettings.cpp" "4"
+"corelistener.cpp" "4"
+"diffhighlighter.cpp" "4"
+"nicknamedialog.cpp" "4"
+"submiteditorfile.cpp" "4"
+"submitfilemodel.cpp" "4"
+"vcsbaseclient.cpp" "4"
+"vcsbaseclientsettings.cpp" "4"
+"vcsbaseeditor.cpp" "4"
+"vcsbaseeditorparameterwidget.cpp" "4"
+"vcsbaseoptionspage.cpp" "4"
+"vcsbaseoutputwindow.cpp" "4"
+"vcsbaseplugin.cpp" "4"
+"vcsbasesubmiteditor.cpp" "4"
+"vcsconfigurationpage.cpp" "4"
+"vcsplugin.cpp" "4"
+"Forms" "3"
+"basecheckoutwizardpage.ui" "4"
+"checkoutprogresswizardpage.ui" "4"
+"cleandialog.ui" "4"
+"commonsettingspage.ui" "4"
+"nicknamedialog.ui" "4"
+"vcsconfigurationpage.ui" "4"
+"Resources" "3"
+"vcsbase.qrc" "4"
+"welcome" "2"
+"welcome.pro" "3"
+"aggregation" "3"
+"aggregation.pri" "4"
+"coreplugin" "3"
+"coreplugin.pri" "4"
+"coreplugin_dependencies" "3"
+"coreplugin_dependencies.pri" "4"
+"extensionsystem" "3"
+"extensionsystem.pri" "4"
+"extensionsystem_dependencies" "3"
+"extensionsystem_dependencies.pri" "4"
+"find" "3"
+"find.pri" "4"
+"find_dependencies" "3"
+"find_dependencies.pri" "4"
+"locator" "3"
+"locator.pri" "4"
+"locator_dependencies" "3"
+"locator_dependencies.pri" "4"
+"projectexplorer" "3"
+"projectexplorer.pri" "4"
+"projectexplorer_dependencies" "3"
+"projectexplorer_dependencies.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcreatorplugin" "3"
+"qtcreatorplugin.pri" "4"
+"Other files" "4"
+"plugins/welcome" "5"
+"Welcome.pluginspec.in" "6"
+"texteditor" "3"
+"texteditor.pri" "4"
+"texteditor_dependencies" "3"
+"texteditor_dependencies.pri" "4"
+"utils" "3"
+"utils.pri" "4"
+"utils_dependencies" "3"
+"utils_dependencies.pri" "4"
+"welcome_dependencies" "3"
+"welcome_dependencies.pri" "4"
+"Headers" "3"
+"welcome_global.h" "4"
+"welcomeplugin.h" "4"
+"Sources" "3"
+"welcomeplugin.cpp" "4"
+"tools" "1"
+"tools.pro" "2"
+"mdnssd" "2"
+"mdnssd.pro" "3"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"Headers" "3"
+"DebugServices.h" "4"
+"dns_sd.h" "4"
+"DNSCommon.h" "4"
+"dnssd_ipc.h" "4"
+"GenLinkedList.h" "4"
+"mDNSDebug.h" "4"
+"mDNSEmbeddedAPI.h" "4"
+"mDNSPosix.h" "4"
+"mDNSUNP.h" "4"
+"PlatformCommon.h" "4"
+"uDNS.h" "4"
+"uds_daemon.h" "4"
+"Sources" "3"
+"DNSCommon.c" "4"
+"DNSDigest.c" "4"
+"dnssd_ipc.c" "4"
+"GenLinkedList.c" "4"
+"mDNS.c" "4"
+"mDNSDebug.c" "4"
+"mDNSPosix.c" "4"
+"mDNSUNP.c" "4"
+"PlatformCommon.c" "4"
+"PosixDaemon.c" "4"
+"uDNS.c" "4"
+"uds_daemon.c" "4"
+"qmlpuppet" "2"
+"qmlpuppet.pro" "3"
+"private_headers" "3"
+"private_headers.pri" "4"
+"qmlpuppet" "3"
+"qmlpuppet.pro" "4"
+"commands" "4"
+"commands.pri" "5"
+"Headers" "5"
+"changeauxiliarycommand.h" "6"
+"changebindingscommand.h" "6"
+"changefileurlcommand.h" "6"
+"changeidscommand.h" "6"
+"changenodesourcecommand.h" "6"
+"changestatecommand.h" "6"
+"changevaluescommand.h" "6"
+"childrenchangedcommand.h" "6"
+"clearscenecommand.h" "6"
+"completecomponentcommand.h" "6"
+"componentcompletedcommand.h" "6"
+"createinstancescommand.h" "6"
+"createscenecommand.h" "6"
+"informationchangedcommand.h" "6"
+"pixmapchangedcommand.h" "6"
+"removeinstancescommand.h" "6"
+"removepropertiescommand.h" "6"
+"reparentinstancescommand.h" "6"
+"statepreviewimagechangedcommand.h" "6"
+"synchronizecommand.h" "6"
+"tokencommand.h" "6"
+"valueschangedcommand.h" "6"
+"Sources" "5"
+"changeauxiliarycommand.cpp" "6"
+"changebindingscommand.cpp" "6"
+"changefileurlcommand.cpp" "6"
+"changeidscommand.cpp" "6"
+"changenodesourcecommand.cpp" "6"
+"changestatecommand.cpp" "6"
+"changevaluescommand.cpp" "6"
+"childrenchangedcommand.cpp" "6"
+"clearscenecommand.cpp" "6"
+"completecomponentcommand.cpp" "6"
+"componentcompletedcommand.cpp" "6"
+"createinstancescommand.cpp" "6"
+"createscenecommand.cpp" "6"
+"informationchangedcommand.cpp" "6"
+"pixmapchangedcommand.cpp" "6"
+"removeinstancescommand.cpp" "6"
+"removepropertiescommand.cpp" "6"
+"reparentinstancescommand.cpp" "6"
+"statepreviewimagechangedcommand.cpp" "6"
+"synchronizecommand.cpp" "6"
+"tokencommand.cpp" "6"
+"valueschangedcommand.cpp" "6"
+"container" "4"
+"container.pri" "5"
+"Headers" "5"
+"addimportcontainer.h" "6"
+"idcontainer.h" "6"
+"imagecontainer.h" "6"
+"informationcontainer.h" "6"
+"instancecontainer.h" "6"
+"propertyabstractcontainer.h" "6"
+"propertybindingcontainer.h" "6"
+"propertyvaluecontainer.h" "6"
+"reparentcontainer.h" "6"
+"Sources" "5"
+"addimportcontainer.cpp" "6"
+"idcontainer.cpp" "6"
+"imagecontainer.cpp" "6"
+"informationcontainer.cpp" "6"
+"instancecontainer.cpp" "6"
+"propertyabstractcontainer.cpp" "6"
+"propertybindingcontainer.cpp" "6"
+"propertyvaluecontainer.cpp" "6"
+"reparentcontainer.cpp" "6"
+"instances" "4"
+"instances.pri" "5"
+"Headers" "5"
+"anchorchangesnodeinstance.h" "6"
+"behaviornodeinstance.h" "6"
+"childrenchangeeventfilter.h" "6"
+"componentnodeinstance.h" "6"
+"dummycontextobject.h" "6"
+"dummynodeinstance.h" "6"
+"nodeinstanceclientproxy.h" "6"
+"nodeinstancemetaobject.h" "6"
+"nodeinstanceserver.h" "6"
+"nodeinstancesignalspy.h" "6"
+"objectnodeinstance.h" "6"
+"qmlpropertychangesnodeinstance.h" "6"
+"qmlstatenodeinstance.h" "6"
+"qmltransitionnodeinstance.h" "6"
+"servernodeinstance.h" "6"
+"Sources" "5"
+"anchorchangesnodeinstance.cpp" "6"
+"behaviornodeinstance.cpp" "6"
+"childrenchangeeventfilter.cpp" "6"
+"componentnodeinstance.cpp" "6"
+"dummycontextobject.cpp" "6"
+"dummynodeinstance.cpp" "6"
+"nodeinstanceclientproxy.cpp" "6"
+"nodeinstancemetaobject.cpp" "6"
+"nodeinstanceserver.cpp" "6"
+"nodeinstancesignalspy.cpp" "6"
+"objectnodeinstance.cpp" "6"
+"qmlpropertychangesnodeinstance.cpp" "6"
+"qmlstatenodeinstance.cpp" "6"
+"qmltransitionnodeinstance.cpp" "6"
+"servernodeinstance.cpp" "6"
+"instances" "4"
+"instances.pri" "5"
+"Headers" "5"
+"graphicsobjectnodeinstance.h" "6"
+"positionernodeinstance.h" "6"
+"qmlgraphicsitemnodeinstance.h" "6"
+"qt4informationnodeinstanceserver.h" "6"
+"qt4nodeinstanceclientproxy.h" "6"
+"qt4nodeinstanceserver.h" "6"
+"qt4previewnodeinstanceserver.h" "6"
+"qt4rendernodeinstanceserver.h" "6"
+"Sources" "5"
+"graphicsobjectnodeinstance.cpp" "6"
+"positionernodeinstance.cpp" "6"
+"qmlgraphicsitemnodeinstance.cpp" "6"
+"qt4informationnodeinstanceserver.cpp" "6"
+"qt4nodeinstanceclientproxy.cpp" "6"
+"qt4nodeinstanceserver.cpp" "6"
+"qt4previewnodeinstanceserver.cpp" "6"
+"qt4rendernodeinstanceserver.cpp" "6"
+"interfaces" "4"
+"interfaces.pri" "5"
+"Headers" "5"
+"commondefines.h" "6"
+"nodeinstanceclientinterface.h" "6"
+"nodeinstanceserverinterface.h" "6"
+"Sources" "5"
+"nodeinstanceserverinterface.cpp" "6"
+"private_headers" "4"
+"private_headers.pri" "5"
+"qmlpuppet" "4"
+"qmlpuppet.pri" "5"
+"Sources" "5"
+"main.cpp" "6"
+"Resources" "5"
+"qmlpuppet.qrc" "7"
+"qtcreator" "4"
+"qtcreator.pri" "5"
+"rpath" "4"
+"rpath.pri" "5"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"qtcdebugger" "2"
+"qtcdebugger.pro" "3"
+"registryaccess" "3"
+"registryaccess.pri" "4"
+"Headers" "4"
+"registryaccess.h" "5"
+"Sources" "4"
+"registryaccess.cpp" "5"
+"Sources" "3"
+"main.cpp" "4"
+"qtcrashhandler" "2"
+"qtcrashhandler.pro" "3"
+"private_headers" "3"
+"private_headers.pri" "4"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"rpath" "3"
+"rpath.pri" "4"
+"qtpromaker" "2"
+"qtpromaker.pro" "3"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"Sources" "3"
+"main.cpp" "4"
+"valgrindfake" "2"
+"valgrindfake.pro" "3"
+"Headers" "3"
+"outputgenerator.h" "4"
+"Sources" "3"
+"main.cpp" "4"
+"outputgenerator.cpp" "4"
+"win64interrupt" "2"
+"win64interrupt.pro" "3"
+"qtcreator" "3"
+"qtcreator.pri" "4"
+"Sources" "3"
+"win64interrupt.c" "4"
+"Other files" "0"
+"dist" "1"
+"changes-1.1.0" "2"
+"changes-1.1.1" "2"
+"changes-1.2.0" "2"
+"changes-1.2.1" "2"
+"changes-1.3.0" "2"
+"changes-1.3.1" "2"
+"changes-2.0.0" "2"
+"changes-2.0.1" "2"
+"changes-2.1.0" "2"
+"changes-2.2.0" "2"
+"changes-2.3.0" "2"
+"changes-2.3.1" "2"
+"changes-2.4.0" "2"
+"changes-2.4.1" "2"
+"changes-2.5.0" "2"
+"copyright_template.txt" "2"
diff --git a/tests/system/suite_general/tst_openqt_creator/testdata/projecttree_speedcrunch.tsv b/tests/system/suite_general/tst_openqt_creator/testdata/projecttree_speedcrunch.tsv
new file mode 100644
index 0000000000..0939390a78
--- /dev/null
+++ b/tests/system/suite_general/tst_openqt_creator/testdata/projecttree_speedcrunch.tsv
@@ -0,0 +1,83 @@
+"text" "nestinglevel"
+"speedcrunch.pro" "0"
+"Headers" "0"
+"core" "1"
+"constants.h" "2"
+"evaluator.h" "2"
+"functions.h" "2"
+"gui" "1"
+"aboutbox.h" "2"
+"application.h" "2"
+"autohidelabel.h" "2"
+"bookdock.h" "2"
+"constantsdock.h" "2"
+"constantswidget.h" "2"
+"deletevardlg.h" "2"
+"editor.h" "2"
+"functionsdialog.h" "2"
+"functionsdock.h" "2"
+"functionswidget.h" "2"
+"historydock.h" "2"
+"historywidget.h" "2"
+"insertvardlg.h" "2"
+"keypad.h" "2"
+"mainwindow.h" "2"
+"resultdisplay.h" "2"
+"tipwidget.h" "2"
+"variablesdock.h" "2"
+"variableswidget.h" "2"
+"Sources" "0"
+"core" "1"
+"constants.cpp" "2"
+"evaluator.cpp" "2"
+"functions.cpp" "2"
+"settings.cpp" "2"
+"gui" "1"
+"aboutbox.cpp" "2"
+"application.cpp" "2"
+"autohidelabel.cpp" "2"
+"bookdock.cpp" "2"
+"constantsdock.cpp" "2"
+"constantswidget.cpp" "2"
+"deletevardlg.cpp" "2"
+"editor.cpp" "2"
+"functionsdialog.cpp" "2"
+"functionsdock.cpp" "2"
+"functionswidget.cpp" "2"
+"historydock.cpp" "2"
+"historywidget.cpp" "2"
+"insertvardlg.cpp" "2"
+"keypad.cpp" "2"
+"mainwindow.cpp" "2"
+"resultdisplay.cpp" "2"
+"syntaxhighlighter.cpp" "2"
+"textedit.cpp" "2"
+"tipwidget.cpp" "2"
+"variablesdock.cpp" "2"
+"variableswidget.cpp" "2"
+"main" "1"
+"main.cpp" "2"
+"math" "1"
+"floatcommon.c" "2"
+"floatconst.c" "2"
+"floatconvert.c" "2"
+"floaterf.c" "2"
+"floatexp.c" "2"
+"floatgamma.c" "2"
+"floathmath.c" "2"
+"floatio.c" "2"
+"floatipower.c" "2"
+"floatlog.c" "2"
+"floatlogic.c" "2"
+"floatlong.c" "2"
+"floatnum.c" "2"
+"floatpower.c" "2"
+"floatseries.c" "2"
+"floattrig.c" "2"
+"hmath.cpp" "2"
+"number.c" "2"
+"thirdparty/binreloc" "1"
+"binreloc.c" "2"
+"Resources" "0"
+"resources" "1"
+"speedcrunch.qrc" "2"