-/*
-static void
-gtk_myfixed_draw_border (GtkMyFixed *myfixed)
-{
- GtkWidget *widget;
-
- widget = GTK_WIDGET(myfixed);
-
- if (myfixed->shadow_type == GTK_MYSHADOW_NONE)
- return;
-
- if (myfixed->shadow_type == GTK_MYSHADOW_OUT)
- {
- gtk_draw_shadow( widget->style,
- widget->window,
- GTK_STATE_NORMAL,
- GTK_SHADOW_OUT,
- 0, 0,
- widget->allocation.width,
- widget->allocation.height );
- return;
- }
-
- if (myfixed->shadow_type == GTK_MYSHADOW_IN)
- {
- gtk_draw_shadow( widget->style,
- widget->window,
- GTK_STATE_NORMAL,
- GTK_SHADOW_IN,
- 0, 0,
- widget->allocation.width,
- widget->allocation.height );
- return;
- }
-
- if (myfixed->shadow_type == GTK_MYSHADOW_THIN)
- {
- GdkGC *gc;
- gc = gdk_gc_new( widget->window );
- gdk_gc_set_foreground( gc, &widget->style->black );
- gdk_draw_rectangle( widget->window, gc, FALSE,
- 0, 0,
- widget->allocation.width-1,
- widget->allocation.height-1 );
- gdk_gc_unref( gc );
- return;
- }
-}
-*/
-