mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-01-31 17:15:14 +01:00
37 lines
1.4 KiB
C
37 lines
1.4 KiB
C
#ifndef ICONS_H
|
|
#define ICONS_H
|
|
|
|
#define APP_ICON ":/gpxsee.png"
|
|
|
|
// Toolbar/menu icons
|
|
#define OPEN_FILE_ICON ":/document-open.png"
|
|
#define EXPORT_FILE_ICON ":/document-export.png"
|
|
#define PRINT_FILE_ICON ":/document-print.png"
|
|
#define CLOSE_FILE_ICON ":/dialog-close.png"
|
|
#define SHOW_POI_ICON ":/flag.png"
|
|
#define SHOW_MAP_ICON ":/applications-internet.png"
|
|
#define SHOW_GRAPHS_ICON ":/office-chart-line.png"
|
|
#define QUIT_ICON ":/application-exit.png"
|
|
#define RELOAD_FILE_ICON ":/view-refresh.png"
|
|
#define NEXT_FILE_ICON ":/arrow-right.png"
|
|
#define PREV_FILE_ICON ":/arrow-left.png"
|
|
#define LAST_FILE_ICON ":/arrow-right-double.png"
|
|
#define FIRST_FILE_ICON ":/arrow-left-double.png"
|
|
#define FULLSCREEN_ICON ":/view-fullscreen.png"
|
|
#define SHOW_POS_ICON ":/transform-move.png"
|
|
|
|
// Options dialog icons
|
|
#define APPEARANCE_ICON ":/format-stroke-color.png"
|
|
#define POI_ICON ":/flag_32.png"
|
|
#define SYSTEM_ICON ":/preferences-system.png"
|
|
#define PRINT_EXPORT_ICON ":/document-print_32.png"
|
|
#define DATA_ICON ":/view-filter.png"
|
|
#define MAPS_ICON ":/applications-internet_32.png"
|
|
#define DEM_ICON ":/view-grid.png"
|
|
#define POSITION_ICON ":/transform-move_32.png"
|
|
|
|
#define SHOW_PWD_ICON ":/document-encrypt.png"
|
|
#define HIDE_PWD_ICON ":/document-decrypt.png"
|
|
|
|
#endif /* ICONS_H */
|