Workflow - Project organizer
-
A project organizer made with Qt 5. It helps to keep track of projects where the order of task completion is important.
Github link, the source code is attached to releases.
There is also an in-app wiki, for further information read the project Readme on Github. -
Also, note that it doesn't compile cleanly with
g++
. Here's what I get:../Workflow/mainwindow.cpp: In member function 'void MainWindow::enableCurrentButtons()': ../Workflow/mainwindow.cpp:163:67: error: call of overloaded 'abs(std::vector<Task*>::size_type)' is ambiguous
-
Well, there are more:
../Workflow/project.cpp:99:46: error: ambiguous overload for 'operator[]' (operand types are 'QString' and 'long int') tempByteArray[j] = fileString[fileIterator + j].digitValue();
You should compile it with
g++
to get it fully working. Also drop thatint_fast32_t
which is everywhere in the code, use a regular integer or one of Qt's predefinedqint8
/qint16
/qint32
/qint64
.