1/*
2 * Copyright 2023 Haiku, Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 *
5 * Authors:
6 *		John Scipione, jscipione@gmail.com
7 */
8#ifndef _TRACKER_DEFAULTS_H
9#define _TRACKER_DEFAULTS_H
10
11
12static const bool kDefaultShowDisksIcon = false;
13static const bool kDefaultMountVolumesOntoDesktop = true;
14static const bool kDefaultMountSharedVolumesOntoDesktop = true;
15static const bool kDefaultEjectWhenUnmounting = true;
16
17static const bool kDefaultDesktopFilePanelRoot = true;
18static const bool kDefaultShowSelectionWhenInactive = true;
19
20static const bool kDefaultShowFullPathInTitleBar = false;
21static const bool kDefaultSingleWindowBrowse = false;
22static const bool kDefaultShowNavigator = false;
23static const bool kDefaultTransparentSelection = true;
24static const bool kDefaultSortFolderNamesFirst = true;
25static const bool kDefaultHideDotFiles = false;
26static const bool kDefaultTypeAheadFiltering = false;
27static const bool kDefaultGenerateImageThumbnails = true;
28
29static const int32 kDefaultRecentApplications = 10;
30static const int32 kDefaultRecentDocuments = 10;
31static const int32 kDefaultRecentFolders = 10;
32
33static const bool kDefaultShowVolumeSpaceBar = true;
34static const uint8 kDefaultSpaceBarAlpha = 192;
35static const rgb_color kDefaultUsedSpaceColor = { 0, 203, 0, kDefaultSpaceBarAlpha };
36static const rgb_color kDefaultFreeSpaceColor = { 255, 255, 255, kDefaultSpaceBarAlpha };
37static const rgb_color kDefaultWarningSpaceColor = { 203, 0, 0, kDefaultSpaceBarAlpha };
38
39
40#endif	// _TRACKER_DEFAULTS_H
41