diff options
Diffstat (limited to 'qt-ui/printlayout.cpp')
-rw-r--r-- | qt-ui/printlayout.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/qt-ui/printlayout.cpp b/qt-ui/printlayout.cpp index afc6dd036..7e5e57533 100644 --- a/qt-ui/printlayout.cpp +++ b/qt-ui/printlayout.cpp @@ -91,6 +91,17 @@ void PrintLayout::setup() scaledPageH = pageRect.height() / scaleY; } +// go trought the dive table and find how many dives we are a going to print +void PrintLayout::estimateTotalDives(struct dive *dive, int *i, int *total) const +{ + *total = 0; + for_each_dive(*i, dive) { + if (!dive->selected && printOptions->print_selected) + continue; + (*total)++; + } +} + /* the used formula here is: * s = (S - (n - 1) * p) / n * where: |