mirror of
https://invent.kde.org/graphics/okular
synced 2024-11-05 18:34:53 +00:00
4cd6bfd30e
Move a few files from part/ to gui/ since they are also used by the mobile/ frontend
18 lines
408 B
C
18 lines
408 B
C
/*
|
|
SPDX-FileCopyrightText: 2013 Albert Astals Cid <aacid@kde.org>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef PRIORITIES_H
|
|
#define PRIORITIES_H
|
|
|
|
/** PRIORITIES for requests. Globally defined here. **/
|
|
#define PAGEVIEW_PRIO 1
|
|
#define PAGEVIEW_PRELOAD_PRIO 4
|
|
#define THUMBNAILS_PRIO 2
|
|
#define THUMBNAILS_PRELOAD_PRIO 5
|
|
#define PRESENTATION_PRIO 0
|
|
#define PRESENTATION_PRELOAD_PRIO 3
|
|
|
|
#endif
|