1/*
2 *  Copyright (C) 2006 Boudewijn Rempt <boud@valdyas.org>
3 *
4 *  This program is free software; you can redistribute it and/or modify
5 *  it under the terms of the GNU General Public License as published by
6 *  the Free Software Foundation; either version 2 of the License, or
7 *  (at your option) any later version.
8 *
9 *  This program is distributed in the hope that it will be useful,
10 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 *  GNU General Public License for more details.
13 *
14 *  You should have received a copy of the GNU General Public License
15 *  along with this program; if not, write to the Free Software
16 *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 */
18
19/**
20  \mainpage Krita Painting application
21
22  Krita is an advanced and modular painting application.
23
24  Krita is built around two core libraries: pigment and kritaimage.
25
26  The pigment library abstracts colorspaces and color
27  transformations. ColorSpaces provide functions to manipulate pixels. The
28  kritcolor library loads colorspace plugins to extend the range of
29  available colorspaces.
30
31  The kritaimage library abstracts the storage, creation, inspection
32  and manipulation of pixels stored in a rectangular area. It provides
33  layers, filters, iterators and painters. Filters and paint operations
34  are provided as service plugins loaded through the appropriate trader
35  queries.
36
37  There are the following types of plugins
38
39<ul>
40  <li> filters
41  <li> generators
42  <li> tools
43  <li> brush engines
44  <li> colorspaces
45  <li> import/export filters
46  <li> view plugins: plugins that extend krita with dockers, dialogs etcetera
47</ul>
48
49 */
50
51// DOXYGEN_SET_PROJECT_NAME = Krita
52// DOXYGEN_SET_IGNORE_PREFIX = Kis Ko K
53