Fix GTK build

svn path=/trunk/netsurf/; revision=2927
This commit is contained in:
John Mark Bell 2006-09-07 20:27:59 +00:00
parent b353c7cd36
commit c356081c88
1 changed files with 9 additions and 13 deletions

View File

@ -965,16 +965,6 @@ void gui_window_set_scroll(struct gui_window *g, int sx, int sy)
}
int gui_window_get_width(struct gui_window* g)
{
return GTK_WIDGET(g->drawing_area)->allocation.width;
}
int gui_window_get_height(struct gui_window* g)
{
return GTK_WIDGET(g->drawing_area)->allocation.height;
}
void gui_window_update_extent(struct gui_window *g)
{
if (!g->bw->current_content)
@ -1197,10 +1187,16 @@ bool gui_copy_to_clipboard(struct selection *s)
}
void gui_window_get_dimensions(struct gui_window *g, int *width, int *height)
void gui_window_get_dimensions(struct gui_window *g, int *width, int *height,
bool scaled)
{
*width = 1;
*height = 1;
*width = GTK_WIDGET(g->drawing_area)->allocation.width;
*height = GTK_WIDGET(g->drawing_area)->allocation.height;
if (scaled) {
*width /= g->scale;
*height /= g->scale;
}
}
void gui_window_position_frame(struct gui_window *g, int x0, int y0, int x1, int y1)