forked from Michael33881/adbLink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadblogdialog.cpp
executable file
·116 lines (80 loc) · 1.74 KB
/
adblogdialog.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
#include "adblogdialog.h"
#include "ui_adblogdialog.h"
#include <QMessageBox>
#include <QDir>
#include <QFile>
#include <QTextStream>
#include<QClipboard>
#ifdef Q_OS_LINUX
int os1=0;
#elif defined(Q_OS_WIN)
int os1=1;
#elif defined(Q_OS_MAC)
int os1=2;
#endif
QString logdir;
QString logfile1 = "adblink.log";
QString logfile2 = "adblink.old.log";
QString content;
bool getfile=true;
QClipboard *clipboard = QApplication::clipboard();
void getlog()
{
QString fn = "";
if (getfile)
fn = logfile1;
else
fn=logfile2;
QFile file(logdir+fn);
if(!file.exists())
{
QMessageBox::critical(0, "","Can't find "+fn+"\n",QMessageBox::Cancel);
getfile=true;
return;
}
file.open(QIODevice::ReadOnly);
QTextStream stream(&file);
content = stream.readAll();
file.close();
}
adblogDialog::adblogDialog(QWidget *parent) :
QDialog(parent),
ui(new Ui::adblogDialog)
{
ui->setupUi(this);
if (os1 == 1)
{
logdir = "./";
}
if (os1 == 2)
{
logdir = QCoreApplication::applicationDirPath();
logdir = logdir+"/adbfiles/";
}
if (os1 == 0)
{
logdir = QCoreApplication::applicationDirPath();
logdir = logdir+"/adbfiles/";
}
getlog();
ui->logfileName->setText("adblink.log");
ui->logBrowser->setPlainText(content);
}
adblogDialog::~adblogDialog()
{
delete ui;
}
void adblogDialog::on_copyButton_clicked()
{
clipboard->setText(content);
}
void adblogDialog::on_swapButton_clicked()
{
getfile = !getfile;
if (getfile)
ui->logfileName->setText("adblink.log");
else
ui->logfileName->setText("adblink.old.log");
getlog();
ui->logBrowser->setPlainText(content);
}