aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/todo/todoicons.h
blob: ea204253a901d939177b963aec88e7f37a47365f (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
// 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 <QIcon>

namespace Todo {
namespace Internal {

enum class IconType {
    Info,
    Error,
    Warning,
    Bug,
    Todo
};

QIcon icon(IconType type);
QIcon toolBarIcon(IconType type);

} // namespace Internal
} // namespace Todo