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
|
/*
* Utility functions for reading and setting preferences
*
* Authors:
* bulia byak <bulia@dr.com>
*
* Copyright (C) 2003 authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#ifndef SEEN_PREFS_UTILS_H
#define SEEN_PREFS_UTILS_H
#include <glib/gtypes.h>
#include <glib/gslist.h>
#include "preferences.h"
inline bool pref_path_exists(gchar const *path){
Inkscape::Preferences *ps = Inkscape::Preferences::get();
return ps->exists(path);
}
inline unsigned pref_path_number_of_children(gchar const *path){
Inkscape::Preferences *ps = Inkscape::Preferences::get();
return ps->childCount(path);
}
inline void
prefs_set_int_attribute(gchar const *path, gchar const *attr, long long int value)
{
Inkscape::Preferences *ps = Inkscape::Preferences::get();
ps->setInt(path, attr, value);
}
inline int
prefs_get_int_attribute(gchar const *path, gchar const *attr, long long int def)
{
Inkscape::Preferences *ps = Inkscape::Preferences::get();
return ps->getInt(path, attr, def);
}
inline int
prefs_get_int_attribute_limited(gchar const *path, gchar const *attr, long long int def, long long int min, long long int max)
{
Inkscape::Preferences *ps = Inkscape::Preferences::get();
return ps->getIntLimited(path, attr, def, min, max);
}
inline void
prefs_set_double_attribute(gchar const *path, gchar const *attr, double value)
{
Inkscape::Preferences *ps = Inkscape::Preferences::get();
ps->setDouble(path, attr, value);
}
inline double
prefs_get_double_attribute(gchar const *path, gchar const *attr, double def)
{
Inkscape::Preferences *ps = Inkscape::Preferences::get();
return ps->getDouble(path, attr, def);
}
inline double
prefs_get_double_attribute_limited(gchar const *path, gchar const *attr, double def, double min, double max)
{
Inkscape::Preferences *ps = Inkscape::Preferences::get();
return ps->getDoubleLimited(path, attr, def, min, max);
}
inline void
prefs_set_string_attribute(gchar const *path, gchar const *attr, gchar const *value)
{
Inkscape::Preferences *ps = Inkscape::Preferences::get();
ps->setString(path, attr, value);
}
/// @todo Reimplement using Gtk::RecentManager
void prefs_set_recent_file(const gchar * uri, const gchar * name);
const gchar ** prefs_get_recent_files(void);
#endif /* !SEEN_PREFS_UTILS_H */
/*
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:encoding=utf-8:textwidth=99 :
|