Added forgotten source files
authorMateusz Półrola <mateusz.polrola@comarch.pl>
Thu, 19 Aug 2010 10:38:23 +0000 (12:38 +0200)
committerMateusz Półrola <mateusz.polrola@comarch.pl>
Thu, 19 Aug 2010 10:38:23 +0000 (12:38 +0200)
trunk/src/base/gui/TranslationTextEdit.cpp [new file with mode: 0644]
trunk/src/base/gui/TranslationTextEdit.h [new file with mode: 0644]

diff --git a/trunk/src/base/gui/TranslationTextEdit.cpp b/trunk/src/base/gui/TranslationTextEdit.cpp
new file mode 100644 (file)
index 0000000..69d24d7
--- /dev/null
@@ -0,0 +1,50 @@
+/*******************************************************************************
+
+    This file is part of mDictionary.
+
+    mDictionary is free software: you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation, either version 3 of the License, or
+    (at your option) any later version.
+
+    mDictionary is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with mDictionary.  If not, see <http://www.gnu.org/licenses/>.
+
+    Copyright 2010 Comarch S.A.
+
+*******************************************************************************/
+
+//Created by Mateusz Półrola
+
+#include <QtGui>
+#include "TranslationTextEdit.h"
+
+TranslationTextEdit::TranslationTextEdit(QWidget *parent) :
+    QTextEdit(parent)
+{
+    searchSelectedAction = new QAction(tr("Search"), this);
+
+    connect(searchSelectedAction, SIGNAL(triggered()),
+            this, SIGNAL(search()));
+}
+
+void TranslationTextEdit::contextMenuEvent(QContextMenuEvent *e) {
+    QMenu *menu = createStandardContextMenu(e->pos());
+    if(textCursor().selectedText().isEmpty())
+        searchSelectedAction->setEnabled(false);
+    else
+        searchSelectedAction->setEnabled(true);
+
+    menu->addSeparator();
+    menu->addAction(searchSelectedAction);
+
+    menu->exec(e->globalPos());
+    delete menu;
+
+    e->ignore();
+}
diff --git a/trunk/src/base/gui/TranslationTextEdit.h b/trunk/src/base/gui/TranslationTextEdit.h
new file mode 100644 (file)
index 0000000..0747317
--- /dev/null
@@ -0,0 +1,46 @@
+/*******************************************************************************
+
+    This file is part of mDictionary.
+
+    mDictionary is free software: you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation, either version 3 of the License, or
+    (at your option) any later version.
+
+    mDictionary is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with mDictionary.  If not, see <http://www.gnu.org/licenses/>.
+
+    Copyright 2010 Comarch S.A.
+
+*******************************************************************************/
+
+//Created by Mateusz Półrola
+
+#ifndef TRANSLATIONTEXTEDIT_H
+#define TRANSLATIONTEXTEDIT_H
+
+#include <QTextEdit>
+#include <QAction>
+
+class TranslationTextEdit : public QTextEdit
+{
+    Q_OBJECT
+public:
+    explicit TranslationTextEdit(QWidget *parent = 0);
+
+Q_SIGNALS:
+    void search();
+
+protected:
+    void contextMenuEvent(QContextMenuEvent *);
+
+private:
+    QAction* searchSelectedAction;
+};
+
+#endif // TRANSLATIONTEXTEDIT_H