summaryrefslogtreecommitdiff
path: root/beos
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-10-13 11:56:31 +0100
committerVincent Sanders <vince@kyllikki.org>2014-10-13 11:56:31 +0100
commit17be8cf216e08a57c511ec1ea43eae40874fa9de (patch)
tree270667cd4a3418b185e5432be1c7c8b7dca8792f /beos
parent33c6073dbed882506e5a16fc43e7e2a71a2d6be2 (diff)
downloadnetsurf-17be8cf216e08a57c511ec1ea43eae40874fa9de.tar.gz
netsurf-17be8cf216e08a57c511ec1ea43eae40874fa9de.tar.bz2
Put the font operations table alongside all the other core API
The netsurf core is driven from numerous operation tables most of which are now set through a common netsurf_register() interface. The font and plotting interfaces are currently separate and unlike all the other operation tables are modified for differing contexts. This change moves the font operations alongside all the other operations table and remove unnecessary interaction with the renderers font internals. Further this also removes the need for css internals to be visible in frontends.
Diffstat (limited to 'beos')
-rw-r--r--beos/font.cpp2
-rw-r--r--beos/plotters.cpp2
-rw-r--r--beos/scaffolding.cpp2
-rw-r--r--beos/thumbnail.cpp2
-rw-r--r--beos/window.cpp2
5 files changed, 5 insertions, 5 deletions
diff --git a/beos/font.cpp b/beos/font.cpp
index b262562d3..c52e9671c 100644
--- a/beos/font.cpp
+++ b/beos/font.cpp
@@ -32,7 +32,7 @@
#include <View.h>
extern "C" {
#include "css/css.h"
-#include "render/font.h"
+#include "desktop/font.h"
#include "utils/utils.h"
#include "utils/log.h"
#include "utils/nsoption.h"
diff --git a/beos/plotters.cpp b/beos/plotters.cpp
index 52ab4ec21..81d0e10e7 100644
--- a/beos/plotters.cpp
+++ b/beos/plotters.cpp
@@ -32,7 +32,7 @@
#include <Shape.h>
extern "C" {
#include "desktop/plotters.h"
-#include "render/font.h"
+#include "desktop/font.h"
#include "utils/log.h"
#include "utils/utils.h"
#include "utils/nsoption.h"
diff --git a/beos/scaffolding.cpp b/beos/scaffolding.cpp
index 7a00c02a9..b701b98f0 100644
--- a/beos/scaffolding.cpp
+++ b/beos/scaffolding.cpp
@@ -59,7 +59,7 @@ extern "C" {
#include "desktop/plotters.h"
#include "utils/nsoption.h"
#include "desktop/textinput.h"
-#include "render/font.h"
+#include "desktop/font.h"
#include "render/form.h"
#include "utils/messages.h"
#include "utils/utils.h"
diff --git a/beos/thumbnail.cpp b/beos/thumbnail.cpp
index 128462f57..12a7320ce 100644
--- a/beos/thumbnail.cpp
+++ b/beos/thumbnail.cpp
@@ -36,7 +36,7 @@ extern "C" {
#include "desktop/browser.h"
#include "desktop/thumbnail.h"
#include "image/bitmap.h"
-#include "render/font.h"
+#include "desktop/font.h"
#include "utils/log.h"
}
#include "beos/scaffolding.h"
diff --git a/beos/window.cpp b/beos/window.cpp
index 3fa88ad33..886e20622 100644
--- a/beos/window.cpp
+++ b/beos/window.cpp
@@ -29,7 +29,7 @@ extern "C" {
#include "utils/nsoption.h"
#include "desktop/netsurf.h"
#include "desktop/textinput.h"
-#include "render/font.h"
+#include "desktop/font.h"
#include "utils/log.h"
#include "utils/types.h"
#include "utils/utf8.h"