blob: 064fe4d008a53af00d460c89c60bc53376114a7f (
plain)
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
|
/*! \file mainpage.dox
\brief Introduction page
\mainpage Introduction
Welcome to the documentation of XBMC. This starting page is meant to help people find their
way around the code.
This documentation is a work in progress - only some of the code has thus far been documented
and we welcome any and all input to documenting it further. Documentation serves both to help
newcomers get to grips with the source quickly, and to highlight possible deficiencies in the
code or interfaces.
Any help/suggestions are more than welcome.
\section doxy_whatisxbmc What is XBMC?
XBMC is a free, open source (GPL) multimedia player that runs on Linux, Mac OS X (10.4 and later),
AppleTV and Windows. See http://xbmc.org for more details.
*/
// Groups definition
///////////////////////////////////////
//
// xbmc project
//
///////////////////////////////////////
/*!
\defgroup windows XBMC windows
XBMC windows
*/
/*!
\defgroup music Music info
Elements used in my music
*/
//////////////////////////////////////
//
// guilib project
//
//////////////////////////////////////
/*!
\defgroup guilib guilib classes
guilib classes
*/
/*!
\defgroup winref Window Reference
\ingroup guilib
The window reference
*/
/*!
\defgroup winmsg Windows and Messages
\ingroup winref
Windows and messages
*/
/*!
\defgroup controls Controls
\ingroup winref
Control classes
*/
/*!
\defgroup winman Window Manager and Callbacks
\ingroup winref
Everything about window manager and callbacks
*/
/*!
\defgroup actionkeys Actions and Keys
\ingroup winref
Everything around action mapping and key processing
*/
/*!
\defgroup graphics Graphics and Screen
\ingroup guilib
Everything around graphics and Screen
*/
/*!
\defgroup textures Textures and Fonts
\ingroup graphics
Everything about textures and fonts
*/
/*!
\defgroup strings Strings and Localization
\ingroup guilib
Everything around Strings and localization
*/
/*!
\defgroup tinyxml XML Parser
\ingroup strings
Tiny XML - XML Parser
*/
/*!
\defgroup jobs Asynchronous jobs
Threaded job execution
*/
|