src: refactored lib/utility

* removed unused utilityMath
* removed some unused functions from utility
* moved time related utility functions to TimeStamp
* moved path objects from utility to app/paths
* moved objects in lib to lib/app
* removed duplicate confirm methods in DialogView
* moved utilityFile to utility/file
* removed uint typedef and replaced with size_t everywhere
* removed boost header in utilityUuid
This commit is contained in:
Eberhard Graether
2019-07-17 15:10:05 +02:00
parent 70febae55b
commit 8e3ca182b9
92 changed files with 306 additions and 438 deletions
@@ -244,11 +244,11 @@ void GraphController::handleMessage(MessageActivateTrail* message)
if (graph->getNodeCount() > 1000)
{
int r = Application::getInstance()->handleDialog(
"Warning!\n\nThe resulting depth graph will contain " + std::to_string(graph->getNodeCount()) + " nodes. "
"Layouting and drawing might take a while and the resulting graph diagram could be unclear. Please "
"consider reducing graph depth with the slider on the left.\n\n"
"Do you want to proceed?",
{"Yes", "No"}
L"Warning!\n\nThe resulting depth graph will contain " + std::to_wstring(graph->getNodeCount()) + " nodes. "
L"Layouting and drawing might take a while and the resulting graph diagram could be unclear. Please "
L"consider reducing graph depth with the slider on the left.\n\n"
L"Do you want to proceed?",
{ L"Yes", L"No" }
);
if (r == 1)