File indexing completed on 2024-04-21 04:58:15

0001 /* This file is part of the KDE project
0002     SPDX-FileCopyrightText: 2009 Pino Toscano <pino@kde.org>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef KONQ_HISTORY_H
0008 #define KONQ_HISTORY_H
0009 
0010 #include <QtGlobal>
0011 
0012 namespace KonqHistory
0013 {
0014 
0015 enum ExtraData {
0016     TypeRole = Qt::UserRole + 0xaaff00,
0017     DetailedToolTipRole,
0018     UrlRole,
0019     LastVisitedRole
0020 };
0021 
0022 enum EntryType {
0023     HistoryType = 1,
0024     GroupType = 2
0025 };
0026 
0027 }
0028 
0029 #endif // KONQ_HISTORY_H