#ifndef ROFI_SEPARATOR_H #define ROFI_SEPARATOR_H #include #include "widget.h" /** * @defgroup separator separator * @ingroup widgets * * Displays a horizontal separator line. The height of the widget determines the line width. * * @{ */ typedef struct _separator separator; /** * @param h The height of the separator. * * Create a horizontal separator with height h. * * @returns a new separator, free with ::widget_free */ separator *separator_create ( short h ); /*@}*/ #endif // ROFI_SEPARATOR_H