aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quickcontrols/spreadsheets/Spreadsheets/spreadrole.h
blob: aa1c69138a71e52f07dee994c02e662efdd0d2fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#ifndef SPREADROLE_H
#define SPREADROLE_H

#include <Qt>

namespace spread {
enum Role {
    // data roles
    BeginRole = Qt::DisplayRole,  // begin of data roles
    Display = Qt::DisplayRole,
    Edit = Qt::EditRole,
    Hightlight = Qt::UserRole + 1,
    EndRole,  // end of data roles
    // non-data roles
    ColumnName,
    RowName,
};
}

#endif // SPREADROLE_H