merge the formfield patch from ooo-build
[ooovba.git] / sd / source / ui / slidesorter / cache / SlsRequestPriorityClass.hxx
blobc92485922056189ce1a1c4ab19b8f986daf98440
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: SlsRequestPriorityClass.hxx,v $
10 * $Revision: 1.4 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef SD_SLIDESORTER_CACHE_REQUEST_PRIORITY_CLASS_HXX
32 #define SD_SLIDESORTER_CACHE_REQUEST_PRIORITY_CLASS_HXX
34 namespace sd { namespace slidesorter { namespace cache {
37 /** Each request for a preview creation has a priority. This enum defines
38 the available priorities. The special values MIN__CLASS and MAX__CLASS
39 are/can be used for validation and have to be kept up-to-date.
41 enum RequestPriorityClass
43 MIN__CLASS = 0,
45 // The slide is visible. A preview does not yet exist.
46 VISIBLE_NO_PREVIEW = MIN__CLASS,
47 // The slide is visible. A preview exists but is not up-to-date anymore.
48 VISIBLE_OUTDATED_PREVIEW,
49 // The slide is not visible.
50 NOT_VISIBLE,
52 MAX__CLASS = NOT_VISIBLE
56 } } } // end of namespace ::sd::slidesorter::cache
58 #endif