summaryrefslogtreecommitdiff
path: root/libcroco/makefile.mk
blob: d405f9505118059621706de6c805c88cbbeee4e9 (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
#*************************************************************************
#
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
# 
# Copyright 2000, 2010 Oracle and/or its affiliates.
#
# OpenOffice.org - a multi-platform office productivity suite
#
# 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.
#
#*************************************************************************

PRJ=.

PRJNAME=libcroco
TARGET=so_libcroco

# --- Settings -----------------------------------------------------

.INCLUDE :	settings.mk

.IF "$(SYSTEM_LIBCROCO)" == "YES"
all:
	@echo "An already available installation of libcroco should exist on your system."
	@echo "Therefore the version provided here does not need to be built in addition."
.ENDIF

# --- Files --------------------------------------------------------

LIBCROCOVERSION=0.6.2

TARFILE_NAME=$(PRJNAME)-$(LIBCROCOVERSION)
TARFILE_MD5=0611e099e807210cf738dcb41425d104

PATCH_FILES=
CONFIGURE_DIR=

.IF "$(OS)"=="MACOSX"
CONFIGURE_ACTION=./configure --prefix=$(SRC_ROOT)/$(PRJNAME)/$(MISC) \
                 CPPFLAGS="$(EXTRA_CDEFS)" \
                 CFLAGS="$(ARCH_FLAGS) $(EXTRA_CFLAGS) -I$(SOLARINCDIR)/external -I$(SOLARINCDIR)/external/glib-2.0" \
                 LDFLAGS="-L$(SOLARLIBDIR) $(EXTRA_LINKFLAGS) -Wl,-dylib_file,@loader_path/libgmodule-2.0.0.dylib:$(SOLARLIBDIR)/libgmodule-2.0.0.dylib" \
                 GLIB2_CFLAGS="-I$(SOLARINCDIR)/external/glib-2.0" \
                 GLIB2_LIBS="-lgio-2.0 -lgobject-2.0 -lgthread-2.0 -lglib-2.0 -lintl" \
                 LIBXML2_CFLAGS="$(LIBXML_CFLAGS)" \
                 LIBXML2_LIBS="$(LIBXML_LIBS)"

.IF "$(CROSS_COMPILING)"=="YES"
CONFIGURE_FLAGS+=--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM)
.ENDIF

BUILD_ACTION=$(AUGMENT_LIBRARY_PATH) \
             $(GNUMAKE)
BUILD_DIR=$(CONFIGURE_DIR)

EXTRPATH=LOADER
OUT2LIB+=src/.libs/libcroco-0.6.3.0.1.dylib

OUT2INC+=src/cr-additional-sel.h
OUT2INC+=src/cr-input.h
OUT2INC+=src/cr-rgb.h
OUT2INC+=src/cr-stylesheet.h
OUT2INC+=src/cr-attr-sel.h
OUT2INC+=src/cr-num.h
OUT2INC+=src/cr-sel-eng.h
OUT2INC+=src/cr-term.h
OUT2INC+=src/cr-cascade.h
OUT2INC+=src/cr-om-parser.h
OUT2INC+=src/cr-selector.h
OUT2INC+=src/cr-tknzr.h
OUT2INC+=src/cr-declaration.h
OUT2INC+=src/cr-parser.h
OUT2INC+=src/cr-simple-sel.h
OUT2INC+=src/cr-token.h
OUT2INC+=src/cr-doc-handler.h
OUT2INC+=src/cr-parsing-location.h
OUT2INC+=src/cr-statement.h
OUT2INC+=src/cr-utils.h
OUT2INC+=src/cr-enc-handler.h
OUT2INC+=src/cr-prop-list.h
OUT2INC+=src/cr-string.h
OUT2INC+=src/libcroco-config.h
OUT2INC+=src/cr-fonts.h
OUT2INC+=src/cr-pseudo.h
OUT2INC+=src/cr-style.h
OUT2INC+=src/libcroco.h
.ELIF "$(OS)"=="WNT"

BUILD_ACTION=dmake
BUILD_DIR=$(CONFIGURE_DIR)$/src
PATCH_FILES=libcroco-0.6.2.patch
ADDITIONAL_FILES=\
    src$/makefile.mk

