Header cleanup in TextEditor.

Change-Id: I832d255a4d8f291426d54ad0353641db515a511a
Reviewed-on: http://codereview.qt.nokia.com/3182
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
This commit is contained in:
Friedemann Kleint
2011-08-18 14:23:06 +02:00
parent 2a3684fb2f
commit 610f77ed33
19 changed files with 39 additions and 28 deletions

View File

@@ -34,16 +34,22 @@
#define TEXTEDITORACTIONHANDLER_H
#include "texteditor_global.h"
#include "basetexteditor.h"
#include "coreplugin/icontext.h"
#include <coreplugin/icontext.h>
#include <QtCore/QList>
#include <QtCore/QObject>
#include <QtCore/QPointer>
#include <QtCore/QList>
QT_FORWARD_DECLARE_CLASS(QAction)
namespace Core {
class ICore;
class IEditor;
}
namespace TextEditor {
class BaseTextEditorWidget;
// Redirects slots from global actions to the respective editor.
@@ -60,6 +66,8 @@ public:
};
explicit TextEditorActionHandler(const char *context, uint optionalActions = None);
~TextEditorActionHandler();
void setupActions(BaseTextEditorWidget *editor);
void initializeActions();