-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainwindow.cpp
179 lines (161 loc) · 4.06 KB
/
mainwindow.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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
#include <QPushButton>
#include <QFileDialog>
#include <QByteArray>
#include <QTextCodec>
#include <QDir>
#include <stdio.h>
#include <io.h>
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include "FLViz.h"
#include "flvizgv.h"
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent)
, ui(new Ui::MainWindow)
, fa(NULL)
, stbuttons(NULL)
, stbuttons_num(-1)
{
ui->setupUi(this);
connect(ui->buttonOpen, SIGNAL(clicked()), this, SLOT(buttonOPEN()));
connect(ui->buttonExit, SIGNAL(clicked()), this, SLOT(close()));
connect(ui->buttonRestart, SIGNAL(clicked()), this, SLOT(buttonRESTART()));
ui->buttonRestart->setVisible(false);
setWindowTitle(
tr("FLViz 2015.08.14 (c) Wojciech A. Koszek <[email protected]>")
);
}
MainWindow::~MainWindow()
{
delete ui;
}
void
MainWindow::buttonOPEN(void)
{
QString fileName;
char buf[4096];
QString *curpath = NULL;
int error = 0;
FILE *fp;
QPushButton *b = NULL;
int i;
/* Start without info in the status bar */
statusBar()->showMessage(tr(""));
/* Serve "choose file" menu */
curpath = new QString(getcwd(buf, sizeof(buf)));
fileName = QFileDialog::getOpenFileName(this, tr("Open SVG File"),
*curpath
, "FLV files (*.flv *.txt)"
);
if (fileName.isEmpty()) {
statusBar()->showMessage(tr("No file chosen."));
return;
}
/*
* If we used FA before, free it.
*/
if (fa != NULL) {
FA_free(fa);
fa = NULL;
}
/*
* Try to open a file now.
*/
fp = fopen(fileName.toStdString().c_str(), "r");
if (fp == NULL)
return;
/*
* Make FA
*/
error = FA_create(&fa, fp);
if (error != 0) {
/*
* In case of a problem, create a very detailed message and
* I report it in the status bar.
*/
memset(buf, 0, sizeof(buf));
(void)snprintf(buf, sizeof(buf) - 1, "ERROR%d: ", -error);
QByteArray *encodedString = new QByteArray(errmsg[-error]);
QTextCodec *codec = QTextCodec::codecForName("ISO 8859-2");
QString errstr = codec->toUnicode(*encodedString);
statusBar()->showMessage(buf + errstr);
return;
}
/*
* We make buttons dynamically. If the old FA existed before, we
* W free the buttons.
*/
if (stbuttons != NULL && stbuttons_num != -1) {
for (i = 0; i < stbuttons_num; i++) {
b = stbuttons[i];
ui->verticalLayout->removeWidget(b);
b->setVisible(false);
disconnect(b, SIGNAL(clicked()), this, SLOT(faChange()));
delete b;
}
delete [] stbuttons;
stbuttons_num = -1;
}
/* Now, re-create */
stbuttons_num = fa->nalpha;
stbuttons = new QPushButton *[stbuttons_num];
for (i = 0; i < stbuttons_num; i++) {
b = stbuttons[i] = new QPushButton(ui->centralWidget);
b->setText(QString(fa->alpha[i].word));
/*
* Register event filter, since we alwaysuse faChange
*/
b->installEventFilter(this);
connect(b, SIGNAL(clicked()), this, SLOT(faChange()));
b->setVisible(true);
ui->verticalLayout->insertWidget(WIDGETS_AFTER_SIMLABEL + i,b);
}
faChange();
statusBar()->showMessage(fileName);
}
void
MainWindow::buttonRESTART(void)
{
FA_restart(fa);
ui->buttonRestart->setVisible(false);
faChange();
}
/*
* Update the window with rendered graph image
*/
void
MainWindow::faChange(void)
{
QString tmppath = QDir::tempPath() + QString("/out.out");
#if VERBOSE_DEBUGGING
statusBar()->showMessage(tmppath);
#endif
FA_dump_dot_one(fa, tmppath.toStdString().c_str());
ui->grv->openFile(tmppath);
if (FA_final(fa)) {
ui->buttonRestart->setVisible(true);
}
}
/*
* This needs a comment:
* eventFilter lets us to use 1 procedure to handle many buttons. At the
* time of registering dynamic QPushButton structures we're not able to pass
* different fuctions everty time. So this event Filter detects which button
* has been clicked.
*/
bool
MainWindow::eventFilter(QObject *obj, QEvent *event)
{
int i;
if (stbuttons == NULL || stbuttons_num <= 0)
return (false);
for (i = 0; i < stbuttons_num; i++) {
if (obj == stbuttons[i]) {
if (event->type() == QEvent::MouseButtonPress) {
faChange();
FA_trans(fa, i);
}
}
}
return (false);
}