-
Notifications
You must be signed in to change notification settings - Fork 344
Expand file tree
/
Copy pathnemo-metadata.c
More file actions
86 lines (80 loc) · 3.21 KB
/
nemo-metadata.c
File metadata and controls
86 lines (80 loc) · 3.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*-*/
/* nemo-metadata.c - metadata utils
*
* Copyright (C) 2009 Red Hatl, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street - Suite 500,
* Boston, MA 02110-1335, USA.
*/
#include <config.h>
#include "nemo-metadata.h"
#include <glib.h>
static char *used_metadata_names[] = {
(char *)NEMO_METADATA_KEY_DEFAULT_VIEW,
(char *)NEMO_METADATA_KEY_LOCATION_BACKGROUND_COLOR,
(char *)NEMO_METADATA_KEY_LOCATION_BACKGROUND_IMAGE,
(char *)NEMO_METADATA_KEY_ICON_VIEW_ZOOM_LEVEL,
(char *)NEMO_METADATA_KEY_ICON_VIEW_AUTO_LAYOUT,
(char *)NEMO_METADATA_KEY_ICON_VIEW_SORT_BY,
(char *)NEMO_METADATA_KEY_ICON_VIEW_SORT_REVERSED,
(char *)NEMO_METADATA_KEY_ICON_VIEW_KEEP_ALIGNED,
(char *)NEMO_METADATA_KEY_ICON_VIEW_LAYOUT_TIMESTAMP,
(char *)NEMO_METADATA_KEY_LIST_VIEW_ZOOM_LEVEL,
(char *)NEMO_METADATA_KEY_LIST_VIEW_SORT_COLUMN,
(char *)NEMO_METADATA_KEY_LIST_VIEW_SORT_REVERSED,
(char *)NEMO_METADATA_KEY_LIST_VIEW_VISIBLE_COLUMNS,
(char *)NEMO_METADATA_KEY_LIST_VIEW_COLUMN_ORDER,
(char *)NEMO_METADATA_KEY_COMPACT_VIEW_ZOOM_LEVEL,
(char *)NEMO_METADATA_KEY_WINDOW_GEOMETRY,
(char *)NEMO_METADATA_KEY_WINDOW_SCROLL_POSITION,
(char *)NEMO_METADATA_KEY_WINDOW_SHOW_HIDDEN_FILES,
(char *)NEMO_METADATA_KEY_WINDOW_MAXIMIZED,
(char *)NEMO_METADATA_KEY_WINDOW_STICKY,
(char *)NEMO_METADATA_KEY_WINDOW_KEEP_ABOVE,
(char *)NEMO_METADATA_KEY_WINDOW_SHOW_PREVIEW_PANE,
(char *)NEMO_METADATA_KEY_SIDEBAR_BACKGROUND_COLOR,
(char *)NEMO_METADATA_KEY_SIDEBAR_BACKGROUND_IMAGE,
(char *)NEMO_METADATA_KEY_SIDEBAR_BUTTONS,
(char *)NEMO_METADATA_KEY_ANNOTATION,
(char *)NEMO_METADATA_KEY_ICON_POSITION,
(char *)NEMO_METADATA_KEY_ICON_POSITION_TIMESTAMP,
(char *)NEMO_METADATA_KEY_ICON_SCALE,
(char *)NEMO_METADATA_KEY_CUSTOM_ICON,
(char *)NEMO_METADATA_KEY_CUSTOM_ICON_NAME,
(char *)NEMO_METADATA_KEY_EMBLEMS,
(char *)NEMO_METADATA_KEY_MONITOR,
(char *)NEMO_METADATA_KEY_DESKTOP_GRID_HORIZONTAL,
(char *)NEMO_METADATA_KEY_SHOW_THUMBNAILS,
(char *)NEMO_METADATA_KEY_DESKTOP_GRID_ADJUST,
(char *)NEMO_METADATA_KEY_PINNED,
(char *)NEMO_METADATA_KEY_FAVORITE,
(char *)NEMO_METADATA_KEY_FAVORITE_AVAILABLE,
NULL
};
guint
nemo_metadata_get_id (const char *metadata)
{
static GHashTable *hash;
int i;
if (hash == NULL)
{
hash = g_hash_table_new (g_str_hash, g_str_equal);
for (i = 0; used_metadata_names[i] != NULL; i++)
g_hash_table_insert (hash,
used_metadata_names[i],
GINT_TO_POINTER (i + 1));
}
return GPOINTER_TO_INT (g_hash_table_lookup (hash, metadata));
}