summaryrefslogtreecommitdiff
path: root/src/plugins/macros/macro.h
Commit message (Collapse)AuthorAgeFilesLines
* Fix/add copyright headersTobias Hunger2011-05-061-1/+1
| | | | Change-Id: I8b73d583be1ee7183f4074bce49d5390e38631a2
* add/unify i/o error handlingOswald Buddenhagen2011-04-181-3/+7
| | | | | | lots of use of Utils::FileSaver and Utils::FileReader Task-number: QTCREATORBUG-1619
* Update license.hjk2011-04-131-14/+13
|
* Header cleanup in src, specify module name.Friedemann Kleint2011-01-241-9/+3
|
* Refactor the shortcut management for plugin macrosNicolas Arnaud-Cormos2011-01-241-3/+7
| | | | | | | | | | | | When saving a macro, a shortcut is created and the user can change the shortcut in Options->Keyboard. When the macro is removed, the shortcut is removed from the actionManager using the removeShortcut method. This is way simpler than before, where a number of default shortcuts where defined and macros took the empty space. Merge-request: 236 Reviewed-by: Tobias Hunger <tobias.hunger@nokia.com>
* Exported header cleanup.Friedemann Kleint2011-01-201-4/+4
|
* Macros: Fix license headersTobias Hunger2010-12-201-7/+11
|
* New plugin: plugin macroNicolas Arnaud-Cormos2010-12-201-0/+75
This plugin let the user record and replay some macros: * 3 handlers: action, find and texteditor * almost all texteditor and cpp actions recorded * options page to set the directories where the macros are stored * optional dialog to give a name and comment at the end of a macro * locator integration to play a macro * shortcuts assignment to macro The most important change outside the plugin macros is the isScriptable method for command: All scriptable commands can be stored in a macro. Merge-request: 2176 Reviewed-by: Tobias Hunger <tobias.hunger@nokia.com>