1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2025-02-03 15:34:54 -05:00

Small docu update.

This commit is contained in:
Dave Davenport 2016-10-09 09:40:21 +02:00
parent 1dc32727b3
commit ad02f8f0b7
2 changed files with 7 additions and 1 deletions

View file

@ -7,6 +7,8 @@
* @defgroup separator separator
* @ingroup widgets
*
* Displays a horizontal separator line. The height of the widget determines the line width.
*
* @{
*/
typedef struct _separator separator;

View file

@ -7,7 +7,11 @@
/**
* @defgroup widgets widgets
*
* Generic widget class
* Generic abstract widget class. Widgets should 'inherit' from this class (first structure in there structure should be
* widget).
* The generic widget implements generic functions like get_width, get_height, draw, resize, update, free and
* clicked.
* It also holds information about how the widget should be packed.
*
* @{
*/