1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-10-27 05:23:18 -04:00
rofi/source/rofi-types.c

40 lines
672 B
C
Raw Normal View History

#include "rofi-types.h"
/**
* Name of the property type
*/
2022-01-24 13:56:17 -05:00
const char *const PropertyTypeName[P_NUM_TYPES] = {
/** Integer */
"Integer",
/** Double */
"Double",
/** String */
"String",
/** Character */
"Character",
/** Boolean */
"Boolean",
/** Color */
"Color",
2021-06-15 06:31:32 -04:00
/** Image */
"Image",
/** Padding */
"Padding",
/** Link to global setting */
"Reference",
/** Position */
"Position",
/** Highlight */
"Highlight",
/** List */
"List",
2022-01-24 14:33:19 -05:00
/** Array */
"Array",
/** Orientation */
"Orientation",
/** Cursor */
"Cursor",
/** Inherit */
"Inherit",
};