From 5749ace60f9359b6bc31d7f8c071d87d270733da Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Tue, 23 Mar 2021 22:03:33 +0000 Subject: split out internal local history macros from public interface header --- desktop/browser_history.c | 1 + desktop/browser_history.h | 11 ----------- desktop/local_history.c | 1 + desktop/local_history_private.h | 38 ++++++++++++++++++++++++++++++++++++++ 4 files changed, 40 insertions(+), 11 deletions(-) create mode 100644 desktop/local_history_private.h diff --git a/desktop/browser_history.c b/desktop/browser_history.c index 5b44670c1..39072ffa2 100644 --- a/desktop/browser_history.c +++ b/desktop/browser_history.c @@ -41,6 +41,7 @@ #include "desktop/gui_internal.h" #include "desktop/browser_private.h" +#include "desktop/local_history_private.h" #include "desktop/browser_history.h" /** diff --git a/desktop/browser_history.h b/desktop/browser_history.h index 06041ebf4..9b6f1fd42 100644 --- a/desktop/browser_history.h +++ b/desktop/browser_history.h @@ -35,17 +35,6 @@ #include "utils/errors.h" -#include "content/handlers/css/utils.h" - -#define LOCAL_HISTORY_WIDTH \ - (FIXTOINT(nscss_pixels_css_to_physical(INTTOFIX(116)))) -#define LOCAL_HISTORY_HEIGHT \ - (FIXTOINT(nscss_pixels_css_to_physical(INTTOFIX(100)))) -#define LOCAL_HISTORY_RIGHT_MARGIN \ - (FIXTOINT(nscss_pixels_css_to_physical(INTTOFIX(50)))) -#define LOCAL_HISTORY_BOTTOM_MARGIN \ - (FIXTOINT(nscss_pixels_css_to_physical(INTTOFIX(30)))) - struct browser_window; struct history_entry; struct bitmap; diff --git a/desktop/local_history.c b/desktop/local_history.c index 412e893f5..5227c97e1 100644 --- a/desktop/local_history.c +++ b/desktop/local_history.c @@ -41,6 +41,7 @@ #include "desktop/system_colour.h" #include "desktop/browser_private.h" #include "desktop/browser_history.h" +#include "desktop/local_history_private.h" #include "desktop/local_history.h" /** diff --git a/desktop/local_history_private.h b/desktop/local_history_private.h new file mode 100644 index 000000000..0b745629d --- /dev/null +++ b/desktop/local_history_private.h @@ -0,0 +1,38 @@ +/* + * Copyright 2006 James Bursa + * + * 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 . + */ + +/** + * \file + * Interface to browser history private operations + */ + +#ifndef NETSURF_DESKTOP_BROWSER_HISTORY_PRIVATE_H +#define NETSURF_DESKTOP_BROWSER_HISTORY_PRIVATE_H + +#include "content/handlers/css/utils.h" + +#define LOCAL_HISTORY_WIDTH \ + (FIXTOINT(nscss_pixels_css_to_physical(INTTOFIX(116)))) +#define LOCAL_HISTORY_HEIGHT \ + (FIXTOINT(nscss_pixels_css_to_physical(INTTOFIX(100)))) +#define LOCAL_HISTORY_RIGHT_MARGIN \ + (FIXTOINT(nscss_pixels_css_to_physical(INTTOFIX(50)))) +#define LOCAL_HISTORY_BOTTOM_MARGIN \ + (FIXTOINT(nscss_pixels_css_to_physical(INTTOFIX(30)))) + +#endif -- cgit v1.2.3