mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-03 04:23:42 -05:00
29 lines
499 B
C
29 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",
|
|
};
|