aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/todo/settings.h
blob: ee750a4877724a1a34d46c9a7d0efe8999602412 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Copyright (C) 2016 Dmitry Savchenko
// Copyright (C) 2016 Vasiliy Sorokin
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#pragma once

#include "keyword.h"

#include <QMetaType>

namespace Todo::Internal {

enum ScanningScope {
    ScanningScopeCurrentFile,
    ScanningScopeProject,
    ScanningScopeSubProject,
    ScanningScopeMax
};

class Settings
{
public:
    KeywordList keywords;
    ScanningScope scanningScope = ScanningScopeCurrentFile;
    bool keywordsEdited = false;

    void save() const;
    void load();
    void setDefault();
};

Settings &todoSettings();

void setupTodoSettingsPage();

} // Todo::Internal

Q_DECLARE_METATYPE(Todo::Internal::ScanningScope)