PaperGraphWidget.cpp
1.17 KB
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
#include "PaperGraphWidget.h"
#include "NodeItem.h"
#include "GraphicsView.h"
#include <string>
#include <QComboBox>
#include <QMessageBox>
#include <QtGui>
PaperGraphWidget::PaperGraphWidget(QWidget *parent)
: QWidget(parent)
{
ui.setupUi(this);
initscene();
View *view = new View("temp view");
view->view()->setScene(scene);
QVBoxLayout *layout = new QVBoxLayout;
QComboBox *combo = new QComboBox;
combo->addItem("conf/iastedCSN/KeimS06");
combo->addItem("conf/iastedCSN/Mojumdar06");
combo->addItem("conf/iastedCSN/PourKKI06");
connect(combo, SIGNAL(currentIndexChanged(int)),
this, SLOT(handleSelectionChanged(int)));
layout->addWidget(combo);
layout->addWidget(view);
setLayout(layout);
setWindowTitle(tr("dblp paper graph visualization"));
}
void PaperGraphWidget::print_graph(ifstream& fin)
{
QGraphicsItem *graph_item = new GraphItem(fin);
graph_item->setPos(0, 0);
scene->addItem(graph_item);
}
void PaperGraphWidget::handleSelectionChanged(int idx)
{
/*QMessageBox::information(this, "QCombobox",
"idx: "+QString::number(idx));*/
if (idx==0) {
} else if (idx==1) {
} else {
}
}
void PaperGraphWidget::initscene()
{
scene = new QGraphicsScene(this);
}