summaryrefslogtreecommitdiff
path: root/src/plugins/texteditor/tooltip/tips.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Move TextEditor::ToolTip to UtilsDaniel Teske2013-01-111-269/+0
| | | | | | | To enabled reuse from all plugins. Change-Id: I1de68c8e6ed017d45f1248b2043f9611becc3b54 Reviewed-by: David Schulz <david.schulz@digia.com>
* Adjust license headershjk2012-10-051-21/+20
| | | | | Change-Id: Ice592c6de9951ee3b2c4cb52ed0bb3b6770e0825 Reviewed-by: Eike Ziller <eike.ziller@digia.com>
* Contact -> qt-project.orgEike Ziller2012-07-191-3/+1
| | | | | Change-Id: I7134d7de30bcf9f9dcfad42520dd45ee083a852d Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
* qtcassert: move actual printing to separate function and enforce stylehjk2012-04-171-3/+3
| | | | | | | This also allows simple setting of breakpoints on failed asserts. Change-Id: I6dd84cbfaf659d57e39f3447386cebc0221b2b84 Reviewed-by: Daniel Teske <daniel.teske@nokia.com>
* Editor: fixed call of deleted pointer in TipLabelDavid Schulz2012-02-161-4/+3
| | | | | | Task-number: QTCREATORBUG-6950 Change-Id: Ib2e8adf1eceb3b4e55932618e5aa49543c39375d Reviewed-by: hjk <qthjk@ovi.com>
* Removed module names from #include directives.Erik Verbruggen2012-02-151-13/+13
| | | | | | | | Getting the #include directives ready for Qt5. This includes the new-project wizards. Change-Id: Ia9261f1e8faec06b9285b694d2b7e9a095978d2b Reviewed-by: Eike Ziller <eike.ziller@nokia.com>
* Long live the king!hjk2012-01-261-1/+1
| | | | | Change-Id: I2b72b34c0cfeafc8bdbaf49b83ff723544f2b6e2 Reviewed-by: Daniel Teske <daniel.teske@nokia.com>
* all: s/info@qt.nokia.com/qt-info@nokia.com/hjk2011-11-031-2/+2
| | | | | Change-Id: If18afb5d4665924e7d9250dccbc60a65e6daa75e Reviewed-by: Eike Ziller <eike.ziller@nokia.com>
* Fix/add copyright headersTobias Hunger2011-05-061-1/+1
| | | | Change-Id: I8b73d583be1ee7183f4074bce49d5390e38631a2
* Update license.hjk2011-04-131-14/+13
|
* Debugger: Make tooltips use standard text editor tooltips.Friedemann Kleint2011-02-211-2/+65
| | | | | | | | | | | | | | | | | | Extend text editor tooltips by a 'widget content', making it possible to show any widget utilizing the fact that the QTipLabel actually is a frame (and thus a container). Introduce concept of 'interactive' tooltips and modify the tooltip-closing mechanism such that simple interaction is possible. Emit the base text editor's tooltip signals with the correct position and add API to calculate the tooltip position from the cursor position. Add API for pinning tooltips to the text editor (by removing them from the QTipLabel layout). Modify the Debugger's tooltipmanager not to manage tooltips under TextEditor control and to take over control only once tooltips are pinned. Rubber-stamped-by: Leandro T. C. Melo <leandro.melo@nokia.com>
* It's 2011 now.con2011-01-121-1/+1
| | | | Reviewed-by: hjk
* License headers.con2010-12-171-7/+11
|
* Fix color tooltip crash on mac.Leandro Melo2010-10-061-2/+2
| | | | | | Reviewed-by: hjk Reviewed-by: dt Task-number: QTCREATORBUG-2038
* Improve editor's tooltip. Wrapping hack should no longer be necessary.Leandro Melo2010-09-011-8/+28
| | | | Also some less significant improvements.
* Remove one hack of the QTipLabel hack.Thiago Macieira2010-08-311-6/+8
| | | | | | | | | | | | | | | | | | | This code used two hacks: it created a class with metaObject()->className() == "QTipLabel" to fool the code in Qt into applying the style properly to this class. But it did that by creating a class called QTipLabel. This works as long as the class in Qt is hidden by symbol visibility. When symbol visibility is disabled (for whatever reason), then Creator simply crashes due to size mismatches and memory corruptions (virtual tables, etc.) This patch makes the class be called TextEditor::Internal::QTipLabel, but fools moc into thinking it isn't. A proper solution would be to simply override the meta object. Signed-off-by: Leandro Melo <leandro.melo@nokia.com>
* Better flexibility and extensibility in text editor tooltip's internals.Leandro Melo2010-08-241-19/+104
|
* Color tip for QML; Start of a bit more extensible tooltip class.Leandro Melo2010-08-021-0/+100