GtkSeparator

GtkSeparator — Base class for GtkHSeparator and GtkVSeparator

Synopsis

#include <gtk/gtk.h>

struct              GtkSeparator;
GtkWidget *         gtk_separator_new                   (GtkOrientation orientation);

Description

The GtkSeparator widget is the base class for GtkHSeparator and GtkVSeparator. It can be used in the same way as these, by setting the "orientation" property suitably.

Details

struct GtkSeparator

struct GtkSeparator {
  GtkWidget widget;

  GtkSeparatorPrivate *priv;
};


gtk_separator_new ()

GtkWidget *         gtk_separator_new                   (GtkOrientation orientation);

Creates a new GtkSeparator with the given orientation.

orientation :

the separator's orientation.

Returns :

a new GtkSeparator.

Since 3.0