This repository has been archived by the owner on Mar 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
eventlogdialog.cpp
84 lines (62 loc) · 2.38 KB
/
eventlogdialog.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/*
Qt tablet event tester
Copyright (C) 2014 Calle Laakkonen
This program 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 2, or (at your option)
any later version.
This program 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 this program; if not, write to the Free Software Foundation,
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include <QVBoxLayout>
#include <QDialogButtonBox>
#include <QTextEdit>
#include <QPushButton>
#include <QMessageBox>
#include <QFileDialog>
#include <QFile>
#include <QDateTime>
#include <QDebug>
#include "eventlogdialog.h"
EventLogDialog::EventLogDialog(QWidget *parent) :
QDialog(parent)
{
setWindowTitle("QTabletTester event log");
QVBoxLayout *layout = new QVBoxLayout(this);
_log = new QTextEdit(this);
layout->addWidget(_log);
QDialogButtonBox *buttons = new QDialogButtonBox(this);
layout->addWidget(buttons);
QPushButton *clear = buttons->addButton("Clear", QDialogButtonBox::ResetRole);
QPushButton *save = buttons->addButton("Save...", QDialogButtonBox::YesRole);
QPushButton *close = buttons->addButton("Close", QDialogButtonBox::RejectRole);
connect(clear, SIGNAL(clicked()), _log, SLOT(clear()));
connect(save, SIGNAL(clicked()), this, SLOT(saveLog()));
connect(close, SIGNAL(clicked()), this, SLOT(hide()));
resize(640, 400);
_starttimestamp = QDateTime::currentMSecsSinceEpoch();
}
void EventLogDialog::saveLog()
{
QString filename = QFileDialog::getSaveFileName(this, "Write event log", QString(), "Text files (*.txt)");
if(filename.isEmpty())
return;
if(!filename.contains('.'))
filename.append(".txt");
QFile logfile(filename);
if(!logfile.open(QFile::WriteOnly | QFile::Text)) {
QMessageBox::warning(this, "Couldn't open file", logfile.errorString());
return;
}
QTextStream stream(&logfile);
stream << _log->document()->toPlainText();
}
void EventLogDialog::logEvent(const QString &message)
{
_log->append(QString("%1: %2").arg(QDateTime::currentMSecsSinceEpoch() - _starttimestamp).arg(message));
}