Ansel
0.0
A darktable fork - bloat + design vision
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
x
y
Functions
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
x
y
Typedefs
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
Data Fields
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
g
h
i
k
l
m
o
p
r
s
u
v
w
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
Enumerator
Files
File List
Globals
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
w
Enumerations
_
a
b
c
d
e
h
l
m
o
p
r
t
w
Enumerator
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
•
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Pages
Loading...
Searching...
No Matches
metadata_export.h
Go to the documentation of this file.
1
/*
2
This file is part of darktable,
3
Copyright (C) 2019-2020 darktable developers.
4
5
darktable is free software: you can redistribute it and/or modify
6
it under the terms of the GNU General Public License as published by
7
the Free Software Foundation, either version 3 of the License, or
8
(at your option) any later version.
9
10
darktable is distributed in the hope that it will be useful,
11
but WITHOUT ANY WARRANTY; without even the implied warranty of
12
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
GNU General Public License for more details.
14
15
You should have received a copy of the GNU General Public License
16
along with darktable. If not, see <http://www.gnu.org/licenses/>.
17
*/
18
19
typedef
enum
dt_metadata_id
20
{
21
DT_META_NONE
= 0,
22
DT_META_EXIF
= 1 << 0,
23
DT_META_METADATA
= 1 << 1,
24
DT_META_GEOTAG
= 1 << 2,
25
DT_META_TAG
= 1 << 3,
26
DT_META_HIERARCHICAL_TAG
= 1 << 4,
27
DT_META_DT_HISTORY
= 1 << 5,
28
DT_META_PRIVATE_TAG
= 1 << 16,
29
DT_META_SYNONYMS_TAG
= 1 << 17,
30
DT_META_OMIT_HIERARCHY
= 1 << 18,
31
DT_META_CALCULATED
= 1 << 19
32
}
dt_metadata_id
;
19
typedef
enum
dt_metadata_id
{
…
};
33
34
typedef
struct
dt_export_metadata_t
35
{
36
int32_t
flags
;
37
GList *
list
;
38
}
dt_export_metadata_t
;
34
typedef
struct
dt_export_metadata_t
{
…
};
39
40
uint32_t
dt_lib_export_metadata_default_flags
(
void
);
41
uint32_t
dt_lib_export_metadata_get_conf_flags
(
void
);
42
char
*
dt_lib_export_metadata_get_conf
(
void
);
43
void
dt_lib_export_metadata_set_conf
(
const
char
*metadata_presets);
44
45
// clang-format off
46
// modelines: These editor modelines have been set for all relevant files by tools/update_modelines.py
47
// vim: shiftwidth=2 expandtab tabstop=2 cindent
48
// kate: tab-indents: off; indent-width 2; replace-tabs on; indent-mode cstyle; remove-trailing-spaces modified;
49
// clang-format on
50
dt_metadata_id
dt_metadata_id
Definition
metadata_export.h:20
DT_META_OMIT_HIERARCHY
@ DT_META_OMIT_HIERARCHY
Definition
metadata_export.h:30
DT_META_HIERARCHICAL_TAG
@ DT_META_HIERARCHICAL_TAG
Definition
metadata_export.h:26
DT_META_TAG
@ DT_META_TAG
Definition
metadata_export.h:25
DT_META_CALCULATED
@ DT_META_CALCULATED
Definition
metadata_export.h:31
DT_META_EXIF
@ DT_META_EXIF
Definition
metadata_export.h:22
DT_META_METADATA
@ DT_META_METADATA
Definition
metadata_export.h:23
DT_META_DT_HISTORY
@ DT_META_DT_HISTORY
Definition
metadata_export.h:27
DT_META_PRIVATE_TAG
@ DT_META_PRIVATE_TAG
Definition
metadata_export.h:28
DT_META_GEOTAG
@ DT_META_GEOTAG
Definition
metadata_export.h:24
DT_META_NONE
@ DT_META_NONE
Definition
metadata_export.h:21
DT_META_SYNONYMS_TAG
@ DT_META_SYNONYMS_TAG
Definition
metadata_export.h:29
dt_lib_export_metadata_get_conf_flags
uint32_t dt_lib_export_metadata_get_conf_flags(void)
Definition
metadata_export.c:32
dt_lib_export_metadata_get_conf
char * dt_lib_export_metadata_get_conf(void)
Definition
metadata_export.c:39
dt_lib_export_metadata_default_flags
uint32_t dt_lib_export_metadata_default_flags(void)
Definition
metadata_export.c:23
dt_lib_export_metadata_set_conf
void dt_lib_export_metadata_set_conf(const char *metadata_presets)
Definition
metadata_export.c:74
dt_export_metadata_t
Definition
metadata_export.h:35
dt_export_metadata_t::list
GList * list
Definition
metadata_export.h:37
dt_export_metadata_t::flags
int32_t flags
Definition
metadata_export.h:36
src
common
metadata_export.h
Generated by
1.9.8