aboutsummaryrefslogtreecommitdiffstats
path: root/OrbitingYeti.pro
diff options
context:
space:
mode:
authorNao Pross <naopross@thearcway.org>2017-12-19 01:54:28 +0100
committerNao Pross <naopross@thearcway.org>2017-12-19 01:54:28 +0100
commita7e74749a1c4edb2f8bc34c79e9bd1562de86ee9 (patch)
tree4282a5dfa9ef7d77823e3e8ef02a193c91e719d6 /OrbitingYeti.pro
parentMoved to QtCreator project with QMake (diff)
downloadOrbitingYeti-a7e74749a1c4edb2f8bc34c79e9bd1562de86ee9.tar.gz
OrbitingYeti-a7e74749a1c4edb2f8bc34c79e9bd1562de86ee9.zip
Change to Qt5 conding conventions
Data structure changes: - Structogram is no longer just a scope, because it needs to store metadata - All structures now use QString instead of std::string, to integrate better in the Qt framework New code: - MainWindow ui code, building layout - MetadataDialog to change the metadata stored in the Structogram - Painter is a widget (still unimplemented) to show the structogram on the GUI
Diffstat (limited to 'OrbitingYeti.pro')
-rw-r--r--OrbitingYeti.pro19
1 files changed, 13 insertions, 6 deletions
diff --git a/OrbitingYeti.pro b/OrbitingYeti.pro
index 6067137..2353696 100644
--- a/OrbitingYeti.pro
+++ b/OrbitingYeti.pro
@@ -31,14 +31,21 @@ SOURCES += \
src/diagram/iteratorstatement.cpp \
src/diagram/scope.cpp \
src/diagram/statement.cpp \
+ src/diagram/structogram.cpp \
+ src/ui/metadatadialog.cpp \
+ src/ui/painter.cpp
HEADERS += \
include/ui/mainwindow.h \
- include/diagram/branchstatement.hpp \
- include/diagram/iteratorstatement.hpp \
- include/diagram/scope.hpp \
- include/diagram/statement.hpp \
- include/diagram/structogram.hpp
+ include/diagram/structogram.h \
+ include/diagram/statement.h \
+ include/diagram/scope.h \
+ include/diagram/iteratorstatement.h \
+ include/diagram/branchstatement.h \
+ include/ui/metadatadialog.h \
+ include/ui/painter.h
FORMS += \
- forms/mainwindow.ui
+ forms/mainwindow.ui \
+ forms/metadatadialog.ui \
+ forms/painter.ui