/* moko-alignment.c * * Authored by Michael 'Mickey' Lauer * Based on GtkAlignment which is (C) 1997-2000 GTK+ Team * * Copyright (C) 2006-2007 OpenMoko Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser Public License as published by * the Free Software Foundation; version 2 of the license. * * This program 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 Lesser Public License for more details. * * Current Version: $Rev$ ($Date) [$Author: mickey $] */ #include "moko-alignment.h" #undef DEBUG_THIS_FILE #ifdef DEBUG_THIS_FILE #define moko_debug(fmt,...) g_debug(fmt,##__VA_ARGS__) #define moko_debug_minder(predicate) moko_debug( __FUNCTION__ ); g_return_if_fail(predicate) #else #define moko_debug(...) #endif G_DEFINE_TYPE (MokoAlignment, moko_alignment, GTK_TYPE_ALIGNMENT) #define MOKO_ALIGNMENT_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), MOKO_TYPE_ALIGNMENT, MokoAlignmentPrivate)) /* forward declarations */ static void moko_alignment_realize(GtkWidget* widget); static void moko_alignment_size_request(GtkWidget* widget, GtkRequisition* requisition); static void moko_alignment_size_allocate(GtkWidget* widget, GtkAllocation* allocation); static void moko_alignment_class_init (MokoAlignmentClass *klass) { /* hook parent */ /* register private data */ /* hook virtual methods */ GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass); widget_class->realize = moko_alignment_realize; widget_class->size_request = moko_alignment_size_request; widget_class->size_allocate = moko_alignment_size_allocate; /* install properties */ gtk_widget_class_install_style_property( widget_class, g_param_spec_boxed( "padding", "Alignment Padding", "Sets the padding to a fixed value", GTK_TYPE_BORDER, G_PARAM_READABLE) ); } static void moko_alignment_init (MokoAlignment *self) { //FIXME do we need this? //gtk_widget_set_redraw_on_allocate( GTK_WIDGET(self), TRUE ); GTK_WIDGET_UNSET_FLAGS( GTK_WIDGET(self), GTK_NO_WINDOW ); } GtkWidget* moko_alignment_new (void) { return GTK_WIDGET(g_object_new(moko_alignment_get_type(), NULL)); } static void moko_alignment_size_request(GtkWidget* widget, GtkRequisition* requisition) { moko_debug( "moko_alignment_size_request" ); GtkBorder* padding = NULL; gtk_widget_style_get(widget, "padding", &padding, NULL); GtkBin* bin = GTK_BIN(widget); requisition->width = GTK_CONTAINER (widget)->border_width * 2; requisition->height = GTK_CONTAINER (widget)->border_width * 2; if (bin->child && GTK_WIDGET_VISIBLE (bin->child)) { GtkRequisition child_requisition; gtk_widget_size_request (bin->child, &child_requisition); requisition->width += child_requisition.width; requisition->height += child_requisition.height; /* Request extra space for the padding: */ if ( padding ) { requisition->width += (padding->left + padding->right); requisition->height += (padding->top + padding->bottom); } } } static void moko_alignment_size_allocate(GtkWidget *widget, GtkAllocation *allocation) { moko_debug( "moko_alignment_size_allocate" ); GtkAlignment *alignment; GtkBin *bin; GtkAllocation child_allocation; GtkRequisition child_requisition; gint width, height; gint border_width; gint padding_horizontal, padding_vertical; padding_horizontal = 0; padding_vertical = 0; widget->allocation = *allocation; // if (GTK_WIDGET_REALIZED (widget) &!GTK_WIDGET_NO_WINDOW (widget)) gdk_window_move_resize (widget->window, allocation->x, allocation->y, allocation->width, allocation->height); // alignment = GTK_ALIGNMENT (widget); bin = GTK_BIN (widget); if (bin->child && GTK_WIDGET_VISIBLE (bin->child)) { gtk_widget_get_child_requisition (bin->child, &child_requisition); border_width = GTK_CONTAINER (alignment)->border_width; guint p_top, p_bottom, p_left, p_right; gtk_alignment_get_padding (GTK_ALIGNMENT (widget), &p_top, &p_bottom, &p_left, &p_right); //If padding defined in gtkrc, reset top/bottom/left/right. GtkBorder* padding = NULL; gtk_widget_style_get (widget, "padding", &padding, NULL); if ( padding ) { p_top = padding->top; p_bottom = padding->bottom; p_left = padding->left; p_right = padding->right; } padding_horizontal = p_left + p_right; padding_vertical = p_top + p_bottom; width = allocation->width - padding_horizontal - 2 * border_width; height = allocation->height - padding_vertical - 2 * border_width; if (width > child_requisition.width) child_allocation.width = (child_requisition.width * (1.0 - alignment->xscale) + width * alignment->xscale); else child_allocation.width = width; if (height > child_requisition.height) child_allocation.height = (child_requisition.height * (1.0 - alignment->yscale) + height * alignment->yscale); else child_allocation.height = height; if (GTK_WIDGET_NO_WINDOW (widget)) { if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL) child_allocation.x = (1.0 - alignment->xalign) * (width - child_allocation.width) + allocation->x + border_width + p_right; else child_allocation.x = alignment->xalign * (width - child_allocation.width) + allocation->x + border_width + p_left; child_allocation.y = alignment->yalign * (height - child_allocation.height) + allocation->y + border_width + p_top; } else { if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL) child_allocation.x = (1.0 - alignment->xalign) * (width - child_allocation.width) + border_width + p_right; else child_allocation.x = alignment->xalign * (width - child_allocation.width) + border_width + p_left; child_allocation.y = alignment->yalign * (height - child_allocation.height) + border_width + p_top; } child_allocation.width = MAX (child_allocation.width, 0); child_allocation.height = MAX (child_allocation.height, 0); gtk_widget_size_allocate (bin->child, &child_allocation); } } static void moko_alignment_realize(GtkWidget* widget) { moko_debug( "moko_alignment_realize" ); GdkWindowAttr attributes; gint attributes_mask; GTK_WIDGET_SET_FLAGS (widget, GTK_REALIZED); attributes.window_type = GDK_WINDOW_CHILD; attributes.x = widget->allocation.x; attributes.y = widget->allocation.y; attributes.width = widget->allocation.width; attributes.height = widget->allocation.height; attributes.wclass = GDK_INPUT_OUTPUT; attributes.visual = gtk_widget_get_visual (widget); attributes.colormap = gtk_widget_get_colormap (widget); attributes.event_mask = gtk_widget_get_events (widget); attributes.event_mask |= GDK_EXPOSURE_MASK | GDK_BUTTON_PRESS_MASK; attributes_mask = GDK_WA_X | GDK_WA_Y | GDK_WA_VISUAL | GDK_WA_COLORMAP; widget->window = gdk_window_new (gtk_widget_get_parent_window (widget), &attributes, attributes_mask); gdk_window_set_user_data (widget->window, widget); widget->style = gtk_style_attach (widget->style, widget->window); //FIXME find out why a pixmap engine doesn't want to draw on an Alignment even though it has a GdkWindow //Answer: because the background pixmap gets drawn by the X server, no one calls gtk_paint_flat_box or so gtk_style_set_background (widget->style, widget->window, GTK_STATE_NORMAL); }