File indexing completed on 2024-05-19 05:08:11

0001 /*
0002     SPDX-FileCopyrightText: 2018 Thomas Baumgart <tbaumgart@kde.org>
0003     SPDX-License-Identifier: GPL-2.0-or-later
0004 */
0005 
0006 #ifndef KMYMONEYSETTINGS_ADDON_H
0007 #define KMYMONEYSETTINGS_ADDON_H
0008 
0009 // ----------------------------------------------------------------------------
0010 // QT Includes
0011 
0012 // ----------------------------------------------------------------------------
0013 // KDE Includes
0014 
0015 // ----------------------------------------------------------------------------
0016 // Project Includes
0017 
0018 class MyMoneyForecast;
0019 
0020 enum class SchemeColor {
0021     ListBackground1,
0022     ListBackground2,
0023     ListGrid,
0024     ListHighlightText,
0025     ListHighlight,
0026     WindowText,
0027     WindowBackground,
0028     Positive,
0029     Negative,
0030     TransactionImported,
0031     TransactionMatched,
0032     TransactionErroneous,
0033     FieldRequired,
0034     GroupMarker,
0035     MissingConversionRate,
0036 };
0037 
0038 enum class AutoFillMethod {
0039     NoAutoFill = 0,
0040     AutoFillWithClosestInValue,
0041     AutoFillWithMostOftenUsed,
0042 };
0043 #endif