[LyX/master] Set a maximum value to zoom level

Jean-Marc Lasgouttes lasgouttes at lyx.org
Tue Feb 8 18:12:41 UTC 2022


commit 5259b6ba62fd4e31c260d73cbdfdb66847afcb98
Author: Jean-Marc Lasgouttes <lasgouttes at lyx.org>
Date:   Tue Feb 8 19:42:17 2022 +0100

    Set a maximum value to zoom level
    
    The minimal vamue is set to 10%, let's set the max to 1000%. This
    avoids crashes when characters are too large.
    
    The code is refactored to be more compact and the tests are more precise.
    
    Fixes bug #12452.
---
 src/frontends/qt/GuiView.cpp |   77 +++++++++++++++++++----------------------
 src/frontends/qt/GuiView.h   |    2 +
 2 files changed, 38 insertions(+), 41 deletions(-)

diff --git a/src/frontends/qt/GuiView.cpp b/src/frontends/qt/GuiView.cpp
index 5cf4fce..43b835e 100644
--- a/src/frontends/qt/GuiView.cpp
+++ b/src/frontends/qt/GuiView.cpp
@@ -643,8 +643,7 @@ GuiView::GuiView(int id)
 	zoom_ratio_ = settings.value("zoom_ratio", 1.0).toDouble();
 	// Actual zoom value: default zoom + fractional offset
 	int zoom = (int)(lyxrc.defaultZoom * zoom_ratio_);
-	if (zoom < static_cast<int>(zoom_min_))
-		zoom = zoom_min_;
+	zoom = min(max(zoom, zoom_min_), zoom_max_);
 	zoom_slider_->setValue(zoom);
 	zoom_slider_->setToolTip(qt_("Workarea zoom level. Drag, use Ctrl-+/- or Shift-Mousewheel to adjust."));
 
@@ -982,8 +981,7 @@ bool GuiView::restoreLayout()
 	zoom_ratio_ = settings.value("zoom_ratio", 1.0).toDouble();
 	// Actual zoom value: default zoom + fractional offset
 	int zoom = (int)(lyxrc.defaultZoom * zoom_ratio_);
-	if (zoom < static_cast<int>(zoom_min_))
-		zoom = zoom_min_;
+	zoom = min(max(zoom, zoom_min_), zoom_max_);
 	setCurrentZoom(zoom);
 	devel_mode_ = settings.value("devel_mode", devel_mode_).toBool();
 	settings.beginGroup("views");
@@ -2100,6 +2098,30 @@ void GuiView::resetAutosaveTimers()
 }
 
 
