-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathkde.cfg
More file actions
92 lines (92 loc) · 4.61 KB
/
kde.cfg
File metadata and controls
92 lines (92 loc) · 4.61 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
87
88
89
90
91
92
<?xml version="1.0"?>
<def format="2">
<!-- KDE Library Configuration https://kde.org -->
<!-- The KDE library is typically not included by one specific header file, there are many -->
<!-- different ones, like for Qt. Examples: "#include <KApplication>" or "#include <KMessageBox>" -->
<!-- ########## KDE Types ########## -->
<!-- ########## KDE Macros / Defines ########## -->
<define name="K_GLOBAL_STATIC_STRUCT_NAME(NAME)" value="_k_##NAME##__LINE__"/>
<define name="K_GLOBAL_STATIC(TYPE, NAME)" value="K_GLOBAL_STATIC_WITH_ARGS(TYPE, NAME, ())"/>
<define name="K_GLOBAL_STATIC_WITH_ARGS(TYPE, NAME, ARGS)" value="static struct K_GLOBAL_STATIC_STRUCT_NAME(NAME) NAME;"/>
<define name="KDE_ISLIKELY(x)" value="(x)"/>
<define name="KDE_ISUNLIKELY(x)" value="(x)"/>
<define name="KDE_IS_VERSION(a, b, c)" value="( KDE_VERSION >= KDE_MAKE_VERSION(a,b,c) )"/>
<define name="KDE_EXPORT" value=""/>
<define name="KDE_IMPORT" value=""/>
<define name="KDE_MAKE_VERSION(a, b, c)" value="(((a) << 16) | ((b) << 8) | (c))"/>
<define name="KDE_MUST_USE_RESULT" value="__attribute__((__warn_unused_result__))"/>
<define name="KDE_NO_DEPRECATED" value=""/>
<define name="KDE_NO_EXPORT" value=""/>
<define name="KDE_PACKED" value=""/>
<define name="KDE_VERSION" value="KDE_MAKE_VERSION(KDE_VERSION_MAJOR,KDE_VERSION_MINOR,KDE_VERSION_RELEASE)"/>
<define name="KDE_WEAK_SYMBOL" value=""/>
<define name="K_PLUGIN_CLASS_WITH_JSON(class_name, json_name)" value=""/>
<define name="K_PLUGIN_CLASS(class_name)" value=""/>
<define name="K_PLUGIN_FACTORY(class_name, ...)" value=""/>
<define name="K_PLUGIN_FACTORY_WITH_JSON(class_name, json_name, ...)" value=""/>
<define name="EXPORT_KONTACT_PLUGIN_WITH_JSON(class_name, json_name)" value=""/>
<!-- ########## KDE Allocation / Deallocation ########## -->
<!-- ########## KDE Functions ########## -->
<!-- template<typename T > T KConfigGroup::readEntry ( const QString & key, const T & aDefault ) const -->
<!-- template<typename T > T KConfigGroup::readEntry ( const char * key, const T & aDefault ) const -->
<!-- QVariant KConfigGroup::readEntry ( const QString & key, const QVariant & aDefault ) const -->
<!-- QVariant KConfigGroup::readEntry ( const char * key, const QVariant & aDefault ) const -->
<!-- QString KConfigGroup::readEntry ( const QString & key, const QString & aDefault ) const -->
<!-- QString KConfigGroup::readEntry ( const char * key, const QString & aDefault ) const -->
<!-- QString KConfigGroup::readEntry ( const QString & key, const char * aDefault = 0 ) const -->
<!-- QString KConfigGroup::readEntry ( const char * key, const char * aDefault = 0 ) const -->
<!-- QVariantList KConfigGroup::readEntry ( const QString & key, const QVariantList & aDefault ) const -->
<!-- QVariantList KConfigGroup::readEntry ( const char * key, const QVariantList & aDefault ) const -->
<!-- QStringList KConfigGroup::readEntry ( const QString & key, const QStringList & aDefault ) const -->
<!-- QStringList KConfigGroup::readEntry ( const char * key, const QStringList & aDefault ) const -->
<!-- template<typename T > QList<T> KConfigGroup::readEntry ( const QString & key, const QList< T > & aDefault ) const -->
<!-- template<typename T > QList<T> KConfigGroup::readEntry ( const char * key, const QList< T > & aDefault ) const -->
<function name="KConfigGroup::readEntry">
<noreturn>false</noreturn>
<use-retval/>
<leak-ignore/>
<const/>
<arg nr="1" direction="in">
<not-uninit/>
</arg>
<arg nr="2" direction="in" default="0">
<not-uninit/>
</arg>
</function>
<!-- QString i18n(const char*) -->
<!-- QString xi18n(const char*) -->
<function name="i18n,xi18n">
<noreturn>false</noreturn>
<pure/>
<leak-ignore/>
<returnValue type="QString"/>
<arg nr="1" direction="in"/>
</function>
<!-- KLocalizedString ki18n(const char*) -->
<function name="ki18n">
<noreturn>false</noreturn>
<pure/>
<leak-ignore/>
<returnValue type="KLocalizedString"/>
<arg nr="1" direction="in"/>
</function>
<!-- QString i18nc(const char*, const char*) -->
<!-- QString xi18nc(const char*, const char*) -->
<function name="i18nc,xi18nc">
<noreturn>false</noreturn>
<pure/>
<leak-ignore/>
<returnValue type="QString"/>
<arg nr="1" direction="in"/>
<arg nr="2" direction="in"/>
</function>
<!-- KLocalizedString ki18nc(const char*, const char*) -->
<function name="ki18nc">
<noreturn>false</noreturn>
<pure/>
<leak-ignore/>
<returnValue type="KLocalizedString"/>
<arg nr="1" direction="in"/>
<arg nr="2" direction="in"/>
</function>
</def>