summaryrefslogtreecommitdiff
path: root/src/libs/utils/tooltip
Commit message (Collapse)AuthorAgeFilesLines
* Make WidgetTips Squish-testableRobert Loehning2020-04-211-0/+1
| | | | | | Change-Id: I337fdca3541c5b2fb8f09ab2d7721b8950c0bea9 Reviewed-by: Eike Ziller <eike.ziller@qt.io> Reviewed-by: Christian Stenger <christian.stenger@qt.io>
* Utils: Fix deprecation warningChristian Kandeler2020-01-061-1/+1
| | | | | Change-Id: I997af1855f606e81480b11ecd59be4e36a8882dc Reviewed-by: Christian Stenger <christian.stenger@qt.io>
* TextEditor: Allow explicitly passing the text format for tool tipsEike Ziller2019-11-064-6/+53
| | | | | Change-Id: I6e592a73fa6a3229cda9e76a4ab33f2c0ca330c5 Reviewed-by: David Schulz <david.schulz@qt.io>
* TextEditor: Do not change the text format for tool tipsEike Ziller2019-11-062-11/+58
| | | | | | | | | We should not force the tool tip text to HTML when help content is available or when adding the F1 icon. Instead add help content and F1 icon into the tool tip layout. Change-Id: Ibe2d4fa2fb81bcda4e5aeb0d7d86dbf63fcf3ce6 Reviewed-by: David Schulz <david.schulz@qt.io>
* Avoid warning on empty expressionshjk2019-07-231-1/+1
| | | | | | | | For some reason, Q_UNUSED includes already a semicolon, adding one on the user side creates an additional empty statement. Change-Id: I9c5e8fac381345a60792cb75e2938fd53958d3b0 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
* Utils: Move reuse.h out of sighthjk2019-07-054-62/+30
| | | | | | | | It caused a deprecation warning in each user. The warning itself is not gone but appears less often now. Change-Id: I03a995897635a182fa254fa574ccbfbfc7515f1a Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
* Utils: Fix a case fall through warninghjk2019-07-041-0/+1
| | | | | Change-Id: I0b27228c888324dd68403580e2001fc3a5820ec2 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
* Squish: Fix verification of tool tipsChristian Stenger2019-02-141-0/+1
| | | | | Change-Id: I12487c784cf784ca7ddf705895c99f0ed912b0f4 Reviewed-by: Robert Loehning <robert.loehning@qt.io>
* Help: Avoid double lookup for help tooltipsEike Ziller2019-02-014-45/+47
| | | | | | | | Save the HelpItem directly in the tooltip instead of the help ID which would need to be looked up again. Change-Id: I107e82e89d9ea26cad9d6532ad4c687d1ac8f1ec Reviewed-by: David Schulz <david.schulz@qt.io>
* Merge remote-tracking branch 'origin/4.8'Eike Ziller2018-11-291-0/+2
|\ | | | | | | | | | | | | Conflicts: src/plugins/android/androidrunnerworker.cpp Change-Id: Ibd8b99435365fb7e7d488313fd1d2b3a75adad1b
| * Utils: Pile more hacks onto our "QTipLabel"Ulf Hermann2018-11-271-0/+2
| | | | | | | | | | | | | | | | | | | | | | The moc files "#include <memory>" these days. You cannot do that from within a custom namespace or funny things will happen. Therefore, include it already before the namespace. Change-Id: I34f808cd22634c85878658ec921ca31649fb37c3 Reviewed-by: Orgad Shaneh <orgads@gmail.com> Reviewed-by: hjk <hjk@qt.io> Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* | Utils: Replace Tooltip hack with another tooltip hackhjk2018-11-273-24/+35
|/ | | | | | | | | | | | | Instead of fooling moc into believing it operates on a class called QTipLabel and create a "QTipLabel" class name from that, create a metaobject with the "QTipLabel" class name directly. This trades messing around with namespaces for assumptions on the stability of QMetaObject class layout. Given that this is an exported class in Qt Core, that's unlikely to break soon. Change-Id: Iad24dd2a8a7f492e4b238d390888f89c6dd29ea9 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* Utils: ModernizeOrgad Shaneh2018-09-211-21/+21
| | | | | | | range-based for, nullptr, member initializers, override. Change-Id: I21ac5b23883c08dbd75819bb3298bc956cdb972c Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
* Utils: ModernizeAlessandro Portale2018-07-202-7/+7
| | | | | | | | | | | | modernize-use-auto modernize-use-nullptr modernize-use-override modernize-use-using modernize-use-default-member-init modernize-use-equals-default Change-Id: I8d44d9405011a1878353baf9325f7af90b89db02 Reviewed-by: hjk <hjk@qt.io>
* Utils: Consistently use nullptrTobias Hunger2018-05-131-4/+4
| | | | | | | Fixed by clang-tidy modernize-use-nullptr. Change-Id: I93edae67271a521e3b2a1f97f486e5fa97009836 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
* Utils: Use override consistentlyTobias Hunger2018-05-131-2/+2
| | | | | | | clang-tidy fixes from modernize-use-override check. Change-Id: I89d27f359b6ee507153cb3712f61f81471ff0858 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
* Tooltip: Hide when Escape is pressedOrgad Shaneh2017-09-131-2/+5
| | | | | Change-Id: Ib516cbbd9b51ddac3dac48668e3341830233af4b Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* Fix that tool tips for long texts became too smallEike Ziller2017-05-021-5/+1
| | | | | | | | | | | | | | If the unwrapped tool tip is too long, we may not use the "preferred" width of the label with word wrap on, because turning on word wrap makes the preferred width very small. That would lead to tool tips with long text becoming very small instead of "as large as possible but with word wrap". Instead set the width to the largest that we deem desired, and let the label word wrap on that. As an example look at the tool tip on styleHint or setMask in tips.cpp Change-Id: Id804b6ea4e4a872e65dd7f49eb3cd52553c04cfe Reviewed-by: Nikolai Kosjar <nikolai.kosjar@qt.io>
* Reduce usage of qApp in favor of static function callsAlessandro Portale2017-04-241-3/+3
| | | | | | | | | | | | Q*Application classes have unusually many static functions. In many cases in our code, these functions are unnecessarily called as instance functions, using the qApp helper. This patch replaces many occurencies of qApp with the according Q*Application classname. Change-Id: I6099a419fa7bf969891269c37ed7a9e817ef5124 Reviewed-by: hjk <hjk@qt.io>
* Utils: Replace macro usages with HostOsInfoOrgad Shaneh2016-09-211-10/+9
| | | | | Change-Id: Iddec811b4b57a2a898ebdf319a3e2ec875febd6c Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* CppEditor: Use full tooltip in ClangTextMarkhjk2016-07-252-0/+15
| | | | | Change-Id: I39cc64acbdbcd5e5156e1514acaf9674a91e81a4 Reviewed-by: Nikolai Kosjar <nikolai.kosjar@qt.io>
* tooltip: make TextTip links clickableMarc Reilly2016-06-242-0/+13
| | | | | | | | This enables the text to contain links which the user can click on to follow. Change-Id: I892d1d915a48974e72adb0e712d46220560f5537 Reviewed-by: David Schulz <david.schulz@theqtcompany.com>
* Merge remote-tracking branch 'origin/4.0'Eike Ziller2016-05-271-7/+5
|\ | | | | | | Change-Id: I80bc3371c6d7cf9f2d46cbcf8e79e4761213d8aa
| * Fix hiding tooltips on windows.David Schulz2016-05-251-7/+5
| | | | | | | | | | | | | | | | | | | | basically an rewrite of commit c47e52c97b6f303e6ffa6f160cdbd3155805f2de. Task-number: QTCREATORBUG-15882 Change-Id: I711f99ed0ae1d1859d5ef5cbd2128215a10b7ed4 Reviewed-by: Nikolai Kosjar <nikolai.kosjar@qt.io> Reviewed-by: Eike Ziller <eike.ziller@qt.io> Reviewed-by: Orgad Shaneh <orgads@gmail.com>
* | Merge remote-tracking branch 'origin/4.0'Eike Ziller2016-05-091-1/+2
|\ \ | |/ | | | | | | | | | | | | | | Conflicts: src/plugins/autotest/testcodeparser.cpp src/tools/clangbackend/ipcsource/clangbackendclangipc-source.pri tests/unit/unittest/unittest.pro Change-Id: I9db4fbea6ea7c9fdd0d8e1703735af20c92e754b
| * Do not crash when closing editor while diagnostic tool tip is shownEike Ziller2016-05-091-1/+2
| | | | | | | | | | | | | | | | | | Make sure that the tool tip instance is reset to nullptr even if it was closed automatically. Change-Id: I3c718634d90dddc5822a634d082c263f51901684 Reviewed-by: hjk <hjk@theqtcompany.com> Reviewed-by: Nikolai Kosjar <nikolai.kosjar@qt.io>
* | Wholesale conversion to #pragma oncehjk2016-03-304-16/+4
|/ | | | | | | Kudos to cgmb and https://github.com/cgmb/guardonce Change-Id: Ifa8970734b8d43fd08c9260c645bdb0228633791 Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
* Utils: Hide tooltip if application becomes inactiveNikolai Kosjar2016-03-081-0/+7
| | | | | | | | | | | | Switching to another application with "Alt+Tab" was working fine here - the tooltip closed as expected. But switching by clicking on another application window lead to a left over tooltip. Tested with openbox 3.6 window manager. Task-number: QTCREATORBUG-13397 Change-Id: Id92f6df3b63256a962591df2912a0819fc777073 Reviewed-by: hjk <hjk@theqtcompany.com>
* Clang: Display also child diagnostics in tooltipsNikolai Kosjar2016-02-122-0/+6
| | | | | | | | | | | ...by introducing a custom tooltip widget for diagnostics. Locations and fixits of child diagnostics are presented as clickable links, leading to that position in the editor or to the execution of that fix it. Change-Id: I83e801e22d0421dd29275e333e5dd91587885cf1 Reviewed-by: Alessandro Portale <alessandro.portale@theqtcompany.com>
* Update License according to agreement with Free Qt FoundationTobias Hunger2016-01-196-102/+72
| | | | | | | * Update remaining files in src Change-Id: I1896f17fcf34f71c3310c87899fb5171b8e4afb1 Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
* HighDPI fixesAlessandro Portale2015-11-101-11/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | ColorTip: Draw the border around the color tooltip properly. MiniProjectTargetSelector: Fixing a few misplaced outlines FancyActionBar: Fixing a few misplaced outlines, also: - deduplicate hover gradient painting code - use pixmapcache for the hover gradient - only draw the hover gradient if the tab is hovered - use 0-255 as range for fading value QtQuick Designer: HighDPI form editor icons, and removing some since a while unused icons. ProjectExplorer Mode: HighDPI graphics and fixing a few misplaced outlines Task-number: QTCREATORBUG-15222 Change-Id: I4fcf515014317791499ad89bf6ef88d961e4b752 Reviewed-by: Alessandro Portale <alessandro.portale@theqtcompany.com>
* Fix wrong context help if tool tip was not shown for focus widgetEike Ziller2015-09-306-29/+249
| | | | | | | | | | | | | The tool tip never has focus, so it cannot become the IContext that is checked for context help. So, integrate the help id into Utils::ToolTip and check the tool tip first when checking for context help. As a side effect the [F1] button and help id for the tool tip is now also available for use outside of the text editors. Task-number: QTCREATORBUG-5345 Change-Id: Id975703caf161d1183c247e8ad8bb693b90fd306 Reviewed-by: Nikolai Kosjar <nikolai.kosjar@theqtcompany.com> Reviewed-by: David Schulz <david.schulz@theqtcompany.com>
* Android Avd Dialog: Fix what the Name validator acceptsDaniel Teske2015-05-152-1/+8
| | | | | | | | While at it, make non acceptable chars give better feedback. Change-Id: I080f01592b2c8cbd6580734ca3e6fd46b9491106 Task-number: QTCREATORBUG-13589 Reviewed-by: BogDan Vatra <bogdan@kde.org>
* Clean exported headers of the Utils library.Friedemann Kleint2015-02-271-1/+0
| | | | | Change-Id: I60638548b2dada5211787ad2013eb65761af5717 Reviewed-by: hjk <hjk@theqtcompany.com>
* Merge commit '3c85058694ee2e41658d17f524fb48f0b187d2fe'Eike Ziller2015-02-126-36/+36
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/libs/utils/tooltip/tipcontents.cpp src/libs/utils/tooltip/tipcontents.h src/plugins/android/androiddeployqtstep.cpp src/plugins/baremetal/baremetalconstants.h src/plugins/baremetal/baremetaldevice.cpp src/plugins/baremetal/baremetaldevice.h src/plugins/baremetal/baremetaldeviceconfigurationwidget.cpp src/plugins/baremetal/baremetaldeviceconfigurationwidget.h src/plugins/baremetal/baremetaldeviceconfigurationwizard.cpp src/plugins/baremetal/baremetaldeviceconfigurationwizardpages.cpp src/plugins/baremetal/baremetaldeviceconfigurationwizardpages.h src/plugins/baremetal/baremetalplugin.cpp src/plugins/baremetal/baremetalplugin.h src/plugins/baremetal/baremetalruncontrolfactory.cpp src/plugins/baremetal/baremetalruncontrolfactory.h src/plugins/cppeditor/cppcodemodelinspectordialog.cpp src/plugins/cppeditor/cppdoxygen_test.cpp src/plugins/cppeditor/cppdoxygen_test.h src/plugins/debugger/breakpointmarker.cpp src/plugins/debugger/debuggeritemmodel.cpp src/plugins/debugger/debuggeritemmodel.h src/plugins/debugger/loadcoredialog.cpp src/plugins/genericprojectmanager/cppmodelmanagerhelper.cpp src/plugins/projectexplorer/addnewmodel.cpp src/plugins/projectexplorer/addnewmodel.h src/plugins/projectexplorer/jsonwizard/jsonfieldpage.cpp src/plugins/qmlprofiler/abstracttimelinemodel.cpp src/plugins/qmlprofiler/abstracttimelinemodel.h src/plugins/qmlprofiler/notesmodel.cpp src/plugins/qmlprofiler/qml/CategoryLabel.qml src/plugins/qmlprofiler/qml/MainView.qml src/plugins/qmlprofiler/qml/Overview.js src/plugins/qmlprofiler/qml/Overview.qml src/plugins/qmlprofiler/qml/TimeDisplay.qml src/plugins/qmlprofiler/qml/TimeMarks.qml src/plugins/qmlprofiler/qmlprofilertimelinemodelproxy.cpp src/plugins/qmlprofiler/sortedtimelinemodel.cpp src/plugins/qmlprofiler/sortedtimelinemodel.h src/plugins/qmlprofiler/timelinemodelaggregator.cpp src/plugins/qmlprofiler/timelinemodelaggregator.h src/plugins/qmlprofiler/timelinerenderer.cpp src/plugins/qmlprofiler/timelinerenderer.h src/plugins/qmlprojectmanager/QmlProjectManager.json.in src/plugins/texteditor/findinfiles.cpp src/plugins/vcsbase/vcsconfigurationpage.cpp src/shared/qbs src/shared/scriptwrapper/interface_wrap_helpers.h src/shared/scriptwrapper/wrap_helpers.h tests/auto/qmlprofiler/abstracttimelinemodel/tst_abstracttimelinemodel.cpp tests/system/suite_debugger/tst_debug_empty_main/test.py tests/system/suite_debugger/tst_qml_js_console/test.py tests/system/suite_debugger/tst_qml_locals/test.py Change-Id: I67540b648f8b162496f4aa606b04d50c7c9125c6
| * Update LicenseEike Ziller2015-01-168-48/+48
| | | | | | | | | | Change-Id: I711d5fb475ef814a1dc9d2822740e827f3f67125 Reviewed-by: Alessandro Portale <alessandro.portale@digia.com>
* | Misc: Remove unneeded qualificationsOrgad Shaneh2015-02-061-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Mostly done using the following ruby script: Dir.glob('**/*.cpp').each { |file| next if file =~ %r{src/shared/qbs|/qmljs/} s = File.read(file) s.scan(/^using namespace (.*);$/) { ns = $1 t = s.gsub(/^(.*)\b#{ns}::((?!Const)[A-Z])/) { |m| before = $1 char = $2 if before =~ /"|\/\/|\\|using|SIGNAL|SLOT|Q_/ m else before + char end } if t != s puts file File.open(file, 'w').write(t) end } } Change-Id: I919da493d0629b719d328e5e71c96a29d230dfd1 Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com> Reviewed-by: hjk <hjk@theqtcompany.com>
* | Utils: Simplify tooltip architecture and cleanuphjk2014-12-156-306/+153
| | | | | | | | | | | | | | | | This mainly merges TipContents into the the actual tooltip labels. Change-Id: I64b576c987bce034842f7e3f324b81595dae0713 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
* | Utils: Start simplification of tooltip handlinghjk2014-12-086-259/+102
|/ | | | | | | | There's a bit too much unneeded flexibility in there, requiring extra boiler-plate code on the user side. Change-Id: I34d03838fb1cd3182fcbb93bf65158ebfc7e2bce Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
* Debugger: Tooltip timing workarounds.hjk2014-11-152-0/+7
| | | | | | | | | | There's some bad interaction between the delayed hide, the deleteLater() from CloseOnDelete, and the async evaluation. Work around by start from scratch for each tooltip. On the downside we have more flicker. Change-Id: I4801368c07895b652e10fe1d173b21cef7869ed0 Reviewed-by: hjk <hjk121@nokiamail.com>
* Debugger: Make pinned tooltips a frameless Tool windowhjk2014-11-154-23/+15
| | | | | | | | | This avoids the "StayOnTop" situation described in QTCREATORBUG-13397 for the case of pinned tooltips. Task-number: QTCREATORBUG-13397 Change-Id: I3801368c07895b652e10fe1d173b21cef7869ed0 Reviewed-by: hjk <hjk121@nokiamail.com>
* Merge remote-tracking branch 'origin/3.2'Eike Ziller2014-10-148-56/+64
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/libs/utils/ipaddresslineedit.cpp src/libs/utils/logging.h src/plugins/analyzerbase/AnalyzerBase.pluginspec.in src/plugins/android/Android.pluginspec.in src/plugins/android/androiddeploystep.cpp src/plugins/android/androiddeploystep.h src/plugins/android/androiddeploystepfactory.cpp src/plugins/android/androiddeploystepwidget.cpp src/plugins/android/androidpackagecreationfactory.cpp src/plugins/android/androidpackagecreationstep.cpp src/plugins/android/androidpackagecreationstep.h src/plugins/android/androidpackagecreationwidget.cpp src/plugins/android/androidpackagecreationwidget.h src/plugins/android/javafilewizard.cpp src/plugins/autotoolsprojectmanager/AutotoolsProjectManager.pluginspec.in src/plugins/baremetal/BareMetal.pluginspec.in src/plugins/bazaar/Bazaar.pluginspec.in src/plugins/beautifier/Beautifier.pluginspec.in src/plugins/bineditor/BinEditor.pluginspec.in src/plugins/bookmarks/Bookmarks.pluginspec.in src/plugins/clangcodemodel/ClangCodeModel.pluginspec.in src/plugins/clangcodemodel/clanghighlightingsupport.cpp src/plugins/clangcodemodel/clangsymbolsearcher.cpp src/plugins/classview/ClassView.pluginspec.in src/plugins/clearcase/ClearCase.pluginspec.in src/plugins/cmakeprojectmanager/CMakeProjectManager.pluginspec.in src/plugins/cmakeprojectmanager/cmakeeditorfactory.cpp src/plugins/cmakeprojectmanager/cmakehighlighter.cpp src/plugins/coreplugin/Core.pluginspec.in src/plugins/cpaster/CodePaster.pluginspec.in src/plugins/cppeditor/CppEditor.pluginspec.in src/plugins/cppeditor/cppfilewizard.cpp src/plugins/cpptools/CppTools.pluginspec.in src/plugins/cpptools/cpphighlightingsupportinternal.cpp src/plugins/cpptools/cppmodelmanagerinterface.cpp src/plugins/cpptools/cppmodelmanagerinterface.h src/plugins/cvs/CVS.pluginspec.in src/plugins/debugger/Debugger.pluginspec.in src/plugins/designer/Designer.pluginspec.in src/plugins/diffeditor/DiffEditor.pluginspec.in src/plugins/emacskeys/EmacsKeys.pluginspec.in src/plugins/fakevim/FakeVim.pluginspec.in src/plugins/genericprojectmanager/GenericProjectManager.pluginspec.in src/plugins/git/Git.pluginspec.in src/plugins/git/gitorious/gitorious.cpp src/plugins/git/gitorious/gitorious.h src/plugins/git/gitorious/gitoriousclonewizard.cpp src/plugins/git/gitorious/gitorioushostwidget.cpp src/plugins/git/gitorious/gitorioushostwidget.h src/plugins/git/gitorious/gitorioushostwizardpage.cpp src/plugins/git/gitorious/gitoriousprojectwidget.cpp src/plugins/git/gitorious/gitoriousprojectwidget.h src/plugins/git/gitorious/gitoriousprojectwizardpage.cpp src/plugins/git/gitorious/gitoriousprojectwizardpage.h src/plugins/git/gitorious/gitoriousrepositorywizardpage.cpp src/plugins/git/gitorious/gitoriousrepositorywizardpage.h src/plugins/glsleditor/GLSLEditor.pluginspec.in src/plugins/glsleditor/glsleditorfactory.cpp src/plugins/glsleditor/glslfilewizard.cpp src/plugins/helloworld/HelloWorld.pluginspec.in src/plugins/help/Help.pluginspec.in src/plugins/imageviewer/ImageViewer.pluginspec.in src/plugins/ios/Ios.pluginspec.in src/plugins/macros/Macros.pluginspec.in src/plugins/mercurial/Mercurial.pluginspec.in src/plugins/perforce/Perforce.pluginspec.in src/plugins/projectexplorer/ProjectExplorer.pluginspec.in src/plugins/pythoneditor/PythonEditor.pluginspec.in src/plugins/pythoneditor/pythoneditorwidget.cpp src/plugins/pythoneditor/wizard/pythonfilewizard.cpp src/plugins/qbsprojectmanager/QbsProjectManager.pluginspec.in src/plugins/qbsprojectmanager/defaultpropertyprovider.cpp src/plugins/qmakeprojectmanager/QmakeProjectManager.pluginspec.in src/plugins/qmakeprojectmanager/profileeditorfactory.cpp src/plugins/qmldesigner/QmlDesigner.pluginspec.in src/plugins/qmljseditor/QmlJSEditor.pluginspec.in src/plugins/qmljseditor/qmljseditorfactory.cpp src/plugins/qmljstools/QmlJSTools.pluginspec.in src/plugins/qmlprofiler/QmlProfiler.pluginspec.in src/plugins/qmlprojectmanager/QmlProjectManager.pluginspec.in src/plugins/qnx/Qnx.pluginspec.in src/plugins/qtsupport/QtSupport.pluginspec.in src/plugins/remotelinux/RemoteLinux.pluginspec.in src/plugins/resourceeditor/ResourceEditor.pluginspec.in src/plugins/resourceeditor/resourcewizard.h src/plugins/subversion/Subversion.pluginspec.in src/plugins/tasklist/TaskList.pluginspec.in src/plugins/texteditor/TextEditor.pluginspec.in src/plugins/texteditor/basetexteditor_p.h src/plugins/texteditor/basetextmark.cpp src/plugins/texteditor/codeassist/basicproposalitemlistmodel.h src/plugins/texteditor/codeassist/defaultassistinterface.h src/plugins/texteditor/codeassist/iassistproposalitem.cpp src/plugins/texteditor/itexteditor.cpp src/plugins/texteditor/itexteditor.h src/plugins/texteditor/itextmark.cpp src/plugins/texteditor/plaintexteditor.cpp src/plugins/texteditor/plaintexteditor.h src/plugins/texteditor/texteditoractionhandler.cpp src/plugins/todo/Todo.pluginspec.in src/plugins/updateinfo/UpdateInfo.pluginspec.in src/plugins/valgrind/Valgrind.pluginspec.in src/plugins/vcsbase/VcsBase.pluginspec.in src/plugins/welcome/Welcome.pluginspec.in src/plugins/winrt/WinRt.pluginspec.in tests/auto/debugger/temporarydir.h Change-Id: I254af8be8119fe9855287909e17d4b8ca9d2fc2f
| * License updateEike Ziller2014-10-098-56/+64
| | | | | | | | | | Change-Id: I3c22ef2685d7aa589f5d0ab74d693653a4c32082 Reviewed-by: Alessandro Portale <alessandro.portale@digia.com>
* | Merge remote-tracking branch 'origin/3.2'Eike Ziller2014-09-291-0/+1
|\ \ | |/ | | | | | | | | | | Conflicts: src/plugins/projectexplorer/projectexplorer.cpp Change-Id: I6dffc1925e6bf35cf6e9fe0676c11d1a5143a208
| * Merge remote-tracking branch 'origin/3.1' into 3.2Eike Ziller2014-09-291-0/+1
| |\ | | | | | | | | | Change-Id: I5d9b1d71eea5ffaed36477d73915f4a4fb4ab90c
| | * Fix the build: add missing #includes3.1Thiago Macieira2014-08-181-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | <QWidget> for QWidget, <QDataStream> for QDataStream and <QMetaObject> for Q_GADGET (technically, qobjectdefs.h) Change-Id: Ia7e8b12ff4c67827bb7782a0337714e330de1db1 Reviewed-by: Erik Verbruggen <erik.verbruggen@digia.com> Reviewed-by: hjk <hjk121@nokiamail.com>
* | | Qml ColorTip: Remove borderDaniel Teske2014-08-081-1/+1
|/ / | | | | | | | | | | Task-number: QTCREATORBUG-7273 Change-Id: I9a182d9385494a9f67843b8f022bcddbf9669c37 Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com>
* | Utils: Remove unneeded namespace qualificationsOrgad Shaneh2014-07-164-8/+8
|/ | | | | | Change-Id: Iacab8410ab4d3b63f96e7541b450e3cc729ab662 Reviewed-by: Daniel Teske <daniel.teske@digia.com> Reviewed-by: hjk <hjk121@nokiamail.com>
* Clean up single namespace forward-declarationsOrgad Shaneh2014-02-121-3/+1
| | | | | | | | | | | | | | | | | | Done using the following ruby script: Dir.glob('**/*.h').each { |file| if File.file?(file) s = File.read(file) t = s.gsub(/^namespace .+ \{\n\s*class .*;\n\s*\}.*$/) { |m| m.gsub(/\n\s*/, ' ').gsub(/\s*\/\/.*$/, '') } if t != s puts file File.open(file, 'w').write(t) end end } Change-Id: Iffcb966e90eb8e1a625eccd5dd0b94f000ae368e Reviewed-by: hjk <hjk121@nokiamail.com>
* Incremented year in copyright infoRobert Loehning2014-01-088-8/+8
| | | | | | Change-Id: Ib5423fdd064e4546f848c0b640b0ed0514c26d3a Reviewed-by: Leena Miettinen <riitta-leena.miettinen@digia.com> Reviewed-by: Kai Koehne <kai.koehne@digia.com>