mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-01-18 11:52:08 +01:00
20 lines
799 B
C
20 lines
799 B
C
#ifndef ICONS_H
|
|
#define ICONS_H
|
|
|
|
#define APP_ICON ":/icons/gpxsee.png"
|
|
#define OPEN_FILE_ICON ":/icons/document-open.png"
|
|
#define EXPORT_FILE_ICON ":/icons/document-export.png"
|
|
#define PRINT_FILE_ICON ":/icons/document-print.png"
|
|
#define CLOSE_FILE_ICON ":/icons/dialog-close.png"
|
|
#define SHOW_POI_ICON ":/icons/flag.png"
|
|
#define SHOW_MAP_ICON ":/icons/applications-internet.png"
|
|
#define QUIT_ICON ":/icons/application-exit.png"
|
|
#define RELOAD_FILE_ICON ":/icons/view-refresh.png"
|
|
#define NEXT_FILE_ICON ":/icons/arrow-right.png"
|
|
#define PREV_FILE_ICON ":/icons/arrow-left.png"
|
|
#define LAST_FILE_ICON ":/icons/arrow-right-double.png"
|
|
#define FIRST_FILE_ICON ":/icons/arrow-left-double.png"
|
|
#define FULLSCREEN_ICON ":/icons/view-fullscreen.png"
|
|
|
|
#endif /* ICONS_H */
|