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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
// SPDX-License-Identifier: GPL-2.0-or-later
/** @file
* TODO: insert short description here
*//*
* Authors:
* MenTaLguY <mental@rydia.net>
* Martin Owens <doctormo@gmail.com>
*
* Copyright (C) 2018 Authors
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#ifndef SEEN_INKSCAPE_IO_RESOURCE_H
#define SEEN_INKSCAPE_IO_RESOURCE_H
#include <vector>
#include <glibmm/ustring.h>
#include "util/share.h"
namespace Inkscape {
namespace IO {
/**
* simple resource API
*/
namespace Resource {
enum Type {
ATTRIBUTES,
EXAMPLES,
EXTENSIONS,
FONTS,
ICONS,
KEYS,
MARKERS,
NONE,
PAINT,
PALETTES,
SCREENS,
TEMPLATES,
TUTORIALS,
SYMBOLS,
FILTERS,
THEMES,
UIS,
PIXMAPS,
DOCS
};
enum Domain {
SYSTEM,
CREATE,
CACHE,
USER
};
Util::ptr_shared get_path(Domain domain, Type type,
char const *filename=nullptr);
Glib::ustring get_path_ustring(Domain domain, Type type,
char const *filename=nullptr);
std::string get_path_string(Domain domain, Type type, char const *filename = nullptr);
std::string get_filename_string(Type type, char const *filename, bool localized = false, bool silent = false);
Glib::ustring get_filename(Type type, char const *filename, bool localized = false, bool silent = false);
// TODO consolidate with Glib::StdStringView
Glib::ustring get_filename(Glib::ustring path, Glib::ustring filename);
std::string get_filename(std::string const& path, std::string const& filename);
inline std::string get_filename(const char *path, const char *filename)
{
return get_filename(std::string(path), std::string(filename));
}
std::vector<Glib::ustring> get_filenames(Type type,
std::vector<const char *> const &extensions={},
std::vector<const char *> const &exclusions={});
std::vector<Glib::ustring> get_filenames(Domain domain, Type type,
std::vector<const char *> const &extensions={},
std::vector<const char *> const &exclusions={});
std::vector<Glib::ustring> get_filenames(Glib::ustring path,
std::vector<const char *> const &extensions={},
std::vector<const char *> const &exclusions={});
std::vector<Glib::ustring> get_foldernames(Type type, std::vector<const char *> const &exclusions = {});
std::vector<Glib::ustring> get_foldernames(Domain domain, Type type, std::vector<const char *> const &exclusions = {});
std::vector<Glib::ustring> get_foldernames(Glib::ustring path, std::vector<const char *> const &exclusions = {});
void get_foldernames_from_path(std::vector<Glib::ustring> &files, Glib::ustring path,
std::vector<const char *> exclusions = {});
void get_filenames_from_path(std::vector<Glib::ustring> &files, std::string const &path,
std::vector<const char *> const &extensions = {},
std::vector<const char *> const &exclusions = {});
char const *profile_path();
char *profile_path(const char *filename);
char *homedir_path(const char *filename);
char *log_path(const char *filename);
}
}
}
#endif
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :
|