summaryrefslogtreecommitdiffstats
path: root/src/preferences/constants.h
blob: 4bc73c32ec969a2f3140b8aff893a010c586c672 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef PREFERENCES_CONSTANTS_H
#define PREFERENCES_CONSTANTS_H

namespace mixxx {

// Don't change these constants since they are stored in user configuration
// files.
enum class TooltipsPreference {
    TOOLTIPS_OFF = 0,
    TOOLTIPS_ON = 1,
    TOOLTIPS_ONLY_IN_LIBRARY = 2,
};

// Settings to enable or disable the prevention to run the screensaver.
enum class ScreenSaverPreference {
    PREVENT_OFF = 0,
    PREVENT_ON = 1,
    PREVENT_ON_PLAY = 2
};

}  // namespace mixxx

#endif /* PREFERENCES_CONSTANTS_H */