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
|
/**
* \mainpage Sheets
* Sheets is a scriptable spreadsheet program which provides both
* table-oriented sheets and support for complex mathematical formulas
* and statistics.
*
* \section majorclasses Major classes
* \li KSpread::Canvas The scrollable area showing the cells.
* \li KSpread::Cell Represents a cell in the spreadsheet.
* \li KSpread::Doc The KPart used in Sheets itself and when embedded in non-Calligra applications.
* \li KSpread::Map The actual spreadsheet document consisting of at least one sheet.
* \li KSpread::Sheet A sheet consists of several cells.
* \li KSpread::View This class displays the KPart document.
*
* \section plugins Plugins
* \li \ref KSpreadScripting Sheets Scripting Plugin that offers flexible access
* to the Kross scripting framework.
* \li CalendarTool Plugin for inserting a calendar into a spreadsheet.
*/
/* NOTE Stefan:
Use doxygen's 'ingroup' command for each method/class/namespace
explicitly. This way one sees immediately to which group the method
belongs, if one looks directly into the header file.
Don't group member function together and use 'addgroup'.
*/
/**
* \defgroup Damages Damage System
* Classes and methods related to the damage system.
*/
/**
* \defgroup OpenDocument OpenDocument file format
* Classes and methods related to the OpenDocument loading/saving.
*/
/**
* \defgroup Model Data Models
* Classes and methods related to data models.
*/
/**
* \defgroup NativeFormat Old native file format
* Classes and methods related to the Sheets's old native file format loading/saving.
*/
/**
* \defgroup Painting Painting System
* Classes and methods related to the painting of cells and objects.
* \ref painting
*/
/**
* \defgroup Plugin Plugin System
* Classes and methods related to plugins.
*/
/**
* \defgroup Embedding Object Embedding
* Classes and methods related to the embedding of objects (charts, pictures, ...).
*/
/**
* \defgroup Storage Storage System
* Classes and methods related to data storage.
*/
/**
* \defgroup Style Style System
* Classes and methods related to cell styles.
*/
/**
* \defgroup Value Value System
* Classes and methods related to cell values.
*/
/**
* \defgroup ColumnRowFormat Column/Row Formats
* Classes and methods related to column/row formats.
*/
/**
* \defgroup Page Page Layout
* Classes and methods related to page layouting.
*/
/**
* \defgroup Coordinates Coordinate Systems
* Classes and methods related to document/view/cell coordinates.
*/
/**
* \defgroup Commands Commands
* Classes and methods related to commands.
*/
/**
* \defgroup UI User Interface
* Classes and methods related to the user interface.
*/
#EXAMPLE_PATH=. doc
#EXAMPLE_RECURSIVE=NO
// DOXYGEN_SET_PROJECT_NAME = Sheets
|