File indexing completed on 2024-05-12 13:00:15

0001 /* This file is part of the KDE project
0002  * SPDX-FileCopyrightText: 2018 Dag Andersen <danders@get2net.dk>
0003  *
0004  * SPDX-License-Identifier: LGPL-2.0-or-later
0005  */
0006 
0007 #ifndef KOCANVASRESOURCEIDENTITIES_H
0008 #define KOCANVASRESOURCEIDENTITIES_H
0009 
0010 #include "KoCanvasResourceManager.h"
0011 
0012 /**
0013  * Register the applivations canvas resources here
0014  * to make them accessible by plugins.
0015  * 
0016  * @see KoCanvasResourceManager::CanvasResource
0017  */
0018 
0019 namespace Sheets
0020 {
0021     namespace CanvasResource
0022     {
0023         enum Identities {
0024             Selection = KoCanvasResourceManager::SheetsStart, ///< the cell selection
0025             MapResource, ///< the document data
0026             AccessModel  ///< the data table access model 
0027         };
0028     }
0029 }
0030 
0031 #endif