mirror of
https://invent.kde.org/graphics/okular
synced 2024-11-05 18:34:53 +00:00
541650a4f4
Just use the pointer as id :-) This is BIC and SIC, increase the soversion now to makes sure we don't forget in the future Patch based in an earlier patch by Bogdan Cristea <cristeab@gmail.com> REVIEW: 109115
21 lines
905 B
C
21 lines
905 B
C
/***************************************************************************
|
|
* Copyright (C) 2013 by Albert Astals Cid <aacid@kde.org> *
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
***************************************************************************/
|
|
|
|
#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
|