xref: /haiku/src/kits/tracker/TrackerDefaults.h (revision dd2a1e350b303b855a50fd64e6cb55618be1ae6a)
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 
12 static const bool kDefaultShowDisksIcon = false;
13 static const bool kDefaultMountVolumesOntoDesktop = true;
14 static const bool kDefaultMountSharedVolumesOntoDesktop = true;
15 static const bool kDefaultEjectWhenUnmounting = true;
16 
17 static const bool kDefaultDesktopFilePanelRoot = true;
18 static const bool kDefaultShowSelectionWhenInactive = true;
19 
20 static const bool kDefaultShowFullPathInTitleBar = false;
21 static const bool kDefaultSingleWindowBrowse = false;
22 static const bool kDefaultShowNavigator = false;
23 static const bool kDefaultTransparentSelection = true;
24 static const bool kDefaultSortFolderNamesFirst = true;
25 static const bool kDefaultHideDotFiles = false;
26 static const bool kDefaultTypeAheadFiltering = false;
27 static const bool kDefaultGenerateImageThumbnails = true;
28 
29 static const int32 kDefaultRecentApplications = 10;
30 static const int32 kDefaultRecentDocuments = 10;
31 static const int32 kDefaultRecentFolders = 10;
32 
33 static const bool kDefaultShowVolumeSpaceBar = true;
34 static const uint8 kDefaultSpaceBarAlpha = 192;
35 static const rgb_color kDefaultUsedSpaceColor = { 0, 203, 0, kDefaultSpaceBarAlpha };
36 static const rgb_color kDefaultFreeSpaceColor = { 255, 255, 255, kDefaultSpaceBarAlpha };
37 static const rgb_color kDefaultWarningSpaceColor = { 203, 0, 0, kDefaultSpaceBarAlpha };
38 
39 
40 #endif	// _TRACKER_DEFAULTS_H
41