├── tests ├── qt4projectmanager │ └── test1 │ │ ├── a.h │ │ ├── a.cpp │ │ └── test1.pro ├── auto │ ├── json │ │ ├── test2.json │ │ ├── bom.json │ │ └── test.bjson │ ├── cplusplus │ │ ├── cxx11 │ │ │ └── data │ │ │ │ ├── noExcept.1.errors.txt │ │ │ │ ├── staticAssert.1.errors.txt │ │ │ │ ├── braceInitializers.1.errors.txt │ │ │ │ ├── inlineNamespace.1.errors.txt │ │ │ │ ├── trailingtypespec.1.errors.txt │ │ │ │ ├── threadLocal.1.cpp │ │ │ │ ├── lambda.1.cpp │ │ │ │ └── inlineNamespace.1.cpp │ │ ├── preprocessor │ │ │ └── data │ │ │ │ ├── include-data │ │ │ │ ├── global │ │ │ │ │ ├── QDir │ │ │ │ │ ├── QDebug │ │ │ │ │ ├── QString │ │ │ │ │ ├── except │ │ │ │ │ ├── global.h │ │ │ │ │ ├── iostream │ │ │ │ │ ├── string │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── file.h │ │ │ │ │ │ └── fileother.h │ │ │ │ │ ├── utils │ │ │ │ │ │ └── file.h │ │ │ │ │ └── otherlib │ │ │ │ │ │ ├── file.h │ │ │ │ │ │ └── fileother.h │ │ │ │ ├── local │ │ │ │ │ ├── a.h │ │ │ │ │ ├── b.h │ │ │ │ │ ├── stuff │ │ │ │ │ ├── y.h │ │ │ │ │ ├── z.h │ │ │ │ │ ├── file.h │ │ │ │ │ ├── header.h │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── file.h │ │ │ │ │ │ └── fileother.h │ │ │ │ │ ├── prefixa.h │ │ │ │ │ ├── prefixb.h │ │ │ │ │ ├── prefixc.h │ │ │ │ │ ├── fileother.h │ │ │ │ │ ├── otherlib │ │ │ │ │ │ ├── file.h │ │ │ │ │ │ └── fileother.h │ │ │ │ │ ├── utils │ │ │ │ │ │ └── utils.h │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── cyclic1.h │ │ │ │ │ └── cyclic2.h │ │ │ │ └── QtCore │ │ │ │ │ └── QDir │ │ │ │ ├── recursive.1.cpp │ │ │ │ ├── macro_expand.c │ │ │ │ ├── macro_expand_1.cpp │ │ │ │ ├── identifier-expansion.1.cpp │ │ │ │ └── include_next-data │ │ │ │ └── customIncludePath │ │ │ │ └── t.h │ │ ├── ast │ │ │ └── ast.pro │ │ ├── lookup │ │ │ └── lookup.pro │ │ ├── misc │ │ │ └── misc.pro │ │ ├── semantic │ │ │ └── semantic.pro │ │ ├── codeformatter │ │ │ └── codeformatter.pro │ │ ├── fileiterationorder │ │ │ └── fileiterationorder.pro │ │ ├── lexer │ │ │ └── lexer.pro │ │ └── typeprettyprinter │ │ │ └── typeprettyprinter.pro │ ├── qml │ │ ├── qmlprojectmanager │ │ │ ├── fileformat │ │ │ │ └── data │ │ │ │ │ ├── file1.qml │ │ │ │ │ ├── file1.qrc │ │ │ │ │ ├── file2.qml │ │ │ │ │ ├── image.gif │ │ │ │ │ ├── script.js │ │ │ │ │ └── subdir │ │ │ │ │ └── file3.qml │ │ │ └── qmlprojectmanager.pro │ │ ├── codemodel │ │ │ └── codemodel.pro │ │ ├── qmldesigner │ │ │ ├── coretests │ │ │ │ └── setupPath.bat │ │ │ └── data │ │ │ │ └── qt-logo.png │ │ └── qmleditor │ │ │ └── qmleditor.pro │ ├── valgrind │ │ └── valgrind.pro │ ├── diff │ │ ├── diff.pro │ │ ├── diff.qbs │ │ └── differ │ │ │ └── differ.pro │ ├── extensionsystem │ │ ├── extensionsystem.pro │ │ ├── pluginspec │ │ │ ├── testplugin │ │ │ │ └── testplugin.json │ │ │ ├── pluginspec.pro │ │ │ └── testdir │ │ │ │ └── spec.json │ │ └── pluginmanager │ │ │ └── circularplugins │ │ │ └── circularplugins.pro │ ├── generichighlighter │ │ └── generichighlighter.pro │ ├── changeset │ │ └── changeset.pro │ ├── environment │ │ └── environment.pro │ ├── timeline │ │ └── timelinemodel │ │ │ └── timelinemodel.pro │ └── utils │ │ └── treemodel │ │ └── treemodel.pro ├── manual │ ├── filesystemview │ │ └── symbolic_links │ │ │ ├── 11111 │ │ │ ├── 22222 │ │ │ ├── symbolic_link_one.cpp │ │ │ └── symbolic_link_two.cpp │ ├── qt4projectmanager │ │ ├── projecttree │ │ │ ├── foo.txt │ │ │ ├── main.cpp │ │ │ ├── main.h │ │ │ ├── widget.cpp │ │ │ ├── widget.h │ │ │ ├── widget.ui │ │ │ ├── headers │ │ │ │ ├── bar.h │ │ │ │ └── foo.h │ │ │ ├── resource.qrc │ │ │ ├── sources │ │ │ │ ├── bar.cpp │ │ │ │ └── foo.cpp │ │ │ ├── sub2 │ │ │ │ └── a │ │ │ │ │ ├── bar.cpp │ │ │ │ │ ├── bar.h │ │ │ │ │ └── sub │ │ │ │ │ ├── bar2.cpp │ │ │ │ │ └── bar2.h │ │ │ ├── subpath │ │ │ │ ├── a │ │ │ │ │ ├── foo.h │ │ │ │ │ └── foo.cpp │ │ │ │ └── b │ │ │ │ │ ├── foo.h │ │ │ │ │ └── foo.cpp │ │ │ ├── uniquesub │ │ │ │ └── path │ │ │ │ │ ├── bar.h │ │ │ │ │ └── bar.cpp │ │ │ └── prifile │ │ │ │ ├── headers │ │ │ │ └── prifileinc.h │ │ │ │ └── sources │ │ │ │ └── prifileinc.cpp │ │ ├── projecttree_data1 │ │ │ ├── a │ │ │ │ ├── foo.cpp │ │ │ │ └── foo.h │ │ │ └── b │ │ │ │ ├── foo.cpp │ │ │ │ └── foo.h │ │ ├── projecttree_data2 │ │ │ └── a │ │ │ │ ├── bar.cpp │ │ │ │ ├── bar.h │ │ │ │ └── sub │ │ │ │ ├── bar2.cpp │ │ │ │ └── bar2.h │ │ └── projecttree_data3 │ │ │ └── path │ │ │ ├── bar.cpp │ │ │ └── bar.h │ ├── search │ │ ├── search.pro │ │ └── latin1.txt │ ├── debugger │ │ ├── qquick1 │ │ │ ├── myplugin │ │ │ │ └── qmldir │ │ │ └── qquick1.pro │ │ ├── qquick2 │ │ │ ├── myplugin │ │ │ │ └── qmldir │ │ │ └── qquick2.pro │ │ ├── debugger.pro │ │ ├── spacy-file │ │ │ └── spacy-file.pro │ │ ├── python │ │ │ └── python.pro │ │ ├── script │ │ │ └── script.pro │ │ ├── spacy path │ │ │ └── spacy path.pro │ │ └── boost │ │ │ └── boost.pro │ ├── utils │ │ └── utils.pro │ ├── shootout │ │ ├── shootout.pro │ │ └── README │ ├── ssh │ │ └── errorhandling │ │ │ └── errorhandling.pro │ ├── features │ │ └── features.pro │ └── qml │ │ └── testprojects │ │ └── plugins │ │ └── imports │ │ └── MyPlugin │ │ └── qmldir ├── unit │ ├── unittest │ │ └── data │ │ │ ├── highlightinginformations.h │ │ │ ├── diagnostic_diagnosticset_header.cpp │ │ │ ├── complete_translationunit_parse_error.cpp │ │ │ ├── diagnostic_diagnosticset.cpp │ │ │ ├── diagnostic_source_location.cpp │ │ │ ├── diagnostic_semicolon_fixit.cpp │ │ │ ├── diagnostic_semicolon_fixit_expected.cpp │ │ │ ├── complete_withNoDotArrowCorrectionForFloat.cpp │ │ │ ├── complete_arrow.cpp │ │ │ ├── translationunits.cpp │ │ │ ├── diagnostic_comparison_fixit.cpp │ │ │ ├── diagnostic_comparison_fixit_expected1.cpp │ │ │ ├── diagnostic_comparison_fixit_expected2.cpp │ │ │ └── diagnostic_diagnosticset_mainfile.cpp │ └── unit.pro ├── locators │ └── testdata_basic │ │ ├── file.cpp │ │ ├── main.cpp │ │ └── subdir │ │ └── main.cpp ├── system │ ├── suite_APTW │ │ └── envvars │ ├── suite_CCOM │ │ └── envvars │ ├── suite_CSUP │ │ └── envvars │ ├── suite_HELP │ │ └── envvars │ ├── suite_QMLS │ │ └── envvars │ ├── suite_SCOM │ │ └── envvars │ ├── suite_WELP │ │ └── envvars │ ├── suite_debugger │ │ └── envvars │ ├── suite_editors │ │ └── envvars │ ├── suite_general │ │ └── envvars │ ├── suite_qtquick │ │ └── envvars │ ├── suite_tools │ │ └── envvars │ ├── settings │ │ ├── mac │ │ │ └── QtProject │ │ │ │ └── QtCreator.ini │ │ ├── unix │ │ │ └── QtProject │ │ │ │ └── QtCreator.ini │ │ └── windows │ │ │ └── QtProject │ │ │ └── QtCreator.ini │ └── tools │ │ └── tools.pyqtc ├── cppmodelmanager │ ├── testdata_refresh2 │ │ ├── source2.cpp │ │ └── source.cpp │ ├── testdata │ │ ├── frameworks │ │ │ └── My.framework │ │ │ │ ├── Versions │ │ │ │ ├── Current │ │ │ │ └── A │ │ │ │ │ └── Frameworks │ │ │ │ │ └── Nested.framework │ │ │ │ │ ├── Versions │ │ │ │ │ └── Current │ │ │ │ │ └── Headers │ │ │ │ ├── Headers │ │ │ │ └── Frameworks │ │ ├── sources │ │ │ └── test_modelmanager_refresh.cpp │ │ └── include │ │ │ └── header.h │ ├── testdata_defines │ │ ├── pch1.h │ │ └── pch2.h │ ├── testdata_project1 │ │ └── foo.cpp │ └── testdata_project2 │ │ └── bar.cpp ├── genericprojectmanager │ ├── testdata_mixedproject1 │ │ ├── mixedproject1.includes │ │ ├── main.cpp │ │ ├── mixedproject1.creator │ │ ├── mixedproject1.config │ │ └── header.h │ ├── testdata_mixedproject2 │ │ ├── mixedproject2.includes │ │ ├── mixedproject2.creator │ │ ├── impl.c │ │ ├── mixedproject2.config │ │ ├── mixedproject2.files │ │ └── main.cpp │ └── testdata_simpleproject │ │ ├── simpleproject.includes │ │ ├── simpleproject.files │ │ ├── main.cpp │ │ ├── simpleproject.creator │ │ └── simpleproject.config ├── tests.pro ├── tools │ └── tools.pro └── tests.qbs ├── HACKING ├── share └── qtcreator │ ├── templates │ ├── wizards │ │ ├── files │ │ │ ├── text │ │ │ │ └── file.txt │ │ │ ├── scratch │ │ │ │ └── file.txt │ │ │ ├── qrc │ │ │ │ └── file.qrc │ │ │ ├── cppsource │ │ │ │ └── file.cpp │ │ │ ├── form │ │ │ │ └── file.ui │ │ │ ├── java │ │ │ │ └── source.java │ │ │ ├── python │ │ │ │ └── file.py │ │ │ ├── qtquick1 │ │ │ │ └── file.qml.tpl │ │ │ ├── qtquick2 │ │ │ │ └── file.qml.tpl │ │ │ └── js │ │ │ │ └── file.js │ │ ├── projects │ │ │ └── qmake │ │ │ │ └── empty │ │ │ │ └── file.pro │ │ ├── codesnippet │ │ │ └── main.cpp │ │ ├── qtquick1-extension │ │ │ └── qmldir │ │ ├── autotest │ │ │ ├── tests.pro │ │ │ └── auto.pro │ │ ├── qtquick2-extension │ │ │ └── qmldir │ │ └── classes │ │ │ └── qtquickui │ │ │ └── file.qml.tpl │ └── qt4project │ │ └── customwidgetwizard │ │ └── tpl_widget_include.pri │ └── qmlicons │ └── Qt │ └── 16x16 │ ├── Item.png │ ├── Text.png │ ├── Button.png │ ├── Image.png │ ├── Slider.png │ ├── State.png │ ├── Switch.png │ ├── TabBar.png │ ├── ToolBar.png │ ├── Tumbler.png │ └── Window.png ├── src ├── libs │ ├── ssh │ │ └── ssh_dependencies.pri │ ├── utils │ │ ├── utils_dependencies.pri │ │ ├── images │ │ │ ├── arrow.png │ │ │ ├── triangle_vert.png │ │ │ └── crumblepath-segment.png │ │ └── tooltip │ │ │ └── images │ │ │ └── f1.png │ ├── aggregation │ │ ├── aggregation_dependencies.pri │ │ └── examples │ │ │ └── examples.pro │ ├── 3rdparty │ │ └── cplusplus │ │ │ └── ASTPatternBuilder.cpp │ ├── extensionsystem │ │ ├── test │ │ │ ├── test.pro │ │ │ └── manual │ │ │ │ ├── manual.pro │ │ │ │ └── pluginview │ │ │ │ └── pluginview.pro │ │ └── images │ │ │ ├── ok.png │ │ │ ├── error.png │ │ │ ├── ok@2x.png │ │ │ ├── error@2x.png │ │ │ └── notloaded.png │ ├── glsl │ │ ├── glsl_dependencies.pri │ │ ├── make-parser.sh │ │ └── glsl.pro │ ├── qmldebug │ │ ├── qmldebug_dependencies.pri │ │ └── qmldebug.pro │ ├── qmljs │ │ ├── images │ │ │ ├── func.png │ │ │ ├── element.png │ │ │ ├── property.png │ │ │ └── publicmember.png │ │ └── qmljs.pro │ ├── timeline │ │ ├── timeline_dependencies.pri │ │ └── qml │ │ │ ├── ico_edit.png │ │ │ ├── ico_next.png │ │ │ ├── ico_note.png │ │ │ ├── ico_prev.png │ │ │ ├── ico_zoom.png │ │ │ ├── lock_open.png │ │ │ ├── arrow_down.png │ │ │ ├── arrow_right.png │ │ │ ├── lock_closed.png │ │ │ ├── dialog_shadow.png │ │ │ ├── range_handle.png │ │ │ ├── ico_rangeselected.png │ │ │ ├── ico_rangeselection.png │ │ │ └── ico_selectionmode.png │ ├── sqlite │ │ └── sqlite_dependencies.pri │ ├── clangbackendipc │ │ └── clangbackendipc.pro │ ├── cplusplus │ │ └── images │ │ │ ├── class.png │ │ │ ├── enum.png │ │ │ ├── func.png │ │ │ ├── macro.png │ │ │ ├── slot.png │ │ │ ├── var.png │ │ │ ├── func_st.png │ │ │ ├── keyword.png │ │ │ ├── signal.png │ │ │ ├── static.png │ │ │ ├── struct.png │ │ │ ├── var_st.png │ │ │ ├── enumerator.png │ │ │ ├── func_priv.png │ │ │ ├── func_prot.png │ │ │ ├── namespace.png │ │ │ ├── slot_priv.png │ │ │ ├── slot_prot.png │ │ │ ├── var_priv.png │ │ │ ├── var_prot.png │ │ │ ├── func_priv_st.png │ │ │ ├── func_prot_st.png │ │ │ ├── var_priv_st.png │ │ │ └── var_prot_st.png │ ├── languageutils │ │ └── languageutils_dependencies.pri │ └── qmleditorwidgets │ │ └── images │ │ ├── apply.png │ │ ├── frame.png │ │ ├── hole.png │ │ ├── lock.png │ │ ├── cancel.png │ │ ├── eye_open.png │ │ ├── icon-top.png │ │ ├── sizegrip.png │ │ ├── spindown.png │ │ ├── spinup.png │ │ └── up_arrow.png ├── plugins │ ├── clangcodemodel │ │ ├── test │ │ │ ├── data │ │ │ │ ├── exampleIncludeDir │ │ │ │ │ ├── file.h │ │ │ │ │ ├── mylib │ │ │ │ │ │ └── mylib.h │ │ │ │ │ └── otherFile.h │ │ │ │ ├── myheader.h │ │ │ │ ├── doxygenKeywordsCompletion.cpp │ │ │ │ ├── preprocessorKeywordsCompletion.cpp │ │ │ │ ├── includeDirectiveCompletion.cpp │ │ │ │ └── mysource.cpp │ │ │ └── .gitattributes │ │ └── README │ ├── qmldesigner │ │ ├── designercore │ │ │ ├── iwidgetplugin.pri │ │ │ └── designercore.pri │ │ ├── components │ │ │ ├── resources │ │ │ │ └── resources.pri │ │ │ └── logger │ │ │ │ └── logger.pri │ │ └── qmldesignerextension │ │ │ └── colortool │ │ │ └── colortool.pri │ ├── autotest │ │ ├── unit_test │ │ │ ├── plain │ │ │ │ └── plain.pro │ │ │ ├── mixed_atp │ │ │ │ ├── tests │ │ │ │ │ ├── tests.pro │ │ │ │ │ └── auto │ │ │ │ │ │ ├── quickauto │ │ │ │ │ │ └── main.cpp │ │ │ │ │ │ └── quickauto2 │ │ │ │ │ │ └── main.cpp │ │ │ │ ├── mixed_atp.pro │ │ │ │ └── src │ │ │ │ │ └── src.pro │ │ │ └── simple_gt │ │ │ │ └── simple_gt.pro │ │ └── images │ │ │ ├── class.png │ │ │ ├── data.png │ │ │ ├── debug.png │ │ │ ├── fail.png │ │ │ ├── fatal.png │ │ │ ├── func.png │ │ │ ├── pass.png │ │ │ ├── skip.png │ │ │ ├── sort.png │ │ │ ├── warn.png │ │ │ ├── xfail.png │ │ │ ├── xpass.png │ │ │ ├── autotest.png │ │ │ ├── collapse.png │ │ │ ├── expand.png │ │ │ ├── leafsort.png │ │ │ ├── sort@2x.png │ │ │ ├── benchmark.png │ │ │ ├── expand@2x.png │ │ │ ├── collapse@2x.png │ │ │ └── leafsort@2x.png │ ├── clangstaticanalyzer │ │ └── unit-tests │ │ │ └── simple │ │ │ ├── simple.pro │ │ │ ├── main.cpp │ │ │ └── simple.qbs │ ├── debugger │ │ ├── lldb │ │ │ └── lldb.pri │ │ └── images │ │ │ ├── mode_debug.png │ │ │ ├── qml │ │ │ └── select.png │ │ │ ├── tracepoint.png │ │ │ ├── watchpoint.png │ │ │ ├── breakpoint_16.png │ │ │ ├── breakpoint_24.png │ │ │ ├── location_16.png │ │ │ ├── location_24.png │ │ │ └── mode_debug@2x.png │ ├── help │ │ └── images │ │ │ ├── book.png │ │ │ ├── find.png │ │ │ ├── home.png │ │ │ ├── bookmark.png │ │ │ ├── mode_help.png │ │ │ ├── mac │ │ │ ├── addtab.png │ │ │ └── closetab.png │ │ │ ├── mode_help@2x.png │ │ │ ├── win │ │ │ ├── addtab.png │ │ │ └── closetab.png │ │ │ ├── category_help.png │ │ │ ├── mode_help_mask.png │ │ │ └── mode_help_mask@2x.png │ ├── ios │ │ └── images │ │ │ ├── QtIos.png │ │ │ └── iossettings.png │ ├── todo │ │ └── images │ │ │ └── todo.png │ ├── git │ │ └── images │ │ │ └── arrowup.png │ ├── macros │ │ └── images │ │ │ └── macro.png │ ├── vcsbase │ │ └── images │ │ │ ├── diff.png │ │ │ ├── submit.png │ │ │ └── category_vcs.png │ ├── coreplugin │ │ ├── images │ │ │ ├── dir.png │ │ │ ├── close.png │ │ │ ├── error.png │ │ │ ├── help.png │ │ │ ├── info.png │ │ │ ├── locked.png │ │ │ ├── minus.png │ │ │ ├── next.png │ │ │ ├── plus.png │ │ │ ├── prev.png │ │ │ ├── redo.png │ │ │ ├── reset.png │ │ │ ├── undo.png │ │ │ ├── zoom.png │ │ │ ├── Desktop.png │ │ │ ├── arrowup.png │ │ │ ├── close@2x.png │ │ │ ├── editcopy.png │ │ │ ├── editcut.png │ │ │ ├── empty14.png │ │ │ ├── error@2x.png │ │ │ ├── filenew.png │ │ │ ├── fileopen.png │ │ │ ├── filesave.png │ │ │ ├── info@2x.png │ │ │ ├── linkicon.png │ │ │ ├── minus@2x.png │ │ │ ├── next@2x.png │ │ │ ├── plus@2x.png │ │ │ ├── prev@2x.png │ │ │ ├── replace.png │ │ │ ├── unlocked.png │ │ │ ├── warning.png │ │ │ ├── zoom@2x.png │ │ │ ├── arrowdown.png │ │ │ ├── arrowup@2x.png │ │ │ ├── editclear.png │ │ │ ├── editpaste.png │ │ │ ├── extension.png │ │ │ ├── filtericon.png │ │ │ ├── inputfield.png │ │ │ ├── linkicon@2x.png │ │ │ ├── locked@2x.png │ │ │ ├── magnifier.png │ │ │ ├── mode_Design.png │ │ │ ├── mode_Edit.png │ │ │ ├── progressbar.png │ │ │ ├── pushbutton.png │ │ │ ├── reload_gray.png │ │ │ ├── sidebaricon.png │ │ │ ├── statusbar.png │ │ │ ├── unknownfile.png │ │ │ ├── unlocked@2x.png │ │ │ ├── warning@2x.png │ │ │ └── warningfill.png │ │ └── find │ │ │ └── images │ │ │ ├── expand.png │ │ │ └── regexp.png │ ├── cppeditor │ │ └── images │ │ │ ├── qt_c.png │ │ │ ├── qt_h.png │ │ │ ├── qt_cpp.png │ │ │ ├── dark_qt_c.png │ │ │ ├── dark_qt_h.png │ │ │ └── dark_qt_cpp.png │ ├── designer │ │ └── images │ │ │ └── qt_ui.png │ ├── glsleditor │ │ └── images │ │ │ ├── var.png │ │ │ ├── const.png │ │ │ ├── func.png │ │ │ ├── other.png │ │ │ ├── type.png │ │ │ ├── glslfile.png │ │ │ ├── keyword.png │ │ │ ├── uniform.png │ │ │ ├── varying.png │ │ │ └── attribute.png │ ├── qnx │ │ └── images │ │ │ └── qnx-target.png │ ├── qtsupport │ │ └── images │ │ │ ├── qml.png │ │ │ ├── forms.png │ │ │ ├── qt_qrc.png │ │ │ ├── dark_qml.png │ │ │ ├── dark_forms.png │ │ │ ├── dark_qt_qrc.png │ │ │ └── qt_project.png │ ├── android │ │ └── images │ │ │ ├── QtAndroid.png │ │ │ └── download.png │ ├── diffeditor │ │ └── images │ │ │ ├── topbar.png │ │ │ ├── topbar@2x.png │ │ │ └── unifieddiff.png │ ├── modeleditor │ │ └── resources │ │ │ └── up.png │ ├── qmljstools │ │ └── images │ │ │ ├── expand.png │ │ │ ├── prompt.png │ │ │ └── collapse.png │ ├── qmlprofiler │ │ └── qml │ │ │ ├── recordOn.png │ │ │ └── recordOff.png │ ├── bookmarks │ │ └── images │ │ │ └── bookmark.png │ ├── imageviewer │ │ └── images │ │ │ ├── outline.png │ │ │ ├── background.png │ │ │ └── play-small.png │ ├── projectexplorer │ │ └── images │ │ │ ├── run.png │ │ │ ├── build.png │ │ │ ├── clean.png │ │ │ ├── run@2x.png │ │ │ └── window.png │ ├── qmljseditor │ │ └── images │ │ │ └── qmlfile.png │ ├── texteditor │ │ └── images │ │ │ └── snippet.png │ ├── baremetal │ │ └── images │ │ │ └── QtBareMetal.png │ ├── beautifier │ │ └── images │ │ │ └── beautifier.png │ ├── cpptools │ │ └── images │ │ │ └── category_cpp.png │ ├── resourceeditor │ │ └── images │ │ │ └── qt_qrc.png │ ├── valgrind │ │ └── images │ │ │ └── eye_crossed.png │ └── welcome │ │ └── images │ │ ├── mode_edit_mask.png │ │ └── mode_welcome.png ├── tools │ └── 3rdparty │ │ ├── iossim │ │ └── version.h │ │ ├── iossim_1_8_2 │ │ └── version.h │ │ └── 3rdparty.pro ├── shared │ ├── json │ │ └── json.pri │ ├── proparser │ │ └── images │ │ │ ├── set.png │ │ │ ├── other.png │ │ │ ├── scope.png │ │ │ ├── value.png │ │ │ ├── append.png │ │ │ ├── profile.png │ │ │ └── remove.png │ └── modeltest │ │ └── modeltest.pri └── app │ ├── qtcreator.ico │ └── winicons │ ├── c.ico │ ├── h.ico │ ├── c128.png │ ├── c16.png │ ├── c32.png │ ├── c48.png │ ├── c64.png │ ├── cpp.ico │ ├── h128.png │ ├── h16.png │ ├── h32.png │ ├── h64.png │ ├── pri.ico │ ├── pro.ico │ ├── qml.ico │ ├── ui.ico │ ├── ui16.png │ ├── ui32.png │ ├── ui48.png │ ├── ui64.png │ ├── cpp128.png │ ├── cpp16.png │ ├── cpp32.png │ ├── cpp48.png │ ├── cpp64.png │ ├── pri128.png │ ├── pri16.png │ ├── pri32.png │ ├── pri48.png │ ├── pri64.png │ ├── pro128.png │ ├── pro16.png │ ├── pro32.png │ ├── pro48.png │ ├── pro64.png │ ├── qml128.png │ ├── qml16.png │ ├── qml32.png │ ├── qml48.png │ ├── qml64.png │ └── ui128.png ├── dist └── installer │ ├── mac │ ├── ios_qt.conf │ └── qt.conf │ └── ifw │ └── config │ ├── logo.png │ ├── background.png │ └── watermark.png ├── doc ├── images │ ├── ok.png │ ├── numbers │ │ ├── 01.png │ │ ├── 02.png │ │ ├── 03.png │ │ ├── 04.png │ │ ├── 05.png │ │ ├── 06.png │ │ ├── 07.png │ │ ├── 08.png │ │ ├── 09.png │ │ └── 10.png │ ├── analyzer-issues.png │ ├── completion │ │ ├── enum.png │ │ ├── func.png │ │ ├── slot.png │ │ ├── var.png │ │ ├── class.png │ │ ├── macro.png │ │ ├── signal.png │ │ ├── element.png │ │ ├── func_priv.png │ │ ├── func_prot.png │ │ ├── keyword.png │ │ ├── namespace.png │ │ ├── slot_priv.png │ │ ├── slot_prot.png │ │ ├── snippet.png │ │ ├── var_priv.png │ │ ├── var_prot.png │ │ ├── enumerator.png │ │ └── qmlsnippet.png │ ├── creator-gs-01.png │ ├── creator-gs-02.png │ ├── creator-gs-03.png │ ├── creator-gs-04.png │ ├── creator_coding.png │ ├── creator_testing.png │ ├── qml-export-gimp.png │ ├── qml-toolbar-pin.png │ ├── qml-translate.png │ ├── qtcreator-back.png │ ├── qtcreator-clear.png │ ├── qtcreator-kits.png │ ├── qtcreator-menu.png │ ├── qtcreator-next.png │ ├── qtcreator-run.png │ ├── beautifier_editor.png │ ├── qml-observer-view.png │ ├── qml-toolbar-image.png │ ├── qml-toolbar-text.png │ ├── qtcreator-dialog.png │ ├── qtcreator-expand.png │ ├── qtcreator-filter.png │ ├── qtcreator-forward.png │ ├── qtcreator-gerrit.png │ ├── qtcreator-locator.png │ ├── qtcreator-sidebar.png │ ├── qtcreator-tooltip.png │ ├── qtcreator-vcs-log.png │ ├── qtcreator-watcher.png │ ├── beautifier_options.png │ ├── cpu-usage-analyzer.png │ ├── creator-diff-editor.png │ ├── creator-qbs-project.png │ ├── creator-winrt-kits.png │ ├── creator_advanceduse.png │ ├── creator_gettinghelp.png │ ├── creator_publishing.png │ ├── qml-export-photoshop.png │ ├── qml-script-console.png │ ├── qmldesigner-anchors.png │ ├── qmldesigner-bindings.png │ ├── qmldesigner-button.png │ ├── qmldesigner-states.png │ ├── qmldesigner-tutorial.png │ ├── qtcreator-autotests.png │ ├── qtcreator-breakdown.png │ ├── qtcreator-edit-mode.png │ ├── qtcreator-formedit.png │ ├── qtcreator-menu-item.png │ ├── qtcreator-mime-types.png │ ├── qtcreator-movestep.png │ ├── qtcreator-previous.png │ ├── qtcreator-splitbar.png │ ├── qtcreator-todo-pane.png │ ├── qtcreator-toolchains.png │ ├── qtcreator-vcs-commit.png │ ├── qtcreator-vcs-diff.png │ ├── qtcreator-vcs-pane.png │ ├── creator-baremetal-kits.png │ ├── creator-qbs-build-app.png │ ├── creator_gettingstarted.png │ ├── qml-profiler-settings.png │ ├── qml-toolbar-animation.png │ ├── qml-toolbar-indicator.png │ ├── qml-toolbar-rectangle.png │ ├── qmldesigner-center-in.png │ ├── qmldesigner-extensions.png │ ├── qmldesigner-navigator.png │ ├── qmldesigner-reset-view.png │ ├── qtcreator-add-resource.png │ ├── qtcreator-analyze-menu.png │ ├── qtcreator-build-issues.png │ ├── qtcreator-build-steps.png │ ├── qtcreator-clean-steps.png │ ├── qtcreator-compile-pane.png │ ├── qtcreator-context-menu.png │ ├── qtcreator-debug-stack.png │ ├── qtcreator-font-colors.png │ ├── qtcreator-help-filters.png │ ├── qtcreator-help-search.png │ ├── qtcreator-image-viewer.png │ ├── qtcreator-indentation.png │ ├── qtcreator-ios-add-kit.png │ ├── qtcreator-kit-selector.png │ ├── qtcreator-locator-open.png │ ├── qtcreator-modeleditor.png │ ├── qtcreator-options-qbs.png │ ├── qtcreator-output-pane.png │ ├── qtcreator-pin-tooltip.png │ ├── qtcreator-project-kits.png │ ├── qtcreator-projectpane.png │ ├── qtcreator-search-pane.png │ ├── qtcreator-sidebar-menu.png │ ├── qtcreator-split-button.png │ ├── qtcreator-syntaxerror.png │ ├── qtcreator-togglebutton.png │ ├── qtcreator-tooltip-long.png │ ├── qtquick-example-stack.png │ ├── creator-baremetal-device.png │ ├── creator-compilers-custom.png │ ├── creator-qbs-build-clean.png │ ├── creator_buildingrunning.png │ ├── creator_managingprojects.png │ ├── qml-inspector-app-on-top.png │ ├── qml-observer-context-menu.png │ ├── qml-toolbar-image-preview.png │ ├── qmldesigner-boolean-false.png │ ├── qmldesigner-boolean-true.png │ ├── qmldesigner-borderimage.png │ ├── qmldesigner-breadcrumbs.png │ ├── qmldesigner-connections.png │ ├── qmldesigner-dynamicprops.png │ ├── qmldesigner-element-size.png │ ├── qmldesigner-export-item.png │ ├── qmldesigner-new-project.png │ ├── qmldesigner-preview-size.png │ ├── qmldesigner-run-settings.png │ ├── qmldesigner-screen-design.png │ ├── qmldesigner-snap-margins.png │ ├── qmldesigner-transitions.png │ ├── qmldesigner-visual-editor.png │ ├── qtcreator-add-breakpoint.png │ ├── qtcreator-add-online-doc.png │ ├── qtcreator-analyzer-button.png │ ├── qtcreator-cmakeexecutable.png │ ├── qtcreator-codecompletion.png │ ├── qtcreator-custom-parser.png │ ├── qtcreator-debugger-views.png │ ├── qtcreator-disable-steps.png │ ├── qtcreator-editor-settings.png │ ├── qtcreator-error-message.png │ ├── qtcreator-external-tools.png │ ├── qtcreator-fakevim-options.png │ ├── qtcreator-gerrit-options.png │ ├── qtcreator-locator-magnify.png │ ├── qtcreator-mode-selector.png │ ├── qtcreator-navigate-popup.png │ ├── qtcreator-new-opengl-file.png │ ├── qtcreator-pprunsettings.png │ ├── qtcreator-qnx-deployment.png │ ├── qtcreator-run-environment.png │ ├── qtcreator-search-results.png │ ├── qtcreator-searchresults.png │ ├── qtcreator-semanticerror.png │ ├── qtcreator-session-manager.png │ ├── qtcreator-spliteditorview.png │ ├── qtcreator-textfinder-ui.png │ ├── qtcreator-togglebookmark.png │ ├── qtcreator-vcs-gitbranch.png │ ├── qtcreator-welcome-session.png │ ├── creator-git-commit-actions.png │ ├── creator-toggle-progress-bar.png │ ├── qml-inspector-select-button.png │ ├── qml-link-debugging-library.png │ ├── qmldesigner-anchor-buttons.png │ ├── qmldesigner-code-completion.png │ ├── qmldesigner-inline-editing.png │ ├── qmldesigner-pathview-editor.png │ ├── qmldesigner-qml-components.png │ ├── qmldesigner-run-custom-exe.png │ ├── qmldesigner-set-expression.png │ ├── qmldesigner-show-hide-icon.png │ ├── qmldesigner-uiforms-example.png │ ├── qtcreator-analyzer-bindings.png │ ├── qtcreator-analyzer-settings.png │ ├── qtcreator-blockhighlighting.png │ ├── qtcreator-build-environment.png │ ├── qtcreator-class-info-qt-gui.png │ ├── qtcreator-code-style-braces.png │ ├── qtcreator-code-style-switch.png │ ├── qtcreator-cpp-class-wizard.png │ ├── qtcreator-debug-breakpoints.png │ ├── qtcreator-debug-button-stop.png │ ├── qtcreator-help-add-bookmark.png │ ├── qtcreator-iso-icon-browser.png │ ├── qtcreator-locator-customize.png │ ├── qtcreator-open-project-kits.png │ ├── qtcreator-options-android1.png │ ├── qtcreator-options-cpp-files.png │ ├── qtcreator-qnx-run-settings.png │ ├── qtcreator-qt-quick-editors.png │ ├── qtcreator-refactoring-find.png │ ├── qtcreator-regenerate-index.png │ ├── qtcreator-show-subprojects.png │ ├── qtcreator-snippet-modifiers.png │ ├── qtcreator-synchronizefocus.png │ ├── qtcreator-texfinder-filter.png │ ├── qtcreator-variables-button.png │ ├── qtquick-debugging-settings.png │ ├── creator_designinguserinterface.png │ ├── qmldesigner-anchor-fill-screen.png │ ├── qmldesigner-boolean-false-blue.png │ ├── qmldesigner-boolean-true-blue.png │ ├── qmldesigner-element-properties.png │ ├── qmldesigner-export-item-button.png │ ├── qmldesigner-navigator-arrows.png │ ├── qmldesigner-solid-color-button.png │ ├── qmldesigner-text-property-tr.png │ ├── qmldesigner-transparent-button.png │ ├── qmldesigner-tutorial-user-icon.png │ ├── qt-creator-debugging-helpers.png │ ├── qtcreator-add-library-wizard.png │ ├── qtcreator-add-resource-wizard.png │ ├── qtcreator-add-resource-wizard2.png │ ├── qtcreator-add-resource-wizard3.png │ ├── qtcreator-analyze-start-button.png │ ├── qtcreator-android-certificate.png │ ├── qtcreator-application-output.png │ ├── qtcreator-autotools-buildrun.png │ ├── qtcreator-build-dependencies.png │ ├── qtcreator-build-steps-custom.png │ ├── qtcreator-cmake-build-settings.png │ ├── qtcreator-cmake-import-wizard1.png │ ├── qtcreator-cmake-import-wizard2.png │ ├── qtcreator-code-pasting-options.png │ ├── qtcreator-code-style-alignment.png │ ├── qtcreator-code-style-content.png │ ├── qtcreator-debugging-continue.png │ ├── qtcreator-edit-code-snippets.png │ ├── qtcreator-generic-highlighter.png │ ├── qtcreator-keyboard-shortcuts.png │ ├── qtcreator-locals-expressions.png │ ├── qtcreator-manage-definitions.png │ ├── qtcreator-modeleditor-classes.png │ ├── qtcreator-modeleditor-packages.png │ ├── qtcreator-pointers-references.png │ ├── qtcreator-qt4-qtversions-add.png │ ├── qtcreator-refactoring-replace.png │ ├── qtcreator-remove-split-button.png │ ├── qtcreator-run-selected-tests.png │ ├── qtcreator-run-settings-linux.png │ ├── qtcreator-search-allprojects.png │ ├── qtcreator-search-cpp-symbols.png │ ├── qtcreator-setting-breakpoint1.png │ ├── qtcreator-setting-breakpoint2.png │ ├── qtcreator-textfinder-contents.png │ ├── qtcreator-valgrind-callgrind.png │ ├── qtquick-example-qml-inspector.png │ ├── qtquick-example-script-console.png │ ├── creator_android_tutorial_ex_app.png │ ├── qmldesigner-borderimage-bindings.png │ ├── qmldesigner-tutorial-design-mode.png │ ├── qmldesigner-tutorial-topleftrect.png │ ├── qmldesigner-uiforms-reset-height.png │ ├── qtcreator-android-select-devices.png │ ├── qtcreator-clang-static-analyzer.png │ ├── qtcreator-context-sensitive-help.png │ ├── qtcreator-custom-project-wizards.png │ ├── qtcreator-debug-button-step-into.png │ ├── qtcreator-debug-button-step-out.png │ ├── qtcreator-debug-button-step-over.png │ ├── qtcreator-editortoolbar-symbols.png │ ├── qtcreator-gs-build-example-open.png │ └── qtcreator-help-add-bookmark-dlg.png ├── runframework.dia ├── api │ └── images │ │ ├── riot.png │ │ ├── variablechooser.png │ │ ├── firstplugin-wizard.png │ │ ├── firstplugin-menuitem.png │ │ ├── firstplugin-summary.png │ │ ├── firstplugin-nameandpath.png │ │ ├── firstplugin-pluginsetup.png │ │ ├── firstplugin-runsettings.png │ │ └── firstplugin-kitselection.png ├── config │ └── images │ │ └── commercial.png └── examples │ └── transitions │ └── qt-logo.png └── .gitmodules /tests/qt4projectmanager/test1/a.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qt4projectmanager/test1/a.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auto/json/test2.json: -------------------------------------------------------------------------------- 1 | { "foo": ["ab"] } 2 | -------------------------------------------------------------------------------- /tests/manual/filesystemview/symbolic_links/11111: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/manual/filesystemview/symbolic_links/22222: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HACKING: -------------------------------------------------------------------------------- 1 | See the file doc/api/coding-style.qdoc 2 | -------------------------------------------------------------------------------- /share/qtcreator/templates/wizards/files/text/file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/cxx11/data/noExcept.1.errors.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/manual/qt4projectmanager/projecttree/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/manual/qt4projectmanager/projecttree/main.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/manual/qt4projectmanager/projecttree/main.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/manual/qt4projectmanager/projecttree/widget.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/manual/qt4projectmanager/projecttree/widget.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/manual/qt4projectmanager/projecttree/widget.ui: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/unittest/data/highlightinginformations.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /share/qtcreator/templates/wizards/files/scratch/file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/cxx11/data/staticAssert.1.errors.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auto/qml/qmlprojectmanager/fileformat/data/file1.qml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auto/qml/qmlprojectmanager/fileformat/data/file1.qrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auto/qml/qmlprojectmanager/fileformat/data/file2.qml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auto/qml/qmlprojectmanager/fileformat/data/image.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auto/qml/qmlprojectmanager/fileformat/data/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/manual/qt4projectmanager/projecttree/headers/bar.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/manual/qt4projectmanager/projecttree/headers/foo.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/manual/qt4projectmanager/projecttree/resource.qrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/manual/qt4projectmanager/projecttree/sources/bar.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/manual/qt4projectmanager/projecttree/sources/foo.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/manual/qt4projectmanager/projecttree/sub2/a/bar.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/manual/qt4projectmanager/projecttree/sub2/a/bar.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/manual/qt4projectmanager/projecttree/subpath/a/foo.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/manual/qt4projectmanager/projecttree/subpath/b/foo.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/manual/qt4projectmanager/projecttree_data1/a/foo.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/manual/qt4projectmanager/projecttree_data1/a/foo.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/manual/qt4projectmanager/projecttree_data1/b/foo.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/manual/qt4projectmanager/projecttree_data1/b/foo.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/manual/qt4projectmanager/projecttree_data2/a/bar.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/manual/qt4projectmanager/projecttree_data2/a/bar.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/manual/search/search.pro: -------------------------------------------------------------------------------- 1 | DISTFILES = latin1.txt 2 | -------------------------------------------------------------------------------- /share/qtcreator/templates/wizards/files/qrc/file.qrc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /share/qtcreator/templates/wizards/projects/qmake/empty/file.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libs/ssh/ssh_dependencies.pri: -------------------------------------------------------------------------------- 1 | QTC_LIB_NAME = QtcSsh 2 | -------------------------------------------------------------------------------- /src/libs/utils/utils_dependencies.pri: -------------------------------------------------------------------------------- 1 | QTC_LIB_NAME = Utils 2 | -------------------------------------------------------------------------------- /src/plugins/clangcodemodel/test/data/exampleIncludeDir/file.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/cxx11/data/braceInitializers.1.errors.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/cxx11/data/inlineNamespace.1.errors.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/cxx11/data/trailingtypespec.1.errors.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/locators/testdata_basic/file.cpp: -------------------------------------------------------------------------------- 1 | // Copyright header 2 | -------------------------------------------------------------------------------- /tests/locators/testdata_basic/main.cpp: -------------------------------------------------------------------------------- 1 | // Copyright header 2 | -------------------------------------------------------------------------------- /tests/manual/qt4projectmanager/projecttree/sub2/a/sub/bar2.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/manual/qt4projectmanager/projecttree/sub2/a/sub/bar2.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/manual/qt4projectmanager/projecttree/subpath/a/foo.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/manual/qt4projectmanager/projecttree/subpath/b/foo.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/manual/qt4projectmanager/projecttree/uniquesub/path/bar.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/manual/qt4projectmanager/projecttree_data2/a/sub/bar2.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/manual/qt4projectmanager/projecttree_data2/a/sub/bar2.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/manual/qt4projectmanager/projecttree_data3/path/bar.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/manual/qt4projectmanager/projecttree_data3/path/bar.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/system/suite_APTW/envvars: -------------------------------------------------------------------------------- 1 | QT_PLATFORM_PLUGIN=nonesuch 2 | -------------------------------------------------------------------------------- /tests/system/suite_CCOM/envvars: -------------------------------------------------------------------------------- 1 | QT_PLATFORM_PLUGIN=nonesuch 2 | -------------------------------------------------------------------------------- /tests/system/suite_CSUP/envvars: -------------------------------------------------------------------------------- 1 | QT_PLATFORM_PLUGIN=nonesuch 2 | -------------------------------------------------------------------------------- /tests/system/suite_HELP/envvars: -------------------------------------------------------------------------------- 1 | QT_PLATFORM_PLUGIN=nonesuch 2 | -------------------------------------------------------------------------------- /tests/system/suite_QMLS/envvars: -------------------------------------------------------------------------------- 1 | QT_PLATFORM_PLUGIN=nonesuch 2 | -------------------------------------------------------------------------------- /tests/system/suite_SCOM/envvars: -------------------------------------------------------------------------------- 1 | QT_PLATFORM_PLUGIN=nonesuch 2 | -------------------------------------------------------------------------------- /tests/system/suite_WELP/envvars: -------------------------------------------------------------------------------- 1 | QT_PLATFORM_PLUGIN=nonesuch 2 | -------------------------------------------------------------------------------- /share/qtcreator/templates/wizards/codesnippet/main.cpp: -------------------------------------------------------------------------------- 1 | %CODE% 2 | -------------------------------------------------------------------------------- /src/plugins/clangcodemodel/test/data/exampleIncludeDir/mylib/mylib.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/clangcodemodel/test/data/exampleIncludeDir/otherFile.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auto/json/bom.json: -------------------------------------------------------------------------------- 1 | { 2 | "info-version": "1.0" 3 | } 4 | -------------------------------------------------------------------------------- /tests/auto/qml/qmlprojectmanager/fileformat/data/subdir/file3.qml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cppmodelmanager/testdata_refresh2/source2.cpp: -------------------------------------------------------------------------------- 1 | int f() {} 2 | -------------------------------------------------------------------------------- /tests/manual/debugger/qquick1/myplugin/qmldir: -------------------------------------------------------------------------------- 1 | plugin myplugin 2 | -------------------------------------------------------------------------------- /tests/manual/qt4projectmanager/projecttree/uniquesub/path/bar.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/system/suite_debugger/envvars: -------------------------------------------------------------------------------- 1 | QT_PLATFORM_PLUGIN=nonesuch 2 | -------------------------------------------------------------------------------- /tests/system/suite_editors/envvars: -------------------------------------------------------------------------------- 1 | QT_PLATFORM_PLUGIN=nonesuch 2 | -------------------------------------------------------------------------------- /tests/system/suite_general/envvars: -------------------------------------------------------------------------------- 1 | QT_PLATFORM_PLUGIN=nonesuch 2 | -------------------------------------------------------------------------------- /tests/system/suite_qtquick/envvars: -------------------------------------------------------------------------------- 1 | QT_PLATFORM_PLUGIN=nonesuch 2 | -------------------------------------------------------------------------------- /dist/installer/mac/ios_qt.conf: -------------------------------------------------------------------------------- 1 | [Paths] 2 | Plugins = ../../PlugIns 3 | -------------------------------------------------------------------------------- /src/tools/3rdparty/iossim/version.h: -------------------------------------------------------------------------------- 1 | #define IOS_SIM_VERSION "2.0.1" 2 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/cxx11/data/threadLocal.1.cpp: -------------------------------------------------------------------------------- 1 | thread_local int i; 2 | -------------------------------------------------------------------------------- /tests/cppmodelmanager/testdata/frameworks/My.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /tests/cppmodelmanager/testdata_refresh2/source.cpp: -------------------------------------------------------------------------------- 1 | int someGlobal; 2 | -------------------------------------------------------------------------------- /tests/genericprojectmanager/testdata_mixedproject1/mixedproject1.includes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/genericprojectmanager/testdata_mixedproject2/mixedproject2.includes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/genericprojectmanager/testdata_simpleproject/simpleproject.includes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/locators/testdata_basic/subdir/main.cpp: -------------------------------------------------------------------------------- 1 | // Copyright header 2 | -------------------------------------------------------------------------------- /tests/manual/filesystemview/symbolic_links/symbolic_link_one.cpp: -------------------------------------------------------------------------------- 1 | 11111 -------------------------------------------------------------------------------- /tests/manual/filesystemview/symbolic_links/symbolic_link_two.cpp: -------------------------------------------------------------------------------- 1 | 22222 -------------------------------------------------------------------------------- /tests/manual/qt4projectmanager/projecttree/prifile/headers/prifileinc.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/manual/qt4projectmanager/projecttree/prifile/sources/prifileinc.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE=subdirs 2 | SUBDIRS += auto manual tools 3 | -------------------------------------------------------------------------------- /src/plugins/clangcodemodel/test/.gitattributes: -------------------------------------------------------------------------------- 1 | *.cpp eol=lf 2 | *.h eol=lf 3 | -------------------------------------------------------------------------------- /src/plugins/clangcodemodel/test/data/myheader.h: -------------------------------------------------------------------------------- 1 | int globalFromHeader; 2 | 3 | -------------------------------------------------------------------------------- /src/tools/3rdparty/iossim_1_8_2/version.h: -------------------------------------------------------------------------------- 1 | #define IOS_SIM_VERSION "1.8.2m" 2 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/cxx11/data/lambda.1.cpp: -------------------------------------------------------------------------------- 1 | Foo foo([&](int a) { ++a; }); 2 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/preprocessor/data/include-data/global/QDir: -------------------------------------------------------------------------------- 1 | // comment 2 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/preprocessor/data/include-data/local/a.h: -------------------------------------------------------------------------------- 1 | // comment 2 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/preprocessor/data/include-data/local/b.h: -------------------------------------------------------------------------------- 1 | // comment 2 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/preprocessor/data/include-data/local/stuff: -------------------------------------------------------------------------------- 1 | // comment 2 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/preprocessor/data/include-data/local/y.h: -------------------------------------------------------------------------------- 1 | // comment 2 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/preprocessor/data/include-data/local/z.h: -------------------------------------------------------------------------------- 1 | // comment 2 | -------------------------------------------------------------------------------- /tests/system/suite_tools/envvars: -------------------------------------------------------------------------------- 1 | QT_PLATFORM_PLUGIN=nonesuch 2 | LC_ALL=C 3 | -------------------------------------------------------------------------------- /tests/tools/tools.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE=subdirs 2 | 3 | SUBDIRS= \ 4 | qml-ast2dot 5 | -------------------------------------------------------------------------------- /src/libs/aggregation/aggregation_dependencies.pri: -------------------------------------------------------------------------------- 1 | QTC_LIB_NAME = Aggregation 2 | -------------------------------------------------------------------------------- /src/shared/json/json.pri: -------------------------------------------------------------------------------- 1 | HEADERS += $$PWD/json.h 2 | SOURCES += $$PWD/json.cpp 3 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/preprocessor/data/include-data/global/QDebug: -------------------------------------------------------------------------------- 1 | // comment 2 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/preprocessor/data/include-data/global/QString: -------------------------------------------------------------------------------- 1 | // comment 2 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/preprocessor/data/include-data/global/except: -------------------------------------------------------------------------------- 1 | // comment 2 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/preprocessor/data/include-data/global/global.h: -------------------------------------------------------------------------------- 1 | // comment 2 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/preprocessor/data/include-data/global/iostream: -------------------------------------------------------------------------------- 1 | // comment 2 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/preprocessor/data/include-data/global/string: -------------------------------------------------------------------------------- 1 | // comment 2 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/preprocessor/data/include-data/local/file.h: -------------------------------------------------------------------------------- 1 | // comment 2 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/preprocessor/data/include-data/local/header.h: -------------------------------------------------------------------------------- 1 | // comment 2 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/preprocessor/data/include-data/local/lib/file.h: -------------------------------------------------------------------------------- 1 | // comment 2 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/preprocessor/data/include-data/local/prefixa.h: -------------------------------------------------------------------------------- 1 | // comment 2 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/preprocessor/data/include-data/local/prefixb.h: -------------------------------------------------------------------------------- 1 | // comment 2 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/preprocessor/data/include-data/local/prefixc.h: -------------------------------------------------------------------------------- 1 | // comment 2 | -------------------------------------------------------------------------------- /tests/cppmodelmanager/testdata/frameworks/My.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/A/Headers -------------------------------------------------------------------------------- /tests/genericprojectmanager/testdata_simpleproject/simpleproject.files: -------------------------------------------------------------------------------- 1 | main.cpp 2 | -------------------------------------------------------------------------------- /tests/unit/unittest/data/diagnostic_diagnosticset_header.cpp: -------------------------------------------------------------------------------- 1 | void f() {} 2 | 3 | -------------------------------------------------------------------------------- /doc/images/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/ok.png -------------------------------------------------------------------------------- /share/qtcreator/templates/wizards/files/cppsource/file.cpp: -------------------------------------------------------------------------------- 1 | %{Cpp:LicenseTemplate}\ 2 | -------------------------------------------------------------------------------- /share/qtcreator/templates/wizards/qtquick1-extension/qmldir: -------------------------------------------------------------------------------- 1 | plugin %ProjectName% 2 | -------------------------------------------------------------------------------- /src/plugins/qmldesigner/designercore/iwidgetplugin.pri: -------------------------------------------------------------------------------- 1 | INCLUDEPATH += $$PWD/include 2 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/preprocessor/data/include-data/global/lib/file.h: -------------------------------------------------------------------------------- 1 | // comment 2 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/preprocessor/data/include-data/global/utils/file.h: -------------------------------------------------------------------------------- 1 | // comment 2 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/preprocessor/data/include-data/local/fileother.h: -------------------------------------------------------------------------------- 1 | // comment 2 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/preprocessor/data/include-data/local/lib/fileother.h: -------------------------------------------------------------------------------- 1 | // comment 2 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/preprocessor/data/include-data/local/otherlib/file.h: -------------------------------------------------------------------------------- 1 | // comment 2 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/preprocessor/data/include-data/local/utils/utils.h: -------------------------------------------------------------------------------- 1 | // comment 2 | -------------------------------------------------------------------------------- /tests/cppmodelmanager/testdata/frameworks/My.framework/Frameworks: -------------------------------------------------------------------------------- 1 | Versions/A/Frameworks -------------------------------------------------------------------------------- /tests/cppmodelmanager/testdata_defines/pch1.h: -------------------------------------------------------------------------------- 1 | #define SUB1 2 | class ClassInPch1{}; 3 | -------------------------------------------------------------------------------- /tests/cppmodelmanager/testdata_defines/pch2.h: -------------------------------------------------------------------------------- 1 | #define SUB2 2 | class ClassInPch2{}; 3 | -------------------------------------------------------------------------------- /tests/genericprojectmanager/testdata_mixedproject1/main.cpp: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /tests/genericprojectmanager/testdata_mixedproject1/mixedproject1.creator: -------------------------------------------------------------------------------- 1 | [General] 2 | -------------------------------------------------------------------------------- /tests/genericprojectmanager/testdata_mixedproject2/mixedproject2.creator: -------------------------------------------------------------------------------- 1 | [General] 2 | -------------------------------------------------------------------------------- /tests/genericprojectmanager/testdata_simpleproject/main.cpp: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /tests/genericprojectmanager/testdata_simpleproject/simpleproject.creator: -------------------------------------------------------------------------------- 1 | [General] 2 | -------------------------------------------------------------------------------- /tests/manual/debugger/qquick2/myplugin/qmldir: -------------------------------------------------------------------------------- 1 | module myplugin 2 | plugin myplugin 3 | -------------------------------------------------------------------------------- /tests/manual/utils/utils.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | 3 | SUBDIRS = tcpportsgatherer 4 | -------------------------------------------------------------------------------- /tests/qt4projectmanager/test1/test1.pro: -------------------------------------------------------------------------------- 1 | SOURCES = a.cpp 2 | HEADERS = a.h 3 | 4 | 5 | -------------------------------------------------------------------------------- /tests/system/settings/mac/QtProject/QtCreator.ini: -------------------------------------------------------------------------------- 1 | [%General] 2 | OverrideLanguage=C 3 | -------------------------------------------------------------------------------- /tests/system/settings/unix/QtProject/QtCreator.ini: -------------------------------------------------------------------------------- 1 | [%General] 2 | OverrideLanguage=C 3 | -------------------------------------------------------------------------------- /tests/unit/unittest/data/complete_translationunit_parse_error.cpp: -------------------------------------------------------------------------------- 1 | NAMESPACE { 2 | 3 | -------------------------------------------------------------------------------- /doc/runframework.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/runframework.dia -------------------------------------------------------------------------------- /src/libs/3rdparty/cplusplus/ASTPatternBuilder.cpp: -------------------------------------------------------------------------------- 1 | 2 | #include "ASTPatternBuilder.h" 3 | -------------------------------------------------------------------------------- /src/libs/aggregation/examples/examples.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | 3 | SUBDIRS = text 4 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/preprocessor/data/include-data/global/lib/fileother.h: -------------------------------------------------------------------------------- 1 | // comment 2 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/preprocessor/data/include-data/global/otherlib/file.h: -------------------------------------------------------------------------------- 1 | // comment 2 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/preprocessor/data/include-data/local/.gitattributes: -------------------------------------------------------------------------------- 1 | *.cpp eol=lf 2 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/preprocessor/data/include-data/local/cyclic1.h: -------------------------------------------------------------------------------- 1 | #include "cyclic2.h" 2 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/preprocessor/data/include-data/local/cyclic2.h: -------------------------------------------------------------------------------- 1 | #include "cyclic1.h" 2 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/preprocessor/data/include-data/local/otherlib/fileother.h: -------------------------------------------------------------------------------- 1 | // comment 2 | -------------------------------------------------------------------------------- /tests/manual/shootout/shootout.pro: -------------------------------------------------------------------------------- 1 | QT += testlib 2 | 3 | SOURCES += tst_codesize.cpp 4 | -------------------------------------------------------------------------------- /tests/system/settings/windows/QtProject/QtCreator.ini: -------------------------------------------------------------------------------- 1 | [%General] 2 | OverrideLanguage=C 3 | -------------------------------------------------------------------------------- /share/qtcreator/templates/wizards/files/form/file.ui: -------------------------------------------------------------------------------- 1 | %{JS: [ %{FormContents} ].join('\n')}\ 2 | -------------------------------------------------------------------------------- /src/app/qtcreator.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/app/qtcreator.ico -------------------------------------------------------------------------------- /src/app/winicons/c.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/app/winicons/c.ico -------------------------------------------------------------------------------- /src/app/winicons/h.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/app/winicons/h.ico -------------------------------------------------------------------------------- /src/libs/extensionsystem/test/test.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | 3 | SUBDIRS = auto manual 4 | 5 | -------------------------------------------------------------------------------- /src/libs/glsl/glsl_dependencies.pri: -------------------------------------------------------------------------------- 1 | QTC_LIB_NAME = GLSL 2 | QTC_LIB_DEPENDS += \ 3 | utils 4 | -------------------------------------------------------------------------------- /src/plugins/clangcodemodel/README: -------------------------------------------------------------------------------- 1 | See ../../../doc/src/editors/creator-clang-codemodel.qdoc 2 | -------------------------------------------------------------------------------- /src/plugins/clangcodemodel/test/data/doxygenKeywordsCompletion.cpp: -------------------------------------------------------------------------------- 1 | //! \ /* COMPLETE HERE */ 2 | -------------------------------------------------------------------------------- /src/plugins/clangcodemodel/test/data/preprocessorKeywordsCompletion.cpp: -------------------------------------------------------------------------------- 1 | # /* COMPLETE HERE */ 2 | -------------------------------------------------------------------------------- /src/plugins/qmldesigner/designercore/designercore.pri: -------------------------------------------------------------------------------- 1 | INCLUDEPATH += $$PWD \ 2 | $$PWD/include -------------------------------------------------------------------------------- /tests/auto/cplusplus/ast/ast.pro: -------------------------------------------------------------------------------- 1 | include(../shared/shared.pri) 2 | SOURCES += tst_ast.cpp 3 | 4 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/preprocessor/data/include-data/global/otherlib/fileother.h: -------------------------------------------------------------------------------- 1 | // comment 2 | -------------------------------------------------------------------------------- /tests/auto/valgrind/valgrind.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | 3 | SUBDIRS += memcheck callgrind 4 | -------------------------------------------------------------------------------- /tests/manual/debugger/debugger.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE=subdirs 2 | 3 | SUBDIRS= \ 4 | gui \ 5 | simple 6 | -------------------------------------------------------------------------------- /tests/system/tools/tools.pyqtc: -------------------------------------------------------------------------------- 1 | findUnusedObjects.py 2 | objectsToTable.py 3 | toolfunctions.py 4 | -------------------------------------------------------------------------------- /tests/unit/unittest/data/diagnostic_diagnosticset.cpp: -------------------------------------------------------------------------------- 1 | int function() 2 | { 3 | 4 | } 5 | 6 | -------------------------------------------------------------------------------- /tests/unit/unittest/data/diagnostic_source_location.cpp: -------------------------------------------------------------------------------- 1 | int function() 2 | { 3 | 4 | } 5 | 6 | -------------------------------------------------------------------------------- /doc/api/images/riot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/api/images/riot.png -------------------------------------------------------------------------------- /doc/images/numbers/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/numbers/01.png -------------------------------------------------------------------------------- /doc/images/numbers/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/numbers/02.png -------------------------------------------------------------------------------- /doc/images/numbers/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/numbers/03.png -------------------------------------------------------------------------------- /doc/images/numbers/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/numbers/04.png -------------------------------------------------------------------------------- /doc/images/numbers/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/numbers/05.png -------------------------------------------------------------------------------- /doc/images/numbers/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/numbers/06.png -------------------------------------------------------------------------------- /doc/images/numbers/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/numbers/07.png -------------------------------------------------------------------------------- /doc/images/numbers/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/numbers/08.png -------------------------------------------------------------------------------- /doc/images/numbers/09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/numbers/09.png -------------------------------------------------------------------------------- /doc/images/numbers/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/numbers/10.png -------------------------------------------------------------------------------- /share/qtcreator/templates/wizards/autotest/tests.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | 3 | SUBDIRS += auto 4 | -------------------------------------------------------------------------------- /share/qtcreator/templates/wizards/files/java/source.java: -------------------------------------------------------------------------------- 1 | public class %{ClassName} { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /share/qtcreator/templates/wizards/qtquick2-extension/qmldir: -------------------------------------------------------------------------------- 1 | module %Uri% 2 | plugin %ProjectName% 3 | -------------------------------------------------------------------------------- /src/app/winicons/c128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/app/winicons/c128.png -------------------------------------------------------------------------------- /src/app/winicons/c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/app/winicons/c16.png -------------------------------------------------------------------------------- /src/app/winicons/c32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/app/winicons/c32.png -------------------------------------------------------------------------------- /src/app/winicons/c48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/app/winicons/c48.png -------------------------------------------------------------------------------- /src/app/winicons/c64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/app/winicons/c64.png -------------------------------------------------------------------------------- /src/app/winicons/cpp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/app/winicons/cpp.ico -------------------------------------------------------------------------------- /src/app/winicons/h128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/app/winicons/h128.png -------------------------------------------------------------------------------- /src/app/winicons/h16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/app/winicons/h16.png -------------------------------------------------------------------------------- /src/app/winicons/h32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/app/winicons/h32.png -------------------------------------------------------------------------------- /src/app/winicons/h64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/app/winicons/h64.png -------------------------------------------------------------------------------- /src/app/winicons/pri.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/app/winicons/pri.ico -------------------------------------------------------------------------------- /src/app/winicons/pro.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/app/winicons/pro.ico -------------------------------------------------------------------------------- /src/app/winicons/qml.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/app/winicons/qml.ico -------------------------------------------------------------------------------- /src/app/winicons/ui.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/app/winicons/ui.ico -------------------------------------------------------------------------------- /src/app/winicons/ui16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/app/winicons/ui16.png -------------------------------------------------------------------------------- /src/app/winicons/ui32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/app/winicons/ui32.png -------------------------------------------------------------------------------- /src/app/winicons/ui48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/app/winicons/ui48.png -------------------------------------------------------------------------------- /src/app/winicons/ui64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/app/winicons/ui64.png -------------------------------------------------------------------------------- /src/libs/extensionsystem/test/manual/manual.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | SUBDIRS = pluginview 3 | 4 | -------------------------------------------------------------------------------- /src/libs/qmldebug/qmldebug_dependencies.pri: -------------------------------------------------------------------------------- 1 | QTC_LIB_NAME = QmlDebug 2 | QTC_LIB_DEPENDS += utils 3 | -------------------------------------------------------------------------------- /src/plugins/clangcodemodel/test/data/includeDirectiveCompletion.cpp: -------------------------------------------------------------------------------- 1 | #include < /* COMPLETE HERE */ 2 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/lookup/lookup.pro: -------------------------------------------------------------------------------- 1 | include(../shared/shared.pri) 2 | SOURCES += tst_lookup.cpp 3 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/misc/misc.pro: -------------------------------------------------------------------------------- 1 | include(../shared/shared.pri) 2 | SOURCES += tst_misc.cpp 3 | 4 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/preprocessor/data/recursive.1.cpp: -------------------------------------------------------------------------------- 1 | #define a b 2 | #define b a 3 | 4 | b 5 | a 6 | -------------------------------------------------------------------------------- /tests/genericprojectmanager/testdata_mixedproject2/impl.c: -------------------------------------------------------------------------------- 1 | void impl() 2 | { 3 | abort(); 4 | } 5 | -------------------------------------------------------------------------------- /tests/manual/debugger/qquick1/qquick1.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | 3 | SUBDIRS += app.pro myplugin 4 | -------------------------------------------------------------------------------- /tests/manual/debugger/qquick2/qquick2.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | 3 | SUBDIRS += app.pro myplugin 4 | -------------------------------------------------------------------------------- /tests/unit/unittest/data/diagnostic_semicolon_fixit.cpp: -------------------------------------------------------------------------------- 1 | int function() 2 | { 3 | return 3 4 | } 5 | -------------------------------------------------------------------------------- /share/qtcreator/templates/wizards/files/python/file.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | -------------------------------------------------------------------------------- /src/app/winicons/cpp128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/app/winicons/cpp128.png -------------------------------------------------------------------------------- /src/app/winicons/cpp16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/app/winicons/cpp16.png -------------------------------------------------------------------------------- /src/app/winicons/cpp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/app/winicons/cpp32.png -------------------------------------------------------------------------------- /src/app/winicons/cpp48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/app/winicons/cpp48.png -------------------------------------------------------------------------------- /src/app/winicons/cpp64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/app/winicons/cpp64.png -------------------------------------------------------------------------------- /src/app/winicons/pri128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/app/winicons/pri128.png -------------------------------------------------------------------------------- /src/app/winicons/pri16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/app/winicons/pri16.png -------------------------------------------------------------------------------- /src/app/winicons/pri32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/app/winicons/pri32.png -------------------------------------------------------------------------------- /src/app/winicons/pri48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/app/winicons/pri48.png -------------------------------------------------------------------------------- /src/app/winicons/pri64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/app/winicons/pri64.png -------------------------------------------------------------------------------- /src/app/winicons/pro128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/app/winicons/pro128.png -------------------------------------------------------------------------------- /src/app/winicons/pro16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/app/winicons/pro16.png -------------------------------------------------------------------------------- /src/app/winicons/pro32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/app/winicons/pro32.png -------------------------------------------------------------------------------- /src/app/winicons/pro48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/app/winicons/pro48.png -------------------------------------------------------------------------------- /src/app/winicons/pro64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/app/winicons/pro64.png -------------------------------------------------------------------------------- /src/app/winicons/qml128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/app/winicons/qml128.png -------------------------------------------------------------------------------- /src/app/winicons/qml16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/app/winicons/qml16.png -------------------------------------------------------------------------------- /src/app/winicons/qml32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/app/winicons/qml32.png -------------------------------------------------------------------------------- /src/app/winicons/qml48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/app/winicons/qml48.png -------------------------------------------------------------------------------- /src/app/winicons/qml64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/app/winicons/qml64.png -------------------------------------------------------------------------------- /src/app/winicons/ui128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/app/winicons/ui128.png -------------------------------------------------------------------------------- /src/plugins/autotest/unit_test/plain/plain.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | 3 | SUBDIRS += test_plain 4 | 5 | -------------------------------------------------------------------------------- /src/plugins/clangstaticanalyzer/unit-tests/simple/simple.pro: -------------------------------------------------------------------------------- 1 | CONFIG -= QT 2 | 3 | SOURCES = main.cpp 4 | -------------------------------------------------------------------------------- /src/plugins/qmldesigner/components/resources/resources.pri: -------------------------------------------------------------------------------- 1 | VPATH += $$PWD 2 | 3 | RESOURCES += resources.qrc -------------------------------------------------------------------------------- /tests/auto/cplusplus/preprocessor/data/include-data/QtCore/QDir: -------------------------------------------------------------------------------- 1 | // comment 2 | 3 | class QDir {}; 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/semantic/semantic.pro: -------------------------------------------------------------------------------- 1 | include(../shared/shared.pri) 2 | SOURCES += tst_semantic.cpp 3 | -------------------------------------------------------------------------------- /tests/auto/diff/diff.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | CONFIG += ordered 3 | 4 | SUBDIRS = \ 5 | differ 6 | -------------------------------------------------------------------------------- /tests/auto/json/test.bjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/tests/auto/json/test.bjson -------------------------------------------------------------------------------- /tests/auto/qml/qmlprojectmanager/qmlprojectmanager.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | 3 | SUBDIRS += fileformat 4 | -------------------------------------------------------------------------------- /tests/manual/debugger/spacy-file/spacy-file.pro: -------------------------------------------------------------------------------- 1 | 2 | TEMPLATE = subdirs 3 | 4 | SUBDIRS += app plugin 5 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "qbs"] 2 | path = src/shared/qbs 3 | url = ../../qt-labs/qbs.git 4 | ignore = dirty 5 | -------------------------------------------------------------------------------- /doc/images/analyzer-issues.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/analyzer-issues.png -------------------------------------------------------------------------------- /doc/images/completion/enum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/completion/enum.png -------------------------------------------------------------------------------- /doc/images/completion/func.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/completion/func.png -------------------------------------------------------------------------------- /doc/images/completion/slot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/completion/slot.png -------------------------------------------------------------------------------- /doc/images/completion/var.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/completion/var.png -------------------------------------------------------------------------------- /doc/images/creator-gs-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/creator-gs-01.png -------------------------------------------------------------------------------- /doc/images/creator-gs-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/creator-gs-02.png -------------------------------------------------------------------------------- /doc/images/creator-gs-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/creator-gs-03.png -------------------------------------------------------------------------------- /doc/images/creator-gs-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/creator-gs-04.png -------------------------------------------------------------------------------- /doc/images/creator_coding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/creator_coding.png -------------------------------------------------------------------------------- /doc/images/creator_testing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/creator_testing.png -------------------------------------------------------------------------------- /doc/images/qml-export-gimp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qml-export-gimp.png -------------------------------------------------------------------------------- /doc/images/qml-toolbar-pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qml-toolbar-pin.png -------------------------------------------------------------------------------- /doc/images/qml-translate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qml-translate.png -------------------------------------------------------------------------------- /doc/images/qtcreator-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-back.png -------------------------------------------------------------------------------- /doc/images/qtcreator-clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-clear.png -------------------------------------------------------------------------------- /doc/images/qtcreator-kits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-kits.png -------------------------------------------------------------------------------- /doc/images/qtcreator-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-menu.png -------------------------------------------------------------------------------- /doc/images/qtcreator-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-next.png -------------------------------------------------------------------------------- /doc/images/qtcreator-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-run.png -------------------------------------------------------------------------------- /share/qtcreator/templates/wizards/autotest/auto.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | 3 | SUBDIRS += %TestCaseName:l% 4 | -------------------------------------------------------------------------------- /share/qtcreator/templates/wizards/files/qtquick1/file.qml.tpl: -------------------------------------------------------------------------------- 1 | import QtQuick 1.1 2 | 3 | Item { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /share/qtcreator/templates/wizards/files/qtquick2/file.qml.tpl: -------------------------------------------------------------------------------- 1 | import QtQuick 2.0 2 | 3 | Item { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /src/libs/glsl/make-parser.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | me=$(dirname $0) 4 | qlalr --qt --no-debug $me/glsl.g 5 | 6 | -------------------------------------------------------------------------------- /src/libs/qmljs/images/func.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/qmljs/images/func.png -------------------------------------------------------------------------------- /src/libs/timeline/timeline_dependencies.pri: -------------------------------------------------------------------------------- 1 | QTC_LIB_NAME = Timeline 2 | 3 | QTC_LIB_DEPENDS = utils 4 | 5 | -------------------------------------------------------------------------------- /src/plugins/autotest/unit_test/mixed_atp/tests/tests.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | 3 | SUBDIRS += auto 4 | 5 | -------------------------------------------------------------------------------- /src/plugins/debugger/lldb/lldb.pri: -------------------------------------------------------------------------------- 1 | HEADERS += $$PWD/lldbengine.h 2 | 3 | SOURCES += $$PWD/lldbengine.cpp 4 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/preprocessor/data/macro_expand.c: -------------------------------------------------------------------------------- 1 | #define X() Y 2 | #define Y() X 3 | 4 | A: X()()() 5 | -------------------------------------------------------------------------------- /tests/auto/qml/codemodel/codemodel.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | 3 | SUBDIRS += check \ 4 | importscheck 5 | -------------------------------------------------------------------------------- /tests/cppmodelmanager/testdata/frameworks/My.framework/Versions/A/Frameworks/Nested.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | B -------------------------------------------------------------------------------- /tests/cppmodelmanager/testdata/sources/test_modelmanager_refresh.cpp: -------------------------------------------------------------------------------- 1 | #include "test_modelmanager_refresh.h" 2 | -------------------------------------------------------------------------------- /tests/genericprojectmanager/testdata_mixedproject1/mixedproject1.config: -------------------------------------------------------------------------------- 1 | // Nothing to be seen, move along. 2 | -------------------------------------------------------------------------------- /tests/genericprojectmanager/testdata_mixedproject2/mixedproject2.config: -------------------------------------------------------------------------------- 1 | // Nothing to be seen, move along. 2 | -------------------------------------------------------------------------------- /tests/genericprojectmanager/testdata_mixedproject2/mixedproject2.files: -------------------------------------------------------------------------------- 1 | main.cpp 2 | header.hpp 3 | impl.c 4 | -------------------------------------------------------------------------------- /tests/genericprojectmanager/testdata_simpleproject/simpleproject.config: -------------------------------------------------------------------------------- 1 | // Nothing to be seen, move along. 2 | -------------------------------------------------------------------------------- /tests/manual/debugger/python/python.pro: -------------------------------------------------------------------------------- 1 | 2 | TEMPLATE = script 3 | TARGET = math.py 4 | SOURCES += math.py 5 | -------------------------------------------------------------------------------- /tests/manual/debugger/script/script.pro: -------------------------------------------------------------------------------- 1 | 2 | TEMPLATE = script 3 | TARGET = math.js 4 | SOURCES += math.js 5 | -------------------------------------------------------------------------------- /tests/manual/search/latin1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/tests/manual/search/latin1.txt -------------------------------------------------------------------------------- /tests/unit/unittest/data/diagnostic_semicolon_fixit_expected.cpp: -------------------------------------------------------------------------------- 1 | int function() 2 | { 3 | return 3; 4 | } 5 | -------------------------------------------------------------------------------- /doc/config/images/commercial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/config/images/commercial.png -------------------------------------------------------------------------------- /doc/images/beautifier_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/beautifier_editor.png -------------------------------------------------------------------------------- /doc/images/completion/class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/completion/class.png -------------------------------------------------------------------------------- /doc/images/completion/macro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/completion/macro.png -------------------------------------------------------------------------------- /doc/images/completion/signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/completion/signal.png -------------------------------------------------------------------------------- /doc/images/qml-observer-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qml-observer-view.png -------------------------------------------------------------------------------- /doc/images/qml-toolbar-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qml-toolbar-image.png -------------------------------------------------------------------------------- /doc/images/qml-toolbar-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qml-toolbar-text.png -------------------------------------------------------------------------------- /doc/images/qtcreator-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-dialog.png -------------------------------------------------------------------------------- /doc/images/qtcreator-expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-expand.png -------------------------------------------------------------------------------- /doc/images/qtcreator-filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-filter.png -------------------------------------------------------------------------------- /doc/images/qtcreator-forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-forward.png -------------------------------------------------------------------------------- /doc/images/qtcreator-gerrit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-gerrit.png -------------------------------------------------------------------------------- /doc/images/qtcreator-locator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-locator.png -------------------------------------------------------------------------------- /doc/images/qtcreator-sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-sidebar.png -------------------------------------------------------------------------------- /doc/images/qtcreator-tooltip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-tooltip.png -------------------------------------------------------------------------------- /doc/images/qtcreator-vcs-log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-vcs-log.png -------------------------------------------------------------------------------- /doc/images/qtcreator-watcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-watcher.png -------------------------------------------------------------------------------- /share/qtcreator/templates/wizards/classes/qtquickui/file.qml.tpl: -------------------------------------------------------------------------------- 1 | import QtQuick 2.4 2 | 3 | %{FormClass} { 4 | } 5 | -------------------------------------------------------------------------------- /src/libs/sqlite/sqlite_dependencies.pri: -------------------------------------------------------------------------------- 1 | QTC_LIB_NAME = Sqlite 2 | INCLUDEPATH *= $$IDE_SOURCE_TREE/src/libs/sqlite 3 | -------------------------------------------------------------------------------- /src/libs/utils/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/utils/images/arrow.png -------------------------------------------------------------------------------- /src/plugins/help/images/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/help/images/book.png -------------------------------------------------------------------------------- /src/plugins/help/images/find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/help/images/find.png -------------------------------------------------------------------------------- /src/plugins/help/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/help/images/home.png -------------------------------------------------------------------------------- /src/plugins/ios/images/QtIos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/ios/images/QtIos.png -------------------------------------------------------------------------------- /src/plugins/todo/images/todo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/todo/images/todo.png -------------------------------------------------------------------------------- /tests/auto/cplusplus/cxx11/data/inlineNamespace.1.cpp: -------------------------------------------------------------------------------- 1 | 2 | inline namespace zoo { 3 | void foo(); 4 | } 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/qml/qmldesigner/coretests/setupPath.bat: -------------------------------------------------------------------------------- 1 | @set path=%PATH%;%CD%\..\..\..\..\..\lib\qtcreator\plugins\ 2 | -------------------------------------------------------------------------------- /tests/cppmodelmanager/testdata/include/header.h: -------------------------------------------------------------------------------- 1 | #ifndef HEADER_H 2 | #define HEADER_H 3 | 4 | #endif // HEADER_H 5 | -------------------------------------------------------------------------------- /tests/tests.qbs: -------------------------------------------------------------------------------- 1 | import qbs 2 | 3 | Project { 4 | name: "Tests" 5 | references: ["auto/auto.qbs"] 6 | } 7 | -------------------------------------------------------------------------------- /tests/unit/unittest/data/complete_withNoDotArrowCorrectionForFloat.cpp: -------------------------------------------------------------------------------- 1 | void f() 2 | { 3 | float pi = 3. 4 | } 5 | -------------------------------------------------------------------------------- /dist/installer/ifw/config/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/dist/installer/ifw/config/logo.png -------------------------------------------------------------------------------- /doc/api/images/variablechooser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/api/images/variablechooser.png -------------------------------------------------------------------------------- /doc/images/beautifier_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/beautifier_options.png -------------------------------------------------------------------------------- /doc/images/completion/element.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/completion/element.png -------------------------------------------------------------------------------- /doc/images/completion/func_priv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/completion/func_priv.png -------------------------------------------------------------------------------- /doc/images/completion/func_prot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/completion/func_prot.png -------------------------------------------------------------------------------- /doc/images/completion/keyword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/completion/keyword.png -------------------------------------------------------------------------------- /doc/images/completion/namespace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/completion/namespace.png -------------------------------------------------------------------------------- /doc/images/completion/slot_priv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/completion/slot_priv.png -------------------------------------------------------------------------------- /doc/images/completion/slot_prot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/completion/slot_prot.png -------------------------------------------------------------------------------- /doc/images/completion/snippet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/completion/snippet.png -------------------------------------------------------------------------------- /doc/images/completion/var_priv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/completion/var_priv.png -------------------------------------------------------------------------------- /doc/images/completion/var_prot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/completion/var_prot.png -------------------------------------------------------------------------------- /doc/images/cpu-usage-analyzer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/cpu-usage-analyzer.png -------------------------------------------------------------------------------- /doc/images/creator-diff-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/creator-diff-editor.png -------------------------------------------------------------------------------- /doc/images/creator-qbs-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/creator-qbs-project.png -------------------------------------------------------------------------------- /doc/images/creator-winrt-kits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/creator-winrt-kits.png -------------------------------------------------------------------------------- /doc/images/creator_advanceduse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/creator_advanceduse.png -------------------------------------------------------------------------------- /doc/images/creator_gettinghelp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/creator_gettinghelp.png -------------------------------------------------------------------------------- /doc/images/creator_publishing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/creator_publishing.png -------------------------------------------------------------------------------- /doc/images/qml-export-photoshop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qml-export-photoshop.png -------------------------------------------------------------------------------- /doc/images/qml-script-console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qml-script-console.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-anchors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-anchors.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-bindings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-bindings.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-button.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-states.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-states.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-tutorial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-tutorial.png -------------------------------------------------------------------------------- /doc/images/qtcreator-autotests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-autotests.png -------------------------------------------------------------------------------- /doc/images/qtcreator-breakdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-breakdown.png -------------------------------------------------------------------------------- /doc/images/qtcreator-edit-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-edit-mode.png -------------------------------------------------------------------------------- /doc/images/qtcreator-formedit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-formedit.png -------------------------------------------------------------------------------- /doc/images/qtcreator-menu-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-menu-item.png -------------------------------------------------------------------------------- /doc/images/qtcreator-mime-types.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-mime-types.png -------------------------------------------------------------------------------- /doc/images/qtcreator-movestep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-movestep.png -------------------------------------------------------------------------------- /doc/images/qtcreator-previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-previous.png -------------------------------------------------------------------------------- /doc/images/qtcreator-splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-splitbar.png -------------------------------------------------------------------------------- /doc/images/qtcreator-todo-pane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-todo-pane.png -------------------------------------------------------------------------------- /doc/images/qtcreator-toolchains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-toolchains.png -------------------------------------------------------------------------------- /doc/images/qtcreator-vcs-commit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-vcs-commit.png -------------------------------------------------------------------------------- /doc/images/qtcreator-vcs-diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-vcs-diff.png -------------------------------------------------------------------------------- /doc/images/qtcreator-vcs-pane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-vcs-pane.png -------------------------------------------------------------------------------- /src/libs/clangbackendipc/clangbackendipc.pro: -------------------------------------------------------------------------------- 1 | include(../../qtcreatorlibrary.pri) 2 | include(clangbackendipc-lib.pri) 3 | -------------------------------------------------------------------------------- /src/libs/cplusplus/images/class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/cplusplus/images/class.png -------------------------------------------------------------------------------- /src/libs/cplusplus/images/enum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/cplusplus/images/enum.png -------------------------------------------------------------------------------- /src/libs/cplusplus/images/func.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/cplusplus/images/func.png -------------------------------------------------------------------------------- /src/libs/cplusplus/images/macro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/cplusplus/images/macro.png -------------------------------------------------------------------------------- /src/libs/cplusplus/images/slot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/cplusplus/images/slot.png -------------------------------------------------------------------------------- /src/libs/cplusplus/images/var.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/cplusplus/images/var.png -------------------------------------------------------------------------------- /src/libs/qmljs/images/element.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/qmljs/images/element.png -------------------------------------------------------------------------------- /src/libs/qmljs/images/property.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/qmljs/images/property.png -------------------------------------------------------------------------------- /src/libs/timeline/qml/ico_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/timeline/qml/ico_edit.png -------------------------------------------------------------------------------- /src/libs/timeline/qml/ico_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/timeline/qml/ico_next.png -------------------------------------------------------------------------------- /src/libs/timeline/qml/ico_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/timeline/qml/ico_note.png -------------------------------------------------------------------------------- /src/libs/timeline/qml/ico_prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/timeline/qml/ico_prev.png -------------------------------------------------------------------------------- /src/libs/timeline/qml/ico_zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/timeline/qml/ico_zoom.png -------------------------------------------------------------------------------- /src/libs/timeline/qml/lock_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/timeline/qml/lock_open.png -------------------------------------------------------------------------------- /src/plugins/autotest/unit_test/mixed_atp/mixed_atp.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | 3 | SUBDIRS += src \ 4 | tests 5 | 6 | -------------------------------------------------------------------------------- /src/plugins/clangstaticanalyzer/unit-tests/simple/main.cpp: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | int *i = 0; 4 | *i = 42; 5 | } 6 | -------------------------------------------------------------------------------- /src/plugins/git/images/arrowup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/git/images/arrowup.png -------------------------------------------------------------------------------- /src/plugins/macros/images/macro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/macros/images/macro.png -------------------------------------------------------------------------------- /src/plugins/vcsbase/images/diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/vcsbase/images/diff.png -------------------------------------------------------------------------------- /src/shared/proparser/images/set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/shared/proparser/images/set.png -------------------------------------------------------------------------------- /tests/auto/cplusplus/codeformatter/codeformatter.pro: -------------------------------------------------------------------------------- 1 | include(../shared/shared.pri) 2 | SOURCES += tst_codeformatter.cpp 3 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/preprocessor/data/macro_expand_1.cpp: -------------------------------------------------------------------------------- 1 | #define DECLARE_CLASS(s) class s 2 | DECLARE_CLASS(QString); 3 | -------------------------------------------------------------------------------- /tests/auto/extensionsystem/extensionsystem.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | SUBDIRS = pluginmanager \ 3 | pluginspec 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/generichighlighter/generichighlighter.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | SUBDIRS += highlighterengine specificrules 3 | -------------------------------------------------------------------------------- /tests/manual/ssh/errorhandling/errorhandling.pro: -------------------------------------------------------------------------------- 1 | include(../ssh.pri) 2 | 3 | TARGET=errorhandling 4 | SOURCES=main.cpp 5 | -------------------------------------------------------------------------------- /tests/unit/unit.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | 3 | SUBDIRS = echoserver unittest 4 | 5 | unittest.depends = echoserver 6 | -------------------------------------------------------------------------------- /dist/installer/mac/qt.conf: -------------------------------------------------------------------------------- 1 | [Paths] 2 | Imports = Imports/qtquick1 3 | Qml2Imports = Imports/qtquick2 4 | Plugins = PlugIns 5 | -------------------------------------------------------------------------------- /doc/api/images/firstplugin-wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/api/images/firstplugin-wizard.png -------------------------------------------------------------------------------- /doc/examples/transitions/qt-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/examples/transitions/qt-logo.png -------------------------------------------------------------------------------- /doc/images/completion/enumerator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/completion/enumerator.png -------------------------------------------------------------------------------- /doc/images/completion/qmlsnippet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/completion/qmlsnippet.png -------------------------------------------------------------------------------- /doc/images/creator-baremetal-kits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/creator-baremetal-kits.png -------------------------------------------------------------------------------- /doc/images/creator-qbs-build-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/creator-qbs-build-app.png -------------------------------------------------------------------------------- /doc/images/creator_gettingstarted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/creator_gettingstarted.png -------------------------------------------------------------------------------- /doc/images/qml-profiler-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qml-profiler-settings.png -------------------------------------------------------------------------------- /doc/images/qml-toolbar-animation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qml-toolbar-animation.png -------------------------------------------------------------------------------- /doc/images/qml-toolbar-indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qml-toolbar-indicator.png -------------------------------------------------------------------------------- /doc/images/qml-toolbar-rectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qml-toolbar-rectangle.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-center-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-center-in.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-extensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-extensions.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-navigator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-navigator.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-reset-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-reset-view.png -------------------------------------------------------------------------------- /doc/images/qtcreator-add-resource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-add-resource.png -------------------------------------------------------------------------------- /doc/images/qtcreator-analyze-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-analyze-menu.png -------------------------------------------------------------------------------- /doc/images/qtcreator-build-issues.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-build-issues.png -------------------------------------------------------------------------------- /doc/images/qtcreator-build-steps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-build-steps.png -------------------------------------------------------------------------------- /doc/images/qtcreator-clean-steps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-clean-steps.png -------------------------------------------------------------------------------- /doc/images/qtcreator-compile-pane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-compile-pane.png -------------------------------------------------------------------------------- /doc/images/qtcreator-context-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-context-menu.png -------------------------------------------------------------------------------- /doc/images/qtcreator-debug-stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-debug-stack.png -------------------------------------------------------------------------------- /doc/images/qtcreator-font-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-font-colors.png -------------------------------------------------------------------------------- /doc/images/qtcreator-help-filters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-help-filters.png -------------------------------------------------------------------------------- /doc/images/qtcreator-help-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-help-search.png -------------------------------------------------------------------------------- /doc/images/qtcreator-image-viewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-image-viewer.png -------------------------------------------------------------------------------- /doc/images/qtcreator-indentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-indentation.png -------------------------------------------------------------------------------- /doc/images/qtcreator-ios-add-kit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-ios-add-kit.png -------------------------------------------------------------------------------- /doc/images/qtcreator-kit-selector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-kit-selector.png -------------------------------------------------------------------------------- /doc/images/qtcreator-locator-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-locator-open.png -------------------------------------------------------------------------------- /doc/images/qtcreator-modeleditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-modeleditor.png -------------------------------------------------------------------------------- /doc/images/qtcreator-options-qbs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-options-qbs.png -------------------------------------------------------------------------------- /doc/images/qtcreator-output-pane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-output-pane.png -------------------------------------------------------------------------------- /doc/images/qtcreator-pin-tooltip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-pin-tooltip.png -------------------------------------------------------------------------------- /doc/images/qtcreator-project-kits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-project-kits.png -------------------------------------------------------------------------------- /doc/images/qtcreator-projectpane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-projectpane.png -------------------------------------------------------------------------------- /doc/images/qtcreator-search-pane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-search-pane.png -------------------------------------------------------------------------------- /doc/images/qtcreator-sidebar-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-sidebar-menu.png -------------------------------------------------------------------------------- /doc/images/qtcreator-split-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-split-button.png -------------------------------------------------------------------------------- /doc/images/qtcreator-syntaxerror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-syntaxerror.png -------------------------------------------------------------------------------- /doc/images/qtcreator-togglebutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-togglebutton.png -------------------------------------------------------------------------------- /doc/images/qtcreator-tooltip-long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-tooltip-long.png -------------------------------------------------------------------------------- /doc/images/qtquick-example-stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtquick-example-stack.png -------------------------------------------------------------------------------- /src/libs/cplusplus/images/func_st.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/cplusplus/images/func_st.png -------------------------------------------------------------------------------- /src/libs/cplusplus/images/keyword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/cplusplus/images/keyword.png -------------------------------------------------------------------------------- /src/libs/cplusplus/images/signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/cplusplus/images/signal.png -------------------------------------------------------------------------------- /src/libs/cplusplus/images/static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/cplusplus/images/static.png -------------------------------------------------------------------------------- /src/libs/cplusplus/images/struct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/cplusplus/images/struct.png -------------------------------------------------------------------------------- /src/libs/cplusplus/images/var_st.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/cplusplus/images/var_st.png -------------------------------------------------------------------------------- /src/libs/extensionsystem/test/manual/pluginview/pluginview.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | SUBDIRS = test.pro \ 3 | plugins 4 | -------------------------------------------------------------------------------- /src/libs/languageutils/languageutils_dependencies.pri: -------------------------------------------------------------------------------- 1 | QTC_LIB_NAME = LanguageUtils 2 | QTC_LIB_DEPENDS += \ 3 | utils 4 | -------------------------------------------------------------------------------- /src/libs/qmldebug/qmldebug.pro: -------------------------------------------------------------------------------- 1 | QT += network 2 | 3 | include(../../qtcreatorlibrary.pri) 4 | include(qmldebug-lib.pri) 5 | 6 | -------------------------------------------------------------------------------- /src/libs/qmljs/qmljs.pro: -------------------------------------------------------------------------------- 1 | DEFINES += QMLJS_BUILD_DIR 2 | 3 | include(../../qtcreatorlibrary.pri) 4 | include(qmljs-lib.pri) 5 | -------------------------------------------------------------------------------- /src/libs/timeline/qml/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/timeline/qml/arrow_down.png -------------------------------------------------------------------------------- /src/libs/timeline/qml/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/timeline/qml/arrow_right.png -------------------------------------------------------------------------------- /src/libs/timeline/qml/lock_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/timeline/qml/lock_closed.png -------------------------------------------------------------------------------- /src/libs/utils/tooltip/images/f1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/utils/tooltip/images/f1.png -------------------------------------------------------------------------------- /src/plugins/autotest/images/class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/autotest/images/class.png -------------------------------------------------------------------------------- /src/plugins/autotest/images/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/autotest/images/data.png -------------------------------------------------------------------------------- /src/plugins/autotest/images/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/autotest/images/debug.png -------------------------------------------------------------------------------- /src/plugins/autotest/images/fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/autotest/images/fail.png -------------------------------------------------------------------------------- /src/plugins/autotest/images/fatal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/autotest/images/fatal.png -------------------------------------------------------------------------------- /src/plugins/autotest/images/func.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/autotest/images/func.png -------------------------------------------------------------------------------- /src/plugins/autotest/images/pass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/autotest/images/pass.png -------------------------------------------------------------------------------- /src/plugins/autotest/images/skip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/autotest/images/skip.png -------------------------------------------------------------------------------- /src/plugins/autotest/images/sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/autotest/images/sort.png -------------------------------------------------------------------------------- /src/plugins/autotest/images/warn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/autotest/images/warn.png -------------------------------------------------------------------------------- /src/plugins/autotest/images/xfail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/autotest/images/xfail.png -------------------------------------------------------------------------------- /src/plugins/autotest/images/xpass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/autotest/images/xpass.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/dir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/dir.png -------------------------------------------------------------------------------- /src/plugins/cppeditor/images/qt_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/cppeditor/images/qt_c.png -------------------------------------------------------------------------------- /src/plugins/cppeditor/images/qt_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/cppeditor/images/qt_h.png -------------------------------------------------------------------------------- /src/plugins/designer/images/qt_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/designer/images/qt_ui.png -------------------------------------------------------------------------------- /src/plugins/glsleditor/images/var.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/glsleditor/images/var.png -------------------------------------------------------------------------------- /src/plugins/help/images/bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/help/images/bookmark.png -------------------------------------------------------------------------------- /src/plugins/help/images/mode_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/help/images/mode_help.png -------------------------------------------------------------------------------- /src/plugins/qnx/images/qnx-target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/qnx/images/qnx-target.png -------------------------------------------------------------------------------- /src/plugins/qtsupport/images/qml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/qtsupport/images/qml.png -------------------------------------------------------------------------------- /src/plugins/vcsbase/images/submit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/vcsbase/images/submit.png -------------------------------------------------------------------------------- /src/shared/modeltest/modeltest.pri: -------------------------------------------------------------------------------- 1 | HEADERS += $$PWD/modeltest.h 2 | SOURCES += $$PWD/modeltest.cpp 3 | INCLUDEPATH += $$PWD 4 | -------------------------------------------------------------------------------- /src/shared/proparser/images/other.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/shared/proparser/images/other.png -------------------------------------------------------------------------------- /src/shared/proparser/images/scope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/shared/proparser/images/scope.png -------------------------------------------------------------------------------- /src/shared/proparser/images/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/shared/proparser/images/value.png -------------------------------------------------------------------------------- /tests/cppmodelmanager/testdata/frameworks/My.framework/Versions/A/Frameworks/Nested.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /tests/manual/shootout/README: -------------------------------------------------------------------------------- 1 | This "test" is to experiment with code constructs to 2 | get an impression on code size etc. 3 | -------------------------------------------------------------------------------- /tests/unit/unittest/data/complete_arrow.cpp: -------------------------------------------------------------------------------- 1 | struct Foo { int member; }; 2 | 3 | void g(Foo *foo) 4 | { 5 | foo-> 6 | } 7 | -------------------------------------------------------------------------------- /tests/unit/unittest/data/translationunits.cpp: -------------------------------------------------------------------------------- 1 | #include "translationunits.h" 2 | 3 | void function() 4 | { 5 | 6 | } 7 | 8 | -------------------------------------------------------------------------------- /dist/installer/ifw/config/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/dist/installer/ifw/config/background.png -------------------------------------------------------------------------------- /dist/installer/ifw/config/watermark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/dist/installer/ifw/config/watermark.png -------------------------------------------------------------------------------- /doc/api/images/firstplugin-menuitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/api/images/firstplugin-menuitem.png -------------------------------------------------------------------------------- /doc/api/images/firstplugin-summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/api/images/firstplugin-summary.png -------------------------------------------------------------------------------- /doc/images/creator-baremetal-device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/creator-baremetal-device.png -------------------------------------------------------------------------------- /doc/images/creator-compilers-custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/creator-compilers-custom.png -------------------------------------------------------------------------------- /doc/images/creator-qbs-build-clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/creator-qbs-build-clean.png -------------------------------------------------------------------------------- /doc/images/creator_buildingrunning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/creator_buildingrunning.png -------------------------------------------------------------------------------- /doc/images/creator_managingprojects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/creator_managingprojects.png -------------------------------------------------------------------------------- /doc/images/qml-inspector-app-on-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qml-inspector-app-on-top.png -------------------------------------------------------------------------------- /doc/images/qml-observer-context-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qml-observer-context-menu.png -------------------------------------------------------------------------------- /doc/images/qml-toolbar-image-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qml-toolbar-image-preview.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-boolean-false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-boolean-false.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-boolean-true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-boolean-true.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-borderimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-borderimage.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-breadcrumbs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-breadcrumbs.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-connections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-connections.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-dynamicprops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-dynamicprops.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-element-size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-element-size.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-export-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-export-item.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-new-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-new-project.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-preview-size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-preview-size.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-run-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-run-settings.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-screen-design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-screen-design.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-snap-margins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-snap-margins.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-transitions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-transitions.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-visual-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-visual-editor.png -------------------------------------------------------------------------------- /doc/images/qtcreator-add-breakpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-add-breakpoint.png -------------------------------------------------------------------------------- /doc/images/qtcreator-add-online-doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-add-online-doc.png -------------------------------------------------------------------------------- /doc/images/qtcreator-analyzer-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-analyzer-button.png -------------------------------------------------------------------------------- /doc/images/qtcreator-cmakeexecutable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-cmakeexecutable.png -------------------------------------------------------------------------------- /doc/images/qtcreator-codecompletion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-codecompletion.png -------------------------------------------------------------------------------- /doc/images/qtcreator-custom-parser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-custom-parser.png -------------------------------------------------------------------------------- /doc/images/qtcreator-debugger-views.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-debugger-views.png -------------------------------------------------------------------------------- /doc/images/qtcreator-disable-steps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-disable-steps.png -------------------------------------------------------------------------------- /doc/images/qtcreator-editor-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-editor-settings.png -------------------------------------------------------------------------------- /doc/images/qtcreator-error-message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-error-message.png -------------------------------------------------------------------------------- /doc/images/qtcreator-external-tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-external-tools.png -------------------------------------------------------------------------------- /doc/images/qtcreator-fakevim-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-fakevim-options.png -------------------------------------------------------------------------------- /doc/images/qtcreator-gerrit-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-gerrit-options.png -------------------------------------------------------------------------------- /doc/images/qtcreator-locator-magnify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-locator-magnify.png -------------------------------------------------------------------------------- /doc/images/qtcreator-mode-selector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-mode-selector.png -------------------------------------------------------------------------------- /doc/images/qtcreator-navigate-popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-navigate-popup.png -------------------------------------------------------------------------------- /doc/images/qtcreator-new-opengl-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-new-opengl-file.png -------------------------------------------------------------------------------- /doc/images/qtcreator-pprunsettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-pprunsettings.png -------------------------------------------------------------------------------- /doc/images/qtcreator-qnx-deployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-qnx-deployment.png -------------------------------------------------------------------------------- /doc/images/qtcreator-run-environment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-run-environment.png -------------------------------------------------------------------------------- /doc/images/qtcreator-search-results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-search-results.png -------------------------------------------------------------------------------- /doc/images/qtcreator-searchresults.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-searchresults.png -------------------------------------------------------------------------------- /doc/images/qtcreator-semanticerror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-semanticerror.png -------------------------------------------------------------------------------- /doc/images/qtcreator-session-manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-session-manager.png -------------------------------------------------------------------------------- /doc/images/qtcreator-spliteditorview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-spliteditorview.png -------------------------------------------------------------------------------- /doc/images/qtcreator-textfinder-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-textfinder-ui.png -------------------------------------------------------------------------------- /doc/images/qtcreator-togglebookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-togglebookmark.png -------------------------------------------------------------------------------- /doc/images/qtcreator-vcs-gitbranch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-vcs-gitbranch.png -------------------------------------------------------------------------------- /doc/images/qtcreator-welcome-session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-welcome-session.png -------------------------------------------------------------------------------- /src/libs/cplusplus/images/enumerator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/cplusplus/images/enumerator.png -------------------------------------------------------------------------------- /src/libs/cplusplus/images/func_priv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/cplusplus/images/func_priv.png -------------------------------------------------------------------------------- /src/libs/cplusplus/images/func_prot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/cplusplus/images/func_prot.png -------------------------------------------------------------------------------- /src/libs/cplusplus/images/namespace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/cplusplus/images/namespace.png -------------------------------------------------------------------------------- /src/libs/cplusplus/images/slot_priv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/cplusplus/images/slot_priv.png -------------------------------------------------------------------------------- /src/libs/cplusplus/images/slot_prot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/cplusplus/images/slot_prot.png -------------------------------------------------------------------------------- /src/libs/cplusplus/images/var_priv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/cplusplus/images/var_priv.png -------------------------------------------------------------------------------- /src/libs/cplusplus/images/var_prot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/cplusplus/images/var_prot.png -------------------------------------------------------------------------------- /src/libs/extensionsystem/images/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/extensionsystem/images/ok.png -------------------------------------------------------------------------------- /src/libs/glsl/glsl.pro: -------------------------------------------------------------------------------- 1 | DEFINES += \ 2 | GLSL_BUILD_LIB 3 | 4 | include(../../qtcreatorlibrary.pri) 5 | include(glsl-lib.pri) 6 | -------------------------------------------------------------------------------- /src/libs/qmljs/images/publicmember.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/qmljs/images/publicmember.png -------------------------------------------------------------------------------- /src/libs/timeline/qml/dialog_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/timeline/qml/dialog_shadow.png -------------------------------------------------------------------------------- /src/libs/timeline/qml/range_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/timeline/qml/range_handle.png -------------------------------------------------------------------------------- /src/libs/utils/images/triangle_vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/utils/images/triangle_vert.png -------------------------------------------------------------------------------- /src/plugins/android/images/QtAndroid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/android/images/QtAndroid.png -------------------------------------------------------------------------------- /src/plugins/android/images/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/android/images/download.png -------------------------------------------------------------------------------- /src/plugins/autotest/images/autotest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/autotest/images/autotest.png -------------------------------------------------------------------------------- /src/plugins/autotest/images/collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/autotest/images/collapse.png -------------------------------------------------------------------------------- /src/plugins/autotest/images/expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/autotest/images/expand.png -------------------------------------------------------------------------------- /src/plugins/autotest/images/leafsort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/autotest/images/leafsort.png -------------------------------------------------------------------------------- /src/plugins/autotest/images/sort@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/autotest/images/sort@2x.png -------------------------------------------------------------------------------- /src/plugins/autotest/unit_test/mixed_atp/src/src.pro: -------------------------------------------------------------------------------- 1 | QT += gui widgets 2 | 3 | TEMPLATE = app 4 | 5 | SOURCES += main.cpp 6 | 7 | -------------------------------------------------------------------------------- /src/plugins/autotest/unit_test/simple_gt/simple_gt.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | 3 | SUBDIRS += src \ 4 | tests 5 | 6 | -------------------------------------------------------------------------------- /src/plugins/clangcodemodel/test/data/mysource.cpp: -------------------------------------------------------------------------------- 1 | #include "myheader.h" 2 | 3 | void f() 4 | { 5 | /* COMPLETE HERE */ 6 | } 7 | -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/close.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/error.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/help.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/info.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/locked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/locked.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/minus.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/next.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/plus.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/prev.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/redo.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/reset.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/undo.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/zoom.png -------------------------------------------------------------------------------- /src/plugins/cppeditor/images/qt_cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/cppeditor/images/qt_cpp.png -------------------------------------------------------------------------------- /src/plugins/diffeditor/images/topbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/diffeditor/images/topbar.png -------------------------------------------------------------------------------- /src/plugins/glsleditor/images/const.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/glsleditor/images/const.png -------------------------------------------------------------------------------- /src/plugins/glsleditor/images/func.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/glsleditor/images/func.png -------------------------------------------------------------------------------- /src/plugins/glsleditor/images/other.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/glsleditor/images/other.png -------------------------------------------------------------------------------- /src/plugins/glsleditor/images/type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/glsleditor/images/type.png -------------------------------------------------------------------------------- /src/plugins/help/images/mac/addtab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/help/images/mac/addtab.png -------------------------------------------------------------------------------- /src/plugins/help/images/mac/closetab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/help/images/mac/closetab.png -------------------------------------------------------------------------------- /src/plugins/help/images/mode_help@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/help/images/mode_help@2x.png -------------------------------------------------------------------------------- /src/plugins/help/images/win/addtab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/help/images/win/addtab.png -------------------------------------------------------------------------------- /src/plugins/help/images/win/closetab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/help/images/win/closetab.png -------------------------------------------------------------------------------- /src/plugins/ios/images/iossettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/ios/images/iossettings.png -------------------------------------------------------------------------------- /src/plugins/modeleditor/resources/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/modeleditor/resources/up.png -------------------------------------------------------------------------------- /src/plugins/qmljstools/images/expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/qmljstools/images/expand.png -------------------------------------------------------------------------------- /src/plugins/qmljstools/images/prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/qmljstools/images/prompt.png -------------------------------------------------------------------------------- /src/plugins/qmlprofiler/qml/recordOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/qmlprofiler/qml/recordOn.png -------------------------------------------------------------------------------- /src/plugins/qtsupport/images/forms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/qtsupport/images/forms.png -------------------------------------------------------------------------------- /src/plugins/qtsupport/images/qt_qrc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/qtsupport/images/qt_qrc.png -------------------------------------------------------------------------------- /src/shared/proparser/images/append.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/shared/proparser/images/append.png -------------------------------------------------------------------------------- /src/shared/proparser/images/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/shared/proparser/images/profile.png -------------------------------------------------------------------------------- /src/shared/proparser/images/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/shared/proparser/images/remove.png -------------------------------------------------------------------------------- /tests/auto/changeset/changeset.pro: -------------------------------------------------------------------------------- 1 | QTC_LIB_DEPENDS += utils 2 | 3 | include(../qttest.pri) 4 | 5 | SOURCES += tst_changeset.cpp 6 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/preprocessor/data/identifier-expansion.1.cpp: -------------------------------------------------------------------------------- 1 | #define TEST test 2 | 3 | TEST TEST; 4 | 5 | void TEST(); 6 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/preprocessor/data/include_next-data/customIncludePath/t.h: -------------------------------------------------------------------------------- 1 | #define ENABLE_FEATURE_X 2 | #include_next "t.h" 3 | -------------------------------------------------------------------------------- /tests/auto/extensionsystem/pluginspec/testplugin/testplugin.json: -------------------------------------------------------------------------------- 1 | { 2 | "Name" : "MyPlugin", 3 | "Version" : "1.0.0" 4 | } 5 | -------------------------------------------------------------------------------- /tests/auto/qml/qmleditor/qmleditor.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | SUBDIRS += \ 3 | # qmllookup \ 4 | qmlcodeformatter 5 | -------------------------------------------------------------------------------- /tests/cppmodelmanager/testdata_project1/foo.cpp: -------------------------------------------------------------------------------- 1 | // Copyright header 2 | 3 | #include "foo.h" 4 | 5 | Foo::Foo() 6 | { 7 | } 8 | -------------------------------------------------------------------------------- /tests/cppmodelmanager/testdata_project2/bar.cpp: -------------------------------------------------------------------------------- 1 | // Copyright header 2 | 3 | #include "bar.h" 4 | 5 | Bar::Bar() 6 | { 7 | } 8 | -------------------------------------------------------------------------------- /tests/genericprojectmanager/testdata_mixedproject1/header.h: -------------------------------------------------------------------------------- 1 | #ifndef HEADER_H 2 | #define HEADER_H 3 | 4 | #endif // HEADER_H 5 | -------------------------------------------------------------------------------- /tests/genericprojectmanager/testdata_mixedproject2/main.cpp: -------------------------------------------------------------------------------- 1 | #include "header.hpp" 2 | 3 | int main() 4 | { 5 | impl(); 6 | } 7 | -------------------------------------------------------------------------------- /tests/manual/debugger/spacy path/spacy path.pro: -------------------------------------------------------------------------------- 1 | 2 | TEMPLATE = subdirs 3 | 4 | SUBDIRS += "\"spacy app\"" "\"spacy plugin\"" 5 | -------------------------------------------------------------------------------- /tests/manual/features/features.pro: -------------------------------------------------------------------------------- 1 | 2 | QT += testlib 3 | 4 | TARGET = tst_features 5 | 6 | SOURCES += tst_features.cpp 7 | 8 | -------------------------------------------------------------------------------- /tests/unit/unittest/data/diagnostic_comparison_fixit.cpp: -------------------------------------------------------------------------------- 1 | void function() 2 | { 3 | int i = 0; 4 | if (i = 3) {} 5 | } 6 | -------------------------------------------------------------------------------- /doc/api/images/firstplugin-nameandpath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/api/images/firstplugin-nameandpath.png -------------------------------------------------------------------------------- /doc/api/images/firstplugin-pluginsetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/api/images/firstplugin-pluginsetup.png -------------------------------------------------------------------------------- /doc/api/images/firstplugin-runsettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/api/images/firstplugin-runsettings.png -------------------------------------------------------------------------------- /doc/images/creator-git-commit-actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/creator-git-commit-actions.png -------------------------------------------------------------------------------- /doc/images/creator-toggle-progress-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/creator-toggle-progress-bar.png -------------------------------------------------------------------------------- /doc/images/qml-inspector-select-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qml-inspector-select-button.png -------------------------------------------------------------------------------- /doc/images/qml-link-debugging-library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qml-link-debugging-library.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-anchor-buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-anchor-buttons.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-code-completion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-code-completion.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-inline-editing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-inline-editing.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-pathview-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-pathview-editor.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-qml-components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-qml-components.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-run-custom-exe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-run-custom-exe.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-set-expression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-set-expression.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-show-hide-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-show-hide-icon.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-uiforms-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-uiforms-example.png -------------------------------------------------------------------------------- /doc/images/qtcreator-analyzer-bindings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-analyzer-bindings.png -------------------------------------------------------------------------------- /doc/images/qtcreator-analyzer-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-analyzer-settings.png -------------------------------------------------------------------------------- /doc/images/qtcreator-blockhighlighting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-blockhighlighting.png -------------------------------------------------------------------------------- /doc/images/qtcreator-build-environment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-build-environment.png -------------------------------------------------------------------------------- /doc/images/qtcreator-class-info-qt-gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-class-info-qt-gui.png -------------------------------------------------------------------------------- /doc/images/qtcreator-code-style-braces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-code-style-braces.png -------------------------------------------------------------------------------- /doc/images/qtcreator-code-style-switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-code-style-switch.png -------------------------------------------------------------------------------- /doc/images/qtcreator-cpp-class-wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-cpp-class-wizard.png -------------------------------------------------------------------------------- /doc/images/qtcreator-debug-breakpoints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-debug-breakpoints.png -------------------------------------------------------------------------------- /doc/images/qtcreator-debug-button-stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-debug-button-stop.png -------------------------------------------------------------------------------- /doc/images/qtcreator-help-add-bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-help-add-bookmark.png -------------------------------------------------------------------------------- /doc/images/qtcreator-iso-icon-browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-iso-icon-browser.png -------------------------------------------------------------------------------- /doc/images/qtcreator-locator-customize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-locator-customize.png -------------------------------------------------------------------------------- /doc/images/qtcreator-open-project-kits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-open-project-kits.png -------------------------------------------------------------------------------- /doc/images/qtcreator-options-android1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-options-android1.png -------------------------------------------------------------------------------- /doc/images/qtcreator-options-cpp-files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-options-cpp-files.png -------------------------------------------------------------------------------- /doc/images/qtcreator-qnx-run-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-qnx-run-settings.png -------------------------------------------------------------------------------- /doc/images/qtcreator-qt-quick-editors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-qt-quick-editors.png -------------------------------------------------------------------------------- /doc/images/qtcreator-refactoring-find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-refactoring-find.png -------------------------------------------------------------------------------- /doc/images/qtcreator-regenerate-index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-regenerate-index.png -------------------------------------------------------------------------------- /doc/images/qtcreator-show-subprojects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-show-subprojects.png -------------------------------------------------------------------------------- /doc/images/qtcreator-snippet-modifiers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-snippet-modifiers.png -------------------------------------------------------------------------------- /doc/images/qtcreator-synchronizefocus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-synchronizefocus.png -------------------------------------------------------------------------------- /doc/images/qtcreator-texfinder-filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-texfinder-filter.png -------------------------------------------------------------------------------- /doc/images/qtcreator-variables-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-variables-button.png -------------------------------------------------------------------------------- /doc/images/qtquick-debugging-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtquick-debugging-settings.png -------------------------------------------------------------------------------- /share/qtcreator/qmlicons/Qt/16x16/Item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/share/qtcreator/qmlicons/Qt/16x16/Item.png -------------------------------------------------------------------------------- /share/qtcreator/qmlicons/Qt/16x16/Text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/share/qtcreator/qmlicons/Qt/16x16/Text.png -------------------------------------------------------------------------------- /src/libs/cplusplus/images/func_priv_st.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/cplusplus/images/func_priv_st.png -------------------------------------------------------------------------------- /src/libs/cplusplus/images/func_prot_st.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/cplusplus/images/func_prot_st.png -------------------------------------------------------------------------------- /src/libs/cplusplus/images/var_priv_st.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/cplusplus/images/var_priv_st.png -------------------------------------------------------------------------------- /src/libs/cplusplus/images/var_prot_st.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/cplusplus/images/var_prot_st.png -------------------------------------------------------------------------------- /src/libs/extensionsystem/images/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/extensionsystem/images/error.png -------------------------------------------------------------------------------- /src/libs/extensionsystem/images/ok@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/extensionsystem/images/ok@2x.png -------------------------------------------------------------------------------- /src/libs/qmleditorwidgets/images/apply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/qmleditorwidgets/images/apply.png -------------------------------------------------------------------------------- /src/libs/qmleditorwidgets/images/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/qmleditorwidgets/images/frame.png -------------------------------------------------------------------------------- /src/libs/qmleditorwidgets/images/hole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/qmleditorwidgets/images/hole.png -------------------------------------------------------------------------------- /src/libs/qmleditorwidgets/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/qmleditorwidgets/images/lock.png -------------------------------------------------------------------------------- /src/plugins/autotest/images/benchmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/autotest/images/benchmark.png -------------------------------------------------------------------------------- /src/plugins/autotest/images/expand@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/autotest/images/expand@2x.png -------------------------------------------------------------------------------- /src/plugins/bookmarks/images/bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/bookmarks/images/bookmark.png -------------------------------------------------------------------------------- /src/plugins/clangstaticanalyzer/unit-tests/simple/simple.qbs: -------------------------------------------------------------------------------- 1 | import qbs 2 | 3 | CppApplication { 4 | files: ["main.cpp"] 5 | } 6 | -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/Desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/Desktop.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/arrowup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/arrowup.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/close@2x.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/editcopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/editcopy.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/editcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/editcut.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/empty14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/empty14.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/error@2x.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/filenew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/filenew.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/fileopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/fileopen.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/filesave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/filesave.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/info@2x.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/linkicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/linkicon.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/minus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/minus@2x.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/next@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/next@2x.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/plus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/plus@2x.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/prev@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/prev@2x.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/replace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/replace.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/unlocked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/unlocked.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/warning.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/zoom@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/zoom@2x.png -------------------------------------------------------------------------------- /src/plugins/cppeditor/images/dark_qt_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/cppeditor/images/dark_qt_c.png -------------------------------------------------------------------------------- /src/plugins/cppeditor/images/dark_qt_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/cppeditor/images/dark_qt_h.png -------------------------------------------------------------------------------- /src/plugins/debugger/images/mode_debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/debugger/images/mode_debug.png -------------------------------------------------------------------------------- /src/plugins/debugger/images/qml/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/debugger/images/qml/select.png -------------------------------------------------------------------------------- /src/plugins/debugger/images/tracepoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/debugger/images/tracepoint.png -------------------------------------------------------------------------------- /src/plugins/debugger/images/watchpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/debugger/images/watchpoint.png -------------------------------------------------------------------------------- /src/plugins/glsleditor/images/glslfile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/glsleditor/images/glslfile.png -------------------------------------------------------------------------------- /src/plugins/glsleditor/images/keyword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/glsleditor/images/keyword.png -------------------------------------------------------------------------------- /src/plugins/glsleditor/images/uniform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/glsleditor/images/uniform.png -------------------------------------------------------------------------------- /src/plugins/glsleditor/images/varying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/glsleditor/images/varying.png -------------------------------------------------------------------------------- /src/plugins/help/images/category_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/help/images/category_help.png -------------------------------------------------------------------------------- /src/plugins/help/images/mode_help_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/help/images/mode_help_mask.png -------------------------------------------------------------------------------- /src/plugins/imageviewer/images/outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/imageviewer/images/outline.png -------------------------------------------------------------------------------- /src/plugins/projectexplorer/images/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/projectexplorer/images/run.png -------------------------------------------------------------------------------- /src/plugins/qmldesigner/components/logger/logger.pri: -------------------------------------------------------------------------------- 1 | VPATH += $$PWD 2 | 3 | HEADERS += logger.h 4 | SOURCES += logger.cpp 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/plugins/qmljseditor/images/qmlfile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/qmljseditor/images/qmlfile.png -------------------------------------------------------------------------------- /src/plugins/qmljstools/images/collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/qmljstools/images/collapse.png -------------------------------------------------------------------------------- /src/plugins/qmlprofiler/qml/recordOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/qmlprofiler/qml/recordOff.png -------------------------------------------------------------------------------- /src/plugins/qtsupport/images/dark_qml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/qtsupport/images/dark_qml.png -------------------------------------------------------------------------------- /src/plugins/texteditor/images/snippet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/texteditor/images/snippet.png -------------------------------------------------------------------------------- /src/tools/3rdparty/3rdparty.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | 3 | mac { 4 | SUBDIRS += \ 5 | iossim \ 6 | iossim_1_8_2 7 | } 8 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/fileiterationorder/fileiterationorder.pro: -------------------------------------------------------------------------------- 1 | include(../shared/shared.pri) 2 | SOURCES += tst_fileiterationorder.cpp 3 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/lexer/lexer.pro: -------------------------------------------------------------------------------- 1 | include(../shared/shared.pri) 2 | SOURCES += tst_lexer.cpp 3 | HEADERS += ../cplusplus_global.h 4 | -------------------------------------------------------------------------------- /tests/auto/cplusplus/typeprettyprinter/typeprettyprinter.pro: -------------------------------------------------------------------------------- 1 | include(../shared/shared.pri) 2 | SOURCES += tst_typeprettyprinter.cpp 3 | -------------------------------------------------------------------------------- /tests/auto/diff/diff.qbs: -------------------------------------------------------------------------------- 1 | import qbs 2 | 3 | Project { 4 | name: "Diff autotests" 5 | references: ["differ/differ.qbs"] 6 | } 7 | -------------------------------------------------------------------------------- /tests/auto/environment/environment.pro: -------------------------------------------------------------------------------- 1 | QTC_LIB_DEPENDS += utils 2 | include(../qttest.pri) 3 | 4 | SOURCES += tst_environment.cpp 5 | -------------------------------------------------------------------------------- /tests/auto/extensionsystem/pluginmanager/circularplugins/circularplugins.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | SUBDIRS = plugin1 plugin2 plugin3 3 | -------------------------------------------------------------------------------- /tests/auto/extensionsystem/pluginspec/pluginspec.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | CONFIG += ordered 3 | 4 | SUBDIRS = testplugin test.pro 5 | -------------------------------------------------------------------------------- /tests/auto/extensionsystem/pluginspec/testdir/spec.json: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/timeline/timelinemodel/timelinemodel.pro: -------------------------------------------------------------------------------- 1 | include(../shared/shared.pri) 2 | 3 | SOURCES += \ 4 | tst_timelinemodel.cpp 5 | -------------------------------------------------------------------------------- /tests/auto/utils/treemodel/treemodel.pro: -------------------------------------------------------------------------------- 1 | QTC_LIB_DEPENDS += utils 2 | include(../../qttest.pri) 3 | 4 | SOURCES += tst_treemodel.cpp 5 | -------------------------------------------------------------------------------- /tests/manual/debugger/boost/boost.pro: -------------------------------------------------------------------------------- 1 | TARGET = boost 2 | CONFIG += qt 3 | DEPENDPATH += . 4 | INCLUDEPATH += . 5 | SOURCES += main.cpp 6 | -------------------------------------------------------------------------------- /tests/manual/qml/testprojects/plugins/imports/MyPlugin/qmldir: -------------------------------------------------------------------------------- 1 | MyComponent 1.0 MyComponent.qml 2 | MyComponent2 1.0 MyComponent2.qml 3 | -------------------------------------------------------------------------------- /doc/api/images/firstplugin-kitselection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/api/images/firstplugin-kitselection.png -------------------------------------------------------------------------------- /doc/images/creator_designinguserinterface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/creator_designinguserinterface.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-anchor-fill-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-anchor-fill-screen.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-boolean-false-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-boolean-false-blue.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-boolean-true-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-boolean-true-blue.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-element-properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-element-properties.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-export-item-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-export-item-button.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-navigator-arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-navigator-arrows.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-solid-color-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-solid-color-button.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-text-property-tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-text-property-tr.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-transparent-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-transparent-button.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-tutorial-user-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-tutorial-user-icon.png -------------------------------------------------------------------------------- /doc/images/qt-creator-debugging-helpers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qt-creator-debugging-helpers.png -------------------------------------------------------------------------------- /doc/images/qtcreator-add-library-wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-add-library-wizard.png -------------------------------------------------------------------------------- /doc/images/qtcreator-add-resource-wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-add-resource-wizard.png -------------------------------------------------------------------------------- /doc/images/qtcreator-add-resource-wizard2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-add-resource-wizard2.png -------------------------------------------------------------------------------- /doc/images/qtcreator-add-resource-wizard3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-add-resource-wizard3.png -------------------------------------------------------------------------------- /doc/images/qtcreator-analyze-start-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-analyze-start-button.png -------------------------------------------------------------------------------- /doc/images/qtcreator-android-certificate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-android-certificate.png -------------------------------------------------------------------------------- /doc/images/qtcreator-application-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-application-output.png -------------------------------------------------------------------------------- /doc/images/qtcreator-autotools-buildrun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-autotools-buildrun.png -------------------------------------------------------------------------------- /doc/images/qtcreator-build-dependencies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-build-dependencies.png -------------------------------------------------------------------------------- /doc/images/qtcreator-build-steps-custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-build-steps-custom.png -------------------------------------------------------------------------------- /doc/images/qtcreator-cmake-build-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-cmake-build-settings.png -------------------------------------------------------------------------------- /doc/images/qtcreator-cmake-import-wizard1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-cmake-import-wizard1.png -------------------------------------------------------------------------------- /doc/images/qtcreator-cmake-import-wizard2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-cmake-import-wizard2.png -------------------------------------------------------------------------------- /doc/images/qtcreator-code-pasting-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-code-pasting-options.png -------------------------------------------------------------------------------- /doc/images/qtcreator-code-style-alignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-code-style-alignment.png -------------------------------------------------------------------------------- /doc/images/qtcreator-code-style-content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-code-style-content.png -------------------------------------------------------------------------------- /doc/images/qtcreator-debugging-continue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-debugging-continue.png -------------------------------------------------------------------------------- /doc/images/qtcreator-edit-code-snippets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-edit-code-snippets.png -------------------------------------------------------------------------------- /doc/images/qtcreator-generic-highlighter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-generic-highlighter.png -------------------------------------------------------------------------------- /doc/images/qtcreator-keyboard-shortcuts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-keyboard-shortcuts.png -------------------------------------------------------------------------------- /doc/images/qtcreator-locals-expressions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-locals-expressions.png -------------------------------------------------------------------------------- /doc/images/qtcreator-manage-definitions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-manage-definitions.png -------------------------------------------------------------------------------- /doc/images/qtcreator-modeleditor-classes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-modeleditor-classes.png -------------------------------------------------------------------------------- /doc/images/qtcreator-modeleditor-packages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-modeleditor-packages.png -------------------------------------------------------------------------------- /doc/images/qtcreator-pointers-references.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-pointers-references.png -------------------------------------------------------------------------------- /doc/images/qtcreator-qt4-qtversions-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-qt4-qtversions-add.png -------------------------------------------------------------------------------- /doc/images/qtcreator-refactoring-replace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-refactoring-replace.png -------------------------------------------------------------------------------- /doc/images/qtcreator-remove-split-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-remove-split-button.png -------------------------------------------------------------------------------- /doc/images/qtcreator-run-selected-tests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-run-selected-tests.png -------------------------------------------------------------------------------- /doc/images/qtcreator-run-settings-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-run-settings-linux.png -------------------------------------------------------------------------------- /doc/images/qtcreator-search-allprojects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-search-allprojects.png -------------------------------------------------------------------------------- /doc/images/qtcreator-search-cpp-symbols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-search-cpp-symbols.png -------------------------------------------------------------------------------- /doc/images/qtcreator-setting-breakpoint1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-setting-breakpoint1.png -------------------------------------------------------------------------------- /doc/images/qtcreator-setting-breakpoint2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-setting-breakpoint2.png -------------------------------------------------------------------------------- /doc/images/qtcreator-textfinder-contents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-textfinder-contents.png -------------------------------------------------------------------------------- /doc/images/qtcreator-valgrind-callgrind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-valgrind-callgrind.png -------------------------------------------------------------------------------- /doc/images/qtquick-example-qml-inspector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtquick-example-qml-inspector.png -------------------------------------------------------------------------------- /doc/images/qtquick-example-script-console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtquick-example-script-console.png -------------------------------------------------------------------------------- /share/qtcreator/qmlicons/Qt/16x16/Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/share/qtcreator/qmlicons/Qt/16x16/Button.png -------------------------------------------------------------------------------- /share/qtcreator/qmlicons/Qt/16x16/Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/share/qtcreator/qmlicons/Qt/16x16/Image.png -------------------------------------------------------------------------------- /share/qtcreator/qmlicons/Qt/16x16/Slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/share/qtcreator/qmlicons/Qt/16x16/Slider.png -------------------------------------------------------------------------------- /share/qtcreator/qmlicons/Qt/16x16/State.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/share/qtcreator/qmlicons/Qt/16x16/State.png -------------------------------------------------------------------------------- /share/qtcreator/qmlicons/Qt/16x16/Switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/share/qtcreator/qmlicons/Qt/16x16/Switch.png -------------------------------------------------------------------------------- /share/qtcreator/qmlicons/Qt/16x16/TabBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/share/qtcreator/qmlicons/Qt/16x16/TabBar.png -------------------------------------------------------------------------------- /share/qtcreator/qmlicons/Qt/16x16/ToolBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/share/qtcreator/qmlicons/Qt/16x16/ToolBar.png -------------------------------------------------------------------------------- /share/qtcreator/qmlicons/Qt/16x16/Tumbler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/share/qtcreator/qmlicons/Qt/16x16/Tumbler.png -------------------------------------------------------------------------------- /share/qtcreator/qmlicons/Qt/16x16/Window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/share/qtcreator/qmlicons/Qt/16x16/Window.png -------------------------------------------------------------------------------- /share/qtcreator/templates/qt4project/customwidgetwizard/tpl_widget_include.pri: -------------------------------------------------------------------------------- 1 | HEADERS +=@WIDGET_HEADERS@ 2 | SOURCES +=@WIDGET_SOURCES@ 3 | -------------------------------------------------------------------------------- /share/qtcreator/templates/wizards/files/js/file.js: -------------------------------------------------------------------------------- 1 | @if %{Stateless} 2 | .pragma library 3 | 4 | @endif 5 | function func() { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /src/libs/extensionsystem/images/error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/extensionsystem/images/error@2x.png -------------------------------------------------------------------------------- /src/libs/extensionsystem/images/notloaded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/extensionsystem/images/notloaded.png -------------------------------------------------------------------------------- /src/libs/qmleditorwidgets/images/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/qmleditorwidgets/images/cancel.png -------------------------------------------------------------------------------- /src/libs/qmleditorwidgets/images/eye_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/qmleditorwidgets/images/eye_open.png -------------------------------------------------------------------------------- /src/libs/qmleditorwidgets/images/icon-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/qmleditorwidgets/images/icon-top.png -------------------------------------------------------------------------------- /src/libs/qmleditorwidgets/images/sizegrip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/qmleditorwidgets/images/sizegrip.png -------------------------------------------------------------------------------- /src/libs/qmleditorwidgets/images/spindown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/qmleditorwidgets/images/spindown.png -------------------------------------------------------------------------------- /src/libs/qmleditorwidgets/images/spinup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/qmleditorwidgets/images/spinup.png -------------------------------------------------------------------------------- /src/libs/qmleditorwidgets/images/up_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/qmleditorwidgets/images/up_arrow.png -------------------------------------------------------------------------------- /src/libs/timeline/qml/ico_rangeselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/timeline/qml/ico_rangeselected.png -------------------------------------------------------------------------------- /src/libs/timeline/qml/ico_rangeselection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/timeline/qml/ico_rangeselection.png -------------------------------------------------------------------------------- /src/libs/timeline/qml/ico_selectionmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/timeline/qml/ico_selectionmode.png -------------------------------------------------------------------------------- /src/libs/utils/images/crumblepath-segment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/libs/utils/images/crumblepath-segment.png -------------------------------------------------------------------------------- /src/plugins/autotest/images/collapse@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/autotest/images/collapse@2x.png -------------------------------------------------------------------------------- /src/plugins/autotest/images/leafsort@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/autotest/images/leafsort@2x.png -------------------------------------------------------------------------------- /src/plugins/autotest/unit_test/mixed_atp/tests/auto/quickauto/main.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | QUICK_TEST_MAIN(blob) 4 | -------------------------------------------------------------------------------- /src/plugins/autotest/unit_test/mixed_atp/tests/auto/quickauto2/main.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | QUICK_TEST_MAIN(blob2) 4 | -------------------------------------------------------------------------------- /src/plugins/baremetal/images/QtBareMetal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/baremetal/images/QtBareMetal.png -------------------------------------------------------------------------------- /src/plugins/beautifier/images/beautifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/beautifier/images/beautifier.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/find/images/expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/find/images/expand.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/find/images/regexp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/find/images/regexp.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/arrowdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/arrowdown.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/arrowup@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/arrowup@2x.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/editclear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/editclear.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/editpaste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/editpaste.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/extension.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/filtericon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/filtericon.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/inputfield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/inputfield.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/linkicon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/linkicon@2x.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/locked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/locked@2x.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/magnifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/magnifier.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/mode_Design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/mode_Design.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/mode_Edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/mode_Edit.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/progressbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/progressbar.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/pushbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/pushbutton.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/reload_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/reload_gray.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/sidebaricon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/sidebaricon.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/statusbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/statusbar.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/unknownfile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/unknownfile.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/unlocked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/unlocked@2x.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/warning@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/warning@2x.png -------------------------------------------------------------------------------- /src/plugins/coreplugin/images/warningfill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/coreplugin/images/warningfill.png -------------------------------------------------------------------------------- /src/plugins/cppeditor/images/dark_qt_cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/cppeditor/images/dark_qt_cpp.png -------------------------------------------------------------------------------- /src/plugins/cpptools/images/category_cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/cpptools/images/category_cpp.png -------------------------------------------------------------------------------- /src/plugins/debugger/images/breakpoint_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/debugger/images/breakpoint_16.png -------------------------------------------------------------------------------- /src/plugins/debugger/images/breakpoint_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/debugger/images/breakpoint_24.png -------------------------------------------------------------------------------- /src/plugins/debugger/images/location_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/debugger/images/location_16.png -------------------------------------------------------------------------------- /src/plugins/debugger/images/location_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/debugger/images/location_24.png -------------------------------------------------------------------------------- /src/plugins/debugger/images/mode_debug@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/debugger/images/mode_debug@2x.png -------------------------------------------------------------------------------- /src/plugins/diffeditor/images/topbar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/diffeditor/images/topbar@2x.png -------------------------------------------------------------------------------- /src/plugins/diffeditor/images/unifieddiff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/diffeditor/images/unifieddiff.png -------------------------------------------------------------------------------- /src/plugins/glsleditor/images/attribute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/glsleditor/images/attribute.png -------------------------------------------------------------------------------- /src/plugins/help/images/mode_help_mask@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/help/images/mode_help_mask@2x.png -------------------------------------------------------------------------------- /src/plugins/imageviewer/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/imageviewer/images/background.png -------------------------------------------------------------------------------- /src/plugins/imageviewer/images/play-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/imageviewer/images/play-small.png -------------------------------------------------------------------------------- /src/plugins/projectexplorer/images/build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/projectexplorer/images/build.png -------------------------------------------------------------------------------- /src/plugins/projectexplorer/images/clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/projectexplorer/images/clean.png -------------------------------------------------------------------------------- /src/plugins/projectexplorer/images/run@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/projectexplorer/images/run@2x.png -------------------------------------------------------------------------------- /src/plugins/projectexplorer/images/window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/projectexplorer/images/window.png -------------------------------------------------------------------------------- /src/plugins/qmldesigner/qmldesignerextension/colortool/colortool.pri: -------------------------------------------------------------------------------- 1 | HEADERS += $$PWD/colortool.h 2 | 3 | SOURCES += $$PWD/colortool.cpp 4 | -------------------------------------------------------------------------------- /src/plugins/qtsupport/images/dark_forms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/qtsupport/images/dark_forms.png -------------------------------------------------------------------------------- /src/plugins/qtsupport/images/dark_qt_qrc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/qtsupport/images/dark_qt_qrc.png -------------------------------------------------------------------------------- /src/plugins/qtsupport/images/qt_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/qtsupport/images/qt_project.png -------------------------------------------------------------------------------- /src/plugins/resourceeditor/images/qt_qrc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/resourceeditor/images/qt_qrc.png -------------------------------------------------------------------------------- /src/plugins/valgrind/images/eye_crossed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/valgrind/images/eye_crossed.png -------------------------------------------------------------------------------- /src/plugins/vcsbase/images/category_vcs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/vcsbase/images/category_vcs.png -------------------------------------------------------------------------------- /src/plugins/welcome/images/mode_edit_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/welcome/images/mode_edit_mask.png -------------------------------------------------------------------------------- /src/plugins/welcome/images/mode_welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/src/plugins/welcome/images/mode_welcome.png -------------------------------------------------------------------------------- /tests/auto/diff/differ/differ.pro: -------------------------------------------------------------------------------- 1 | QTC_PLUGIN_DEPENDS += diffeditor 2 | 3 | include(../../qttest.pri) 4 | 5 | SOURCES += tst_differ.cpp 6 | -------------------------------------------------------------------------------- /tests/auto/qml/qmldesigner/data/qt-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/tests/auto/qml/qmldesigner/data/qt-logo.png -------------------------------------------------------------------------------- /tests/unit/unittest/data/diagnostic_comparison_fixit_expected1.cpp: -------------------------------------------------------------------------------- 1 | void function() 2 | { 3 | int i = 0; 4 | if (i == 3) {} 5 | } 6 | -------------------------------------------------------------------------------- /tests/unit/unittest/data/diagnostic_comparison_fixit_expected2.cpp: -------------------------------------------------------------------------------- 1 | void function() 2 | { 3 | int i = 0; 4 | if ((i = 3)) {} 5 | } 6 | -------------------------------------------------------------------------------- /tests/unit/unittest/data/diagnostic_diagnosticset_mainfile.cpp: -------------------------------------------------------------------------------- 1 | #include "diagnostic_diagnosticset_header.cpp" 2 | 3 | void f() {} 4 | 5 | -------------------------------------------------------------------------------- /doc/images/creator_android_tutorial_ex_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/creator_android_tutorial_ex_app.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-borderimage-bindings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-borderimage-bindings.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-tutorial-design-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-tutorial-design-mode.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-tutorial-topleftrect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-tutorial-topleftrect.png -------------------------------------------------------------------------------- /doc/images/qmldesigner-uiforms-reset-height.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qmldesigner-uiforms-reset-height.png -------------------------------------------------------------------------------- /doc/images/qtcreator-android-select-devices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-android-select-devices.png -------------------------------------------------------------------------------- /doc/images/qtcreator-clang-static-analyzer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-clang-static-analyzer.png -------------------------------------------------------------------------------- /doc/images/qtcreator-context-sensitive-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-context-sensitive-help.png -------------------------------------------------------------------------------- /doc/images/qtcreator-custom-project-wizards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-custom-project-wizards.png -------------------------------------------------------------------------------- /doc/images/qtcreator-debug-button-step-into.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-debug-button-step-into.png -------------------------------------------------------------------------------- /doc/images/qtcreator-debug-button-step-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-debug-button-step-out.png -------------------------------------------------------------------------------- /doc/images/qtcreator-debug-button-step-over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-debug-button-step-over.png -------------------------------------------------------------------------------- /doc/images/qtcreator-editortoolbar-symbols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-editortoolbar-symbols.png -------------------------------------------------------------------------------- /doc/images/qtcreator-gs-build-example-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-gs-build-example-open.png -------------------------------------------------------------------------------- /doc/images/qtcreator-help-add-bookmark-dlg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/qt-creator/master/doc/images/qtcreator-help-add-bookmark-dlg.png --------------------------------------------------------------------------------