Files
qt-creator/src/plugins/texteditor/texteditoractionhandler.h

226 lines
6.7 KiB
C
Raw Normal View History

/**************************************************************************
2008-12-02 12:01:29 +01:00
**
** This file is part of Qt Creator
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
2008-12-02 12:01:29 +01:00
**
** Contact: Nokia Corporation (qt-info@nokia.com)
2008-12-02 12:01:29 +01:00
**
**
** GNU Lesser General Public License Usage
**
2011-04-13 08:42:33 +02:00
** This file may be used under the terms of the GNU Lesser General Public
** License version 2.1 as published by the Free Software Foundation and
** appearing in the file LICENSE.LGPL included in the packaging of this file.
** Please review the following information to ensure the GNU Lesser General
** Public License version 2.1 requirements will be met:
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
2010-12-17 16:01:08 +01:00
** In addition, as a special exception, Nokia gives you certain additional
2011-04-13 08:42:33 +02:00
** rights. These rights are described in the Nokia Qt LGPL Exception
2010-12-17 16:01:08 +01:00
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
2011-04-13 08:42:33 +02:00
** Other Usage
**
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
2010-12-17 16:01:08 +01:00
** If you have questions regarding the use of this file, please contact
** Nokia at qt-info@nokia.com.
2008-12-02 12:01:29 +01:00
**
**************************************************************************/
2008-12-02 16:19:05 +01:00
2008-12-02 12:01:29 +01:00
#ifndef TEXTEDITORACTIONHANDLER_H
#define TEXTEDITORACTIONHANDLER_H
#include "texteditor_global.h"
#include <coreplugin/icontext.h>
#include <coreplugin/id.h>
2008-12-02 12:01:29 +01:00
#include <QObject>
#include <QPointer>
#include <QList>
2008-12-02 12:01:29 +01:00
QT_FORWARD_DECLARE_CLASS(QAction)
namespace Core {
class ICore;
class IEditor;
}
2008-12-02 12:01:29 +01:00
namespace TextEditor {
class BaseTextEditorWidget;
2008-12-02 12:01:29 +01:00
// Redirects slots from global actions to the respective editor.
class TEXTEDITOR_EXPORT TextEditorActionHandler : public QObject
{
Q_OBJECT
public:
enum OptionalActionsMask {
None = 0,
Format = 1,
UnCommentSelection = 2,
UnCollapseAll = 4
2008-12-02 12:01:29 +01:00
};
explicit TextEditorActionHandler(const char *context, uint optionalActions = None);
~TextEditorActionHandler();
void setupActions(BaseTextEditorWidget *editor);
2008-12-02 12:01:29 +01:00
void initializeActions();
public slots:
void updateActions();
void updateRedoAction();
void updateUndoAction();
void updateCopyAction();
protected:
const QPointer<BaseTextEditorWidget> &currentEditor() const;
QAction *registerNewAction(const Core::Id &id, bool scriptable = false, const QString &title = QString());
QAction *registerNewAction(const Core::Id &id, QObject *receiver, const char *slot, bool scriptable = false,
2008-12-02 12:01:29 +01:00
const QString &title = QString());
enum UpdateMode { ReadOnlyMode, WriteMode };
2008-12-02 12:01:29 +01:00
UpdateMode updateMode() const;
virtual void createActions();
virtual bool supportsAction(const Core::Id &id) const;
2008-12-02 12:01:29 +01:00
virtual void updateActions(UpdateMode um);
private slots:
void undoAction();
void redoAction();
void copyAction();
void cutAction();
void pasteAction();
void circularPasteAction();
void switchUtf8bomAction();
2008-12-02 12:01:29 +01:00
void selectAllAction();
void gotoAction();
void printAction();
void formatAction();
void rewrapParagraphAction();
2008-12-02 12:01:29 +01:00
void setVisualizeWhitespace(bool);
void cleanWhitespace();
2008-12-02 12:01:29 +01:00
void setTextWrapping(bool);
void unCommentSelection();
void unfoldAll();
void fold();
void unfold();
void cutLine();
void copyLine();
2008-12-02 12:01:29 +01:00
void deleteLine();
void deleteEndOfWord();
void deleteEndOfWordCamelCase();
void deleteStartOfWord();
void deleteStartOfWordCamelCase();
2008-12-02 12:01:29 +01:00
void selectEncoding();
void increaseFontSize();
void decreaseFontSize();
void resetFontSize();
void gotoBlockStart();
void gotoBlockEnd();
void gotoBlockStartWithSelection();
void gotoBlockEndWithSelection();
void selectBlockUp();
void selectBlockDown();
void moveLineUp();
void moveLineDown();
void copyLineUp();
void copyLineDown();
void joinLines();
void insertLineAbove();
void insertLineBelow();
void uppercaseSelection();
void lowercaseSelection();
void updateCurrentEditor(Core::IEditor *editor);
void indent();
void unindent();
2008-12-02 12:01:29 +01:00
void gotoLineStart();
void gotoLineStartWithSelection();
void gotoLineEnd();
void gotoLineEndWithSelection();
void gotoNextLine();
void gotoNextLineWithSelection();
void gotoPreviousLine();
void gotoPreviousLineWithSelection();
void gotoPreviousCharacter();
void gotoPreviousCharacterWithSelection();
void gotoNextCharacter();
void gotoNextCharacterWithSelection();
void gotoPreviousWord();
void gotoPreviousWordWithSelection();
void gotoNextWord();
void gotoNextWordWithSelection();
void gotoPreviousWordCamelCase();
void gotoPreviousWordCamelCaseWithSelection();
void gotoNextWordCamelCase();
void gotoNextWordCamelCaseWithSelection();
2008-12-02 12:01:29 +01:00
private:
QAction *m_undoAction;
QAction *m_redoAction;
QAction *m_copyAction;
QAction *m_cutAction;
QAction *m_pasteAction;
QAction *m_circularPasteAction;
QAction *m_switchUtf8bomAction;
2008-12-02 12:01:29 +01:00
QAction *m_selectAllAction;
QAction *m_gotoAction;
QAction *m_printAction;
QAction *m_formatAction;
QAction *m_rewrapParagraphAction;
2008-12-02 12:01:29 +01:00
QAction *m_visualizeWhitespaceAction;
QAction *m_cleanWhitespaceAction;
2008-12-02 12:01:29 +01:00
QAction *m_textWrappingAction;
QAction *m_unCommentSelectionAction;
QAction *m_unfoldAllAction;
QAction *m_foldAction;
QAction *m_unfoldAction;
QAction *m_cutLineAction;
QAction *m_copyLineAction;
2008-12-02 12:01:29 +01:00
QAction *m_deleteLineAction;
QAction *m_deleteEndOfWordAction;
QAction *m_deleteEndOfWordCamelCaseAction;
QAction *m_deleteStartOfWordAction;
QAction *m_deleteStartOfWordCamelCaseAction;
2008-12-02 12:01:29 +01:00
QAction *m_selectEncodingAction;
QAction *m_increaseFontSizeAction;
QAction *m_decreaseFontSizeAction;
QAction *m_resetFontSizeAction;
QAction *m_gotoBlockStartAction;
QAction *m_gotoBlockEndAction;
QAction *m_gotoBlockStartWithSelectionAction;
QAction *m_gotoBlockEndWithSelectionAction;
QAction *m_selectBlockUpAction;
QAction *m_selectBlockDownAction;
QAction *m_moveLineUpAction;
QAction *m_moveLineDownAction;
QAction *m_copyLineUpAction;
QAction *m_copyLineDownAction;
QAction *m_joinLinesAction;
QAction *m_insertLineAboveAction;
QAction *m_insertLineBelowAction;
QAction *m_upperCaseSelectionAction;
QAction *m_lowerCaseSelectionAction;
QAction *m_indentAction;
QAction *m_unindentAction;
QList<QAction *> m_modifyingActions;
2008-12-02 12:01:29 +01:00
uint m_optionalActions;
QPointer<BaseTextEditorWidget> m_currentEditor;
Core::Context m_contextId;
2008-12-02 12:01:29 +01:00
bool m_initialized;
};
} // namespace TextEditor
#endif // TEXTEDITORACTIONHANDLER_H