-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodegenwindow.cpp
More file actions
40 lines (34 loc) · 967 Bytes
/
codegenwindow.cpp
File metadata and controls
40 lines (34 loc) · 967 Bytes
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
#include "codegenwindow.h"
CodeGenWindow :: CodeGenWindow (QString &code, MainWindow *parent = 0) : QDialog(parent)
{
/***************
/CODE INCLUSION/
***************/
genCode = new QTextEdit;
genCode->setPlainText(code);
genCode->setFont(QFont("Courier"));
genCode->setLineWrapMode(QTextEdit::NoWrap);
genCode->setReadOnly(true);
/******
/CLOSE/
******/
close = new QPushButton(tr("Close"));
//Close window on click
connect(close,SIGNAL(clicked()),this,SLOT(accept()));
buttonBox = new QHBoxLayout;
buttonBox->setAlignment(Qt::AlignRight);
buttonBox->addWidget(close);
/*******
/LAYOUT/
*******/
mainLayout = new QVBoxLayout;
mainLayout->addWidget(genCode);
mainLayout->addLayout(buttonBox);
/*******
/WINDOW/
*******/
setLayout(mainLayout);
setWindowTitle(tr("ZCG : Generated Code"));
setWindowIcon(QIcon("icon.png"));
resize(300,450);
}