2015-10-05 01:43:48 +02:00
|
|
|
#ifndef ICONS_H
|
|
|
|
#define ICONS_H
|
|
|
|
|
2019-03-20 00:00:08 +01:00
|
|
|
#define APP_ICON ":/gpxsee.png"
|
2016-12-06 01:48:26 +01:00
|
|
|
|
|
|
|
// Toolbar/menu icons
|
2019-03-20 00:00:08 +01:00
|
|
|
#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"
|
2021-12-04 15:05:30 +01:00
|
|
|
#define SHOW_POS_ICON ":/transform-move.png"
|
2015-10-05 01:43:48 +02:00
|
|
|
|
2016-12-06 01:48:26 +01:00
|
|
|
// Options dialog icons
|
2019-03-20 00:00:08 +01:00
|
|
|
#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"
|
2021-08-30 20:31:33 +02:00
|
|
|
#define DEM_ICON ":/view-grid.png"
|
2021-12-04 15:05:30 +01:00
|
|
|
#define POSITION_ICON ":/transform-move_32.png"
|
2016-12-06 01:48:26 +01:00
|
|
|
|
2021-09-20 21:58:08 +02:00
|
|
|
#define SHOW_PWD_ICON ":/document-encrypt.png"
|
|
|
|
#define HIDE_PWD_ICON ":/document-decrypt.png"
|
|
|
|
|
2015-10-05 01:43:48 +02:00
|
|
|
#endif /* ICONS_H */
|