1 #ifndef PREFS_WANDERER_H
2 #define PREFS_WANDERER_H
5 Copyright 1995-2001, The AROS Development Team. All rights reserved.
8 Desc: wanderer prefs definitions
12 #ifndef GRAPHICS_GFX_H
13 #include <graphics/gfx.h>
16 #define ID_WANDR MAKE_ID('W','A','N','R')
19 /* The maximum length the path may have. */
20 #define PATHLENGTHSIZE 256
21 #define ICON_TEXT_MAXLEN_DEFAULT 20
23 struct WandererPrefsIFFChunkHeader
25 char wpIFFch_ChunkType
[100];
26 ULONG wpIFFch_ChunkSize
;
31 ULONG wpd_NavigationMethod
; // Are we using the toolbar or not for navigation
32 ULONG wpd_ToolbarEnabled
; // Is the toolbar enabled?
34 ULONG wpd_IconListMode
; // How is it going to be listed
35 ULONG wpd_IconTextMode
; // How is the text rendered
37 ULONG wpd_IconTextMaxLen
; // Max length of icon text
40 #define WPD_NAVIGATION_CLASSIC 0
41 #define WPD_NAVIGATION_ENHANCED 1
42 #define WPD_ICONLISTMODE_GRID 0
43 #define WPD_ICONLISTMODE_PLAIN 1
44 #define WPD_ICONTEXTMODE_OUTLINE 0
45 #define WPD_ICONTEXTMODE_PLAIN 1
47 #define WPD_APPEARANCE 1
50 #endif /* PREFS_WORKBENCH_H */