2003-06-30 16:44:03 +04:00
|
|
|
/*
|
2019-08-01 19:22:17 +03:00
|
|
|
* Copyright 2019 Vincent Sanders <vince@netsurf-browser.org>
|
2007-08-08 20:16:03 +04:00
|
|
|
*
|
|
|
|
* This file is part of NetSurf, http://www.netsurf-browser.org/
|
|
|
|
*
|
|
|
|
* NetSurf is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; version 2 of the License.
|
|
|
|
*
|
|
|
|
* NetSurf is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2004-02-25 18:12:58 +03:00
|
|
|
*/
|
|
|
|
|
2014-10-16 12:48:09 +04:00
|
|
|
/**
|
|
|
|
* \file
|
|
|
|
*
|
2019-08-01 19:22:17 +03:00
|
|
|
* Browser core functionality
|
2002-09-11 18:24:02 +04:00
|
|
|
*/
|
|
|
|
|
2019-08-01 19:22:17 +03:00
|
|
|
#include "utils/errors.h"
|
2020-05-05 19:25:39 +03:00
|
|
|
#include "utils/log.h"
|
|
|
|
#include "utils/utils.h"
|
2019-08-01 19:22:17 +03:00
|
|
|
#include "netsurf/browser.h"
|
|
|
|
#include "css/utils.h"
|
2014-10-13 05:34:10 +04:00
|
|
|
|
2019-08-01 19:22:17 +03:00
|
|
|
/* exported interface documented in netsurf/browser.h */
|
2014-10-13 05:34:10 +04:00
|
|
|
nserror browser_set_dpi(int dpi)
|
|
|
|
{
|
2020-05-05 19:25:39 +03:00
|
|
|
if (dpi < 72 || dpi > 250) {
|
|
|
|
int bad = dpi;
|
|
|
|
dpi = min(max(dpi, 72), 250);
|
|
|
|
NSLOG(netsurf, INFO, "Clamping invalid DPI %d to %d", bad, dpi);
|
|
|
|
}
|
2014-10-13 05:34:10 +04:00
|
|
|
nscss_screen_dpi = INTTOFIX(dpi);
|
|
|
|
|
|
|
|
return NSERROR_OK;
|
|
|
|
}
|
|
|
|
|
2019-08-01 19:22:17 +03:00
|
|
|
/* exported interface documented in netsurf/browser.h */
|
2014-10-13 05:34:10 +04:00
|
|
|
int browser_get_dpi(void)
|
|
|
|
{
|
|
|
|
return FIXTOINT(nscss_screen_dpi);
|
|
|
|
}
|