Blame gtk/gtkvbbox.c

Packit 98cdb6
/* GTK - The GIMP Toolkit
Packit 98cdb6
 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
Packit 98cdb6
 *
Packit 98cdb6
 * This library is free software; you can redistribute it and/or
Packit 98cdb6
 * modify it under the terms of the GNU Lesser General Public
Packit 98cdb6
 * License as published by the Free Software Foundation; either
Packit 98cdb6
 * version 2 of the License, or (at your option) any later version.
Packit 98cdb6
 *
Packit 98cdb6
 * This library is distributed in the hope that it will be useful,
Packit 98cdb6
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 98cdb6
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 98cdb6
 * Lesser General Public License for more details.
Packit 98cdb6
 *
Packit 98cdb6
 * You should have received a copy of the GNU Lesser General Public
Packit 98cdb6
 * License along with this library; if not, write to the
Packit 98cdb6
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Packit 98cdb6
 * Boston, MA 02111-1307, USA.
Packit 98cdb6
 */
Packit 98cdb6
Packit 98cdb6
/*
Packit 98cdb6
 * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
Packit 98cdb6
 * file for a list of people on the GTK+ Team.  See the ChangeLog
Packit 98cdb6
 * files for a list of changes.  These files are distributed with
Packit 98cdb6
 * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
Packit 98cdb6
 */
Packit 98cdb6
Packit 98cdb6
#include "config.h"
Packit 98cdb6
#include "gtkvbbox.h"
Packit 98cdb6
#include "gtkorientable.h"
Packit 98cdb6
#include "gtkintl.h"
Packit 98cdb6
#include "gtkalias.h"
Packit 98cdb6
Packit 98cdb6
/**
Packit 98cdb6
 * SECTION:gtkvbbox
Packit 98cdb6
 * @Short_description: A container for arranging buttons vertically
Packit 98cdb6
 * @Title: GtkVButtonBox
Packit 98cdb6
 * @See_also: #GtkBox, #GtkButtonBox, #GtkHButtonBox
Packit 98cdb6
 *
Packit 98cdb6
 * A button box should be used to provide a consistent layout of buttons
Packit 98cdb6
 * throughout your application. The layout/spacing can be altered by the
Packit 98cdb6
 * programmer, or if desired, by the user to alter the 'feel' of a
Packit 98cdb6
 * program to a small degree.
Packit 98cdb6
 *
Packit 98cdb6
 * A #GtkVButtonBox is created with gtk_vbutton_box_new(). Buttons are
Packit 98cdb6
 * packed into a button box the same way widgets are added to any other
Packit 98cdb6
 * container, using gtk_container_add(). You can also use
Packit 98cdb6
 * gtk_box_pack_start() or gtk_box_pack_end(), but for button boxes both
Packit 98cdb6
 * these functions work just like gtk_container_add(), ie., they pack the
Packit 98cdb6
 * button in a way that depends on the current layout style and on
Packit 98cdb6
 * whether the button has had gtk_button_box_set_child_secondary() called
Packit 98cdb6
 * on it.
Packit 98cdb6
 *
Packit 98cdb6
 * The spacing between buttons can be set with gtk_box_set_spacing(). The
Packit 98cdb6
 * arrangement and layout of the buttons can be changed with
Packit 98cdb6
 * gtk_button_box_set_layout().
Packit 98cdb6
 */
Packit 98cdb6
Packit 98cdb6
static gint default_spacing = 10;
Packit 98cdb6
static GtkButtonBoxStyle default_layout_style = GTK_BUTTONBOX_EDGE;
Packit 98cdb6
Packit 98cdb6
G_DEFINE_TYPE (GtkVButtonBox, gtk_vbutton_box, GTK_TYPE_BUTTON_BOX)
Packit 98cdb6
Packit 98cdb6
static void
Packit 98cdb6
gtk_vbutton_box_class_init (GtkVButtonBoxClass *class)
Packit 98cdb6
{
Packit 98cdb6
}
Packit 98cdb6
Packit 98cdb6
static void
Packit 98cdb6
gtk_vbutton_box_init (GtkVButtonBox *vbutton_box)
Packit 98cdb6
{
Packit 98cdb6
  gtk_orientable_set_orientation (GTK_ORIENTABLE (vbutton_box),
Packit 98cdb6
                                  GTK_ORIENTATION_VERTICAL);
Packit 98cdb6
}
Packit 98cdb6
Packit 98cdb6
/**
Packit 98cdb6
 * gtk_vbutton_box_new:
Packit 98cdb6
 *
Packit 98cdb6
 * Creates a new vertical button box.
Packit 98cdb6
 *
Packit 98cdb6
 * Returns: a new button box #GtkWidget.
Packit 98cdb6
 */
