summaryrefslogtreecommitdiffstats
path: root/source/rofi-types.c
blob: 690a18c4e0b9b810815e4e83fc67effaaef1897f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#include "rofi-types.h"

/**
 * Name of the property type
 */
const char * const PropertyTypeName[P_NUM_TYPES] = {
    /** Integer */
    "Integer",
    /** Double */
    "Double",
    /** String */
    "String",
    /** Character */
    "Character",
    /** Boolean */
    "Boolean",
    /** Color */
    "Color",
    /** Padding */
    "Padding",
    /** Link to global setting */
    "Reference",
    /** Position */
    "Position",
    /** Highlight */
    "Highlight",
    /** List */
    "List",
    /** Orientation */
    "Orientation",
    /** Inherit */
    "Inherit",
};