File indexing completed on 2024-04-14 15:50:56

0001 /**
0002  * SPDX-FileCopyrightText: (C) 2013 Gleb Baryshev <gleb.baryshev@gmail.com>
0003  *
0004  * SPDX-License-Identifier: GPL-2.0-or-later
0005  */
0006 #ifndef ICON_NAMES_H
0007 #define ICON_NAMES_H
0008 
0009 #pragma GCC diagnostic push
0010 #pragma GCC diagnostic ignored "-Wunused-variable"
0011 
0012 /** @namespace IconNames
0013  *  @brief Icon names for KIconLoader used by BasKet */
0014 namespace IconNames
0015 {
0016 #define StrRes static const char *const
0017 
0018 StrRes LOADING = "process-idle";
0019 StrRes LOCKED = "object-locked";
0020 
0021 // Insert stuff
0022 StrRes LINK = "insert-link";
0023 StrRes CROSS_REF = LINK;
0024 StrRes IMAGE = "insert-image";
0025 StrRes COLOR = "fill-color";
0026 StrRes LAUNCH = "system-run";
0027 StrRes KMENU = "kde";
0028 StrRes ICONS = "preferences-desktop-icons";
0029 
0030 StrRes DOCUMENT_IMPORT = "document-import";
0031 
0032 // Import from
0033 StrRes TOMBOY = "tomboy";
0034 
0035 #undef StrRes
0036 }
0037 
0038 #pragma GCC diagnostic pop
0039 
0040 #endif // ICON_NAMES_H