aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--TODO11
-rw-r--r--gpgwin.cpp6
-rw-r--r--gpgwin.h1
3 files changed, 14 insertions, 4 deletions
diff --git a/TODO b/TODO
index 85ce13f..8c9d4fc 100644
--- a/TODO
+++ b/TODO
@@ -4,12 +4,15 @@ TODO:
Release 0.2.4
- Open File from command Line [DONE]
- possibility to save which private keys are checked on closing (partially solving "encrypt to self") [DONE]
-- add translation for french / spanish [DONE]
+- add translation for spanish [DONE]
+- link to online tutorial in help menu [DONE]
+
+Release 0.2.5
+- minimal MIME support (understand and decode "Content-Encoding" header, e.g. "quoted printable")
+- File-Encryption: Warning if file overwritten
- more doku on building gpg4usb (especially on windows)
- doku for translating gpg4usb
-- File-Encryption: Warning if file overwritten
-- minimal MIME support (understand and decode "Content-Encoding" header, e.g. "quoted printable")
-- link to online tutorial in help menu [DONE]
+- add translation for french
Release 0.3
- PGP-MIME, find and show inline encrypted files
diff --git a/gpgwin.cpp b/gpgwin.cpp
index 23249af..6c0a5d4 100644
--- a/gpgwin.cpp
+++ b/gpgwin.cpp
@@ -159,6 +159,11 @@ void GpgWin::createActions()
undoAct->setToolTip(tr("Undo Last Edit Action"));
connect(undoAct, SIGNAL(triggered()), edit, SLOT(undo()));
+ undoAct = new QAction(tr("&Redo"), this);
+ undoAct->setShortcut(QKeySequence::Redo);
+ undoAct->setToolTip(tr("Redo Last Edit Action"));
+ connect(redoAct, SIGNAL(triggered()), edit, SLOT(redo()));
+
pasteAct = new QAction(tr("&Paste"), this);
pasteAct->setIcon(QIcon(iconPath + "button_paste.png"));
pasteAct->setShortcut(QKeySequence::Paste);
@@ -266,6 +271,7 @@ void GpgWin::createMenus()
fileMenu->addAction(quitAct);
editMenu = menuBar()->addMenu(tr("&Edit"));
+ editMenu->addAction(redoAct);
editMenu->addAction(undoAct);
editMenu->addSeparator();
editMenu->addAction(copyAct);
diff --git a/gpgwin.h b/gpgwin.h
index 920bc44..bba998c 100644
--- a/gpgwin.h
+++ b/gpgwin.h
@@ -131,6 +131,7 @@ private:
QAction *pasteAct;
QAction *selectallAct;
QAction *undoAct;
+ QAction *redoAct;
QAction *aboutAct;
QAction *fileEncryptionAct;
QAction *openSettingsAct;