Packit 98cdb6
GtkWidget *
Packit 98cdb6
gtk_vbutton_box_new (void)
Packit 98cdb6
{
Packit 98cdb6
  return g_object_new (GTK_TYPE_VBUTTON_BOX, NULL);
Packit 98cdb6
}
Packit 98cdb6
Packit 98cdb6
/**
Packit 98cdb6
 * gtk_vbutton_box_set_spacing_default:
Packit 98cdb6
 * @spacing: an integer value.
Packit 98cdb6
 *
Packit 98cdb6
 * Changes the default spacing that is placed between widgets in an
Packit 98cdb6
 * vertical button box.
Packit 98cdb6
 *
Packit 98cdb6
 * Deprecated: 2.0: Use gtk_box_set_spacing() instead.
Packit 98cdb6
 */
Packit 98cdb6
void
Packit 98cdb6
gtk_vbutton_box_set_spacing_default (gint spacing)
Packit 98cdb6
{
Packit 98cdb6
  default_spacing = spacing;
Packit 98cdb6
}
Packit 98cdb6
Packit 98cdb6
/**
Packit 98cdb6
 * gtk_vbutton_box_set_layout_default:
Packit 98cdb6
 * @layout: a new #GtkButtonBoxStyle.
Packit 98cdb6
 *
Packit 98cdb6
 * Sets a new layout mode that will be used by all button boxes.
Packit 98cdb6
 *
Packit 98cdb6
 * Deprecated: 2.0: Use gtk_button_box_set_layout() instead.
Packit 98cdb6
 */
Packit 98cdb6
void
Packit 98cdb6
gtk_vbutton_box_set_layout_default (GtkButtonBoxStyle layout)
Packit 98cdb6
{
Packit 98cdb6
  g_return_if_fail (layout >= GTK_BUTTONBOX_DEFAULT_STYLE &&
Packit 98cdb6
		    layout <= GTK_BUTTONBOX_CENTER);
Packit 98cdb6
Packit 98cdb6
  default_layout_style = layout;
Packit 98cdb6
}
Packit 98cdb6
Packit 98cdb6
/**
Packit 98cdb6
 * gtk_vbutton_box_get_spacing_default:
Packit 98cdb6
 *
Packit 98cdb6
 * Retrieves the current default spacing for vertical button boxes. This is the number of pixels
Packit 98cdb6
 * to be placed between the buttons when they are arranged.
Packit 98cdb6
 *
Packit 98cdb6
 * Returns: the default number of pixels between buttons.
Packit 98cdb6
 *
Packit 98cdb6
 * Deprecated: 2.0: Use gtk_box_get_spacing() instead.
Packit 98cdb6
 */
Packit 98cdb6
gint
Packit 98cdb6
gtk_vbutton_box_get_spacing_default (void)
Packit 98cdb6
{
Packit 98cdb6
  return default_spacing;
Packit 98cdb6
}
Packit 98cdb6
Packit 98cdb6
/**
Packit 98cdb6
 * gtk_vbutton_box_get_layout_default:
Packit 98cdb6
 *
Packit 98cdb6
 * Retrieves the current layout used to arrange buttons in button box widgets.
Packit 98cdb6
 *
Packit 98cdb6
 * Returns: the current #GtkButtonBoxStyle.
Packit 98cdb6
 *
Packit 98cdb6
 * Deprecated: 2.0: Use gtk_button_box_get_layout() instead.
Packit 98cdb6
 */
Packit 98cdb6
GtkButtonBoxStyle
Packit 98cdb6
gtk_vbutton_box_get_layout_default (void)
Packit 98cdb6
{
Packit 98cdb6
  return default_layout_style;
Packit 98cdb6
}
Packit 98cdb6
Packit 98cdb6
GtkButtonBoxStyle
Packit 98cdb6
_gtk_vbutton_box_get_layout_default (void)
Packit 98cdb6
{
Packit 98cdb6
  return default_layout_style;
Packit 98cdb6
}
Packit 98cdb6
Packit 98cdb6
Packit 98cdb6
#define __GTK_VBBOX_C__
Packit 98cdb6
#include "gtkaliasdef.c"