Beispiel #1
0
class GraphCacheCleanupReason(IntEnum):
    fitChanged = autoId()
    fitRemoved = autoId()
    profileChanged = autoId()
    profileRemoved = autoId()
    graphSwitched = autoId()
    inputChanged = autoId()
    optionChanged = autoId()
    resistModeChanged = autoId()
    hpEffectivityChanged = autoId()
Beispiel #2
0
class GraphColor(IntEnum):
    red = autoId()
    green = autoId()
    blue = autoId()
    yellow = autoId()
    cyan = autoId()
    magenta = autoId()
    orange = autoId()
    purple = autoId()
Beispiel #3
0
class GuiAttrGroup(IntEnum):
    """
    Define the various groups of attributes.
    This enum is used for GUI functions and getting redefined in
    /gui/builtinItemStatsViews/attributeGrouping.py
    """
    FITTING = autoId()
    STRUCTURE = autoId()
    SHIELD = autoId()
    ARMOR = autoId()
    TARGETING = autoId()
    EWAR_RESISTS = autoId()
    CAPACITOR = autoId()
    SHARED_FACILITIES = autoId()
    FIGHTER_FACILITIES = autoId()
    ON_DEATH = autoId()
    JUMP_SYSTEMS = autoId()
    PROPULSIONS = autoId()
    FIGHTERS = autoId()
    SHIP_GROUP = autoId()
Beispiel #4
0
class GraphLineStyle(IntEnum):
    solid = autoId()
    dashed = autoId()
    dotted = autoId()
    dashdotted = autoId()
Beispiel #5
0
class GraphLightness(IntEnum):
    normal = autoId()
    dark = autoId()
    bright = autoId()
Beispiel #6
0
class TargetResistMode(IntEnum):
    auto = autoId()
    shield = autoId()
    armor = autoId()
    hull = autoId()
    weightedAverage = autoId()