aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/texteditor/circularclipboardassist.h
diff options
context:
space:
mode:
authorFrancois Ferrand <thetypz@gmail.com>2012-03-12 17:38:54 +0100
committerLeandro Melo <leandro.melo@nokia.com>2012-06-05 12:08:00 +0200
commit6defb83d0362be6b8910b81733c7f4d7895c6b2d (patch)
tree206f307707fae72a76f97f0ca11e8de47a68ab19 /src/plugins/texteditor/circularclipboardassist.h
parent80180ba714e3945c6e23f2c1eec38c4f2fea3ee9 (diff)
TextEditor: menu for pasting from clipboard history.
Add new action to show a menu of recent clipboard history. When an item is selected, the item is pasted. Change-Id: Id7e1a90730404fb63762bf1f20678484ec34cd2b Reviewed-by: Orgad Shaneh <orgads@gmail.com> Reviewed-by: Leandro Melo <leandro.melo@nokia.com>
Diffstat (limited to 'src/plugins/texteditor/circularclipboardassist.h')
-rw-r--r--src/plugins/texteditor/circularclipboardassist.h51
1 files changed, 51 insertions, 0 deletions
diff --git a/src/plugins/texteditor/circularclipboardassist.h b/src/plugins/texteditor/circularclipboardassist.h
new file mode 100644
index 0000000000..8949e48a4e
--- /dev/null
+++ b/src/plugins/texteditor/circularclipboardassist.h
@@ -0,0 +1,51 @@
+/**************************************************************************
+**
+** This file is part of Qt Creator
+**
+** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
+**
+** Contact: Nokia Corporation (qt-info@nokia.com)
+**
+**
+** GNU Lesser General Public License Usage
+**
+** 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.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** 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.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at qt-info@nokia.com.
+**
+**************************************************************************/
+
+#ifndef CIRCULARCLIPBOARDASSIST_H
+#define CIRCULARCLIPBOARDASSIST_H
+
+#include "codeassist/iassistprovider.h"
+
+namespace TextEditor {
+namespace Internal {
+
+class ClipboardAssistProvider: public IAssistProvider
+{
+public:
+ virtual bool supportsEditor(const Core::Id &editorId) const;
+ virtual IAssistProcessor *createProcessor() const;
+};
+
+} // namespace Internal
+} // namespace TextEditor
+
+#endif // CIRCULARCLIPBOARDASSIST_H