diff options
author | Owen Taylor <otaylor@redhat.com> | 2001-11-15 21:12:27 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2001-11-15 21:12:27 +0000 |
commit | 91a34f5d56b7fdde9c3dc500bbec24af474e8a63 (patch) | |
tree | 9cf329bcb6f14710ea8eb4a25072b1fe3ad6f4da /gtk/gtknotebook.c | |
parent | b27345fe2cf7277bb3483d06651c8bb6820003ec (diff) | |
download | gdk-pixbuf-91a34f5d56b7fdde9c3dc500bbec24af474e8a63.tar.gz |
Some small drawing fixes for scroll arrows.
Thu Nov 15 16:07:42 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtknotebook.c: Some small drawing fixes for scroll arrows.
Diffstat (limited to 'gtk/gtknotebook.c')
-rw-r--r-- | gtk/gtknotebook.c | 31 |
1 files changed, 9 insertions, 22 deletions
diff --git a/gtk/gtknotebook.c b/gtk/gtknotebook.c index bac4ff9ee..ca9b40f3a 100644 --- a/gtk/gtknotebook.c +++ b/gtk/gtknotebook.c @@ -699,6 +699,7 @@ gtk_notebook_get_event_window_position (GtkNotebook *notebook, GdkRectangle *rectangle) { GtkWidget *widget = GTK_WIDGET (notebook); + gint border_width = GTK_CONTAINER (notebook)->border_width; if (notebook->show_tabs && notebook->children) { @@ -706,24 +707,24 @@ gtk_notebook_get_event_window_position (GtkNotebook *notebook, { GtkNotebookPage *page = notebook->children->data; - rectangle->x = widget->allocation.x; - rectangle->y = widget->allocation.y; + rectangle->x = widget->allocation.x + border_width; + rectangle->y = widget->allocation.y + border_width; switch (notebook->tab_pos) { case GTK_POS_TOP: case GTK_POS_BOTTOM: - rectangle->width = widget->allocation.width; + rectangle->width = widget->allocation.width - 2 * border_width; rectangle->height = page->requisition.height; if (notebook->tab_pos == GTK_POS_BOTTOM) - rectangle->y += widget->allocation.height - rectangle->height; + rectangle->y += widget->allocation.height - 2 * border_width - rectangle->height; break; case GTK_POS_LEFT: case GTK_POS_RIGHT: rectangle->width = page->requisition.width; - rectangle->height = widget->allocation.height; + rectangle->height = widget->allocation.height - 2 * border_width; if (notebook->tab_pos == GTK_POS_RIGHT) - rectangle->x += widget->allocation.width - rectangle->width; + rectangle->x += widget->allocation.width - 2 * border_width - rectangle->width; break; } } @@ -1246,29 +1247,15 @@ gtk_notebook_get_arrow_rect (GtkNotebook *notebook, switch (notebook->tab_pos) { case GTK_POS_LEFT: - rectangle->x = event_window_pos.x + (event_window_pos.width - rectangle->width) / 2; - break; case GTK_POS_RIGHT: - rectangle->x = event_window_pos.x + event_window_pos.width - (event_window_pos.width - rectangle->width) / 2; + rectangle->x = event_window_pos.x + (event_window_pos.width - rectangle->width) / 2; + rectangle->y = event_window_pos.y + event_window_pos.height - rectangle->height; break; case GTK_POS_TOP: case GTK_POS_BOTTOM: rectangle->x = event_window_pos.x + event_window_pos.width - rectangle->width; - break; - } - - switch (notebook->tab_pos) - { - case GTK_POS_LEFT: - case GTK_POS_RIGHT: - rectangle->y = event_window_pos.y + event_window_pos.height - rectangle->height; - break; - case GTK_POS_TOP: rectangle->y = event_window_pos.y + (event_window_pos.height - rectangle->height) / 2; break; - case GTK_POS_BOTTOM: - rectangle->y = event_window_pos.y + event_window_pos.height - (event_window_pos.height - rectangle->height) / 2; - break; } } } |