rofi/source/rofi-types.c

30 lines
499 B
C

#include "rofi-types.h"
/**
* Name of the property type
*/
const char *PropertyTypeName[] = {
/** Integer */
"Integer",
/** Double */
"Double",
/** String */
"String",
/** Boolean */
"Boolean",
/** Color */
"Color",
/** RofiPadding */
"RofiPadding",
/** Link to global setting */
"Reference",
/** Position */
"Position",
/** Highlight */
"Highlight",
/** List */
"List",
/** Orientation */
"Orientation",
};