Description

Elementary icon types

Fields

  • none - Icon has no type set
  • file - Icon is of type file
  • standard - Icon is of type standard

Signature

enum @extern Elm.Icon.Type {
    none: 0,
    file,
    standard
}

C signature

typedef enum {
    ELM_ICON_NONE = 0,
    ELM_ICON_FILE,
    ELM_ICON_STANDARD
} Elm_Icon_Type;