From 09e90a4cea9e055a0c0aba3be166d8f937ea6669 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Wed, 4 May 2016 21:19:43 +0100 Subject: reduce beos frontend usage of plotter API --- beos/fetch_rsrc.cpp | 2 +- beos/font.h | 7 +++---- beos/scaffolding.h | 3 --- beos/window.cpp | 18 +++++++++++------- 4 files changed, 15 insertions(+), 15 deletions(-) (limited to 'beos') diff --git a/beos/fetch_rsrc.cpp b/beos/fetch_rsrc.cpp index f696f18db..b771f7b2d 100644 --- a/beos/fetch_rsrc.cpp +++ b/beos/fetch_rsrc.cpp @@ -199,7 +199,7 @@ static bool fetch_rsrc_process(struct fetch_rsrc_context *c) uint8 c1, c2, c3, c4; if (sscanf(params, "%c%c%c%c", &c1, &c2, &c3, &c4) > 3) { type = c1 << 24 | c2 << 16 | c3 << 8 | c4; - LOG("fetch_rsrc: type:%4.4s\n", &type); + LOG("fetch_rsrc: type:%4.4s\n", (char *)&type); } } diff --git a/beos/font.h b/beos/font.h index 75f0c3ac6..63909efcf 100644 --- a/beos/font.h +++ b/beos/font.h @@ -16,16 +16,15 @@ * along with this program. If not, see . */ -/** \file +/** + * \file * Beos font layout handling interface. */ #ifndef NS_BEOS_FONT_H #define NS_BEOS_FONT_H -#include - -#include "desktop/plotters.h" +#include "desktop/plot_style.h" bool nsfont_paint(const plot_font_style_t *fstyle, const char *string, size_t length, diff --git a/beos/scaffolding.h b/beos/scaffolding.h index 5d5907357..3fdca57f6 100644 --- a/beos/scaffolding.h +++ b/beos/scaffolding.h @@ -25,11 +25,8 @@ #include extern "C" { -#include "desktop/plotters.h" - struct hlcache_handle; struct nsurl; - } typedef struct beos_scaffolding nsbeos_scaffolding; diff --git a/beos/window.cpp b/beos/window.cpp index 89fb7819c..62624f077 100644 --- a/beos/window.cpp +++ b/beos/window.cpp @@ -21,27 +21,28 @@ #define __STDBOOL_H__ 1 #include #include + extern "C" { -#include "content/content.h" -#include "content/urldb.h" -#include "desktop/browser.h" -#include "desktop/mouse.h" #include "utils/nsoption.h" -#include "desktop/textinput.h" #include "utils/log.h" #include "utils/utf8.h" #include "utils/utils.h" +#include "content/content.h" +#include "content/urldb.h" +#include "desktop/browser.h" #include "desktop/mouse.h" +#include "desktop/textinput.h" +#include "desktop/plotters.h" #include "desktop/gui_window.h" #include "desktop/gui_clipboard.h" } + #include "beos/about.h" #include "beos/window.h" #include "beos/font.h" #include "beos/gui.h" #include "beos/scaffolding.h" #include "beos/plotters.h" -//#include "beos/schedule.h" #include #include @@ -1092,7 +1093,10 @@ static void gui_window_update_extent(struct gui_window *g) float y_prop = g->view->Bounds().Height() / y_max; x_max -= g->view->Bounds().Width() + 1; y_max -= g->view->Bounds().Height() + 1; - LOG("x_max = %f y_max = %f x_prop = %f y_prop = %f\n", x_max, y_max, x_prop, y_prop); + + LOG("x_max = %d y_max = %d x_prop = %f y_prop = %f\n", + x_max, y_max, x_prop, y_prop); + if (g->view->ScrollBar(B_HORIZONTAL)) { g->view->ScrollBar(B_HORIZONTAL)->SetRange(0, x_max); g->view->ScrollBar(B_HORIZONTAL)->SetProportion(x_prop); -- cgit v1.2.3