summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2020-10-28 12:23:41 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2021-01-03 13:41:15 -0800
commit106f7a8e0ed43a775bec5fa96f6e072c47653850 (patch)
tree25c2f694b50d2d6d569a7682a33f340aa5497293 /core
parent165dce4a0eb8c0832861ede8dfb874933667eae8 (diff)
downloadsubsurface-106f7a8e0ed43a775bec5fa96f6e072c47653850.tar.gz
desktop: add statistics widget dummy and application state
Add a new "statistics" application state. In the statistics state show the statistics widget and the filter in the top quadrants. The idea is to allow filtering and doing statistics at the same time. Sadly, we can't use the filter-widget in different quadrants, because Qt's ownership model is completely broken / inflexible. It does not support a widget having different parents and thus a widget can only belong to one QStackedWidget. Hiding the map in the statistics view is quite hacky: Since the view of the quadrants is not determined by the "ApplicationState", we have to restore the original quadrant visibility when exiting the stats mode. Therefore, set the original visibility-state when changing application state. The MainWindow-quadrant code really needs to be rewritten! Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core')
-rw-r--r--core/applicationstate.cpp1
-rw-r--r--core/applicationstate.h1
2 files changed, 1 insertions, 1 deletions
diff --git a/core/applicationstate.cpp b/core/applicationstate.cpp
index a5adde8cf..05701cd32 100644
--- a/core/applicationstate.cpp
+++ b/core/applicationstate.cpp
@@ -12,4 +12,3 @@ void setAppState(ApplicationState state)
{
appState = state;
}
-
diff --git a/core/applicationstate.h b/core/applicationstate.h
index fbaf3e829..5bae09aa4 100644
--- a/core/applicationstate.h
+++ b/core/applicationstate.h
@@ -12,6 +12,7 @@ enum class ApplicationState {
EditPlannedDive,
EditDiveSite,
FilterDive,
+ Statistics,
Count
};