1 /***************************************************************************
2                           kmymoneysettings_addon.h
3                              -------------------
4     copyright            : (C) 2018 by Thomas Baumgart
5     email                : tbaumgart@kde.org
6  ***************************************************************************/
7 
8 /***************************************************************************
9  *                                                                         *
10  *   This program is free software; you can redistribute it and/or modify  *
11  *   it under the terms of the GNU General Public License as published by  *
12  *   the Free Software Foundation; either version 2 of the License, or     *
13  *   (at your option) any later version.                                   *
14  *                                                                         *
15  ***************************************************************************/
16 
17 #ifndef KMYMONEYSETTINGS_ADDON_H
18 #define KMYMONEYSETTINGS_ADDON_H
19 
20 // ----------------------------------------------------------------------------
21 // QT Includes
22 
23 // ----------------------------------------------------------------------------
24 // KDE Includes
25 
26 // ----------------------------------------------------------------------------
27 // Project Includes
28 
29 class MyMoneyForecast;
30 
31 enum class SchemeColor {
32   ListBackground1,
33   ListBackground2,
34   ListGrid,
35   ListHighlightText,
36   ListHighlight,
37   WindowText,
38   WindowBackground,
39   Positive,
40   Negative,
41   TransactionImported,
42   TransactionMatched,
43   TransactionErroneous,
44   FieldRequired,
45   GroupMarker,
46   MissingConversionRate
47 };
48 
49 #endif
50