-
Notifications
You must be signed in to change notification settings - Fork 23
/
ui_heapvizwindow.h
110 lines (95 loc) · 4.55 KB
/
ui_heapvizwindow.h
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
/********************************************************************************
** Form generated from reading UI file 'heapvizwindow.ui'
**
** Created by: Qt User Interface Compiler version 5.7.1
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
********************************************************************************/
#ifndef UI_HEAPVIZWINDOW_H
#define UI_HEAPVIZWINDOW_H
#include <QtCore/QVariant>
#include <QtWidgets/QAction>
#include <QtWidgets/QApplication>
#include <QtWidgets/QButtonGroup>
#include <QtWidgets/QGridLayout>
#include <QtWidgets/QHeaderView>
#include <QtWidgets/QMainWindow>
#include <QtWidgets/QMenu>
#include <QtWidgets/QMenuBar>
#include <QtWidgets/QStatusBar>
#include <QtWidgets/QToolBar>
#include <QtWidgets/QWidget>
#include "glheapdiagram.h"
QT_BEGIN_NAMESPACE
class Ui_HeapVizWindow
{
public:
QAction *actionHighlight_blocks_with_size;
QWidget *centralWidget;
QGridLayout *gridLayout;
GLHeapDiagram *heap_diagram;
QMenuBar *menuBar;
QMenu *menuHeapViz_GL;
QMenu *menuTest;
QToolBar *mainToolBar;
QStatusBar *statusBar;
QToolBar *toolBar;
void setupUi(QMainWindow *HeapVizWindow)
{
if (HeapVizWindow->objectName().isEmpty())
HeapVizWindow->setObjectName(QStringLiteral("HeapVizWindow"));
HeapVizWindow->resize(1070, 418);
actionHighlight_blocks_with_size = new QAction(HeapVizWindow);
actionHighlight_blocks_with_size->setObjectName(QStringLiteral("actionHighlight_blocks_with_size"));
centralWidget = new QWidget(HeapVizWindow);
centralWidget->setObjectName(QStringLiteral("centralWidget"));
gridLayout = new QGridLayout(centralWidget);
gridLayout->setSpacing(6);
gridLayout->setContentsMargins(11, 11, 11, 11);
gridLayout->setObjectName(QStringLiteral("gridLayout"));
heap_diagram = new GLHeapDiagram(centralWidget);
heap_diagram->setObjectName(QStringLiteral("heap_diagram"));
heap_diagram->setMouseTracking(true);
gridLayout->addWidget(heap_diagram, 0, 0, 1, 1);
HeapVizWindow->setCentralWidget(centralWidget);
menuBar = new QMenuBar(HeapVizWindow);
menuBar->setObjectName(QStringLiteral("menuBar"));
menuBar->setGeometry(QRect(0, 0, 1070, 20));
menuHeapViz_GL = new QMenu(menuBar);
menuHeapViz_GL->setObjectName(QStringLiteral("menuHeapViz_GL"));
menuTest = new QMenu(menuBar);
menuTest->setObjectName(QStringLiteral("menuTest"));
HeapVizWindow->setMenuBar(menuBar);
mainToolBar = new QToolBar(HeapVizWindow);
mainToolBar->setObjectName(QStringLiteral("mainToolBar"));
HeapVizWindow->addToolBar(Qt::TopToolBarArea, mainToolBar);
statusBar = new QStatusBar(HeapVizWindow);
statusBar->setObjectName(QStringLiteral("statusBar"));
HeapVizWindow->setStatusBar(statusBar);
toolBar = new QToolBar(HeapVizWindow);
toolBar->setObjectName(QStringLiteral("toolBar"));
HeapVizWindow->addToolBar(Qt::TopToolBarArea, toolBar);
menuBar->addAction(menuHeapViz_GL->menuAction());
menuBar->addAction(menuTest->menuAction());
menuTest->addAction(actionHighlight_blocks_with_size);
retranslateUi(HeapVizWindow);
QObject::connect(heap_diagram, SIGNAL(blockClicked(bool,HeapBlock)), HeapVizWindow, SLOT(blockClicked(bool,HeapBlock)));
QObject::connect(heap_diagram, SIGNAL(showMessage(std::string)), HeapVizWindow, SLOT(showMessage(std::string)));
QObject::connect(HeapVizWindow, SIGNAL(setFileToDisplay(QString)), heap_diagram, SLOT(setFileToDisplay(QString)));
QObject::connect(HeapVizWindow, SIGNAL(setSizeToHighlight(uint32_t)), heap_diagram, SLOT(setSizeToHighlight(uint32_t)));
QMetaObject::connectSlotsByName(HeapVizWindow);
} // setupUi
void retranslateUi(QMainWindow *HeapVizWindow)
{
HeapVizWindow->setWindowTitle(QApplication::translate("HeapVizWindow", "HeapVizWindow", Q_NULLPTR));
actionHighlight_blocks_with_size->setText(QApplication::translate("HeapVizWindow", "Highlight blocks in size range", Q_NULLPTR));
menuHeapViz_GL->setTitle(QApplication::translate("HeapVizWindow", "HeapViz GL", Q_NULLPTR));
menuTest->setTitle(QApplication::translate("HeapVizWindow", "Edit", Q_NULLPTR));
toolBar->setWindowTitle(QApplication::translate("HeapVizWindow", "toolBar", Q_NULLPTR));
} // retranslateUi
};
namespace Ui {
class HeapVizWindow: public Ui_HeapVizWindow {};
} // namespace Ui
QT_END_NAMESPACE
#endif // UI_HEAPVIZWINDOW_H