aboutsummaryrefslogtreecommitdiffstats
path: root/src/diagram (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-01-01New StatementDialog, rename diagram classesNao Pross4-12/+84
Other changes: - Use raw pointer instead of smart pointers to manage resources - Initial Painter implementation
2017-12-19Implement basic uiNao Pross1-8/+1
Changes: - Clean up code to use Qt coding style - Add comments to some methods - Add debugtools to have debug_msg() and debug_err() macros - New Serializer class header to save / load data - MetadataDialog: check validity of metadata - MainWindow: initial code for `tool' buttons to edit the structogram - MainWindow: open / save dialog
2017-12-19Change to Qt5 conding conventionsNao Pross5-28/+77
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
2017-12-18Moved to QtCreator project with QMakeNao Pross9-240/+4
2017-12-18Replace tabs with spaces, set up CMake build systemNao Pross9-123/+128
Other changes: - update gitignore - build scripts under `etc` - fix window
2017-11-28Update .gitignore and minor changes (mostly formatting)Nao Pross3-16/+13
2017-11-28New data structure for Structogram and StatementsNao Pross10-229/+290
2017-11-26Update header ifdefs to match and clean up commentsNao Pross3-14/+9
2017-11-26Implementation for Structogram iterator and Statement typeNao Pross4-24/+199
The interator is not (yet) aware of the scope in which it is iterating.