OUT2INC+=src$/cr-additional-sel.h
OUT2INC+=src$/cr-input.h
OUT2INC+=src$/cr-rgb.h
OUT2INC+=src$/cr-stylesheet.h
OUT2INC+=src$/cr-attr-sel.h
OUT2INC+=src$/cr-num.h
OUT2INC+=src$/cr-sel-eng.h
OUT2INC+=src$/cr-term.h
OUT2INC+=src$/cr-cascade.h
OUT2INC+=src$/cr-om-parser.h
OUT2INC+=src$/cr-selector.h
OUT2INC+=src$/cr-tknzr.h
OUT2INC+=src$/cr-declaration.h
OUT2INC+=src$/cr-parser.h
OUT2INC+=src$/cr-simple-sel.h
OUT2INC+=src$/cr-token.h
OUT2INC+=src$/cr-doc-handler.h
OUT2INC+=src$/cr-parsing-location.h
OUT2INC+=src$/cr-statement.h
OUT2INC+=src$/cr-utils.h
OUT2INC+=src$/cr-enc-handler.h
OUT2INC+=src$/cr-prop-list.h
OUT2INC+=src$/cr-string.h
OUT2INC+=src$/libcroco-config.h
OUT2INC+=src$/cr-fonts.h
OUT2INC+=src$/cr-pseudo.h
OUT2INC+=src$/cr-style.h
OUT2INC+=src$/libcroco.h
.ELSE

.ENDIF

# --- Targets ------------------------------------------------------

.INCLUDE : set_ext.mk
.INCLUDE : target.mk
.INCLUDE : tg_ext.mk

