Debugger: Work towards exporting DebuggerManager: Introduce d.

Clean out header.
This commit is contained in:
Friedemann Kleint
2009-09-25 15:02:16 +02:00
parent b3cf5ae50a
commit ec7c77ca23
15 changed files with 526 additions and 418 deletions

View File

@@ -127,6 +127,22 @@ Core::Utils::SavedAction *theDebuggerAction(int code);
bool theDebuggerBoolSetting(int code);
QString theDebuggerStringSetting(int code);
struct DebuggerManagerActions {
QAction *continueAction;
QAction *stopAction;
QAction *resetAction; // FIXME: Should not be needed in a stable release
QAction *stepAction;
QAction *stepOutAction;
QAction *runToLineAction;
QAction *runToFunctionAction;
QAction *jumpToLineAction;
QAction *nextAction;
QAction *watchAction;
QAction *breakAction;
QAction *sepAction;
QAction *reverseDirectionAction;
};
} // namespace Internal
} // namespace Debugger