Add clear and copy buttons to the log page.

This commit is contained in:
Petr Mrázek
2014-07-11 01:50:36 +02:00
parent 24698fe85f
commit 0d4046de39
3 changed files with 37 additions and 0 deletions

View File

@ -73,6 +73,18 @@ void LogPage::on_btnPaste_clicked()
delete paste;
}
void LogPage::on_btnCopy_clicked()
{
auto text = ui->text->toPlainText();
QClipboard *clipboard = QApplication::clipboard();
clipboard->setText(text);
}
void LogPage::on_btnClear_clicked()
{
ui->text->clear();
}
void LogPage::writeColor(QString text, const char *color, const char * background)
{
// append a paragraph