summaryrefslogtreecommitdiff
path: root/chart2/MANIFEST
blob: d347879a3e32c18b6ead94d424ab8e69f4d10121 (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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
#*************************************************************************
#
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
# 
# Copyright 2008 by Sun Microsystems, Inc.
#
# OpenOffice.org - a multi-platform office productivity suite
#
# $RCSfile: MANIFEST,v $
#
# $Revision: 1.5 $
#
# This file is part of OpenOffice.org.
#
# OpenOffice.org is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License version 3
# only, as published by the Free Software Foundation.
#
# OpenOffice.org is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Lesser General Public License version 3 for more details
# (a copy is included in the LICENSE file that accompanied this code).
#
# You should have received a copy of the GNU Lesser General Public License
# version 3 along with OpenOffice.org.  If not, see
# <http://www.openoffice.org/license.html>
# for a copy of the LGPLv3 License.
#
#*************************************************************************

Directory Structure
-------------------

+--inc
+--prj
+--res
+--source
|  +--controller
|  |  +---dialogs
|  |  +---drawinglayer
|  |  +---itemsetwrapper
|  |  +---main
|  |  +---menu
|  +--inc
|  +--model
|  |  +---inc
|  |  +---main
|  |  +---oldapi
|  |  +---template
|  |  +---tree
|  +--tools
|  +--view
|  |  +---axes
|  |  +---charttypes
|  |  +---diagram
|  |  +---inc
|  |  +---main
+--qa
+--util
+--workbench
   +--anyperformance
   +--fileformat
   +--officeintegration
   +--prj
   +--sampledata
   +--stub


makefile.mk
-----------

The top-level makefile is for generating a jar-file containing all compiled
java-files that were generated from the chart-idl files.  The jar is necessary
for test-programs (see qa subdirectory)

prj
---

Contains the build.lst, which determines in which order the subdirectories have
to be built.

Also contains the d.lst which tells the deliver command which files to export
into the output tree, so that other modules have access.  These are currently
only C++-headers of project-specific UNO-classes.

source
------

   inc
   ---

   Contains header files that have to be shared between files of model, view and
   controller.  Apart from tools-headers, this should only include headers for
   model objects, not view objects.

   controller
   ----------

   Contains files concerning the controller.  All dialogs used in the UI of the
   component are in the dialogs subfolder.  In drawinglayer, there is code that
   builds the bridge to the drawing-layer via non-UNO code.  Itemsetwrapper
   offers classes that convert XPropertySets of chart objects into non-UNO
   SfxItemSets that are used to feed dialogs.

   model
   -----

   Contains files concerning the model.  In oldapi there is code that implements
   the old UNO-API (com.sun.star.chart.*) and wraps the new objects, thus it is
   possible to talk to the new objects via the old API.  Until the XML-filter is
   adapted to the new API it will use this wrapper to communicate via the old
   API.

   In the tree-subfolder, there are all classes that have to do with the
   data-series tree provided by the XDiagram.  Template contains code that
   provides templates for all different chart-types.

    view
	----

	Axes, charttypes and diagram implement the respective view-objects.

util
----

Contains the makefile to assemble the idl files into an rdb, and to generate C++
headers for them.

workbench
---------

Contains files for testing and files needed during prototyping.

    officeintegration
    -----------------

    Contains the install.pl script that installs the chart once it is build into
    an existing office installation.  This should become deprecated soon, when
    the new chart will be a package.


   sampledata
   ----------

   Contains sample files of data to feed a chart with.  The files are loaded via
   the FileDataSource and is thought for testing only.

   stub
   ----

   Contains some templates for newly created files.

qa
--

Contains java-programs that execute so-called complex-testcases.  Type dmake in
this directory to build the tests (they are not automatically built) and then
type dmake runtest to execute all tests.  For most tests you will have to have a
running office in the background that listens to requests on port 8100.