aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/classview/classviewconstants.h
blob: a18636bb1938f9b4b821cce1b060c7d0ac8a38e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright (C) 2016 Denis Mingulov
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#pragma once

namespace ClassView {
namespace Constants {

//! QStandardItem roles
enum ItemRole
{
    SymbolLocationsRole = Qt::UserRole + 1, //!< Symbol locations
    IconTypeRole,                           //!< Icon type (integer)
    SymbolNameRole,                         //!< Symbol name
    SymbolTypeRole                          //!< Symbol type
};

} // namespace Constants
} // namespace ClassView