summaryrefslogtreecommitdiff
path: root/chart2/MANIFEST
blob: 81bcf0a590c040e31caaaba8fbcfbc21cc8d3d4b (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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
#*************************************************************************
#
#   OpenOffice.org - a multi-platform office productivity suite
#
#   $RCSfile: MANIFEST,v $
#
#   $Revision: 1.3 $
#
#   last change: $Author: rt $ $Date: 2005-09-07 23:36:18 $
#
#   The Contents of this file are made available subject to
#   the terms of GNU Lesser General Public License Version 2.1.
#
#
#     GNU Lesser General Public License Version 2.1
#     =============================================
#     Copyright 2005 by Sun Microsystems, Inc.
#     901 San Antonio Road, Palo Alto, CA 94303, USA
#
#     This library is free software; you can redistribute it and/or
#     modify it under the terms of the GNU Lesser General Public
#     License version 2.1, as published by the Free Software Foundation.
#
#     This library 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 for more details.
#
#     You should have received a copy of the GNU Lesser General Public
#     License along with this library; if not, write to the Free Software
#     Foundation, Inc., 59 Temple Place, Suite 330, Boston,
#     MA  02111-1307  USA
#
#*************************************************************************

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

+--com
+--genjava
+--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.

com
---

Contains idl files for chart specific idl interface and type definitions.  This
is the so-called "private" API.  The public part of the API (used from outside,
esp. other applications) is in the offapi project.

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.

genjava
-------

Contains a makefile for creating java-files out of the idl-files.  The
java-files are generated out of the chart.rdb, which therefore must be ready
before this makefile is called.

Its subdirectories reflect the directory-structure of the com directories and
contain a makefile in each leave of the tree.  These makefiles compile
class-files out of the java-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.