/diff/reportdesign/Library_rptui.mk?h=private/mcecchetti/amd/pdf-export-jpeg&id=e70b1417d22d22e3d5bdffb1f4b55bc83a4c36ef'>reportdesign/Library_rptui.mk229
-rw-r--r--reportdesign/Library_rptxml.mk193
-rw-r--r--reportdesign/Makefile4
-rw-r--r--reportdesign/Module_reportdesign.mk92
-rw-r--r--reportdesign/Package_uiconfig.mk92
-rw-r--r--reportdesign/inc/ModuleHelper.hxx2
-rw-r--r--reportdesign/inc/PropertyForward.hxx2
-rw-r--r--[-rwxr-xr-x]reportdesign/inc/ReportDefinition.hxx4
-rw-r--r--reportdesign/inc/ReportHelperDefines.hxx2
-rw-r--r--reportdesign/inc/ReportVisitor.hxx2
-rw-r--r--reportdesign/inc/RptDef.hxx3
-rw-r--r--reportdesign/inc/RptModel.hxx4
-rw-r--r--reportdesign/inc/RptObject.hxx12
-rw-r--r--reportdesign/inc/RptPage.hxx6
-rw-r--r--reportdesign/inc/RptResId.hrc14
-rw-r--r--reportdesign/inc/UndoActions.hxx2
-rw-r--r--reportdesign/inc/UndoEnv.hxx2
-rw-r--r--reportdesign/inc/conditionalexpression.hxx3
-rw-r--r--reportdesign/inc/dllapi.h2
-rw-r--r--reportdesign/inc/pch/precompiled_reportdesign.cxx2
-rw-r--r--reportdesign/inc/pch/precompiled_reportdesign.hxx4
-rw-r--r--reportdesign/inc/reportformula.hxx5
-rw-r--r--reportdesign/prj/build.lst3
-rw-r--r--reportdesign/prj/makefile.mk40
-rw-r--r--[-rwxr-xr-x]reportdesign/qa/complex/reportdesign/ReportDesignerTest.java68
-rw-r--r--[-rwxr-xr-x]reportdesign/qa/complex/reportdesign/test_documents/RPTCalcTests.odbbin6715 -> 6715 bytes-rw-r--r--[-rwxr-xr-x]reportdesign/qa/complex/reportdesign/test_documents/RPTWriterTests.odbbin5762 -> 5762 bytes-rw-r--r--reportdesign/source/core/api/FixedLine.cxx11
-rw-r--r--reportdesign/source/core/api/FixedText.cxx12
-rw-r--r--reportdesign/source/core/api/FormatCondition.cxx3
-rw-r--r--reportdesign/source/core/api/FormattedField.cxx10
-rw-r--r--reportdesign/source/core/api/Function.cxx5
-rw-r--r--reportdesign/source/core/api/Functions.cxx5
-rw-r--r--reportdesign/source/core/api/Group.cxx17
-rw-r--r--reportdesign/source/core/api/Groups.cxx5
-rw-r--r--reportdesign/source/core/api/ImageControl.cxx5
-rw-r--r--reportdesign/source/core/api/ReportComponent.cxx5
-rw-r--r--reportdesign/source/core/api/ReportControlModel.cxx3
-rw-r--r--reportdesign/source/core/api/ReportDefinition.cxx117
-rw-r--r--reportdesign/source/core/api/ReportEngineJFree.cxx7
-rw-r--r--reportdesign/source/core/api/ReportVisitor.cxx3
-rw-r--r--reportdesign/source/core/api/Section.cxx41
-rw-r--r--reportdesign/source/core/api/Shape.cxx14
-rw-r--r--reportdesign/source/core/api/Tools.cxx3
-rw-r--r--reportdesign/source/core/api/services.cxx3
-rw-r--r--reportdesign/source/core/inc/FixedLine.hxx2
-rw-r--r--reportdesign/source/core/inc/FixedText.hxx2
-rw-r--r--reportdesign/source/core/inc/FormatCondition.hxx2
-rw-r--r--reportdesign/source/core/inc/FormattedField.hxx2
-rw-r--r--reportdesign/source/core/inc/Function.hxx4
-rw-r--r--reportdesign/source/core/inc/Functions.hxx2
-rw-r--r--reportdesign/source/core/inc/Group.hxx3
-rw-r--r--reportdesign/source/core/inc/Groups.hxx2
-rw-r--r--reportdesign/source/core/inc/ImageControl.hxx2
-rw-r--r--reportdesign/source/core/inc/ReportComponent.hxx2
-rw-r--r--reportdesign/source/core/inc/ReportControlModel.hxx2
-rw-r--r--reportdesign/source/core/inc/ReportDrawPage.hxx2
-rw-r--r--reportdesign/source/core/inc/ReportEngineJFree.hxx3
-rw-r--r--reportdesign/source/core/inc/ReportHelperImpl.hxx2
-rw-r--r--reportdesign/source/core/inc/ReportUndoFactory.hxx2
-rw-r--r--reportdesign/source/core/inc/RptObjectListener.hxx3
-rw-r--r--reportdesign/source/core/inc/Section.hxx3
-rw-r--r--reportdesign/source/core/inc/Shape.hxx2
-rw-r--r--reportdesign/source/core/inc/Tools.hxx9
-rw-r--r--reportdesign/source/core/inc/conditionupdater.hxx3
-rw-r--r--reportdesign/source/core/inc/core_resource.hxx2
-rw-r--r--reportdesign/source/core/misc/conditionalexpression.cxx15
-rw-r--r--reportdesign/source/core/misc/conditionupdater.cxx5
-rw-r--r--reportdesign/source/core/misc/reportformula.cxx4
-rw-r--r--reportdesign/source/core/resource/core_resource.cxx7
-rw-r--r--reportdesign/source/core/resource/strings.src13
-rw-r--r--reportdesign/source/core/sdr/ModuleHelper.cxx8
-rw-r--r--reportdesign/source/core/sdr/PropertyForward.cxx11
-rw-r--r--reportdesign/source/core/sdr/ReportDrawPage.cxx4
-rw-r--r--reportdesign/source/core/sdr/ReportUndoFactory.cxx3
-rw-r--r--reportdesign/source/core/sdr/RptModel.cxx18
-rw-r--r--reportdesign/source/core/sdr/RptObject.cxx54
-rw-r--r--reportdesign/source/core/sdr/RptObjectListener.cxx10
-rw-r--r--reportdesign/source/core/sdr/RptPage.cxx35
-rw-r--r--reportdesign/source/core/sdr/UndoActions.cxx14
-rw-r--r--reportdesign/source/core/sdr/UndoEnv.cxx21
-rw-r--r--reportdesign/source/core/sdr/formatnormalizer.cxx13
-rw-r--r--reportdesign/source/core/sdr/formatnormalizer.hxx3
-rw-r--r--reportdesign/source/filter/xml/dbloader2.cxx8
-rw-r--r--reportdesign/source/filter/xml/dbloader2.hxx5
-rw-r--r--reportdesign/source/filter/xml/xmlAutoStyle.cxx3
-rw-r--r--reportdesign/source/filter/xml/xmlAutoStyle.hxx2
-rw-r--r--reportdesign/source/filter/xml/xmlCell.cxx8
-rw-r--r--reportdesign/source/filter/xml/xmlCell.hxx3
-rw-r--r--reportdesign/source/filter/xml/xmlColumn.cxx9
-rw-r--r--reportdesign/source/filter/xml/xmlColumn.hxx3
-rw-r--r--reportdesign/source/filter/xml/xmlComponent.cxx9
-rw-r--r--reportdesign/source/filter/xml/xmlComponent.hxx5
-rw-r--r--reportdesign/source/filter/xml/xmlCondPrtExpr.cxx7
-rw-r--r--reportdesign/source/filter/xml/xmlCondPrtExpr.hxx3
-rw-r--r--reportdesign/source/filter/xml/xmlControlProperty.cxx15
-rw-r--r--reportdesign/source/filter/xml/xmlControlProperty.hxx3
-rw-r--r--reportdesign/source/filter/xml/xmlEnums.hxx3
-rw-r--r--reportdesign/source/filter/xml/xmlExport.cxx109
-rw-r--r--reportdesign/source/filter/xml/xmlExport.hxx3
-rw-r--r--reportdesign/source/filter/xml/xmlExportDocumentHandler.cxx44
-rw-r--r--reportdesign/source/filter/xml/xmlExportDocumentHandler.hxx3
-rw-r--r--reportdesign/source/filter/xml/xmlFixedContent.cxx7
-rw-r--r--reportdesign/source/filter/xml/xmlFixedContent.hxx6
-rw-r--r--reportdesign/source/filter/xml/xmlFormatCondition.cxx9
-rw-r--r--reportdesign/source/filter/xml/xmlFormatCondition.hxx3
-rw-r--r--reportdesign/source/filter/xml/xmlFormattedField.cxx5
-rw-r--r--reportdesign/source/filter/xml/xmlFormattedField.hxx3
-rw-r--r--reportdesign/source/filter/xml/xmlFunction.cxx7
-rw-r--r--reportdesign/source/filter/xml/xmlFunction.hxx5
-rw-r--r--reportdesign/source/filter/xml/xmlGroup.cxx7
-rw-r--r--reportdesign/source/filter/xml/xmlGroup.hxx5
-rw-r--r--reportdesign/source/filter/xml/xmlHelper.cxx27
-rw-r--r--reportdesign/source/filter/xml/xmlHelper.hxx2
-rw-r--r--reportdesign/source/filter/xml/xmlImage.cxx5
-rw-r--r--reportdesign/source/filter/xml/xmlImage.hxx5
-rw-r--r--reportdesign/source/filter/xml/xmlImportDocumentHandler.cxx48
-rw-r--r--reportdesign/source/filter/xml/xmlImportDocumentHandler.hxx3
-rw-r--r--reportdesign/source/filter/xml/xmlMasterFields.cxx3
-rw-r--r--reportdesign/source/filter/xml/xmlMasterFields.hxx3
-rw-r--r--reportdesign/source/filter/xml/xmlPropertyHandler.cxx2
-rw-r--r--reportdesign/source/filter/xml/xmlPropertyHandler.hxx2
-rw-r--r--reportdesign/source/filter/xml/xmlReport.cxx5
-rw-r--r--reportdesign/source/filter/xml/xmlReport.hxx3
-rw-r--r--reportdesign/source/filter/xml/xmlReportElement.cxx5
-rw-r--r--reportdesign/source/filter/xml/xmlReportElement.hxx3
-rw-r--r--reportdesign/source/filter/xml/xmlReportElementBase.cxx5
-rw-r--r--reportdesign/source/filter/xml/xmlReportElementBase.hxx3
-rw-r--r--reportdesign/source/filter/xml/xmlRow.cxx9
-rw-r--r--reportdesign/source/filter/xml/xmlRow.hxx3
-rw-r--r--reportdesign/source/filter/xml/xmlSection.cxx13
-rw-r--r--reportdesign/source/filter/xml/xmlSection.hxx3
-rw-r--r--reportdesign/source/filter/xml/xmlStyleImport.cxx16
-rw-r--r--reportdesign/source/filter/xml/xmlStyleImport.hxx7
-rw-r--r--reportdesign/source/filter/xml/xmlSubDocument.cxx10
-rw-r--r--reportdesign/source/filter/xml/xmlSubDocument.hxx3
-rw-r--r--reportdesign/source/filter/xml/xmlTable.cxx17
-rw-r--r--reportdesign/source/filter/xml/xmlTable.hxx3
-rw-r--r--reportdesign/source/filter/xml/xmlfilter.cxx99
-rw-r--r--reportdesign/source/filter/xml/xmlfilter.hxx3
-rw-r--r--reportdesign/source/filter/xml/xmlservices.cxx4
-rw-r--r--reportdesign/source/inc/GroupProperties.hxx3
-rw-r--r--reportdesign/source/inc/constasciistring.hxx3
-rw-r--r--reportdesign/source/shared/corestrings.cxx2
-rw-r--r--reportdesign/source/shared/stringconstants.cxx3
-rw-r--r--reportdesign/source/shared/uistrings.cxx3
-rw-r--r--reportdesign/source/shared/xmlstrings.cxx2
-rw-r--r--reportdesign/source/ui/dlg/AddField.cxx18
-rw-r--r--reportdesign/source/ui/dlg/CondFormat.cxx7
-rw-r--r--reportdesign/source/ui/dlg/CondFormat.hrc2
-rw-r--r--reportdesign/source/ui/dlg/CondFormat.src96
-rw-r--r--reportdesign/source/ui/dlg/Condition.cxx23
-rw-r--r--reportdesign/source/ui/dlg/Condition.hxx6
-rw-r--r--reportdesign/source/ui/dlg/DateTime.cxx25
-rw-r--r--reportdesign/source/ui/dlg/DateTime.src6
-rw-r--r--reportdesign/source/ui/dlg/Formula.cxx7
-rw-r--r--reportdesign/source/ui/dlg/GroupExchange.cxx3
-rw-r--r--reportdesign/source/ui/dlg/GroupExchange.hxx2
-rw-r--r--reportdesign/source/ui/dlg/GroupsSorting.cxx148
-rw-r--r--reportdesign/source/ui/dlg/GroupsSorting.hrc10
-rw-r--r--reportdesign/source/ui/dlg/GroupsSorting.src156
-rw-r--r--reportdesign/source/ui/dlg/Navigator.cxx27
-rw-r--r--reportdesign/source/ui/dlg/Navigator.src7
-rw-r--r--reportdesign/source/ui/dlg/PageNumber.cxx21
-rw-r--r--reportdesign/source/ui/dlg/PageNumber.src2
-rw-r--r--reportdesign/source/ui/dlg/dlgpage.cxx13
-rw-r--r--reportdesign/source/ui/dlg/dlgpage.src4
-rw-r--r--reportdesign/source/ui/inc/AddField.hxx6
-rw-r--r--reportdesign/source/ui/inc/ColorChanger.hxx2
-rw-r--r--reportdesign/source/ui/inc/ColorListener.hxx2
-rw-r--r--reportdesign/source/ui/inc/ColumnInfo.hxx6
-rw-r--r--reportdesign/source/ui/inc/CondFormat.hxx3
-rw-r--r--reportdesign/source/ui/inc/DataProviderHandler.hxx3
-rw-r--r--reportdesign/source/ui/inc/DateTime.hxx10
-rw-r--r--reportdesign/source/ui/inc/DefaultInspection.hxx2
-rw-r--r--reportdesign/source/ui/inc/DesignView.hxx8
-rw-r--r--reportdesign/source/ui/inc/EndMarker.hxx2
-rw-r--r--reportdesign/source/ui/inc/FixedTextColor.hxx7
-rw-r--r--reportdesign/source/ui/inc/FormattedFieldBeautifier.hxx4
-rw-r--r--reportdesign/source/ui/inc/Formula.hxx2
-rw-r--r--reportdesign/source/ui/inc/FunctionHelper.hxx3
-rw-r--r--reportdesign/source/ui/inc/GeometryHandler.hxx3
-rw-r--r--reportdesign/source/ui/inc/GroupsSorting.hxx21
-rw-r--r--reportdesign/source/ui/inc/IReportControllerObserver.hxx2
-rw-r--r--reportdesign/source/ui/inc/InsertFunctions.hxx4
-rw-r--r--reportdesign/source/ui/inc/MarkedSection.hxx3
-rw-r--r--reportdesign/source/ui/inc/Navigator.hxx3
-rw-r--r--reportdesign/source/ui/inc/PageNumber.hxx9
-rw-r--r--reportdesign/source/ui/inc/ReportComponentHandler.hxx3
-rw-r--r--reportdesign/source/ui/inc/ReportController.hxx2
-rw-r--r--reportdesign/source/ui/inc/ReportControllerObserver.hxx11
-rw-r--r--reportdesign/source/ui/inc/ReportDefines.hxx3
-rw-r--r--reportdesign/source/ui/inc/ReportRuler.hxx3
-rw-r--r--reportdesign/source/ui/inc/ReportSection.hxx2
-rw-r--r--reportdesign/source/ui/inc/ReportWindow.hxx2
-rw-r--r--reportdesign/source/ui/inc/RptUndo.hxx3
-rw-r--r--reportdesign/source/ui/inc/ScrollHelper.hxx3
-rw-r--r--reportdesign/source/ui/inc/SectionView.hxx3
-rw-r--r--reportdesign/source/ui/inc/SectionWindow.hxx2
-rw-r--r--reportdesign/source/ui/inc/StartMarker.hxx4
-rw-r--r--reportdesign/source/ui/inc/UITools.hxx4
-rw-r--r--reportdesign/source/ui/inc/ViewsWindow.hxx4
-rw-r--r--reportdesign/source/ui/inc/dlgedclip.hxx3
-rw-r--r--reportdesign/source/ui/inc/dlgedfac.hxx2
-rw-r--r--reportdesign/source/ui/inc/dlgedfunc.hxx3
-rw-r--r--reportdesign/source/ui/inc/dlgpage.hxx3
-rw-r--r--reportdesign/source/ui/inc/metadata.hxx4
-rw-r--r--reportdesign/source/ui/inc/propbrw.hxx3
-rw-r--r--reportdesign/source/ui/inc/statusbarcontroller.hxx2
-rw-r--r--reportdesign/source/ui/inc/toolboxcontroller.hxx2
-rw-r--r--reportdesign/source/ui/inspection/DataProviderHandler.cxx24
-rw-r--r--reportdesign/source/ui/inspection/DefaultInspection.cxx10
-rw-r--r--reportdesign/source/ui/inspection/GeometryHandler.cxx49
-rw-r--r--reportdesign/source/ui/inspection/ReportComponentHandler.cxx5
-rw-r--r--reportdesign/source/ui/inspection/metadata.cxx17
-rw-r--r--reportdesign/source/ui/misc/ColorListener.cxx5
-rw-r--r--reportdesign/source/ui/misc/FunctionHelper.cxx16
-rw-r--r--reportdesign/source/ui/misc/RptUndo.cxx18
-rw-r--r--reportdesign/source/ui/misc/UITools.cxx55
-rw-r--r--reportdesign/source/ui/misc/rptuiservices.cxx4
-rw-r--r--reportdesign/source/ui/misc/statusbarcontroller.cxx21
-rw-r--r--reportdesign/source/ui/misc/toolboxcontroller.cxx30
-rw-r--r--reportdesign/source/ui/report/DesignView.cxx32
-rw-r--r--reportdesign/source/ui/report/EndMarker.cxx3
-rw-r--r--reportdesign/source/ui/report/FixedTextColor.cxx73
-rw-r--r--reportdesign/source/ui/report/FormattedFieldBeautifier.cxx6
-rw-r--r--reportdesign/source/ui/report/ReportController.cxx214
-rw-r--r--reportdesign/source/ui/report/ReportControllerObserver.cxx47
-rw-r--r--reportdesign/source/ui/report/ReportRuler.cxx3
-rw-r--r--reportdesign/source/ui/report/ReportSection.cxx49
-rw-r--r--reportdesign/source/ui/report/ReportWindow.cxx7
-rw-r--r--reportdesign/source/ui/report/ScrollHelper.cxx5
-rw-r--r--reportdesign/source/ui/report/SectionView.cxx8
-rw-r--r--reportdesign/source/ui/report/SectionWindow.cxx22
-rw-r--r--reportdesign/source/ui/report/StartMarker.cxx32
-rw-r--r--reportdesign/source/ui/report/ViewsWindow.cxx193
-rw-r--r--reportdesign/source/ui/report/dlgedclip.cxx3
-rw-r--r--reportdesign/source/ui/report/dlgedfac.cxx7
-rw-r--r--reportdesign/source/ui/report/dlgedfunc.cxx195
-rw-r--r--reportdesign/source/ui/report/propbrw.cxx46
-rw-r--r--reportdesign/source/ui/report/report.src16
-rw-r--r--reportdesign/uiconfig/dbreport/menubar/menubar.xml4
-rw-r--r--reportdesign/util/dll.pmk31
245 files changed, 1713 insertions, 2598 deletions
diff --git a/reportdesign/AllLangResTarget_rpt.mk b/reportdesign/AllLangResTarget_rpt.mk
index 094f2ca90600..00b1d2022739 100644
--- a/reportdesign/AllLangResTarget_rpt.mk
+++ b/reportdesign/AllLangResTarget_rpt.mk
@@ -1,47 +1,48 @@
-#*************************************************************************
-#
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# Copyright 2000, 2011 Oracle and/or its affiliates.
-#
-# OpenOffice.org - a multi-platdbam office productivity suite
-#
-# 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 dba A PARTICULAR PURPOSE. See the
-# GNU Lesser General Public License version 3 dba 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>
-# dba a copy of the LGPLv3 License.
-#
-#*************************************************************************
-
-$(eval $(call gb_AllLangResTarget_AllLangResTarget,rpt))
-
-$(eval $(call gb_AllLangResTarget_set_reslocation,rpt,reportdesign))
-
-$(eval $(call gb_AllLangResTarget_add_srs,rpt,reportdesign/rpt))
-
-$(eval $(call gb_SrsTarget_SrsTarget,reportdesign/rpt))
-
-$(eval $(call gb_SrsTarget_set_include,reportdesign/rpt,\
- $$(INCLUDE) \
- -I$(OUTDIR)/inc \
- -I$(SRCDIR)/reportdesign/source/core/inc \
- -I$(SRCDIR)/reportdesign/inc \
-))
-
-$(eval $(call gb_SrsTarget_add_files,reportdesign/rpt,\
- reportdesign/source/core/resource/strings.src \
-))
-
-# vim: set noet sw=4 ts=4:
+# Version: MPL 1.1 / GPLv3+ / LGPLv3+
+#
+# The contents of this file are subject to the Mozilla Public License Version
+# 1.1 (the "License"); you may not use this file except in compliance with
+# the License or as specified alternatively below. You may obtain a copy of
+# the License at http://www.mozilla.org/MPL/
+#
+# Software distributed under the License is distributed on an "AS IS" basis,
+# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+# for the specific language governing rights and limitations under the
+# License.
+#
+# The Initial Developer of the Original Code is
+# David Tardon, Red Hat Inc. <dtardon@redhat.com>
+# Portions created by the Initial Developer are Copyright (C) 2010 the
+# Initial Developer. All Rights Reserved.
+#
+# Major Contributor(s):
+#
+# For minor contributions see the git repository.
+#
+# Alternatively, the contents of this file may be used under the terms of
+# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
+# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
+# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
+# instead of those above.
+
+$(eval $(call gb_AllLangResTarget_AllLangResTarget,rpt))
+
+$(eval $(call gb_AllLangResTarget_set_reslocation,rpt,reportdesign))
+
+$(eval $(call gb_AllLangResTarget_add_srs,rpt,\
+ reportdesign/res \
+))
+
+$(eval $(call gb_SrsTarget_SrsTarget,reportdesign/res))
+
+$(eval $(call gb_SrsTarget_set_include,reportdesign/res,\
+ $$(INCLUDE) \
+ -I$(realpath $(SRCDIR)/reportdesign/source/core/inc) \
+ -I$(OUTDIR)/inc \
+))
+
+$(eval $(call gb_SrsTarget_add_files,reportdesign/res,\