--- a/QTfrontend/game.cpp Sun Mar 15 16:14:13 2015 -0400
+++ b/QTfrontend/game.cpp Sun Mar 15 16:14:43 2015 -0400
@@ -16,6 +16,9 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
+#include <QApplication>
+#include <QClipboard>
+
#include <QString>
#include <QCheckBox>
#include <QByteArray>
@@ -258,6 +261,18 @@
.arg(QString::fromUtf8(msg.mid(2).left(size - 4))));
return;
}
+ case 'y':
+ {
+ // copy string to clipboard
+ QApplication::clipboard()->setText(QString::fromUtf8(msg.mid(2)));
+ break;
+ }
+ case 'Y':
+ {
+ // paste clipboard to game
+ SendIPC(QString("Y").toAscii() + QApplication::clipboard()->text().toUtf8().left(250).replace('\n', ' '));
+ break;
+ }
case 'i':
{
emit GameStats(msg.at(2), QString::fromUtf8(msg.mid(3)));