FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
ZeroClassGenerator/codegenwindow.cpp at master · sharedbits/ZeroClassGenerator · GitHub
sharedbits
/
ZeroClassGenerator
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
0
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
ZeroClassGenerator
/
codegenwindow.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
40 lines (34 loc) · 967 Bytes
Breadcrumbs
ZeroClassGenerator
/
codegenwindow.cpp
Copy path
File metadata and controls
40 lines (34 loc) · 967 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
);
}
Back
|
FazBrowse Home
|
New Git URL