Warning, file /office/calligra/libs/pageapp/KoPageApp.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /* This file is part of the KDE project
0002  * Copyright (C) 2007 Thorsten Zachmann <zachmann@kde.org>
0003  * Copyright (C) 2008 Thomas Zander <zander@kde.org>
0004  *
0005  * This library is free software; you can redistribute it and/or
0006  * modify it under the terms of the GNU Library General Public
0007  * License as published by the Free Software Foundation; either
0008  * version 2 of the License, or (at your option) any later version.
0009  *
0010  * This library is distributed in the hope that it will be useful,
0011  * but WITHOUT ANY WARRANTY; without even the implied warranty of
0012  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
0013  * Library General Public License for more details.
0014  *
0015  * You should have received a copy of the GNU Library General Public License
0016  * along with this library; see the file COPYING.LIB.  If not, write to
0017  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
0018  * Boston, MA 02110-1301, USA.
0019  */
0020 #ifndef KOPAGEAPP_H
0021 #define KOPAGEAPP_H
0022 
0023 #include <KoCanvasResourceManager.h>
0024 
0025 /// add docs please
0026 namespace KoPageApp
0027 {
0028     /// add docs please
0029     enum PageNavigation
0030     {
0031         PageFirst,
0032         PagePrevious,
0033         PageNext,
0034         PageLast
0035     };
0036 
0037     /**
0038      * This enum holds identifiers to the resources that can be stored in the KoCanvasResourceManager.
0039      */
0040     enum CanvasResource {
0041         CurrentPage = KoCanvasResourceManager::KoPageAppStart+1 ///< The current page as a KoShape
0042     };
0043 
0044     /**
0045      * This enum defines if we should talk about pages or slides in the document
0046      */
0047     enum PageType {
0048         Page,
0049         Slide
0050     };
0051 }
0052 
0053 #endif // KOPAGEAPP_H