+namespace {
+
+double zoomRatio(FuncRequest const & cmd, double const zr)
+{
+	if (cmd.argument().empty()) {
+		if (cmd.action() == LFUN_BUFFER_ZOOM)
+			return 1.0;
+		else if (cmd.action() == LFUN_BUFFER_ZOOM_IN)
+			return zr + 0.1;
+		else // cmd.action() == LFUN_BUFFER_ZOOM_OUT
+			return zr - 0.1;
+	} else {
+		if (cmd.action() == LFUN_BUFFER_ZOOM)
+			return convert<int>(cmd.argument()) / double(lyxrc.defaultZoom);
+		else if (cmd.action() == LFUN_BUFFER_ZOOM_IN)
+			return zr + convert<int>(cmd.argument()) / 100.0;
+		else // cmd.action() == LFUN_BUFFER_ZOOM_OUT
+			return zr - convert<int>(cmd.argument()) / 100.0;
+	}
+}
+
+}
+
+
 bool GuiView::getStatus(FuncRequest const & cmd, FuncStatus & flag)
 {
 	bool enable = true;
@@ -2479,37 +2501,25 @@ bool GuiView::getStatus(FuncRequest const & cmd, FuncStatus & flag)
 		break;
 
 	case LFUN_BUFFER_ZOOM_OUT:
-	case LFUN_BUFFER_ZOOM_IN: {
-		// only diff between these two is that the default for ZOOM_OUT
-		// is a neg. number
-		bool const neg_zoom =
-			convert<int>(cmd.argument()) < 0 ||
-			(cmd.action() == LFUN_BUFFER_ZOOM_OUT && cmd.argument().empty());
-		if (lyxrc.currentZoom <= zoom_min_ && neg_zoom) {
+	case LFUN_BUFFER_ZOOM_IN:
+	case LFUN_BUFFER_ZOOM: {
+		int const zoom = (int)(lyxrc.defaultZoom * zoomRatio(cmd, zoom_ratio_));
+		if (zoom < zoom_min_) {
 			docstring const msg =
 				bformat(_("Zoom level cannot be less than %1$d%."), zoom_min_);
 			flag.message(msg);
 			enable = false;
-		} else
-			enable = doc_buffer;
-		break;
-	}
-
-	case LFUN_BUFFER_ZOOM: {
-		bool const less_than_min_zoom =
-			!cmd.argument().empty() && convert<int>(cmd.argument()) < zoom_min_;
-		if (lyxrc.currentZoom <= zoom_min_ && less_than_min_zoom) {
+		} else if (zoom > zoom_max_) {
 			docstring const msg =
-				bformat(_("Zoom level cannot be less than %1$d%."), zoom_min_);
+				bformat(_("Zoom level cannot be more than %1$d%."), zoom_max_);
 			flag.message(msg);
 			enable = false;
-		} else if (cmd.argument().empty() && lyxrc.currentZoom == lyxrc.defaultZoom)
-			enable = false;
-		else
+		} else
 			enable = doc_buffer;
 		break;
 	}
 
+
 	case LFUN_BUFFER_MOVE_NEXT:
 	case LFUN_BUFFER_MOVE_PREVIOUS:
 		// we do not cycle when moving
@@ -4725,26 +4735,11 @@ void GuiView::dispatch(FuncRequest const & cmd, DispatchResult & dr)
 		case LFUN_BUFFER_ZOOM_IN:
 		case LFUN_BUFFER_ZOOM_OUT:
 		case LFUN_BUFFER_ZOOM: {
-			if (cmd.argument().empty()) {
-				if (cmd.action() == LFUN_BUFFER_ZOOM)
-					zoom_ratio_ = 1.0;
-				else if (cmd.action() == LFUN_BUFFER_ZOOM_IN)
-					zoom_ratio_ += 0.1;
-				else
-					zoom_ratio_ -= 0.1;
-			} else {
-				if (cmd.action() == LFUN_BUFFER_ZOOM)
-					zoom_ratio_ = convert<int>(cmd.argument()) / double(lyxrc.defaultZoom);
-				else if (cmd.action() == LFUN_BUFFER_ZOOM_IN)
-					zoom_ratio_ += convert<int>(cmd.argument()) / 100.0;
-				else
-					zoom_ratio_ -= convert<int>(cmd.argument()) / 100.0;
-			}
+			zoom_ratio_ = zoomRatio(cmd, zoom_ratio_);
 
 			// Actual zoom value: default zoom + fractional extra value
 			int zoom = (int)(lyxrc.defaultZoom * zoom_ratio_);
-			if (zoom < static_cast<int>(zoom_min_))
-				zoom = zoom_min_;
+			zoom = min(max(zoom, zoom_min_), zoom_max_);
 
 			setCurrentZoom(zoom);
 
diff --git a/src/frontends/qt/GuiView.h b/src/frontends/qt/GuiView.h
index 9ad3610..bd39d26 100644
--- a/src/frontends/qt/GuiView.h
+++ b/src/frontends/qt/GuiView.h
@@ -520,6 +520,8 @@ private:
 	double zoom_ratio_ = 1.0;
 	/// Minimum zoom percentage
 	static int const zoom_min_ = 10;
+	/// Maximum zoom percentage
+	static int const zoom_max_ = 1000;
 
 	// movability flag of all toolbars
 	bool toolbarsMovable_;


More information about the lyx-cvs mailing list