2017-06-20 19:02:13 +00:00
|
|
|
#include "rofi-types.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Name of the property type
|
|
|
|
*/
|
2017-08-17 17:04:01 +00:00
|
|
|
const char * const PropertyTypeName[P_NUM_TYPES] = {
|
2017-06-20 19:02:13 +00:00
|
|
|
/** Integer */
|
|
|
|
"Integer",
|
|
|
|
/** Double */
|
|
|
|
"Double",
|
|
|
|
/** String */
|
|
|
|
"String",
|
|
|
|
/** Boolean */
|
|
|
|
"Boolean",
|
|
|
|
/** Color */
|
|
|
|
"Color",
|
2017-08-17 17:04:01 +00:00
|
|
|
/** Padding */
|
|
|
|
"Padding",
|
2017-06-20 19:02:13 +00:00
|
|
|
/** Link to global setting */
|
|
|
|
"Reference",
|
|
|
|
/** Position */
|
|
|
|
"Position",
|
|
|
|
/** Highlight */
|
|
|
|
"Highlight",
|
|
|
|
/** List */
|
|
|
|
"List",
|
|
|
|
/** Orientation */
|
|
|
|
"Orientation",
|
2017-09-06 17:02:09 +00:00
|
|
|
/** Inherit */
|
|
|
|
"Inherit",
|
2017-06-20 19:02:13 +00:00
|
|
|
};
|