1 #ifndef ICON_NAMES_H
2 #define ICON_NAMES_H
3 
4 #pragma GCC diagnostic push
5 #pragma GCC diagnostic ignored "-Wunused-variable"
6 
7 /** @namespace IconNames
8  *  @brief Icon names for KIconLoader used by BasKet */
9 namespace IconNames
10 {
11 #define StrRes static const char* const
12 
13 StrRes  LOADING = "process-idle";
14 StrRes  LOCKED = "object-locked";
15 
16 // Insert stuff
17 StrRes  LINK = "insert-link";
18 StrRes  CROSS_REF = LINK;
19 StrRes  IMAGE = "insert-image";
20 StrRes  COLOR = "fill-color";
21 StrRes  LAUNCH = "system-run";
22 StrRes  KMENU = "kde";
23 StrRes  ICONS = "preferences-desktop-icons";
24 
25 StrRes  DOCUMENT_IMPORT = "document-import";
26 
27 // Import from
28 StrRes  TOMBOY = "tomboy";
29 
30 #undef StrRes
31 }
32 
33 #pragma GCC diagnostic pop
34 
35 #endif // ICON_NAMES_H
36