blob: c3445b13aa0a91e15f64b1c9900f6de44c38be0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Copyright (C) 2016 Denis Mingulov
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include <Qt>
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
|