summaryrefslogtreecommitdiff
path: root/chart2
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2012-12-07 16:05:05 -0500
committerKohei Yoshida <kohei.yoshida@gmail.com>2012-12-08 00:07:34 -0500
commiteb352210aabd57832cc906a334cde472253a9104 (patch)
treecb947aaf0957f9506d58b6364f8e10c0430be78e /chart2
parent81145625e30596495f22823921432957e0c73aea (diff)
Remove duplicate defines and put it into a common place.
Change-Id: I55415985f37970e4d1ba8605e6d22c45198fe19f
Diffstat (limited to 'chart2')
-rw-r--r--chart2/source/controller/main/DragMethod_RotateDiagram.cxx3
-rw-r--r--chart2/source/inc/defines.hxx27
-rw-r--r--chart2/source/tools/ThreeDHelper.cxx4
-rw-r--r--chart2/source/view/axes/VCoordinateSystem.cxx1
-rw-r--r--chart2/source/view/charttypes/VSeriesPlotter.cxx1
-rw-r--r--chart2/source/view/diagram/VDiagram.cxx1
-rw-r--r--chart2/source/view/inc/ViewDefines.hxx5
-rw-r--r--chart2/source/view/main/ChartView.cxx1
-rw-r--r--chart2/source/view/main/PlottingPositionHelper.cxx1
9 files changed, 37 insertions, 7 deletions
diff --git a/chart2/source/controller/main/DragMethod_RotateDiagram.cxx b/chart2/source/controller/main/DragMethod_RotateDiagram.cxx
index 7bf75e6744ae..8489ab376cdd 100644
--- a/chart2/source/controller/main/DragMethod_RotateDiagram.cxx
+++ b/chart2/source/controller/main/DragMethod_RotateDiagram.cxx
@@ -26,6 +26,7 @@
#include "DiagramHelper.hxx"
#include "ChartTypeHelper.hxx"
#include "ThreeDHelper.hxx"
+#include "defines.hxx"
#include <svx/sdr/overlay/overlaypolypolygon.hxx>
#include <svx/sdr/overlay/overlaymanager.hxx>
@@ -37,8 +38,6 @@
#include <svx/sdr/contact/viewcontactofe3dscene.hxx>
#include <drawinglayer/geometry/viewinformation3d.hxx>
-#define FIXED_SIZE_FOR_3D_CHART_VOLUME (10000.0)
-
//.............................................................................
namespace chart
{
diff --git a/chart2/source/inc/defines.hxx b/chart2/source/inc/defines.hxx
new file mode 100644
index 000000000000..14f6c25d2173
--- /dev/null
+++ b/chart2/source/inc/defines.hxx
@@ -0,0 +1,27 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed
+ * with this work for additional information regarding copyright
+ * ownership. The ASF licenses this file to you under the Apache
+ * License, Version 2.0 (the "License"); you may not use this file
+ * except in compliance with the License. You may obtain a copy of
+ * the License at http://www.apache.org/licenses/LICENSE-2.0 .
+ */
+
+#ifndef __CHART2_DEFINES_HXX__
+#define __CHART2_DEFINES_HXX__
+
+#define FIXED_SIZE_FOR_3D_CHART_VOLUME 10000.0
+
+#endif
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/chart2/source/tools/ThreeDHelper.cxx b/chart2/source/tools/ThreeDHelper.cxx
index 20f5f696fc03..66199cc114bd 100644
--- a/chart2/source/tools/ThreeDHelper.cxx
+++ b/chart2/source/tools/ThreeDHelper.cxx
@@ -24,6 +24,8 @@
#include "ChartTypeHelper.hxx"
#include "BaseGFXHelper.hxx"
#include "DataSeriesHelper.hxx"
+#include "defines.hxx"
+
#include <editeng/unoprnms.hxx>
#include <com/sun/star/beans/XPropertyState.hpp>
#include <com/sun/star/chart2/XDiagram.hpp>
@@ -43,8 +45,6 @@ using ::rtl::math::cos;
using ::rtl::math::sin;
using ::rtl::math::tan;
-#define FIXED_SIZE_FOR_3D_CHART_VOLUME (10000.0)
-
namespace
{
diff --git a/chart2/source/view/axes/VCoordinateSystem.cxx b/chart2/source/view/axes/VCoordinateSystem.cxx
index 4b627da5a2b9..6d8f1abc7808 100644
--- a/chart2/source/view/axes/VCoordinateSystem.cxx
+++ b/chart2/source/view/axes/VCoordinateSystem.cxx
@@ -33,6 +33,7 @@
#include "VAxisBase.hxx"
#include "ViewDefines.hxx"
#include "DataSeriesHelper.hxx"
+#include "defines.hxx"
#include "chartview/ExplicitValueProvider.hxx"
#include <com/sun/star/chart2/AxisType.hpp>
#include <com/sun/star/chart2/XChartTypeContainer.hpp>
diff --git a/chart2/source/view/charttypes/VSeriesPlotter.cxx b/chart2/source/view/charttypes/VSeriesPlotter.cxx
index 9fbed71792f8..533638d78935 100644
--- a/chart2/source/view/charttypes/VSeriesPlotter.cxx
+++ b/chart2/source/view/charttypes/VSeriesPlotter.cxx
@@ -42,6 +42,7 @@
#include "RelativePositionHelper.hxx"
#include "DateHelper.hxx"
#include "DiagramHelper.hxx"
+#include "defines.hxx"
//only for creation: @todo remove if all plotter are uno components and instanciated via servicefactory
#include "BarChart.hxx"
diff --git a/chart2/source/view/diagram/VDiagram.cxx b/chart2/source/view/diagram/VDiagram.cxx
index 051313292801..f3dd98ecdf32 100644
--- a/chart2/source/view/diagram/VDiagram.cxx
+++ b/chart2/source/view/diagram/VDiagram.cxx
@@ -28,6 +28,7 @@
#include "CommonConverters.hxx"
#include "ChartTypeHelper.hxx"
#include "ThreeDHelper.hxx"
+#include "defines.hxx"
#include <editeng/unoprnms.hxx>
#include <com/sun/star/drawing/FillStyle.hpp>
#include <com/sun/star/drawing/LineStyle.hpp>
diff --git a/chart2/source/view/inc/ViewDefines.hxx b/chart2/source/view/inc/ViewDefines.hxx
index e86058b61c74..5a38fcd6bce8 100644
--- a/chart2/source/view/inc/ViewDefines.hxx
+++ b/chart2/source/view/inc/ViewDefines.hxx
@@ -16,8 +16,8 @@
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#ifndef _CHART_COMMONDEFINES_HXX
-#define _CHART_COMMONDEFINES_HXX
+#ifndef __CHART2_VIEWDEFINES_HXX__
+#define __CHART2_VIEWDEFINES_HXX__
namespace chart
{
@@ -26,7 +26,6 @@ namespace chart
//
//=========================================================================
#define CHART_3DOBJECT_SEGMENTCOUNT ((sal_Int32)32)
-#define FIXED_SIZE_FOR_3D_CHART_VOLUME (10000.0)
//There needs to be a little distance betweengrid lines and walls in 3D, otherwise the lines are partly hidden by the walls
#define GRID_TO_WALL_DISTANCE (1.0)
diff --git a/chart2/source/view/main/ChartView.cxx b/chart2/source/view/main/ChartView.cxx
index ab2ea1ca1d97..f2ace4a0c072 100644
--- a/chart2/source/view/main/ChartView.cxx
+++ b/chart2/source/view/main/ChartView.cxx
@@ -46,6 +46,7 @@
#include "BaseGFXHelper.hxx"
#include "DataSeriesHelper.hxx"
#include "DateHelper.hxx"
+#include "defines.hxx"
#include <rtl/uuid.h>
#include <comphelper/scopeguard.hxx>
diff --git a/chart2/source/view/main/PlottingPositionHelper.cxx b/chart2/source/view/main/PlottingPositionHelper.cxx
index de9deda975b2..931a92880b13 100644
--- a/chart2/source/view/main/PlottingPositionHelper.cxx
+++ b/chart2/source/view/main/PlottingPositionHelper.cxx
@@ -25,6 +25,7 @@
#include "ShapeFactory.hxx"
#include "PropertyMapper.hxx"
#include "DateHelper.hxx"
+#include "defines.hxx"
#include <com/sun/star/chart/TimeUnit.hpp>
#include <com/sun/star/chart2/AxisType.hpp>
78a9d177f71cce6f9baae144423e&id2=7b95c82b3e920e7006ff4ef1871edb84612d21f7'>accessibility/bridge/org/openoffice/accessibility/KeyHandler.java138
-rw-r--r--accessibility/bridge/org/openoffice/accessibility/PopupWindow.java210
-rw-r--r--accessibility/bridge/org/openoffice/accessibility/WindowsAccessBridgeAdapter.java654
-rwxr-xr-xaccessibility/bridge/org/openoffice/accessibility/makefile.mk55
-rwxr-xr-xaccessibility/bridge/org/openoffice/accessibility/manifest2
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/AbstractButton.java176
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/AccessibleActionImpl.java71
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/AccessibleComponentImpl.java233
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/AccessibleEditableTextImpl.java367
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/AccessibleExtendedState.java53
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/AccessibleHypertextImpl.java191
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/AccessibleIconImpl.java73
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/AccessibleKeyBinding.java386
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/AccessibleObjectFactory.java545
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/AccessibleRelationAdapter.java64
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/AccessibleRoleAdapter.java148
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/AccessibleSelectionImpl.java99
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/AccessibleStateAdapter.java214
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/AccessibleTextImpl.java678
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/AccessibleValueImpl.java96
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/Alert.java66
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/Application.java45
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/Button.java157
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/CheckBox.java51
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/ComboBox.java117
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/Component.java740
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/Container.java763
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/DescendantManager.java161
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/Dialog.java633
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/FocusTraversalPolicy.java89
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/Frame.java646
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/Icon.java76
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/Label.java130
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/List.java452
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/Menu.java328
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/MenuContainer.java167
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/MenuItem.java99
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/NativeFrame.java35
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/Paragraph.java222
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/RadioButton.java50
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/ScrollBar.java126
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/Separator.java71
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/Table.java727
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/TextComponent.java194
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/ToggleButton.java62
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/ToolTip.java117
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/Tree.java768
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/Window.java551
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/logging/XAccessibleEventLog.java186
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/logging/XAccessibleHypertextLog.java61
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/logging/XAccessibleTextLog.java270
-rwxr-xr-xaccessibility/bridge/org/openoffice/java/accessibility/makefile.mk115
-rw-r--r--accessibility/bridge/source/java/WindowsAccessBridgeAdapter.cxx317
-rw-r--r--accessibility/bridge/source/java/exports.dxp4
-rw-r--r--accessibility/bridge/source/java/makefile.mk70
-rw-r--r--accessibility/inc/accessibility/extended/AccessibleBrowseBox.hxx311
-rw-r--r--accessibility/inc/accessibility/extended/AccessibleBrowseBoxBase.hxx527
-rw-r--r--accessibility/inc/accessibility/extended/AccessibleBrowseBoxCheckBoxCell.hxx95
-rw-r--r--accessibility/inc/accessibility/extended/AccessibleBrowseBoxHeaderBar.hxx281
-rw-r--r--accessibility/inc/accessibility/extended/AccessibleBrowseBoxHeaderCell.hxx81
-rw-r--r--accessibility/inc/accessibility/extended/AccessibleBrowseBoxTable.hxx175
-rw-r--r--accessibility/inc/accessibility/extended/AccessibleBrowseBoxTableBase.hxx280
-rw-r--r--accessibility/inc/accessibility/extended/AccessibleBrowseBoxTableCell.hxx143
-rwxr-xr-xaccessibility/inc/accessibility/extended/AccessibleGridControl.hxx265
-rwxr-xr-xaccessibility/inc/accessibility/extended/AccessibleGridControlBase.hxx467
-rwxr-xr-xaccessibility/inc/accessibility/extended/AccessibleGridControlHeader.hxx218
-rwxr-xr-xaccessibility/inc/accessibility/extended/AccessibleGridControlHeaderCell.hxx102
-rw-r--r--accessibility/inc/accessibility/extended/AccessibleGridControlTable.hxx226
-rwxr-xr-xaccessibility/inc/accessibility/extended/AccessibleGridControlTableBase.hxx228
-rwxr-xr-xaccessibility/inc/accessibility/extended/AccessibleGridControlTableCell.hxx168
-rwxr-xr-xaccessibility/inc/accessibility/extended/AccessibleToolPanelDeck.hxx91
-rw-r--r--accessibility/inc/accessibility/extended/AccessibleToolPanelDeckTabBar.hxx92
-rw-r--r--accessibility/inc/accessibility/extended/AccessibleToolPanelDeckTabBarItem.hxx107
-rw-r--r--accessibility/inc/accessibility/extended/accessiblebrowseboxcell.hxx86
-rw-r--r--accessibility/inc/accessibility/extended/accessibleeditbrowseboxcell.hxx156
-rw-r--r--accessibility/inc/accessibility/extended/accessibleiconchoicectrl.hxx119
-rw-r--r--accessibility/inc/accessibility/extended/accessibleiconchoicectrlentry.hxx213
-rw-r--r--accessibility/inc/accessibility/extended/accessiblelistbox.hxx125
-rw-r--r--accessibility/inc/accessibility/extended/accessiblelistboxentry.hxx223
-rw-r--r--accessibility/inc/accessibility/extended/accessibletabbar.hxx120
-rw-r--r--accessibility/inc/accessibility/extended/accessibletabbarbase.hxx78
-rw-r--r--accessibility/inc/accessibility/extended/accessibletabbarpage.hxx137
-rw-r--r--accessibility/inc/accessibility/extended/accessibletabbarpagelist.hxx141
-rw-r--r--accessibility/inc/accessibility/extended/accessibletablistbox.hxx115
-rw-r--r--accessibility/inc/accessibility/extended/accessibletablistboxtable.hxx122
-rw-r--r--accessibility/inc/accessibility/extended/listboxaccessible.hxx95
-rw-r--r--accessibility/inc/accessibility/extended/textwindowaccessibility.hxx711
-rw-r--r--accessibility/inc/accessibility/helper/IComboListBoxHelper.hxx70
-rw-r--r--accessibility/inc/accessibility/helper/acc_factory.hxx50
-rw-r--r--accessibility/inc/accessibility/helper/accessiblestrings.hrc53
-rw-r--r--accessibility/inc/accessibility/helper/accresmgr.hxx72
-rw-r--r--accessibility/inc/accessibility/helper/characterattributeshelper.hxx60
-rw-r--r--accessibility/inc/accessibility/helper/listboxhelper.hxx196
-rw-r--r--accessibility/inc/accessibility/standard/accessiblemenubasecomponent.hxx157
-rw-r--r--accessibility/inc/accessibility/standard/accessiblemenucomponent.hxx102
-rw-r--r--accessibility/inc/accessibility/standard/accessiblemenuitemcomponent.hxx95
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblebox.hxx184
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblebutton.hxx90
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblecheckbox.hxx97
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblecombobox.hxx69
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessibledropdowncombobox.hxx73
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessibledropdownlistbox.hxx71
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessibleedit.hxx123
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblefixedhyperlink.hxx54
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblefixedtext.hxx54
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblelist.hxx228
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblelistbox.hxx63
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblelistboxlist.hxx112
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblelistitem.hxx200
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblemenu.hxx86
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblemenubar.hxx72
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblemenuitem.hxx121
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblemenuseparator.hxx54
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblepopupmenu.hxx59
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessibleradiobutton.hxx88
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblescrollbar.hxx87
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblestatusbar.hxx80
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblestatusbaritem.hxx144
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessibletabcontrol.hxx103
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessibletabpage.hxx148
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessibletabpagewindow.hxx66
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessibletextcomponent.hxx93
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessibletextfield.hxx105
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessibletoolbox.hxx113
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessibletoolboxitem.hxx170
-rw-r--r--accessibility/inc/makefile.mk47
-rw-r--r--accessibility/inc/pch/precompiled_accessibility.cxx29
-rw-r--r--accessibility/inc/pch/precompiled_accessibility.hxx37
-rwxr-xr-xaccessibility/prj/build.lst18
-rw-r--r--accessibility/prj/d.lst8
-rw-r--r--accessibility/prj/l10n1
-rw-r--r--accessibility/source/extended/AccessibleBrowseBox.cxx401
-rw-r--r--accessibility/source/extended/AccessibleBrowseBoxBase.cxx658
-rw-r--r--accessibility/source/extended/AccessibleBrowseBoxCheckBoxCell.cxx172
-rw-r--r--accessibility/source/extended/AccessibleBrowseBoxHeaderBar.cxx419
-rw-r--r--accessibility/source/extended/AccessibleBrowseBoxHeaderCell.cxx173
-rw-r--r--accessibility/source/extended/AccessibleBrowseBoxTable.cxx278
-rw-r--r--accessibility/source/extended/AccessibleBrowseBoxTableBase.cxx355
-rw-r--r--accessibility/source/extended/AccessibleBrowseBoxTableCell.cxx354
-rwxr-xr-xaccessibility/source/extended/AccessibleGridControl.cxx372
-rwxr-xr-xaccessibility/source/extended/AccessibleGridControlBase.cxx535
-rwxr-xr-xaccessibility/source/extended/AccessibleGridControlHeader.cxx284
-rwxr-xr-xaccessibility/source/extended/AccessibleGridControlHeaderCell.cxx170
-rwxr-xr-xaccessibility/source/extended/AccessibleGridControlTable.cxx378
-rwxr-xr-xaccessibility/source/extended/AccessibleGridControlTableBase.cxx288
-rwxr-xr-xaccessibility/source/extended/AccessibleGridControlTableCell.cxx370
-rwxr-xr-xaccessibility/source/extended/AccessibleToolPanelDeck.cxx412
-rw-r--r--accessibility/source/extended/AccessibleToolPanelDeckTabBar.cxx459
-rw-r--r--accessibility/source/extended/AccessibleToolPanelDeckTabBarItem.cxx455
-rw-r--r--accessibility/source/extended/accessiblebrowseboxcell.cxx92
-rw-r--r--accessibility/source/extended/accessibleeditbrowseboxcell.cxx273
-rw-r--r--accessibility/source/extended/accessibleiconchoicectrl.cxx372
-rw-r--r--accessibility/source/extended/accessibleiconchoicectrlentry.cxx756
-rw-r--r--accessibility/source/extended/accessiblelistbox.cxx432
-rw-r--r--accessibility/source/extended/accessiblelistboxentry.cxx970
-rw-r--r--accessibility/source/extended/accessibletabbar.cxx554
-rw-r--r--accessibility/source/extended/accessibletabbarbase.cxx114
-rw-r--r--accessibility/source/extended/accessibletabbarpage.cxx511
-rw-r--r--accessibility/source/extended/accessibletabbarpagelist.cxx805
-rw-r--r--accessibility/source/extended/accessibletablistbox.cxx146
-rw-r--r--accessibility/source/extended/accessibletablistboxtable.cxx383
-rw-r--r--accessibility/source/extended/listboxaccessible.cxx103
-rwxr-xr-xaccessibility/source/extended/makefile.mk81
-rw-r--r--accessibility/source/extended/textwindowaccessibility.cxx2254
-rwxr-xr-xaccessibility/source/helper/acc_factory.cxx552
-rw-r--r--accessibility/source/helper/accessiblestrings.src76
-rw-r--r--accessibility/source/helper/accresmgr.cxx84
-rw-r--r--accessibility/source/helper/characterattributeshelper.cxx119
-rw-r--r--accessibility/source/helper/makefile.mk53
-rw-r--r--accessibility/source/inc/floatingwindowaccessible.hxx45
-rw-r--r--accessibility/source/standard/accessiblemenubasecomponent.cxx783
-rw-r--r--accessibility/source/standard/accessiblemenucomponent.cxx471
-rw-r--r--accessibility/source/standard/accessiblemenuitemcomponent.cxx503
-rw-r--r--accessibility/source/standard/floatingwindowaccessible.cxx70
-rw-r--r--accessibility/source/standard/makefile.mk78
-rw-r--r--accessibility/source/standard/vclxaccessiblebox.cxx374
-rw-r--r--accessibility/source/standard/vclxaccessiblebutton.cxx326
-rw-r--r--accessibility/source/standard/vclxaccessiblecheckbox.cxx361
-rw-r--r--accessibility/source/standard/vclxaccessiblecombobox.cxx96
-rw-r--r--accessibility/source/standard/vclxaccessibledropdowncombobox.cxx142
-rw-r--r--accessibility/source/standard/vclxaccessibledropdownlistbox.cxx110
-rw-r--r--accessibility/source/standard/vclxaccessibleedit.cxx626
-rw-r--r--accessibility/source/standard/vclxaccessiblefixedhyperlink.cxx85
-rw-r--r--accessibility/source/standard/vclxaccessiblefixedtext.cxx96
-rw-r--r--accessibility/source/standard/vclxaccessiblelist.cxx854
-rw-r--r--accessibility/source/standard/vclxaccessiblelistbox.cxx108
-rw-r--r--accessibility/source/standard/vclxaccessiblelistitem.cxx674
-rw-r--r--accessibility/source/standard/vclxaccessiblemenu.cxx255
-rw-r--r--accessibility/source/standard/vclxaccessiblemenubar.cxx211
-rw-r--r--accessibility/source/standard/vclxaccessiblemenuitem.cxx607
-rw-r--r--accessibility/source/standard/vclxaccessiblemenuseparator.cxx85
-rw-r--r--accessibility/source/standard/vclxaccessiblepopupmenu.cxx111
-rw-r--r--accessibility/source/standard/vclxaccessibleradiobutton.cxx314
-rw-r--r--accessibility/source/standard/vclxaccessiblescrollbar.cxx280
-rw-r--r--accessibility/source/standard/vclxaccessiblestatusbar.cxx366
-rw-r--r--accessibility/source/standard/vclxaccessiblestatusbaritem.cxx629
-rw-r--r--accessibility/source/standard/vclxaccessibletabcontrol.cxx515
-rw-r--r--accessibility/source/standard/vclxaccessibletabpage.cxx702
-rw-r--r--accessibility/source/standard/vclxaccessibletabpagewindow.cxx141
-rw-r--r--accessibility/source/standard/vclxaccessibletextcomponent.cxx362
-rw-r--r--accessibility/source/standard/vclxaccessibletextfield.cxx154
-rw-r--r--accessibility/source/standard/vclxaccessibletoolbox.cxx882
-rw-r--r--accessibility/source/standard/vclxaccessibletoolboxitem.cxx718
-rw-r--r--accessibility/util/acc.map7
-rw-r--r--accessibility/util/makefile.mk86
-rw-r--r--accessibility/workben/TODO13
-rw-r--r--accessibility/workben/makefile9
-rw-r--r--accessibility/workben/makefile.in31
-rw-r--r--accessibility/workben/makefile.mk39
-rw-r--r--accessibility/workben/org/openoffice/accessibility/Makefile6
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/AccessibilityWorkBench.java702
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/HelpWindow.java187
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/Makefile13
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/canvas/Canvas.java322
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/canvas/CanvasShape.java412
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/canvas/Makefile15
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/canvas/MouseObserver.java104
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/canvas/ShapeContainer.java237
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/canvas/makefile.common34
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/canvas/makefile.mk55
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/makefile.common30
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/makefile.mk57
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/manifest3
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityModel.java154
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityNode.java163
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityTree.java89
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityTreeModel.java217
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/tree/DynamicAccessibilityModel.java123
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/tree/DynamicAccessibilityNode.java92
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/tree/Makefile40
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/tree/ToolkitNode.java215
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/tree/makefile.common35
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/tree/makefile.mk51
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/ComponentView.java195
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/ContextView.java115
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/EditableTextView.java119
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/EventMonitorView.java126
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/FocusView.java148
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/LayoutManager.java160
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/Makefile13
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/ObjectView.java90
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/ObjectViewContainer.java310
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/ObjectViewContainerWindow.java35
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/ParentView.java147
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/SelectionView.java267
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/ServiceInterfaceView.java150
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/StateSetView.java199
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/TableView.java161
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/TextView.java467
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/ViewGridLayout.java117
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/makefile.common45
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/makefile.mk51
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/text/CaretSpinnerModel.java122
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/text/Makefile13
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/text/TextActionDialog.java208
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/text/TextAttributeDialog.java179
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/text/TextDialogFactory.java136
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/text/TextEditDialog.java122
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/text/makefile.common34
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/text/makefile.mk51
-rw-r--r--accessibility/workben/org/openoffice/accessibility/misc/AccessibleEventMulticaster.java92
-rw-r--r--accessibility/workben/org/openoffice/accessibility/misc/Connector.java50
-rw-r--r--accessibility/workben/org/openoffice/accessibility/misc/InformationWriter.java421
-rw-r--r--accessibility/workben/org/openoffice/accessibility/misc/Makefile38
-rw-r--r--accessibility/workben/org/openoffice/accessibility/misc/MessageArea.java125
-rw-r--r--accessibility/workben/org/openoffice/accessibility/misc/NameProvider.java263
-rw-r--r--accessibility/workben/org/openoffice/accessibility/misc/OfficeConnection.java169
-rw-r--r--accessibility/workben/org/openoffice/accessibility/misc/Options.java106
-rw-r--r--accessibility/workben/org/openoffice/accessibility/misc/SimpleOffice.java413
-rw-r--r--accessibility/workben/org/openoffice/accessibility/misc/makefile.common36
-rw-r--r--accessibility/workben/org/openoffice/accessibility/misc/makefile.mk55
-rw-r--r--acinclude.m4138
-rw-r--r--afms/delzip0
-rw-r--r--afms/makefile.mk58
-rw-r--r--afms/prj/build.lst3
-rw-r--r--afms/prj/d.lst3
-rwxr-xr-xagg/inc/agg_alpha_mask_u8.h499
-rwxr-xr-xagg/inc/agg_arc.h74
-rwxr-xr-xagg/inc/agg_array.h887
-rwxr-xr-xagg/inc/agg_arrowhead.h82
-rwxr-xr-xagg/inc/agg_basics.h343
-rwxr-xr-xagg/inc/agg_bezier_arc.h158
-rwxr-xr-xagg/inc/agg_bitset_iterator.h54
-rwxr-xr-xagg/inc/agg_bounding_rect.h116
-rwxr-xr-xagg/inc/agg_bspline.h77
-rwxr-xr-xagg/inc/agg_clip_liang_barsky.h209
-rwxr-xr-xagg/inc/agg_color_gray.h364
-rwxr-xr-xagg/inc/agg_color_rgba.h618
-rwxr-xr-xagg/inc/agg_config.h31
-rwxr-xr-xagg/inc/agg_conv_adaptor_vcgen.h169
-rwxr-xr-xagg/inc/agg_conv_adaptor_vpgen.h166
-rwxr-xr-xagg/inc/agg_conv_bspline.h48
-rwxr-xr-xagg/inc/agg_conv_clip_polygon.h69
-rwxr-xr-xagg/inc/agg_conv_clip_polyline.h69
-rwxr-xr-xagg/inc/agg_conv_close_polygon.h132
-rwxr-xr-xagg/inc/agg_conv_concat.h80
-rwxr-xr-xagg/inc/agg_conv_contour.h65
-rwxr-xr-xagg/inc/agg_conv_curve.h174
-rwxr-xr-xagg/inc/agg_conv_dash.h68
-rwxr-xr-xagg/inc/agg_conv_gpc.h443
-rwxr-xr-xagg/inc/agg_conv_marker.h154
-rwxr-xr-xagg/inc/agg_conv_marker_adaptor.h51
-rwxr-xr-xagg/inc/agg_conv_segmentator.h48
-rwxr-xr-xagg/inc/agg_conv_shorten_path.h50
-rwxr-xr-xagg/inc/agg_conv_smooth_poly1.h80
-rwxr-xr-xagg/inc/agg_conv_stroke.h73
-rwxr-xr-xagg/inc/agg_conv_transform.h75
-rwxr-xr-xagg/inc/agg_conv_unclose_polygon.h59
-rwxr-xr-xagg/inc/agg_curves.h150
-rwxr-xr-xagg/inc/agg_dda_line.h290
-rwxr-xr-xagg/inc/agg_ellipse.h98
-rwxr-xr-xagg/inc/agg_ellipse_bresenham.h113
-rwxr-xr-xagg/inc/agg_embedded_raster_fonts.h59
-rwxr-xr-xagg/inc/agg_font_cache_manager.h397
-rwxr-xr-xagg/inc/agg_gamma_functions.h123
-rwxr-xr-xagg/inc/agg_gamma_lut.h114
-rwxr-xr-xagg/inc/agg_glyph_raster_bin.h155
-rwxr-xr-xagg/inc/agg_gsv_text.h154
-rwxr-xr-xagg/inc/agg_image_filters.h449
-rwxr-xr-xagg/inc/agg_line_aa_basics.h152
-rwxr-xr-xagg/inc/agg_math.h247
-rwxr-xr-xagg/inc/agg_math_stroke.h340
-rwxr-xr-xagg/inc/agg_path_storage.h364
-rwxr-xr-xagg/inc/agg_path_storage_integer.h300
-rwxr-xr-xagg/inc/agg_pattern_filters_rgba.h122
-rwxr-xr-xagg/inc/agg_pixfmt_amask_adaptor.h265
-rwxr-xr-xagg/inc/agg_pixfmt_gray.h703
-rwxr-xr-xagg/inc/agg_pixfmt_rgb.h760
-rwxr-xr-xagg/inc/agg_pixfmt_rgb_packed.h1277
-rwxr-xr-xagg/inc/agg_pixfmt_rgba.h1312
-rwxr-xr-xagg/inc/agg_rasterizer_outline.h146
-rwxr-xr-xagg/inc/agg_rasterizer_outline_aa.h516
-rwxr-xr-xagg/inc/agg_rasterizer_scanline_aa.h743
-rwxr-xr-xagg/inc/agg_render_scanlines.h66
-rwxr-xr-xagg/inc/agg_renderer_base.h618
-rwxr-xr-xagg/inc/agg_renderer_markers.h707
-rwxr-xr-xagg/inc/agg_renderer_mclip.h383
-rwxr-xr-xagg/inc/agg_renderer_outline_aa.h1545
-rwxr-xr-xagg/inc/agg_renderer_outline_image.h924
-rwxr-xr-xagg/inc/agg_renderer_primitives.h224
-rwxr-xr-xagg/inc/agg_renderer_raster_text.h264
-rwxr-xr-xagg/inc/agg_renderer_scanline.h450
-rwxr-xr-xagg/inc/agg_rendering_buffer.h179
-rwxr-xr-xagg/inc/agg_rendering_buffer_dynarow.h184
-rwxr-xr-xagg/inc/agg_rounded_rect.h79
-rwxr-xr-xagg/inc/agg_scanline_bin.h171
-rwxr-xr-xagg/inc/agg_scanline_boolean_algebra.h1559
-rwxr-xr-xagg/inc/agg_scanline_p.h197
-rwxr-xr-xagg/inc/agg_scanline_storage_aa.h796
-rwxr-xr-xagg/inc/agg_scanline_storage_bin.h569
-rwxr-xr-xagg/inc/agg_scanline_u.h323
-rwxr-xr-xagg/inc/agg_shorten_path.h66
-rwxr-xr-xagg/inc/agg_simul_eq.h147
-rwxr-xr-xagg/inc/agg_span_allocator.h72
-rwxr-xr-xagg/inc/agg_span_converter.h53
-rwxr-xr-xagg/inc/agg_span_generator.h50
-rwxr-xr-xagg/inc/agg_span_gouraud.h180
-rwxr-xr-xagg/inc/agg_span_gouraud_gray.h185
-rwxr-xr-xagg/inc/agg_span_gouraud_rgba.h206
-rwxr-xr-xagg/inc/agg_span_gradient.h422
-rwxr-xr-xagg/inc/agg_span_gradient_alpha.h123
-rwxr-xr-xagg/inc/agg_span_image_filter.h110
-rwxr-xr-xagg/inc/agg_span_image_filter_gray.h701
-rwxr-xr-xagg/inc/agg_span_image_filter_rgb.h840
-rwxr-xr-xagg/inc/agg_span_image_filter_rgba.h864
-rwxr-xr-xagg/inc/agg_span_image_resample.h180
-rwxr-xr-xagg/inc/agg_span_image_resample_gray.h359
-rwxr-xr-xagg/inc/agg_span_image_resample_rgb.h393
-rwxr-xr-xagg/inc/agg_span_image_resample_rgba.h393
-rwxr-xr-xagg/inc/agg_span_interpolator_adaptor.h77
-rwxr-xr-xagg/inc/agg_span_interpolator_linear.h232
-rwxr-xr-xagg/inc/agg_span_interpolator_persp.h462
-rwxr-xr-xagg/inc/agg_span_interpolator_trans.h97
-rwxr-xr-xagg/inc/agg_span_pattern.h278
-rwxr-xr-xagg/inc/agg_span_pattern_filter_gray.h472
-rwxr-xr-xagg/inc/agg_span_pattern_filter_rgb.h568
-rwxr-xr-xagg/inc/agg_span_pattern_filter_rgba.h584
-rwxr-xr-xagg/inc/agg_span_pattern_resample_gray.h320
-rwxr-xr-xagg/inc/agg_span_pattern_resample_rgb.h346
-rwxr-xr-xagg/inc/agg_span_pattern_resample_rgba.h354
-rwxr-xr-xagg/inc/agg_span_pattern_rgb.h165
-rwxr-xr-xagg/inc/agg_span_pattern_rgba.h111
-rwxr-xr-xagg/inc/agg_span_solid.h63
-rwxr-xr-xagg/inc/agg_span_subdiv_adaptor.h141
-rwxr-xr-xagg/inc/agg_trans_affine.h344
-rwxr-xr-xagg/inc/agg_trans_bilinear.h166
-rwxr-xr-xagg/inc/agg_trans_double_path.h131
-rwxr-xr-xagg/inc/agg_trans_lens.h79
-rwxr-xr-xagg/inc/agg_trans_perspective.h192
-rwxr-xr-xagg/inc/agg_trans_single_path.h97
-rwxr-xr-xagg/inc/agg_trans_viewport.h304
-rwxr-xr-xagg/inc/agg_trans_warp_magnifier.h51
-rwxr-xr-xagg/inc/agg_vcgen_bspline.h74
-rwxr-xr-xagg/inc/agg_vcgen_contour.h96
-rwxr-xr-xagg/inc/agg_vcgen_dash.h99
-rwxr-xr-xagg/inc/agg_vcgen_markers_term.h72
-rwxr-xr-xagg/inc/agg_vcgen_smooth_poly1.h87
-rwxr-xr-xagg/inc/agg_vcgen_stroke.h114
-rwxr-xr-xagg/inc/agg_vcgen_vertex_sequence.h135
-rwxr-xr-xagg/inc/agg_vertex_iterator.h133
-rwxr-xr-xagg/inc/agg_vertex_sequence.h176
-rwxr-xr-xagg/inc/agg_vpgen_clip_polygon.h83
-rwxr-xr-xagg/inc/agg_vpgen_clip_polyline.h121
-rwxr-xr-xagg/inc/agg_vpgen_segmentator.h61
-rwxr-xr-xagg/prj/build.lst5
-rwxr-xr-xagg/prj/d.lst11
-rw-r--r--agg/source/agg.flt3
-rwxr-xr-xagg/source/agg_arc.cpp105
-rwxr-xr-xagg/source/agg_arrowhead.cpp110
-rwxr-xr-xagg/source/agg_bezier_arc.cpp237
-rwxr-xr-xagg/source/agg_bspline.cpp299
-rwxr-xr-xagg/source/agg_curves.cpp246
-rwxr-xr-xagg/source/agg_embedded_raster_fonts.cpp10426
-rwxr-xr-xagg/source/agg_gsv_text.cpp688
-rwxr-xr-xagg/source/agg_image_filters.cpp120
-rwxr-xr-xagg/source/agg_line_aa_basics.cpp82
-rwxr-xr-xagg/source/agg_line_profile_aa.cpp117
-rwxr-xr-xagg/source/agg_path_storage.cpp525
-rwxr-xr-xagg/source/agg_rasterizer_scanline_aa.cpp621
-rwxr-xr-xagg/source/agg_rounded_rect.cpp164
-rwxr-xr-xagg/source/agg_sqrt_tables.cpp115
-rwxr-xr-xagg/source/agg_trans_affine.cpp195
-rwxr-xr-xagg/source/agg_trans_double_path.cpp273
-rwxr-xr-xagg/source/agg_trans_single_path.cpp202
-rwxr-xr-xagg/source/agg_trans_warp_magnifier.cpp50
-rwxr-xr-xagg/source/agg_vcgen_bspline.cpp194
-rwxr-xr-xagg/source/agg_vcgen_contour.cpp191
-rwxr-xr-xagg/source/agg_vcgen_dash.cpp237
-rwxr-xr-xagg/source/agg_vcgen_markers_term.cpp103
-rwxr-xr-xagg/source/agg_vcgen_smooth_poly1.cpp226
-rwxr-xr-xagg/source/agg_vcgen_stroke.cpp246
-rwxr-xr-xagg/source/agg_vpgen_clip_polygon.cpp133
-rwxr-xr-xagg/source/agg_vpgen_clip_polyline.cpp142
-rwxr-xr-xagg/source/agg_vpgen_segmentator.cpp67
-rwxr-xr-xagg/source/makefile.mk91
-rw-r--r--animations/inc/animations/animationnodehelper.hxx130
-rw-r--r--animations/prj/build.lst3
-rw-r--r--animations/prj/d.lst9
-rw-r--r--animations/source/animcore/animcore.cxx2089
-rw-r--r--animations/source/animcore/animcore.xml30
-rw-r--r--animations/source/animcore/factreg.cxx100
-rw-r--r--animations/source/animcore/factreg.hxx51
-rw-r--r--animations/source/animcore/makefile.mk70
-rw-r--r--animations/source/animcore/targetpropertiescreator.cxx504
-rw-r--r--apache-commons/java/codec/makefile.mk74
-rw-r--r--apache-commons/java/httpclient/makefile.mk79
-rw-r--r--apache-commons/java/lang/makefile.mk76
-rw-r--r--apache-commons/java/logging/makefile.mk78
-rw-r--r--apache-commons/patches/codec.patch17
-rw-r--r--apache-commons/patches/logging.patch15
-rw-r--r--apache-commons/prj/build.lst6
-rw-r--r--apache-commons/prj/d.lst5
-rw-r--r--apple_remote/AppleRemote.m125
-rw-r--r--apple_remote/GlobalKeyboardDevice.m249
-rw-r--r--apple_remote/HIDRemoteControlDevice.m518
-rw-r--r--apple_remote/KeyspanFrontRowControl.m97
-rw-r--r--apple_remote/MultiClickRemoteBehavior.m213
-rw-r--r--apple_remote/RemoteControl.m146
-rw-r--r--apple_remote/RemoteControlContainer.m140
-rw-r--r--apple_remote/RemoteMainController.m177
-rw-r--r--apple_remote/inc/AppleRemote.h40
-rw-r--r--apple_remote/inc/GlobalKeyboardDevice.h54
-rw-r--r--apple_remote/inc/HIDRemoteControlDevice.h67
-rw-r--r--apple_remote/inc/KeyspanFrontRowControl.h42
-rw-r--r--apple_remote/inc/MultiClickRemoteBehavior.h93
-rw-r--r--apple_remote/inc/RemoteControl.h105
-rw-r--r--apple_remote/inc/RemoteControlContainer.h41
-rw-r--r--apple_remote/inc/RemoteMainController.h49
-rw-r--r--apple_remote/makefile.mk82
-rw-r--r--apple_remote/prj/build.lst2
-rw-r--r--apple_remote/prj/d.lst5
-rw-r--r--autodoc/inc/ary/actions.hxx103
-rw-r--r--autodoc/inc/ary/ary.hxx90
-rw-r--r--autodoc/inc/ary/ary_disp.hxx111
-rw-r--r--autodoc/inc/ary/arygroup.hxx107
-rw-r--r--autodoc/inc/ary/ceslot.hxx103
-rw-r--r--autodoc/inc/ary/cessentl.hxx88
-rw-r--r--autodoc/inc/ary/cpp/c_builtintype.hxx97
-rw-r--r--autodoc/inc/ary/cpp/c_ce.hxx103
-rw-r--r--autodoc/inc/ary/cpp/c_class.hxx245
-rw-r--r--autodoc/inc/ary/cpp/c_cppentity.hxx91
-rw-r--r--autodoc/inc/ary/cpp/c_de.hxx104
-rw-r--r--autodoc/inc/ary/cpp/c_define.hxx82
-rw-r--r--autodoc/inc/ary/cpp/c_enum.hxx116
-rw-r--r--autodoc/inc/ary/cpp/c_enuval.hxx96
-rw-r--r--autodoc/inc/ary/cpp/c_funct.hxx149
-rw-r--r--autodoc/inc/ary/cpp/c_gate.hxx121
-rw-r--r--autodoc/inc/ary/cpp/c_macro.hxx84
-rw-r--r--autodoc/inc/ary/cpp/c_namesp.hxx194
-rw-r--r--autodoc/inc/ary/cpp/c_osigna.hxx122
-rw-r--r--autodoc/inc/ary/cpp/c_slntry.hxx110
-rw-r--r--autodoc/inc/ary/cpp/c_traits.hxx216
-rw-r--r--autodoc/inc/ary/cpp/c_tydef.hxx100
-rw-r--r--autodoc/inc/ary/cpp/c_type.hxx133
-rw-r--r--autodoc/inc/ary/cpp/c_types4cpp.hxx134
-rw-r--r--autodoc/inc/ary/cpp/c_vari.hxx114
-rw-r--r--autodoc/inc/ary/cpp/c_vfflag.hxx151
-rw-r--r--autodoc/inc/ary/cpp/cp_ce.hxx173
-rw-r--r--autodoc/inc/ary/cpp/cp_def.hxx99
-rw-r--r--autodoc/inc/ary/cpp/cp_type.hxx96
-rw-r--r--autodoc/inc/ary/cpp/inpcontx.hxx216
-rw-r--r--autodoc/inc/ary/cpp/namechain.hxx140
-rw-r--r--autodoc/inc/ary/cpp/usedtype.hxx212
-rw-r--r--autodoc/inc/ary/doc/d_boolean.hxx96
-rw-r--r--autodoc/inc/ary/doc/d_docu.hxx106
-rw-r--r--autodoc/inc/ary/doc/d_node.hxx109
-rw-r--r--autodoc/inc/ary/doc/d_oldcppdocu.hxx130
-rw-r--r--autodoc/inc/ary/doc/d_oldidldocu.hxx111
-rw-r--r--autodoc/inc/ary/doc/d_parametrized.hxx121
-rw-r--r--autodoc/inc/ary/doc/d_types4doc.hxx70
-rw-r--r--autodoc/inc/ary/doc/ht/dht_interpreter.hxx76
-rw-r--r--autodoc/inc/ary/entity.hxx81
-rw-r--r--autodoc/inc/ary/getncast.hxx88
-rw-r--r--autodoc/inc/ary/idl/i_attribute.hxx135
-rw-r--r--autodoc/inc/ary/idl/i_ce.hxx135
-rw-r--r--autodoc/inc/ary/idl/i_ce2s.hxx95
-rw-r--r--autodoc/inc/ary/idl/i_comrela.hxx80
-rw-r--r--autodoc/inc/ary/idl/i_constant.hxx112
-rw-r--r--autodoc/inc/ary/idl/i_constgroup.hxx101
-rw-r--r--autodoc/inc/ary/idl/i_enum.hxx100
-rw-r--r--autodoc/inc/ary/idl/i_enumvalue.hxx103
-rw-r--r--autodoc/inc/ary/idl/i_exception.hxx107
-rw-r--r--autodoc/inc/ary/idl/i_function.hxx160
-rw-r--r--autodoc/inc/ary/idl/i_gate.hxx83
-rw-r--r--autodoc/inc/ary/idl/i_interface.hxx127
-rw-r--r--autodoc/inc/ary/idl/i_module.hxx114
-rw-r--r--autodoc/inc/ary/idl/i_namelookup.hxx95
-rw-r--r--autodoc/inc/ary/idl/i_param.hxx75
-rw-r--r--autodoc/inc/ary/idl/i_property.hxx143
-rw-r--r--autodoc/inc/ary/idl/i_service.hxx139
-rw-r--r--autodoc/inc/ary/idl/i_singleton.hxx105
-rw-r--r--autodoc/inc/ary/idl/i_siservice.hxx107
-rw-r--r--autodoc/inc/ary/idl/i_sisingleton.hxx100
-rw-r--r--autodoc/inc/ary/idl/i_struct.hxx130
-rw-r--r--autodoc/inc/ary/idl/i_structelem.hxx103
-rw-r--r--autodoc/inc/ary/idl/i_traits.hxx78
-rw-r--r--autodoc/inc/ary/idl/i_type.hxx142
-rw-r--r--autodoc/inc/ary/idl/i_typedef.hxx90
-rw-r--r--autodoc/inc/ary/idl/i_types4idl.hxx142
-rw-r--r--autodoc/inc/ary/idl/ik_attribute.hxx85
-rw-r--r--autodoc/inc/ary/idl/ik_ce.hxx146
-rw-r--r--autodoc/inc/ary/idl/ik_constant.hxx76
-rw-r--r--autodoc/inc/ary/idl/ik_constgroup.hxx73
-rw-r--r--autodoc/inc/ary/idl/ik_enum.hxx85
-rw-r--r--autodoc/inc/ary/idl/ik_enumvalue.hxx73
-rw-r--r--autodoc/inc/ary/idl/ik_exception.hxx82
-rw-r--r--autodoc/inc/ary/idl/ik_function.hxx96
-rw-r--r--autodoc/inc/ary/idl/ik_interface.hxx112
-rw-r--r--autodoc/inc/ary/idl/ik_module.hxx114
-rw-r--r--autodoc/inc/ary/idl/ik_property.hxx89
-rw-r--r--autodoc/inc/ary/idl/ik_service.hxx88
-rw-r--r--autodoc/inc/ary/idl/ik_singleton.hxx73
-rw-r--r--autodoc/inc/ary/idl/ik_siservice.hxx75
-rw-r--r--autodoc/inc/ary/idl/ik_sisingleton.hxx73
-rw-r--r--autodoc/inc/ary/idl/ik_struct.hxx91
-rw-r--r--autodoc/inc/ary/idl/ik_structelem.hxx72
-rw-r--r--autodoc/inc/ary/idl/ik_typedef.hxx83
-rw-r--r--autodoc/inc/ary/idl/ip_ce.hxx210
-rw-r--r--autodoc/inc/ary/idl/ip_type.hxx83
-rw-r--r--autodoc/inc/ary/info/all_dts.hxx160
-rw-r--r--autodoc/inc/ary/info/all_tags.hxx289
-rw-r--r--autodoc/inc/ary/info/ci_attag.hxx101
-rw-r--r--autodoc/inc/ary/info/ci_text.hxx85
-rw-r--r--autodoc/inc/ary/info/docstore.hxx116
-rw-r--r--autodoc/inc/ary/info/infodisp.hxx114
-rw-r--r--autodoc/inc/ary/info/inftypes.hxx122
-rw-r--r--autodoc/inc/ary/itrange.hxx80
-rw-r--r--autodoc/inc/ary/loc/loc_dir.hxx145
-rw-r--r--autodoc/inc/ary/loc/loc_file.hxx68
-rw-r--r--autodoc/inc/ary/loc/loc_filebase.hxx72
-rw-r--r--autodoc/inc/ary/loc/loc_le.hxx94
-rw-r--r--autodoc/inc/ary/loc/loc_root.hxx110
-rw-r--r--autodoc/inc/ary/loc/loc_traits.hxx115
-rw-r--r--autodoc/inc/ary/loc/loc_types4loc.hxx54
-rw-r--r--autodoc/inc/ary/loc/locp_le.hxx88
-rw-r--r--autodoc/inc/ary/namesort.hxx75
-rw-r--r--autodoc/inc/ary/object.hxx70
-rw-r--r--autodoc/inc/ary/qualiname.hxx103
-rw-r--r--autodoc/inc/ary/sequentialids.hxx153
-rw-r--r--autodoc/inc/ary/stdconstiter.hxx98
-rw-r--r--autodoc/inc/ary/symtreenode.hxx344
-rw-r--r--autodoc/inc/ary/types.hxx130
-rw-r--r--autodoc/inc/ary/udmhost.hxx62
-rw-r--r--autodoc/inc/ary_i/ci_atag2.hxx79
-rw-r--r--autodoc/inc/ary_i/ci_text2.hxx92
-rw-r--r--autodoc/inc/ary_i/d_token.hxx282
-rw-r--r--autodoc/inc/ary_i/disdocum.hxx146
-rw-r--r--autodoc/inc/autodoc/displaying.hxx76
-rw-r--r--autodoc/inc/autodoc/dsp_html_std.hxx213
-rw-r--r--autodoc/inc/autodoc/dsp_txt_flist.hxx65
-rw-r--r--autodoc/inc/autodoc/filecoli.hxx72
-rw-r--r--autodoc/inc/autodoc/parsing.hxx78
-rw-r--r--autodoc/inc/autodoc/prs_code.hxx76
-rw-r--r--autodoc/inc/autodoc/prs_docu.hxx59
-rw-r--r--autodoc/inc/autodoc/x_parsing.hxx73
-rw-r--r--autodoc/inc/display/corframe.hxx82
-rw-r--r--autodoc/inc/parser/parser.hxx57
-rw-r--r--autodoc/inc/parser/parserinfo.hxx64
-rw-r--r--autodoc/inc/parser/unoidl.hxx79
-rw-r--r--autodoc/prj/build.lst67
-rw-r--r--autodoc/prj/d.lst3
-rw-r--r--autodoc/source/ary/cpp/c_builtintype.cxx127
-rw-r--r--autodoc/source/ary/cpp/c_class.cxx284
-rw-r--r--autodoc/source/ary/cpp/c_de.cxx51
-rw-r--r--autodoc/source/ary/cpp/c_define.cxx76
-rw-r--r--autodoc/source/ary/cpp/c_enum.cxx134
-rw-r--r--autodoc/source/ary/cpp/c_enuval.cxx87
-rw-r--r--autodoc/source/ary/cpp/c_funct.cxx247
-rw-r--r--autodoc/source/ary/cpp/c_macro.cxx78
-rw-r--r--autodoc/source/ary/cpp/c_namesp.cxx294
-rw-r--r--autodoc/source/ary/cpp/c_osigna.cxx76
-rw-r--r--autodoc/source/ary/cpp/c_reposypart.cxx523
-rw-r--r--autodoc/source/ary/cpp/c_reposypart.hxx114
-rw-r--r--autodoc/source/ary/cpp/c_slots.cxx106
-rw-r--r--autodoc/source/ary/cpp/c_slots.hxx84
-rw-r--r--autodoc/source/ary/cpp/c_traits.cxx223
-rw-r--r--autodoc/source/ary/cpp/c_tydef.cxx94
-rw-r--r--autodoc/source/ary/cpp/c_vari.cxx96
-rw-r--r--autodoc/source/ary/cpp/ca_ce.cxx622
-rw-r--r--autodoc/source/ary/cpp/ca_ce.hxx213
-rw-r--r--autodoc/source/ary/cpp/ca_def.cxx111
-rw-r--r--autodoc/source/ary/cpp/ca_def.hxx115
-rw-r--r--autodoc/source/ary/cpp/ca_type.cxx136
-rw-r--r--autodoc/source/ary/cpp/ca_type.hxx127
-rw-r--r--autodoc/source/ary/cpp/cs_ce.cxx104
-rw-r--r--autodoc/source/ary/cpp/cs_ce.hxx105
-rw-r--r--autodoc/source/ary/cpp/cs_def.cxx86
-rw-r--r--autodoc/source/ary/cpp/cs_def.hxx107
-rw-r--r--autodoc/source/ary/cpp/cs_type.cxx112
-rw-r--r--autodoc/source/ary/cpp/cs_type.hxx138
-rw-r--r--autodoc/source/ary/cpp/makefile.mk80
-rw-r--r--autodoc/source/ary/cpp/namechain.cxx196
-rw-r--r--autodoc/source/ary/cpp/tplparam.cxx74
-rw-r--r--autodoc/source/ary/cpp/tplparam.hxx84
-rw-r--r--autodoc/source/ary/cpp/usedtype.cxx575
-rw-r--r--autodoc/source/ary/doc/d_boolean.cxx55
-rw-r--r--autodoc/source/ary/doc/d_docu.cxx59
-rw-r--r--autodoc/source/ary/doc/d_node.cxx69
-rw-r--r--autodoc/source/ary/doc/d_oldcppdocu.cxx336
-rw-r--r--autodoc/source/ary/doc/d_oldidldocu.cxx76
-rw-r--r--autodoc/source/ary/doc/makefile.mk58
-rw-r--r--autodoc/source/ary/idl/i2s_calculator.cxx992
-rw-r--r--autodoc/source/ary/idl/i2s_calculator.hxx295
-rw-r--r--autodoc/source/ary/idl/i_attribute.cxx159
-rw-r--r--autodoc/source/ary/idl/i_ce.cxx80
-rw-r--r--autodoc/source/ary/idl/i_ce2s.cxx84
-rw-r--r--autodoc/source/ary/idl/i_comrela.cxx47
-rw-r--r--autodoc/source/ary/idl/i_constant.cxx123
-rw-r--r--autodoc/source/ary/idl/i_constgroup.cxx114
-rw-r--r--autodoc/source/ary/idl/i_enum.cxx143
-rw-r--r--autodoc/source/ary/idl/i_enumvalue.cxx116
-rw-r--r--autodoc/source/ary/idl/i_exception.cxx139
-rw-r--r--autodoc/source/ary/idl/i_function.cxx165
-rw-r--r--autodoc/source/ary/idl/i_interface.cxx196
-rw-r--r--autodoc/source/ary/idl/i_module.cxx204
-rw-r--r--autodoc/source/ary/idl/i_namelookup.cxx62
-rw-r--r--autodoc/source/ary/idl/i_nnfinder.hxx118
-rw-r--r--autodoc/source/ary/idl/i_param.cxx57
-rw-r--r--autodoc/source/ary/idl/i_property.cxx171
-rw-r--r--autodoc/source/ary/idl/i_reposypart.cxx119
-rw-r--r--autodoc/source/ary/idl/i_reposypart.hxx96
-rw-r--r--autodoc/source/ary/idl/i_service.cxx171
-rw-r--r--autodoc/source/ary/idl/i_singleton.cxx112
-rw-r--r--autodoc/source/ary/idl/i_siservice.cxx121
-rw-r--r--autodoc/source/ary/idl/i_sisingleton.cxx113
-rw-r--r--autodoc/source/ary/idl/i_struct.cxx163
-rw-r--r--autodoc/source/ary/idl/i_structelem.cxx117
-rw-r--r--autodoc/source/ary/idl/i_traits.cxx72
-rw-r--r--autodoc/source/ary/idl/i_typedef.cxx145
-rw-r--r--autodoc/source/ary/idl/ia_ce.cxx581
-rw-r--r--autodoc/source/ary/idl/ia_ce.hxx253
-rw-r--r--autodoc/source/ary/idl/ia_type.cxx364
-rw-r--r--autodoc/source/ary/idl/ia_type.hxx170
-rw-r--r--autodoc/source/ary/idl/is_ce.cxx65
-rw-r--r--autodoc/source/ary/idl/is_ce.hxx79
-rw-r--r--autodoc/source/ary/idl/is_type.cxx83
-rw-r--r--autodoc/source/ary/idl/is_type.hxx122
-rw-r--r--autodoc/source/ary/idl/it_builtin.cxx79
-rw-r--r--autodoc/source/ary/idl/it_builtin.hxx76
-rw-r--r--autodoc/source/ary/idl/it_ce.cxx100
-rw-r--r--autodoc/source/ary/idl/it_ce.hxx88
-rw-r--r--autodoc/source/ary/idl/it_explicit.cxx100
-rw-r--r--autodoc/source/ary/idl/it_explicit.hxx93
-rw-r--r--autodoc/source/ary/idl/it_named.hxx76
-rw-r--r--autodoc/source/ary/idl/it_sequence.cxx91
-rw-r--r--autodoc/source/ary/idl/it_sequence.hxx84
-rw-r--r--autodoc/source/ary/idl/it_tplparam.cxx92
-rw-r--r--autodoc/source/ary/idl/it_tplparam.hxx98
-rw-r--r--autodoc/source/ary/idl/it_xnameroom.cxx100
-rw-r--r--autodoc/source/ary/idl/it_xnameroom.hxx123
-rw-r--r--autodoc/source/ary/idl/makefile.mk87
-rw-r--r--autodoc/source/ary/inc/cpp_internalgate.hxx66
-rw-r--r--autodoc/source/ary/inc/cross_refs.hxx99
-rw-r--r--autodoc/source/ary/inc/idl_internalgate.hxx66
-rw-r--r--autodoc/source/ary/inc/idsort.hxx52
-rw-r--r--autodoc/source/ary/inc/loc_internalgate.hxx63
-rw-r--r--autodoc/source/ary/inc/nametreenode.hxx210
-rw-r--r--autodoc/source/ary/inc/reposy.hxx91
-rw-r--r--autodoc/source/ary/inc/sci_impl.hxx413
-rw-r--r--autodoc/source/ary/inc/slots.hxx163
-rw-r--r--autodoc/source/ary/inc/sorted_idset.hxx97
-rw-r--r--autodoc/source/ary/inc/sortedids.hxx237
-rw-r--r--autodoc/source/ary/inc/store/s_base.hxx180
-rw-r--r--autodoc/source/ary/inc/store/s_iterator.hxx237
-rw-r--r--autodoc/source/ary/inc/store/s_storage.hxx294
-rw-r--r--autodoc/source/ary/inc/traits_impl.hxx119
-rw-r--r--autodoc/source/ary/info/all_dts.cxx105
-rw-r--r--autodoc/source/ary/info/all_tags.cxx569
-rw-r--r--autodoc/source/ary/info/ci_attag.cxx93
-rw-r--r--autodoc/source/ary/info/ci_text.cxx71
-rw-r--r--autodoc/source/ary/info/makefile.mk60
-rw-r--r--autodoc/source/ary/kernel/ary_disp.cxx108
-rw-r--r--autodoc/source/ary/kernel/cessentl.cxx86
-rw-r--r--autodoc/source/ary/kernel/makefile.mk63
-rw-r--r--autodoc/source/ary/kernel/namesort.cxx100
-rw-r--r--autodoc/source/ary/kernel/qualiname.cxx105
-rw-r--r--autodoc/source/ary/kernel/reposy.cxx218
-rw-r--r--autodoc/source/ary/kernel/slots.cxx164
-rw-r--r--autodoc/source/ary/loc/loc_dir.cxx134
-rw-r--r--autodoc/source/ary/loc/loc_file.cxx66
-rw-r--r--autodoc/source/ary/loc/loc_filebase.cxx63
-rw-r--r--autodoc/source/ary/loc/loc_root.cxx83
-rw-r--r--autodoc/source/ary/loc/loc_traits.cxx91
-rw-r--r--autodoc/source/ary/loc/loca_le.cxx181
-rw-r--r--autodoc/source/ary/loc/loca_le.hxx98
-rw-r--r--autodoc/source/ary/loc/locs_le.cxx67
-rw-r--r--autodoc/source/ary/loc/locs_le.hxx88
-rw-r--r--autodoc/source/ary/loc/makefile.mk61
-rw-r--r--autodoc/source/ary_i/kernel/ci_atag2.cxx57
-rw-r--r--autodoc/source/ary_i/kernel/ci_text2.cxx139
-rw-r--r--autodoc/source/ary_i/kernel/d_token.cxx187
-rw-r--r--autodoc/source/ary_i/kernel/makefile.mk60
-rw-r--r--autodoc/source/display/html/aryattrs.cxx248
-rw-r--r--autodoc/source/display/html/aryattrs.hxx154
-rw-r--r--autodoc/source/display/html/cfrstd.cxx344
-rw-r--r--autodoc/source/display/html/chd_udk2.cxx201
-rw-r--r--autodoc/source/display/html/cre_link.cxx269
-rw-r--r--autodoc/source/display/html/cre_link.hxx133
-rw-r--r--autodoc/source/display/html/dsply_cl.cxx108
-rw-r--r--autodoc/source/display/html/dsply_cl.hxx87
-rw-r--r--autodoc/source/display/html/dsply_da.cxx199
-rw-r--r--autodoc/source/display/html/dsply_da.hxx107
-rw-r--r--autodoc/source/display/html/dsply_op.cxx207
-rw-r--r--autodoc/source/display/html/dsply_op.hxx104
-rw-r--r--autodoc/source/display/html/easywri.cxx65
-rw-r--r--autodoc/source/display/html/easywri.hxx80
-rw-r--r--autodoc/source/display/html/hd_chlst.cxx589
-rw-r--r--autodoc/source/display/html/hd_chlst.hxx206
-rw-r--r--autodoc/source/display/html/hd_docu.cxx486
-rw-r--r--autodoc/source/display/html/hd_docu.hxx196
-rw-r--r--autodoc/source/display/html/hdimpl.cxx546
-rw-r--r--autodoc/source/display/html/hdimpl.hxx247
-rw-r--r--autodoc/source/display/html/html_kit.cxx305
-rw-r--r--autodoc/source/display/html/html_kit.hxx198
-rw-r--r--autodoc/source/display/html/makefile.mk78
-rw-r--r--autodoc/source/display/html/nav_main.cxx377
-rw-r--r--autodoc/source/display/html/nav_main.hxx118
-rw-r--r--autodoc/source/display/html/navibar.cxx315
-rw-r--r--autodoc/source/display/html/navibar.hxx118
-rw-r--r--autodoc/source/display/html/opageenv.cxx489
-rw-r--r--autodoc/source/display/html/opageenv.hxx128
-rw-r--r--autodoc/source/display/html/outfile.cxx392
-rw-r--r--autodoc/source/display/html/outfile.hxx86
-rw-r--r--autodoc/source/display/html/pagemake.cxx576
-rw-r--r--autodoc/source/display/html/pagemake.hxx164
-rw-r--r--autodoc/source/display/html/pm_aldef.cxx245
-rw-r--r--autodoc/source/display/html/pm_aldef.hxx88
-rw-r--r--autodoc/source/display/html/pm_base.cxx77
-rw-r--r--autodoc/source/display/html/pm_base.hxx88
-rw-r--r--autodoc/source/display/html/pm_class.cxx811
-rw-r--r--autodoc/source/display/html/pm_class.hxx131
-rw-r--r--autodoc/source/display/html/pm_help.cxx232
-rw-r--r--autodoc/source/display/html/pm_help.hxx63
-rw-r--r--autodoc/source/display/html/pm_index.cxx317
-rw-r--r--autodoc/source/display/html/pm_index.hxx135
-rw-r--r--autodoc/source/display/html/pm_namsp.cxx173
-rw-r--r--autodoc/source/display/html/pm_namsp.hxx78
-rw-r--r--autodoc/source/display/html/pm_start.cxx137
-rw-r--r--autodoc/source/display/html/pm_start.hxx63
-rw-r--r--autodoc/source/display/html/protarea.cxx138
-rw-r--r--autodoc/source/display/html/protarea.hxx94
-rw-r--r--autodoc/source/display/html/strconst.hxx78
-rw-r--r--autodoc/source/display/idl/hfi_constgroup.cxx138
-rw-r--r--autodoc/source/display/idl/hfi_constgroup.hxx66
-rw-r--r--autodoc/source/display/idl/hfi_doc.cxx191
-rw-r--r--autodoc/source/display/idl/hfi_doc.hxx85
-rw-r--r--autodoc/source/display/idl/hfi_enum.cxx133
-rw-r--r--autodoc/source/display/idl/hfi_enum.hxx68
-rw-r--r--autodoc/source/display/idl/hfi_globalindex.cxx275
-rw-r--r--autodoc/source/display/idl/hfi_globalindex.hxx89
-rw-r--r--autodoc/source/display/idl/hfi_hierarchy.cxx202
-rw-r--r--autodoc/source/display/idl/hfi_hierarchy.hxx124
-rw-r--r--autodoc/source/display/idl/hfi_interface.cxx357
-rw-r--r--autodoc/source/display/idl/hfi_interface.hxx90
-rw-r--r--autodoc/source/display/idl/hfi_linklist.cxx378
-rw-r--r--autodoc/source/display/idl/hfi_linklist.hxx145
-rw-r--r--autodoc/source/display/idl/hfi_method.cxx357
-rw-r--r--autodoc/source/display/idl/hfi_method.hxx104
-rw-r--r--autodoc/source/display/idl/hfi_module.cxx299
-rw-r--r--autodoc/source/display/idl/hfi_module.hxx83
-rw-r--r--autodoc/source/display/idl/hfi_navibar.cxx225
-rw-r--r--autodoc/source/display/idl/hfi_navibar.hxx82
-rw-r--r--autodoc/source/display/idl/hfi_property.cxx451
-rw-r--r--autodoc/source/display/idl/hfi_property.hxx182
-rw-r--r--autodoc/source/display/idl/hfi_service.cxx363
-rw-r--r--autodoc/source/display/idl/hfi_service.hxx99
-rw-r--r--autodoc/source/display/idl/hfi_singleton.cxx133
-rw-r--r--autodoc/source/display/idl/hfi_singleton.hxx69
-rw-r--r--autodoc/source/display/idl/hfi_siservice.cxx175
-rw-r--r--autodoc/source/display/idl/hfi_siservice.hxx72
-rw-r--r--autodoc/source/display/idl/hfi_struct.cxx203
-rw-r--r--autodoc/source/display/idl/hfi_struct.hxx78
-rw-r--r--autodoc/source/display/idl/hfi_tag.cxx354
-rw-r--r--autodoc/source/display/idl/hfi_tag.hxx177
-rw-r--r--autodoc/source/display/idl/hfi_typedef.cxx92
-rw-r--r--autodoc/source/display/idl/hfi_typedef.hxx65
-rw-r--r--autodoc/source/display/idl/hfi_typetext.cxx757
-rw-r--r--autodoc/source/display/idl/hfi_typetext.hxx158
-rw-r--r--autodoc/source/display/idl/hfi_xrefpage.cxx273
-rw-r--r--autodoc/source/display/idl/hfi_xrefpage.hxx104
-rw-r--r--autodoc/source/display/idl/hi_ary.cxx283
-rw-r--r--autodoc/source/display/idl/hi_ary.hxx162
-rw-r--r--autodoc/source/display/idl/hi_display.cxx207
-rw-r--r--autodoc/source/display/idl/hi_env.cxx199
-rw-r--r--autodoc/source/display/idl/hi_env.hxx161
-rw-r--r--autodoc/source/display/idl/hi_factory.cxx321
-rw-r--r--autodoc/source/display/idl/hi_factory.hxx169
-rw-r--r--autodoc/source/display/idl/hi_linkhelper.cxx96
-rw-r--r--autodoc/source/display/idl/hi_linkhelper.hxx107
-rw-r--r--autodoc/source/display/idl/hi_main.cxx764
-rw-r--r--autodoc/source/display/idl/hi_main.hxx178
-rw-r--r--autodoc/source/display/idl/makefile.mk77
-rw-r--r--autodoc/source/display/inc/cfrstd.hxx80
-rw-r--r--autodoc/source/display/inc/html/chd_udk2.hxx95
-rw-r--r--autodoc/source/display/inc/idl/hi_display.hxx111
-rw-r--r--autodoc/source/display/inc/toolkit/hf_docentry.hxx59
-rw-r--r--autodoc/source/display/inc/toolkit/hf_funcdecl.hxx104
-rw-r--r--autodoc/source/display/inc/toolkit/hf_linachain.hxx72
-rw-r--r--autodoc/source/display/inc/toolkit/hf_navi_main.hxx92
-rw-r--r--autodoc/source/display/inc/toolkit/hf_navi_sub.hxx81
-rw-r--r--autodoc/source/display/inc/toolkit/hf_title.hxx91
-rw-r--r--autodoc/source/display/inc/toolkit/htmlfactory.hxx102
-rw-r--r--autodoc/source/display/inc/toolkit/htmlfile.hxx86
-rw-r--r--autodoc/source/display/inc/toolkit/out_node.hxx129
-rw-r--r--autodoc/source/display/inc/toolkit/out_position.hxx117
-rw-r--r--autodoc/source/display/inc/toolkit/out_tree.hxx136
-rw-r--r--autodoc/source/display/inc/toolkit/outputstack.hxx73
-rw-r--r--autodoc/source/display/kernel/displfct.cxx89
-rw-r--r--autodoc/source/display/kernel/displfct.hxx63
-rw-r--r--autodoc/source/display/kernel/makefile.mk55
-rw-r--r--autodoc/source/display/toolkit/hf_docentry.cxx74
-rw-r--r--autodoc/source/display/toolkit/hf_funcdecl.cxx203
-rw-r--r--autodoc/source/display/toolkit/hf_linachain.cxx110
-rw-r--r--autodoc/source/display/toolkit/hf_navi_main.cxx238
-rw-r--r--autodoc/source/display/toolkit/hf_navi_sub.cxx103
-rw-r--r--autodoc/source/display/toolkit/hf_title.cxx169
-rw-r--r--autodoc/source/display/toolkit/htmlfile.cxx211
-rw-r--r--autodoc/source/display/toolkit/makefile.mk64
-rw-r--r--autodoc/source/display/toolkit/out_node.cxx189
-rw-r--r--autodoc/source/display/toolkit/out_position.cxx239
-rw-r--r--autodoc/source/display/toolkit/out_tree.cxx53
-rw-r--r--autodoc/source/display/toolkit/outputstack.cxx58
-rw-r--r--autodoc/source/exes/adc_uni/adc_cl.cxx568
-rw-r--r--autodoc/source/exes/adc_uni/adc_cmd.hxx131
-rw-r--r--autodoc/source/exes/adc_uni/adc_cmd_parse.cxx343
-rw-r--r--autodoc/source/exes/adc_uni/adc_cmd_parse.hxx208
-rw-r--r--autodoc/source/exes/adc_uni/adc_cmds.cxx177
-rw-r--r--autodoc/source/exes/adc_uni/adc_cmds.hxx125
-rw-r--r--autodoc/source/exes/adc_uni/adc_msg.cxx208
-rw-r--r--autodoc/source/exes/adc_uni/cmd_run.cxx613
-rw-r--r--autodoc/source/exes/adc_uni/cmd_run.hxx104
-rw-r--r--autodoc/source/exes/adc_uni/cmd_sincedata.cxx129
-rw-r--r--autodoc/source/exes/adc_uni/cmd_sincedata.hxx91
-rw-r--r--autodoc/source/exes/adc_uni/main.cxx54
-rw-r--r--autodoc/source/exes/adc_uni/makefile.mk104
-rw-r--r--autodoc/source/exes/adc_uni/spec-CommandLine.txt181
-rw-r--r--autodoc/source/exes/adc_uni/spec-DevGuideReferenceFile.txt0
-rw-r--r--autodoc/source/exes/adc_uni/spec-SinceTag_Handling.txt49
-rw-r--r--autodoc/source/inc/adc_cl.hxx193
-rw-r--r--autodoc/source/inc/adc_msg.hxx141
-rw-r--r--autodoc/source/inc/docu_node_ids.hxx64
-rw-r--r--autodoc/source/inc/estack.hxx94
-rw-r--r--autodoc/source/inc/luxenum.hxx103
-rw-r--r--autodoc/source/inc/manip.hxx61
-rw-r--r--autodoc/source/inc/precomp.h66
-rw-r--r--autodoc/source/inc/prprpr.hxx58
-rw-r--r--autodoc/source/inc/tools/filecoll.hxx69
-rw-r--r--autodoc/source/inc/tools/tkpchars.hxx170
-rw-r--r--autodoc/source/mkinc/fullcpp.mk54
-rw-r--r--autodoc/source/parser/adoc/a_rdocu.cxx90
-rw-r--r--autodoc/source/parser/adoc/adoc_tok.cxx47
-rw-r--r--autodoc/source/parser/adoc/cx_a_std.cxx516
-rw-r--r--autodoc/source/parser/adoc/cx_a_sub.cxx182
-rw-r--r--autodoc/source/parser/adoc/docu_pe.cxx403
-rw-r--r--autodoc/source/parser/adoc/makefile.mk62
-rw-r--r--autodoc/source/parser/adoc/prs_adoc.cxx57
-rw-r--r--autodoc/source/parser/adoc/tk_attag.cxx111
-rw-r--r--autodoc/source/parser/adoc/tk_docw.cxx128
-rw-r--r--autodoc/source/parser/cpp/all_toks.cxx151
-rw-r--r--autodoc/source/parser/cpp/all_toks.hxx219
-rw-r--r--autodoc/source/parser/cpp/c_dealer.cxx149
-rw-r--r--autodoc/source/parser/cpp/c_dealer.hxx108
-rw-r--r--autodoc/source/parser/cpp/c_rcode.cxx161
-rw-r--r--autodoc/source/parser/cpp/c_rcode.hxx104
-rw-r--r--autodoc/source/parser/cpp/cpp_pe.cxx78
-rw-r--r--autodoc/source/parser/cpp/cpp_pe.hxx81
-rw-r--r--autodoc/source/parser/cpp/cpp_tok.hxx63
-rw-r--r--autodoc/source/parser/cpp/cx_base.cxx77
-rw-r--r--autodoc/source/parser/cpp/cx_base.hxx96
-rw-r--r--autodoc/source/parser/cpp/cx_c_pp.cxx180
-rw-r--r--autodoc/source/parser/cpp/cx_c_pp.hxx95
-rw-r--r--autodoc/source/parser/cpp/cx_c_std.cxx529
-rw-r--r--autodoc/source/parser/cpp/cx_c_std.hxx92
-rw-r--r--autodoc/source/parser/cpp/cx_c_sub.cxx157
-rw-r--r--autodoc/source/parser/cpp/cx_c_sub.hxx103
-rw-r--r--autodoc/source/parser/cpp/cxt2ary.cxx357
-rw-r--r--autodoc/source/parser/cpp/cxt2ary.hxx198
-rw-r--r--autodoc/source/parser/cpp/defdescr.cxx225
-rw-r--r--autodoc/source/parser/cpp/defdescr.hxx97
-rw-r--r--autodoc/source/parser/cpp/fevnthdl.hxx105
-rw-r--r--autodoc/source/parser/cpp/icprivow.cxx192
-rw-r--r--autodoc/source/parser/cpp/icprivow.hxx123
-rw-r--r--autodoc/source/parser/cpp/makefile.mk87
-rw-r--r--autodoc/source/parser/cpp/pe_base.cxx224
-rw-r--r--autodoc/source/parser/cpp/pe_base.hxx123
-rw-r--r--autodoc/source/parser/cpp/pe_class.cxx503
-rw-r--r--autodoc/source/parser/cpp/pe_class.hxx256
-rw-r--r--autodoc/source/parser/cpp/pe_defs.cxx180
-rw-r--r--autodoc/source/parser/cpp/pe_defs.hxx94
-rw-r--r--autodoc/source/parser/cpp/pe_enum.cxx189
-rw-r--r--autodoc/source/parser/cpp/pe_enum.hxx138
-rw-r--r--autodoc/source/parser/cpp/pe_enval.cxx168
-rw-r--r--autodoc/source/parser/cpp/pe_enval.hxx99
-rw-r--r--autodoc/source/parser/cpp/pe_expr.cxx204
-rw-r--r--autodoc/source/parser/cpp/pe_expr.hxx105
-rw-r--r--autodoc/source/parser/cpp/pe_file.cxx317
-rw-r--r--autodoc/source/parser/cpp/pe_file.hxx209
-rw-r--r--autodoc/source/parser/cpp/pe_funct.cxx610
-rw-r--r--autodoc/source/parser/cpp/pe_funct.hxx281
-rw-r--r--autodoc/source/parser/cpp/pe_ignor.cxx116
-rw-r--r--autodoc/source/parser/cpp/pe_ignor.hxx75
-rw-r--r--autodoc/source/parser/cpp/pe_namsp.cxx163
-rw-r--r--autodoc/source/parser/cpp/pe_namsp.hxx99
-rw-r--r--autodoc/source/parser/cpp/pe_param.cxx280
-rw-r--r--autodoc/source/parser/cpp/pe_param.hxx138
-rw-r--r--autodoc/source/parser/cpp/pe_tpltp.cxx175
-rw-r--r--autodoc/source/parser/cpp/pe_tpltp.hxx106
-rw-r--r--autodoc/source/parser/cpp/pe_tydef.cxx143
-rw-r--r--autodoc/source/parser/cpp/pe_tydef.hxx90
-rw-r--r--autodoc/source/parser/cpp/pe_type.cxx554
-rw-r--r--autodoc/source/parser/cpp/pe_type.hxx185
-rw-r--r--autodoc/source/parser/cpp/pe_vafu.cxx649
-rw-r--r--autodoc/source/parser/cpp/pe_vafu.hxx289
-rw-r--r--autodoc/source/parser/cpp/pe_vari.cxx187
-rw-r--r--autodoc/source/parser/cpp/pe_vari.hxx130
-rw-r--r--autodoc/source/parser/cpp/pev.hxx304
-rw-r--r--autodoc/source/parser/cpp/preproc.cxx231
-rw-r--r--autodoc/source/parser/cpp/preproc.hxx116
-rw-r--r--autodoc/source/parser/cpp/prs_cpp.cxx248
-rw-r--r--autodoc/source/parser/cpp/sdocdist.hxx158
-rw-r--r--autodoc/source/parser/cpp/sfscope.hxx69
-rw-r--r--autodoc/source/parser/cpp/sownstck.hxx325
-rw-r--r--autodoc/source/parser/cpp/srecover.hxx132
-rw-r--r--autodoc/source/parser/cpp/tkp_cpp.cxx92
-rw-r--r--autodoc/source/parser/cpp/tkp_cpp.hxx99
-rw-r--r--autodoc/source/parser/cpp/tokintpr.hxx117
-rw-r--r--autodoc/source/parser/inc/adoc/a_rdocu.hxx71
-rw-r--r--autodoc/source/parser/inc/adoc/adoc_tok.hxx62
-rw-r--r--autodoc/source/parser/inc/adoc/atokdeal.hxx60
-rw-r--r--autodoc/source/parser/inc/adoc/cx_a_std.hxx105
-rw-r--r--autodoc/source/parser/inc/adoc/cx_a_sub.hxx146
-rw-r--r--autodoc/source/parser/inc/adoc/docu_pe.hxx192
-rw-r--r--autodoc/source/parser/inc/adoc/prs_adoc.hxx55
-rw-r--r--autodoc/source/parser/inc/adoc/tk_attag.hxx98
-rw-r--r--autodoc/source/parser/inc/adoc/tk_docw.hxx117
-rw-r--r--autodoc/source/parser/inc/adoc/tokintpr.hxx117
-rw-r--r--autodoc/source/parser/inc/cpp/ctokdeal.hxx74
-rw-r--r--autodoc/source/parser/inc/cpp/prs_cpp.hxx67
-rw-r--r--autodoc/source/parser/inc/doc_deal.hxx89
-rw-r--r--autodoc/source/parser/inc/semantic/callf.hxx287
-rw-r--r--autodoc/source/parser/inc/semantic/parseenv.hxx110
-rw-r--r--autodoc/source/parser/inc/semantic/sub_pe.hxx112
-rw-r--r--autodoc/source/parser/inc/semantic/sub_peu.hxx131
-rw-r--r--autodoc/source/parser/inc/tokens/parseinc.hxx203
-rw-r--r--autodoc/source/parser/inc/tokens/stmstarr.hxx85
-rw-r--r--autodoc/source/parser/inc/tokens/stmstate.hxx68
-rw-r--r--autodoc/source/parser/inc/tokens/stmstfin.hxx80
-rw-r--r--autodoc/source/parser/inc/tokens/tkp.hxx99
-rw-r--r--autodoc/source/parser/inc/tokens/tkpcontx.hxx140
-rw-r--r--autodoc/source/parser/inc/tokens/tkpstama.hxx123
-rw-r--r--autodoc/source/parser/inc/tokens/tokdeal.hxx77
-rw-r--r--autodoc/source/parser/inc/tokens/token.hxx66
-rw-r--r--autodoc/source/parser/inc/tokens/tokproct.hxx83
-rw-r--r--autodoc/source/parser/inc/x_docu.hxx58
-rw-r--r--autodoc/source/parser/inc/x_parse.hxx63
-rw-r--r--autodoc/source/parser/kernel/makefile.mk58
-rw-r--r--autodoc/source/parser/kernel/parsefct.cxx81
-rw-r--r--autodoc/source/parser/kernel/parsefct.hxx60
-rw-r--r--autodoc/source/parser/kernel/x_docu.cxx61
-rw-r--r--autodoc/source/parser/kernel/x_parse.cxx98
-rw-r--r--autodoc/source/parser/semantic/makefile.mk58
-rw-r--r--autodoc/source/parser/semantic/parseenv.cxx86
-rw-r--r--autodoc/source/parser/tokens/makefile.mk62
-rw-r--r--autodoc/source/parser/tokens/stmstarr.cxx99
-rw-r--r--autodoc/source/parser/tokens/stmstate.cxx46
-rw-r--r--autodoc/source/parser/tokens/stmstfin.cxx61
-rw-r--r--autodoc/source/parser/tokens/tkp.cxx72
-rw-r--r--autodoc/source/parser/tokens/tkpcontx.cxx68
-rw-r--r--autodoc/source/parser/tokens/tkpstama.cxx177
-rw-r--r--autodoc/source/parser/tokens/tokdeal.cxx50
-rw-r--r--autodoc/source/parser_i/idl/cx_idlco.cxx545
-rw-r--r--autodoc/source/parser_i/idl/cx_sub.cxx146
-rw-r--r--autodoc/source/parser_i/idl/distrib.cxx264
-rw-r--r--autodoc/source/parser_i/idl/makefile.mk84
-rw-r--r--autodoc/source/parser_i/idl/parsenv2.cxx212
-rw-r--r--autodoc/source/parser_i/idl/pe_attri.cxx294
-rw-r--r--autodoc/source/parser_i/idl/pe_const.cxx280
-rw-r--r--autodoc/source/parser_i/idl/pe_enum2.cxx251
-rw-r--r--autodoc/source/parser_i/idl/pe_evalu.cxx182
-rw-r--r--autodoc/source/parser_i/idl/pe_excp.cxx298
-rw-r--r--autodoc/source/parser_i/idl/pe_file2.cxx318
-rw-r--r--autodoc/source/parser_i/idl/pe_func2.cxx445
-rw-r--r--autodoc/source/parser_i/idl/pe_iface.cxx467
-rw-r--r--autodoc/source/parser_i/idl/pe_property.cxx238
-rw-r--r--autodoc/source/parser_i/idl/pe_selem.cxx205
-rw-r--r--autodoc/source/parser_i/idl/pe_servi.cxx393
-rw-r--r--autodoc/source/parser_i/idl/pe_singl.cxx272
-rw-r--r--autodoc/source/parser_i/idl/pe_struc.cxx327
-rw-r--r--autodoc/source/parser_i/idl/pe_tydf2.cxx184
-rw-r--r--autodoc/source/parser_i/idl/pe_type2.cxx314
-rw-r--r--autodoc/source/parser_i/idl/pe_vari2.cxx173
-rw-r--r--autodoc/source/parser_i/idl/pestate.cxx140
-rw-r--r--autodoc/source/parser_i/idl/semnode.cxx82
-rw-r--r--autodoc/source/parser_i/idl/tk_const.cxx57
-rw-r--r--autodoc/source/parser_i/idl/tk_ident.cxx68
-rw-r--r--autodoc/source/parser_i/idl/tk_keyw.cxx225
-rw-r--r--autodoc/source/parser_i/idl/tk_punct.cxx113
-rw-r--r--autodoc/source/parser_i/idl/tkp_uidl.cxx74
-rw-r--r--autodoc/source/parser_i/idl/unoidl.cxx176
-rw-r--r--autodoc/source/parser_i/idoc/cx_docu2.cxx267
-rw-r--r--autodoc/source/parser_i/idoc/cx_dsapi.cxx533
-rw-r--r--autodoc/source/parser_i/idoc/docu_pe2.cxx606
-rw-r--r--autodoc/source/parser_i/idoc/makefile.mk62
-rw-r--r--autodoc/source/parser_i/idoc/tk_atag2.cxx83
-rw-r--r--autodoc/source/parser_i/idoc/tk_docw2.cxx119
-rw-r--r--autodoc/source/parser_i/idoc/tk_html.cxx58
-rw-r--r--autodoc/source/parser_i/idoc/tk_xml.cxx174
-rw-r--r--autodoc/source/parser_i/inc/s2_dsapi/cx_docu2.hxx233
-rw-r--r--autodoc/source/parser_i/inc/s2_dsapi/cx_dsapi.hxx123
-rw-r--r--autodoc/source/parser_i/inc/s2_dsapi/docu_pe2.hxx174
-rw-r--r--autodoc/source/parser_i/inc/s2_dsapi/dsapitok.hxx65
-rw-r--r--autodoc/source/parser_i/inc/s2_dsapi/tk_atag2.hxx88
-rw-r--r--autodoc/source/parser_i/inc/s2_dsapi/tk_docw2.hxx121
-rw-r--r--autodoc/source/parser_i/inc/s2_dsapi/tk_html.hxx73
-rw-r--r--autodoc/source/parser_i/inc/s2_dsapi/tk_xml.hxx201
-rw-r--r--autodoc/source/parser_i/inc/s2_dsapi/tokintpr.hxx94
-rw-r--r--autodoc/source/parser_i/inc/s2_dsapi/tokrecv.hxx60
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/cx_idlco.hxx98
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/cx_sub.hxx131
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/distrib.hxx272
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/parsenv2.hxx142
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/pe_attri.hxx135
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/pe_const.hxx145
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/pe_enum2.hxx131
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/pe_evalu.hxx127
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/pe_excp.hxx259
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/pe_file2.hxx140
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/pe_func2.hxx167
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/pe_iface.hxx184
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/pe_modul.hxx63
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/pe_property.hxx123
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/pe_selem.hxx121
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/pe_servi.hxx149
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/pe_singl.hxx150
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/pe_struc.hxx285
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/pe_tydf2.hxx124
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/pe_type2.hxx116
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/pe_vari2.hxx107
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/pestate.hxx106
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/semnode.hxx132
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/smp_uidl.hxx82
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/tk_const.hxx64
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/tk_ident.hxx75
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/tk_keyw.hxx251
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/tk_punct.hxx113
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/tkp_uidl.hxx84
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/tokintpr.hxx98
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/tokproct.hxx93
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/tokrecv.hxx60
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/uidl_tok.hxx64
-rw-r--r--autodoc/source/parser_i/inc/semantic/parsenv2.hxx51
-rw-r--r--autodoc/source/parser_i/inc/tokens/stmstar2.hxx83
-rw-r--r--autodoc/source/parser_i/inc/tokens/stmstat2.hxx68
-rw-r--r--autodoc/source/parser_i/inc/tokens/stmstfi2.hxx80
-rw-r--r--autodoc/source/parser_i/inc/tokens/tkp2.hxx84
-rw-r--r--autodoc/source/parser_i/inc/tokens/tkpcont2.hxx123
-rw-r--r--autodoc/source/parser_i/inc/tokens/tkpstam2.hxx121
-rw-r--r--autodoc/source/parser_i/inc/tokens/token2.hxx63
-rw-r--r--autodoc/source/parser_i/inc/x_parse2.hxx67
-rw-r--r--autodoc/source/parser_i/tokens/makefile.mk63
-rw-r--r--autodoc/source/parser_i/tokens/stmstar2.cxx102
-rw-r--r--autodoc/source/parser_i/tokens/stmstat2.cxx46
-rw-r--r--autodoc/source/parser_i/tokens/stmstfi2.cxx61
-rw-r--r--autodoc/source/parser_i/tokens/tkp2.cxx62
-rw-r--r--autodoc/source/parser_i/tokens/tkpcont2.cxx65
-rw-r--r--autodoc/source/parser_i/tokens/tkpstam2.cxx174
-rw-r--r--autodoc/source/parser_i/tokens/x_parse2.cxx61
-rw-r--r--autodoc/source/tools/filecoll.cxx132
-rw-r--r--autodoc/source/tools/makefile.mk58
-rw-r--r--autodoc/source/tools/tkpchars.cxx159
-rw-r--r--automation/inc/automation/automation.hxx52
-rw-r--r--automation/inc/automation/commdefines.hxx148
-rw-r--r--automation/inc/automation/commtypes.hxx100
-rw-r--r--automation/inc/automation/communi.hxx180
-rw-r--r--automation/inc/automation/simplecm.hxx393
-rw-r--r--automation/inc/makefile.mk47
-rw-r--r--automation/inc/pch/precompiled_automation.cxx29
-rw-r--r--automation/inc/pch/precompiled_automation.hxx32
-rw-r--r--automation/packimages/makefile.mk63
-rw-r--r--automation/prj/build.lst11
-rw-r--r--automation/prj/d.lst27
-rw-r--r--automation/prj/l10n1
-rw-r--r--automation/source/app/makefile.mk52
-rw-r--r--automation/source/app/testbasi.cxx161
-rw-r--r--automation/source/app/testbasi.hxx64
-rw-r--r--automation/source/communi/communi.cxx596
-rw-r--r--automation/source/communi/makefile.mk44
-rw-r--r--automation/source/inc/cmdbasestream.hxx85
-rw-r--r--automation/source/inc/icommstream.hxx64
-rw-r--r--automation/source/inc/rcontrol.hxx496
-rw-r--r--automation/source/inc/sttresid.hxx42
-rw-r--r--automation/source/inc/svcommstream.hxx56
-rw-r--r--automation/source/inc/testapp.hxx195
-rw-r--r--automation/source/inc/testtool.hxx72
-rw-r--r--automation/source/miniapp/editwin.cxx127
-rw-r--r--automation/source/miniapp/editwin.hxx70
-rw-r--r--automation/source/miniapp/hid.lst27
-rw-r--r--automation/source/miniapp/makefile.mk54
-rw-r--r--automation/source/miniapp/servres.cxx60
-rw-r--r--automation/source/miniapp/servres.hrc40
-rw-r--r--automation/source/miniapp/servres.hxx81
-rw-r--r--automation/source/miniapp/servres.src233
-rw-r--r--automation/source/miniapp/servuid.hxx37
-rw-r--r--automation/source/miniapp/test.bas126
-rw-r--r--automation/source/miniapp/test.sid5
-rw-r--r--automation/source/miniapp/test.win13
-rw-r--r--automation/source/miniapp/testapp.cxx350
-rw-r--r--automation/source/miniapp/testapp.hxx125
-rw-r--r--automation/source/mozillaserver/makefile.mk153
-rw-r--r--automation/source/mozillaserver/mozillatesttoolserver.idl52
-rw-r--r--automation/source/mozillaserver/xmozillatesttoolserver.idl157
-rw-r--r--automation/source/server/XMLParser.cxx695
-rw-r--r--automation/source/server/cmdbasestream.cxx301
-rw-r--r--automation/source/server/editwin.cxx164
-rw-r--r--automation/source/server/editwin.hxx74
-rw-r--r--automation/source/server/makefile.mk71
-rw-r--r--automation/source/server/prof_nul.cxx96
-rw-r--r--automation/source/server/prof_usl.cxx136
-rw-r--r--automation/source/server/profiler.cxx264
-rw-r--r--automation/source/server/profiler.hxx137
-rw-r--r--automation/source/server/recorder.cxx1095
-rw-r--r--automation/source/server/recorder.hxx84
-rw-r--r--automation/source/server/retstrm.cxx122
-rw-r--r--automation/source/server/retstrm.hxx84
-rw-r--r--automation/source/server/scmdstrm.cxx215
-rw-r--r--automation/source/server/scmdstrm.hxx61
-rw-r--r--automation/source/server/server.cxx978
-rw-r--r--automation/source/server/server.hxx81
-rw-r--r--automation/source/server/sta_list.cxx1226
-rw-r--r--automation/source/server/statemnt.cxx6751
-rw-r--r--automation/source/server/statemnt.hxx500
-rw-r--r--automation/source/server/svcommstream.cxx48
-rw-r--r--automation/source/server/testtool.hrc55
-rw-r--r--automation/source/simplecm/communiio.hxx65
-rw-r--r--automation/source/simplecm/makefile.mk46
-rw-r--r--automation/source/simplecm/packethandler.cxx334
-rw-r--r--automation/source/simplecm/packethandler.hxx69
-rw-r--r--automation/source/simplecm/simplecm.cxx702
-rw-r--r--automation/source/simplecm/tcpio.cxx71
-rw-r--r--automation/source/simplecm/tcpio.hxx61
-rw-r--r--automation/source/testtool/cmdstrm.cxx470
-rw-r--r--automation/source/testtool/cmdstrm.hxx78
-rw-r--r--automation/source/testtool/comm_bas.cxx442
-rw-r--r--automation/source/testtool/comm_bas.hxx120
-rw-r--r--automation/source/testtool/cretstrm.cxx73
-rw-r--r--automation/source/testtool/cretstrm.hxx55
-rw-r--r--automation/source/testtool/filter.pl125
-rw-r--r--automation/source/testtool/httprequest.cxx239
-rw-r--r--automation/source/testtool/httprequest.hxx85
-rw-r--r--automation/source/testtool/makefile.mk109
-rw-r--r--automation/source/testtool/objtest.cxx4268
-rw-r--r--automation/source/testtool/objtest.hxx403
-rw-r--r--automation/source/testtool/registry_win.cxx89
-rw-r--r--automation/source/testtool/registry_win.hxx31
-rw-r--r--automation/source/testtool/sysdir_win.cxx105
-rw-r--r--automation/source/testtool/sysdir_win.hxx31
-rw-r--r--automation/source/testtool/tcommuni.cxx200
-rw-r--r--automation/source/testtool/tcommuni.hxx67
-rw-r--r--automation/source/testtool/testtool.ini19
-rw-r--r--automation/util/makefile.mk288
-rwxr-xr-xautomation/util/manually_added_ids.hid8
-rw-r--r--avmedia/inc/avmedia/mediaitem.hxx133
-rw-r--r--avmedia/inc/avmedia/mediaplayer.hxx96
-rw-r--r--avmedia/inc/avmedia/mediatoolbox.hxx65
-rw-r--r--avmedia/inc/avmedia/mediawindow.hxx170
-rw-r--r--avmedia/inc/helpids.hrc46
-rw-r--r--avmedia/inc/mediacontrol.hxx114
-rw-r--r--avmedia/prj/build.lst11
-rw-r--r--avmedia/prj/d.lst18
-rw-r--r--avmedia/source/framework/makefile.mk58
-rw-r--r--avmedia/source/framework/mediacontrol.cxx631
-rw-r--r--avmedia/source/framework/mediacontrol.hrc53
-rw-r--r--avmedia/source/framework/mediacontrol.src193
-rw-r--r--avmedia/source/framework/mediaitem.cxx329
-rw-r--r--avmedia/source/framework/mediamisc.cxx48
-rw-r--r--avmedia/source/framework/mediaplayer.cxx166
-rw-r--r--avmedia/source/framework/mediatoolbox.cxx168
-rw-r--r--avmedia/source/framework/soundhandler.cxx563
-rw-r--r--avmedia/source/framework/soundhandler.hxx187
-rw-r--r--avmedia/source/framework/soundhandler.xml49
-rw-r--r--avmedia/source/gstreamer/exports.dxp3
-rw-r--r--avmedia/source/gstreamer/gstcommon.hxx68
-rw-r--r--avmedia/source/gstreamer/gstframegrabber.cxx307
-rw-r--r--avmedia/source/gstreamer/gstframegrabber.hxx81
-rw-r--r--avmedia/source/gstreamer/gstmanager.cxx85
-rw-r--r--avmedia/source/gstreamer/gstmanager.hxx74
-rw-r--r--avmedia/source/gstreamer/gstplayer.cxx938
-rw-r--r--avmedia/source/gstreamer/gstplayer.hxx236
-rw-r--r--avmedia/source/gstreamer/gstuno.cxx106
-rw-r--r--avmedia/source/gstreamer/gstwindow.cxx668
-rw-r--r--avmedia/source/gstreamer/gstwindow.hxx197
-rw-r--r--avmedia/source/gstreamer/makefile.mk71
-rw-r--r--avmedia/source/inc/mediamisc.hxx63
-rw-r--r--avmedia/source/java/FrameGrabber.java190
-rw-r--r--avmedia/source/java/Manager.java148
-rw-r--r--avmedia/source/java/MediaUno.java76
-rw-r--r--avmedia/source/java/Player.java325
-rw-r--r--avmedia/source/java/PlayerWindow.java600
-rw-r--r--avmedia/source/java/WindowAdapter.java508
-rw-r--r--avmedia/source/java/avmedia.jarbin0 -> 15776 bytes-rw-r--r--avmedia/source/java/makefile.mk61
-rw-r--r--avmedia/source/java/manifest2
-rw-r--r--avmedia/source/java/win/SystemWindowAdapter.java53
-rw-r--r--avmedia/source/java/x11/SystemWindowAdapter.java123
-rw-r--r--avmedia/source/quicktime/framegrabber.cxx152
-rw-r--r--avmedia/source/quicktime/framegrabber.hxx73
-rw-r--r--avmedia/source/quicktime/makefile.mk85
-rw-r--r--avmedia/source/quicktime/manager.cxx96
-rw-r--r--avmedia/source/quicktime/manager.hxx66
-rw-r--r--avmedia/source/quicktime/player.cxx501
-rw-r--r--avmedia/source/quicktime/player.hxx113
-rw-r--r--avmedia/source/quicktime/quicktimecommon.hxx81
-rw-r--r--avmedia/source/quicktime/quicktimeuno.cxx106
-rw-r--r--avmedia/source/quicktime/window.cxx353
-rw-r--r--avmedia/source/quicktime/window.hxx115
-rw-r--r--avmedia/source/viewer/makefile.mk57
-rw-r--r--avmedia/source/viewer/mediaevent_impl.cxx223
-rw-r--r--avmedia/source/viewer/mediaevent_impl.hxx89
-rw-r--r--avmedia/source/viewer/mediawindow.cxx573
-rw-r--r--avmedia/source/viewer/mediawindow.hrc9
-rw-r--r--avmedia/source/viewer/mediawindow.src77
-rw-r--r--avmedia/source/viewer/mediawindow_impl.cxx547
-rw-r--r--avmedia/source/viewer/mediawindow_impl.hxx148
-rw-r--r--avmedia/source/viewer/mediawindowbase_impl.cxx467
-rw-r--r--avmedia/source/viewer/mediawindowbase_impl.hxx134
-rw-r--r--avmedia/source/win/exports.dxp4
-rw-r--r--avmedia/source/win/framegrabber.cxx247
-rw-r--r--avmedia/source/win/framegrabber.hxx74
-rw-r--r--avmedia/source/win/interface.hxx123
-rw-r--r--avmedia/source/win/makefile.mk82
-rw-r--r--avmedia/source/win/manager.cxx97
-rw-r--r--avmedia/source/win/manager.hxx66
-rw-r--r--avmedia/source/win/player.cxx494
-rw-r--r--avmedia/source/win/player.hxx123
-rw-r--r--avmedia/source/win/wincommon.hxx56
-rw-r--r--avmedia/source/win/window.cxx740
-rw-r--r--avmedia/source/win/window.hxx125
-rw-r--r--avmedia/source/win/winuno.cxx104
-rw-r--r--avmedia/source/xine/exports.dxp4
-rw-r--r--avmedia/source/xine/makefile.mk64
-rw-r--r--avmedia/source/xine/manager.cxx91
-rw-r--r--avmedia/source/xine/manager.hxx66
-rw-r--r--avmedia/source/xine/player.cxx262
-rw-r--r--avmedia/source/xine/player.hxx84
-rw-r--r--avmedia/source/xine/window.cxx571
-rw-r--r--avmedia/source/xine/window.hxx114
-rw-r--r--avmedia/source/xine/xinecommon.hxx65
-rw-r--r--avmedia/source/xine/xineuno.cxx106
-rwxr-xr-xavmedia/util/hidother.src41
-rw-r--r--avmedia/util/makefile.mk79
-rw-r--r--basctl/inc/basidesh.hrc192
-rw-r--r--basctl/inc/helpid.hrc85
-rw-r--r--basctl/inc/iderdll.hxx54
-rw-r--r--basctl/inc/makefile.mk48
-rw-r--r--basctl/inc/pch/precompiled_basctl.cxx29
-rw-r--r--basctl/inc/pch/precompiled_basctl.hxx211
-rw-r--r--basctl/prj/build.lst9
-rw-r--r--basctl/prj/d.lst23
-rw-r--r--basctl/sdi/baside.sdi470
-rw-r--r--basctl/sdi/basslots.hrc29
-rw-r--r--basctl/sdi/basslots.sdi47
-rw-r--r--basctl/sdi/makefile.mk54
-rw-r--r--basctl/source/accessibility/accessibledialogcontrolshape.cxx619
-rw-r--r--basctl/source/accessibility/accessibledialogwindow.cxx1123
-rw-r--r--basctl/source/accessibility/makefile.mk48
-rw-r--r--basctl/source/basicide/basdoc.cxx135
-rw-r--r--basctl/source/basicide/basdoc.hxx66
-rw-r--r--basctl/source/basicide/basicbox.cxx546
-rw-r--r--basctl/source/basicide/basicbox.hxx152
-rw-r--r--basctl/source/basicide/basicmod.hxx46
-rw-r--r--basctl/source/basicide/basicprint.src40
-rw-r--r--basctl/source/basicide/basicrenderable.cxx194
-rw-r--r--basctl/source/basicide/basicrenderable.hxx73
-rw-r--r--basctl/source/basicide/baside2.cxx1771
-rw-r--r--basctl/source/basicide/baside2.hrc50
-rw-r--r--basctl/source/basicide/baside2.hxx506
-rw-r--r--basctl/source/basicide/baside2b.cxx2320
-rw-r--r--basctl/source/basicide/baside3.cxx1411
-rw-r--r--basctl/source/basicide/basidectrlr.cxx152
-rw-r--r--basctl/source/basicide/basides1.cxx1441
-rw-r--r--basctl/source/basicide/basides2.cxx351
-rw-r--r--basctl/source/basicide/basides3.cxx177
-rw-r--r--basctl/source/basicide/basidesh.cxx1063
-rw-r--r--basctl/source/basicide/basidesh.src747
-rw-r--r--basctl/source/basicide/basobj2.cxx403
-rw-r--r--basctl/source/basicide/basobj3.cxx528
-rw-r--r--basctl/source/basicide/bastype2.cxx900
-rw-r--r--basctl/source/basicide/bastype2.hxx219
-rw-r--r--basctl/source/basicide/bastype3.cxx506
-rw-r--r--basctl/source/basicide/bastype3.hxx64
-rw-r--r--basctl/source/basicide/bastype4.hxx67
-rw-r--r--basctl/source/basicide/bastypes.cxx1024
-rw-r--r--basctl/source/basicide/brkdlg.cxx280
-rw-r--r--basctl/source/basicide/brkdlg.hrc45
-rw-r--r--basctl/source/basicide/brkdlg.hxx74
-rw-r--r--basctl/source/basicide/brkdlg.src130
-rw-r--r--basctl/source/basicide/doceventnotifier.cxx276
-rw-r--r--basctl/source/basicide/docsignature.cxx115
-rw-r--r--basctl/source/basicide/documentenumeration.cxx203
-rw-r--r--basctl/source/basicide/documentenumeration.hxx106
-rw-r--r--basctl/source/basicide/ide_pch.cxx31
-rw-r--r--basctl/source/basicide/ide_pch.hxx70
-rw-r--r--basctl/source/basicide/iderdll.cxx230
-rw-r--r--basctl/source/basicide/iderdll2.hxx108
-rw-r--r--basctl/source/basicide/idetemp.hxx65
-rw-r--r--basctl/source/basicide/localizationmgr.cxx1226
-rw-r--r--basctl/source/basicide/macrodlg.cxx919
-rw-r--r--basctl/source/basicide/macrodlg.hrc59
-rw-r--r--basctl/source/basicide/macrodlg.hxx113
-rw-r--r--basctl/source/basicide/macrodlg.src231
-rw-r--r--basctl/source/basicide/makefile.mk100
-rw-r--r--basctl/source/basicide/moduldl2.cxx1728
-rw-r--r--basctl/source/basicide/moduldlg.cxx1070
-rw-r--r--basctl/source/basicide/moduldlg.hrc68
-rw-r--r--basctl/source/basicide/moduldlg.hxx276
-rw-r--r--basctl/source/basicide/moduldlg.src411
-rw-r--r--basctl/source/basicide/moptions.hrc47
-rw-r--r--basctl/source/basicide/moptions.src147
-rw-r--r--basctl/source/basicide/objdlg.cxx306
-rw-r--r--basctl/source/basicide/objdlg.hrc40
-rw-r--r--basctl/source/basicide/objdlg.hxx97
-rw-r--r--basctl/source/basicide/objdlg.src93
-rw-r--r--basctl/source/basicide/register.cxx118
-rw-r--r--basctl/source/basicide/scriptdocument.cxx1630
-rw-r--r--basctl/source/basicide/tbxctl.cxx241
-rw-r--r--basctl/source/basicide/tbxctl.hrc30
-rw-r--r--basctl/source/basicide/tbxctl.hxx93
-rw-r--r--basctl/source/basicide/tbxctl.src273
-rw-r--r--basctl/source/basicide/unomodel.cxx128
-rw-r--r--basctl/source/basicide/unomodel.hxx66
-rw-r--r--basctl/source/dlged/dlged.cxx1423
-rw-r--r--basctl/source/dlged/dlgedclip.cxx149
-rw-r--r--basctl/source/dlged/dlgedfac.cxx268
-rw-r--r--basctl/source/dlged/dlgedfunc.cxx637
-rw-r--r--basctl/source/dlged/dlgedlist.cxx127
-rw-r--r--basctl/source/dlged/dlgedmod.cxx79
-rw-r--r--basctl/source/dlged/dlgedobj.cxx1896
-rw-r--r--basctl/source/dlged/dlgedpage.cxx86
-rw-r--r--basctl/source/dlged/dlgedview.cxx216
-rw-r--r--basctl/source/dlged/dlgresid.src175
-rw-r--r--basctl/source/dlged/makefile.mk63
-rw-r--r--basctl/source/dlged/managelang.cxx430
-rw-r--r--basctl/source/dlged/managelang.hrc106
-rw-r--r--basctl/source/dlged/managelang.src232
-rw-r--r--basctl/source/dlged/propbrw.cxx628
-rw-r--r--basctl/source/inc/accessibledialogcontrolshape.hxx147
-rw-r--r--basctl/source/inc/accessibledialogwindow.hxx175
-rw-r--r--basctl/source/inc/baside3.hxx119
-rw-r--r--basctl/source/inc/basidectrlr.hxx74
-rw-r--r--basctl/source/inc/basidesh.hxx242
-rw-r--r--basctl/source/inc/basobj.hxx127
-rw-r--r--basctl/source/inc/bastypes.hxx340
-rw-r--r--basctl/source/inc/dlged.hxx209
-rw-r--r--basctl/source/inc/dlgedclip.hxx65
-rw-r--r--basctl/source/inc/dlgeddef.hxx83
-rw-r--r--basctl/source/inc/dlgedfac.hxx49
-rw-r--r--basctl/source/inc/dlgedfunc.hxx95
-rw-r--r--basctl/source/inc/dlgedlist.hxx84
-rw-r--r--basctl/source/inc/dlgedmod.hxx65
-rw-r--r--basctl/source/inc/dlgedobj.hxx196
-rw-r--r--basctl/source/inc/dlgedpage.hxx61
-rw-r--r--basctl/source/inc/dlgedview.hxx60
-rw-r--r--basctl/source/inc/dlgresid.hrc77
-rw-r--r--basctl/source/inc/doceventnotifier.hxx96
-rw-r--r--basctl/source/inc/docsignature.hxx89
-rw-r--r--basctl/source/inc/iderid.hxx40
-rw-r--r--basctl/source/inc/localizationmgr.hxx155
-rw-r--r--basctl/source/inc/managelang.hxx125
-rw-r--r--basctl/source/inc/propbrw.hxx115
-rw-r--r--basctl/source/inc/sbxitem.hxx76
-rw-r--r--basctl/source/inc/scriptdocument.hxx537
-rw-r--r--basctl/source/inc/svheader.hxx89
-rw-r--r--basctl/uiconfig/basicide/menubar/menubar.xml91
-rw-r--r--basctl/uiconfig/basicide/statusbar/statusbar.xml10
-rw-r--r--basctl/uiconfig/basicide/toolbar/dialogbar.xml9
-rw-r--r--basctl/uiconfig/basicide/toolbar/fullscreenbar.xml5
-rw-r--r--basctl/uiconfig/basicide/toolbar/insertcontrolsbar.xml43
-rw-r--r--basctl/uiconfig/basicide/toolbar/macrobar.xml22
-rw-r--r--basctl/uiconfig/basicide/toolbar/standardbar.xml25
-rw-r--r--basctl/uiconfig/basicide/toolbar/translationbar.xml6
-rwxr-xr-xbasctl/util/basctl.map11
-rw-r--r--basctl/util/basctl.xml23
-rw-r--r--basctl/util/hidother.hrc27
-rw-r--r--basctl/util/hidother.src45
-rw-r--r--basctl/util/makefile.mk105
-rw-r--r--basctl/util/makefile.pmk28
-rw-r--r--basebmp/inc/basebmp/accessor.hxx119
-rw-r--r--basebmp/inc/basebmp/accessoradapters.hxx526
-rw-r--r--basebmp/inc/basebmp/accessorfunctors.hxx187
-rw-r--r--basebmp/inc/basebmp/accessortraits.hxx130
-rw-r--r--basebmp/inc/basebmp/bitmapdevice.hxx692
-rw-r--r--basebmp/inc/basebmp/clippedlinerenderer.hxx412
-rw-r--r--basebmp/inc/basebmp/color.hxx99
-rw-r--r--basebmp/inc/basebmp/colorblendaccessoradapter.hxx148
-rw-r--r--basebmp/inc/basebmp/colormisc.hxx191
-rw-r--r--basebmp/inc/basebmp/colortraits.hxx150
-rwxr-xr-xbasebmp/inc/basebmp/compositeiterator.hxx367
-rw-r--r--basebmp/inc/basebmp/debug.hxx50
-rw-r--r--basebmp/inc/basebmp/drawmodes.hxx55
-rw-r--r--basebmp/inc/basebmp/endian.hxx57
-rw-r--r--basebmp/inc/basebmp/fillimage.hxx69
-rw-r--r--basebmp/inc/basebmp/genericcolorimageaccessor.hxx82
-rw-r--r--basebmp/inc/basebmp/greylevelformats.hxx135
-rw-r--r--basebmp/inc/basebmp/iteratortraits.hxx55
-rw-r--r--basebmp/inc/basebmp/linerenderer.hxx181
-rw-r--r--basebmp/inc/basebmp/metafunctions.hxx222
-rw-r--r--basebmp/inc/basebmp/nonstandarditerator.hxx45
-rw-r--r--basebmp/inc/basebmp/packedpixeliterator.hxx677
-rw-r--r--basebmp/inc/basebmp/paletteformats.hxx147
-rw-r--r--basebmp/inc/basebmp/paletteimageaccessor.hxx168
-rw-r--r--basebmp/inc/basebmp/pixelformatadapters.hxx108
-rw-r--r--basebmp/inc/basebmp/pixeliterator.hxx355
-rw-r--r--basebmp/inc/basebmp/polypolygonrenderer.hxx366
-rw-r--r--basebmp/inc/basebmp/rgb24pixelformats.hxx98
-rw-r--r--basebmp/inc/basebmp/rgbmaskpixelformats.hxx289
-rw-r--r--basebmp/inc/basebmp/scaleimage.hxx195
-rw-r--r--basebmp/inc/basebmp/scanlineformats.hxx56
-rw-r--r--basebmp/inc/basebmp/stridedarrayiterator.hxx114
-rw-r--r--basebmp/inc/basebmp/tools.hxx91
-rw-r--r--basebmp/inc/basebmp/truecolormaskaccessor.hxx290
-rw-r--r--basebmp/prj/build.lst5
-rw-r--r--basebmp/prj/d.lst9
-rw-r--r--basebmp/source/bitmapdevice.cxx2064
-rw-r--r--basebmp/source/debug.cxx106
-rw-r--r--basebmp/source/intconversion.hxx88
-rw-r--r--basebmp/source/makefile.mk76
-rw-r--r--basebmp/source/polypolygonrenderer.cxx127
-rw-r--r--basebmp/test/basictest.cxx302
-rw-r--r--basebmp/test/bmpdemo.cxx1256
-rw-r--r--basebmp/test/bmpmasktest.cxx193
-rw-r--r--basebmp/test/bmptest.cxx220
-rw-r--r--basebmp/test/cliptest.cxx287
-rw-r--r--basebmp/test/export.map34
-rw-r--r--basebmp/test/filltest.cxx281
-rw-r--r--basebmp/test/linetest.cxx229
-rw-r--r--basebmp/test/makefile.mk132
-rw-r--r--basebmp/test/masktest.cxx181
-rw-r--r--basebmp/test/polytest.cxx301
-rw-r--r--basebmp/test/tools.cxx49
-rw-r--r--basebmp/test/tools.hxx31
-rw-r--r--basebmp/util/basebmp.flt4
-rw-r--r--basebmp/util/makefile.mk66
-rw-r--r--basegfx/inc/basegfx/color/bcolor.hxx237
-rw-r--r--basegfx/inc/basegfx/color/bcolormodifier.hxx143
-rw-r--r--basegfx/inc/basegfx/color/bcolortools.hxx72
-rw-r--r--basegfx/inc/basegfx/curve/b2dbeziertools.hxx63
-rw-r--r--basegfx/inc/basegfx/curve/b2dcubicbezier.hxx222
-rw-r--r--basegfx/inc/basegfx/curve/b2dquadraticbezier.hxx73
-rw-r--r--basegfx/inc/basegfx/matrix/b2dhommatrix.hxx168
-rw-r--r--basegfx/inc/basegfx/matrix/b2dhommatrixtools.hxx234
-rw-r--r--basegfx/inc/basegfx/matrix/b3dhommatrix.hxx175
-rw-r--r--basegfx/inc/basegfx/numeric/ftools.hxx203
-rw-r--r--basegfx/inc/basegfx/pixel/bpixel.hxx222
-rw-r--r--basegfx/inc/basegfx/point/b2dhompoint.hxx235
-rw-r--r--basegfx/inc/basegfx/point/b2dpoint.hxx151
-rw-r--r--basegfx/inc/basegfx/point/b2ipoint.hxx127
-rw-r--r--basegfx/inc/basegfx/point/b3dhompoint.hxx405
-rw-r--r--basegfx/inc/basegfx/point/b3dpoint.hxx150
-rw-r--r--basegfx/inc/basegfx/point/b3ipoint.hxx139
-rw-r--r--basegfx/inc/basegfx/polygon/b2dlinegeometry.hxx144
-rw-r--r--basegfx/inc/basegfx/polygon/b2dpolygon.hxx274
-rw-r--r--basegfx/inc/basegfx/polygon/b2dpolygonclipper.hxx82
-rw-r--r--basegfx/inc/basegfx/polygon/b2dpolygoncutandtouch.hxx81
-rw-r--r--basegfx/inc/basegfx/polygon/b2dpolygontools.hxx534
-rw-r--r--basegfx/inc/basegfx/polygon/b2dpolygontriangulator.hxx49
-rw-r--r--basegfx/inc/basegfx/polygon/b2dpolypolygon.hxx137
-rw-r--r--basegfx/inc/basegfx/polygon/b2dpolypolygoncutter.hxx119
-rw-r--r--basegfx/inc/basegfx/polygon/b2dpolypolygonfillrule.hxx60
-rw-r--r--basegfx/inc/basegfx/polygon/b2dpolypolygonrasterconverter.hxx141
-rw-r--r--basegfx/inc/basegfx/polygon/b2dpolypolygontools.hxx279
-rw-r--r--basegfx/inc/basegfx/polygon/b2dtrapezoid.hxx132
-rw-r--r--basegfx/inc/basegfx/polygon/b3dpolygon.hxx141
-rw-r--r--basegfx/inc/basegfx/polygon/b3dpolygonclipper.hxx86
-rw-r--r--basegfx/inc/basegfx/polygon/b3dpolygontools.hxx191
-rw-r--r--basegfx/inc/basegfx/polygon/b3dpolypolygon.hxx125
-rw-r--r--basegfx/inc/basegfx/polygon/b3dpolypolygontools.hxx154
-rw-r--r--basegfx/inc/basegfx/range/b1drange.hxx165
-rw-r--r--basegfx/inc/basegfx/range/b1ibox.hxx143
-rw-r--r--basegfx/inc/basegfx/range/b1irange.hxx144
-rw-r--r--basegfx/inc/basegfx/range/b2dconnectedranges.hxx263
-rw-r--r--basegfx/inc/basegfx/range/b2dpolyrange.hxx145
-rw-r--r--basegfx/inc/basegfx/range/b2drange.hxx295
-rw-r--r--basegfx/inc/basegfx/range/b2drangeclipper.hxx53
-rw-r--r--basegfx/inc/basegfx/range/b2drectangle.hxx42
-rw-r--r--basegfx/inc/basegfx/range/b2ibox.hxx251
-rw-r--r--basegfx/inc/basegfx/range/b2irange.hxx254
-rw-r--r--basegfx/inc/basegfx/range/b2irectangle.hxx42
-rw-r--r--basegfx/inc/basegfx/range/b3drange.hxx302
-rw-r--r--basegfx/inc/basegfx/range/b3dvolume.hxx42
-rw-r--r--basegfx/inc/basegfx/range/b3ibox.hxx259
-rw-r--r--basegfx/inc/basegfx/range/b3irange.hxx262
-rw-r--r--basegfx/inc/basegfx/range/b3ivolume.hxx42
-rw-r--r--basegfx/inc/basegfx/range/basicbox.hxx136
-rw-r--r--basegfx/inc/basegfx/range/basicrange.hxx297
-rw-r--r--basegfx/inc/basegfx/range/rangeexpander.hxx83
-rw-r--r--basegfx/inc/basegfx/raster/bpixelraster.hxx116
-rw-r--r--basegfx/inc/basegfx/raster/bzpixelraster.hxx96
-rw-r--r--basegfx/inc/basegfx/raster/rasterconvert3d.hxx345
-rw-r--r--basegfx/inc/basegfx/tools/b2dclipstate.hxx119
-rwxr-xr-xbasegfx/inc/basegfx/tools/canvastools.hxx221
-rw-r--r--basegfx/inc/basegfx/tools/debugplotter.hxx107
-rw-r--r--basegfx/inc/basegfx/tools/gradienttools.hxx410
-rw-r--r--basegfx/inc/basegfx/tools/keystoplerp.hxx100
-rw-r--r--basegfx/inc/basegfx/tools/lerp.hxx60
-rw-r--r--basegfx/inc/basegfx/tools/rectcliptools.hxx88
-rw-r--r--basegfx/inc/basegfx/tools/tools.hxx131
-rwxr-xr-xbasegfx/inc/basegfx/tools/unopolypolygon.hxx112
-rw-r--r--basegfx/inc/basegfx/tuple/b2dtuple.hxx359
-rw-r--r--basegfx/inc/basegfx/tuple/b2i64tuple.hxx312
-rw-r--r--basegfx/inc/basegfx/tuple/b2ituple.hxx237
-rw-r--r--basegfx/inc/basegfx/tuple/b3dtuple.hxx433
-rw-r--r--basegfx/inc/basegfx/tuple/b3i64tuple.hxx349
-rw-r--r--basegfx/inc/basegfx/tuple/b3ituple.hxx349
-rw-r--r--basegfx/inc/basegfx/vector/b2dsize.hxx42
-rw-r--r--basegfx/inc/basegfx/vector/b2dvector.hxx267
-rw-r--r--basegfx/inc/basegfx/vector/b2enums.hxx76
-rw-r--r--basegfx/inc/basegfx/vector/b2isize.hxx42
-rw-r--r--basegfx/inc/basegfx/vector/b2ivector.hxx230
-rw-r--r--basegfx/inc/basegfx/vector/b3dsize.hxx42
-rw-r--r--basegfx/inc/basegfx/vector/b3dvector.hxx340
-rw-r--r--basegfx/inc/basegfx/vector/b3isize.hxx42
-rw-r--r--basegfx/inc/basegfx/vector/b3ivector.hxx259
-rw-r--r--basegfx/inc/makefile.mk47
-rw-r--r--basegfx/inc/pch/precompiled_basegfx.cxx29
-rw-r--r--basegfx/inc/pch/precompiled_basegfx.hxx32
-rw-r--r--basegfx/prj/build.lst18
-rw-r--r--basegfx/prj/d.lst113
-rw-r--r--basegfx/qa/mkpolygons.pl344
-rw-r--r--basegfx/source/color/bcolor.cxx40
-rw-r--r--basegfx/source/color/bcolormodifier.cxx72
-rw-r--r--basegfx/source/color/bcolortools.cxx268
-rw-r--r--basegfx/source/color/makefile.mk49
-rw-r--r--basegfx/source/curve/b2dbeziertools.cxx163
-rw-r--r--basegfx/source/curve/b2dcubicbezier.cxx1105
-rw-r--r--basegfx/source/curve/b2dquadraticbezier.cxx105
-rw-r--r--basegfx/source/curve/makefile.mk49
-rw-r--r--basegfx/source/inc/PolygonPoint.hxx538
-rw-r--r--basegfx/source/inc/hommatrixtemplate.hxx613
-rw-r--r--basegfx/source/inc/polygontemplate.hxx538
-rw-r--r--basegfx/source/matrix/b2dhommatrix.cxx454
-rw-r--r--basegfx/source/matrix/b2dhommatrixtools.cxx401
-rw-r--r--basegfx/source/matrix/b3dhommatrix.cxx596
-rw-r--r--basegfx/source/matrix/makefile.mk49
-rw-r--r--basegfx/source/numeric/ftools.cxx38
-rw-r--r--basegfx/source/numeric/makefile.mk47
-rw-r--r--basegfx/source/pixel/bpixel.cxx51
-rw-r--r--basegfx/source/pixel/makefile.mk47
-rw-r--r--basegfx/source/point/b2dhompoint.cxx259
-rw-r--r--basegfx/source/point/b2dpoint.cxx85
-rw-r--r--basegfx/source/point/b2ipoint.cxx76
-rw-r--r--basegfx/source/point/b3dhompoint.cxx44
-rw-r--r--basegfx/source/point/b3dpoint.cxx85
-rw-r--r--basegfx/source/point/b3ipoint.cxx79
-rw-r--r--basegfx/source/point/makefile.mk52
-rw-r--r--basegfx/source/polygon/b2dlinegeometry.cxx725
-rw-r--r--basegfx/source/polygon/b2dpolygon.cxx1652
-rw-r--r--basegfx/source/polygon/b2dpolygonclipper.cxx873
-rw-r--r--basegfx/source/polygon/b2dpolygoncutandtouch.cxx1301
-rw-r--r--basegfx/source/polygon/b2dpolygontools.cxx3613
-rw-r--r--basegfx/source/polygon/b2dpolygontriangulator.cxx466
-rw-r--r--basegfx/source/polygon/b2dpolypolygon.cxx432
-rw-r--r--basegfx/source/polygon/b2dpolypolygoncutter.cxx1014
-rw-r--r--basegfx/source/polygon/b2dpolypolygonrasterconverter.cxx702
-rw-r--r--basegfx/source/polygon/b2dpolypolygontools.cxx585
-rw-r--r--basegfx/source/polygon/b2dsvgpolypolygon.cxx1108
-rw-r--r--basegfx/source/polygon/b2dtrapezoid.cxx1228
-rw-r--r--basegfx/source/polygon/b3dpolygon.cxx1816
-rw-r--r--basegfx/source/polygon/b3dpolygonclipper.cxx574
-rw-r--r--basegfx/source/polygon/b3dpolygontools.cxx1263
-rw-r--r--basegfx/source/polygon/b3dpolypolygon.cxx446
-rw-r--r--basegfx/source/polygon/b3dpolypolygontools.cxx556
-rw-r--r--basegfx/source/polygon/makefile.mk63
-rw-r--r--basegfx/source/range/b1drange.cxx56
-rw-r--r--basegfx/source/range/b2dpolyrange.cxx423
-rw-r--r--basegfx/source/range/b2drange.cxx74
-rw-r--r--basegfx/source/range/b2drangeclipper.cxx950
-rw-r--r--basegfx/source/range/b2xrange.cxx142
-rw-r--r--basegfx/source/range/b3drange.cxx85
-rw-r--r--basegfx/source/range/makefile.mk52
-rw-r--r--basegfx/source/raster/bpixelraster.cxx40
-rw-r--r--basegfx/source/raster/bzpixelraster.cxx40
-rw-r--r--basegfx/source/raster/makefile.mk49
-rw-r--r--basegfx/source/raster/rasterconvert3d.cxx353
-rw-r--r--basegfx/source/tools/b2dclipstate.cxx662
-rwxr-xr-xbasegfx/source/tools/canvastools.cxx674
-rwxr-xr-xbasegfx/source/tools/debugplotter.cxx413
-rw-r--r--basegfx/source/tools/gradienttools.cxx349
-rw-r--r--basegfx/source/tools/keystoplerp.cxx107
-rw-r--r--basegfx/source/tools/liangbarsky.cxx132
-rwxr-xr-xbasegfx/source/tools/makefile.mk51
-rw-r--r--basegfx/source/tools/tools.cxx124
-rwxr-xr-xbasegfx/source/tools/unopolypolygon.cxx486
-rw-r--r--basegfx/source/tuple/b2dtuple.cxx84
-rw-r--r--basegfx/source/tuple/b2i64tuple.cxx44
-rw-r--r--basegfx/source/tuple/b2ituple.cxx153
-rw-r--r--basegfx/source/tuple/b3dtuple.cxx55
-rw-r--r--basegfx/source/tuple/b3i64tuple.cxx43
-rw-r--r--basegfx/source/tuple/b3ituple.cxx43
-rw-r--r--basegfx/source/tuple/makefile.mk52
-rw-r--r--basegfx/source/vector/b2dvector.cxx219
-rw-r--r--basegfx/source/vector/b2ivector.cxx159
-rw-r--r--basegfx/source/vector/b3dvector.cxx115
-rw-r--r--basegfx/source/vector/b3ivector.cxx51
-rw-r--r--basegfx/source/vector/makefile.mk50
-rw-r--r--basegfx/source/workbench/Makefile16
-rw-r--r--basegfx/source/workbench/bezierclip.cxx2057
-rw-r--r--basegfx/source/workbench/bezierclip.hxx93
-rw-r--r--basegfx/source/workbench/convexhull.cxx213
-rw-r--r--basegfx/source/workbench/gauss.hxx172
-rw-r--r--basegfx/test/basegfx1d.cxx75
-rw-r--r--basegfx/test/basegfx2d.cxx1463
-rw-r--r--basegfx/test/basegfx3d.cxx224
-rw-r--r--basegfx/test/basegfxtools.cxx112
-rw-r--r--basegfx/test/boxclipper.cxx421
-rw-r--r--basegfx/test/clipstate.cxx180
-rw-r--r--basegfx/test/export.map34
-rw-r--r--basegfx/test/genericclipper.cxx161
-rw-r--r--basegfx/test/makefile.mk87
-rw-r--r--basegfx/test/testtools.cxx235
-rw-r--r--basegfx/test/testtools.hxx98
-rw-r--r--basegfx/util/basegfx.flt6
-rw-r--r--basegfx/util/makefile.mk85
-rw-r--r--basic/inc/basic/basicmanagerrepository.hxx146
-rw-r--r--basic/inc/basic/basicrt.hxx79
-rw-r--r--basic/inc/basic/basmgr.hxx261
-rw-r--r--basic/inc/basic/basrdll.hxx59
-rw-r--r--basic/inc/basic/dispdefs.hxx38
-rw-r--r--basic/inc/basic/mybasic.hxx94
-rw-r--r--basic/inc/basic/process.hxx63
-rw-r--r--basic/inc/basic/sbdef.hxx110
-rw-r--r--basic/inc/basic/sberrors.hxx562
-rw-r--r--basic/inc/basic/sbmeth.hxx101
-rw-r--r--basic/inc/basic/sbmod.hxx185
-rw-r--r--basic/inc/basic/sbobjmod.hxx119
-rw-r--r--basic/inc/basic/sbprop.hxx80
-rw-r--r--basic/inc/basic/sbstar.hxx220
-rw-r--r--basic/inc/basic/sbstdobj.hxx145
-rw-r--r--basic/inc/basic/sbuno.hxx47
-rw-r--r--basic/inc/basic/sbx.hxx369
-rw-r--r--basic/inc/basic/sbxbase.hxx60
-rw-r--r--basic/inc/basic/sbxcore.hxx181
-rw-r--r--basic/inc/basic/sbxdef.hxx384
-rw-r--r--basic/inc/basic/sbxfac.hxx48
-rw-r--r--basic/inc/basic/sbxform.hxx181
-rw-r--r--basic/inc/basic/sbxmeth.hxx62
-rw-r--r--basic/inc/basic/sbxmstrm.hxx49
-rw-r--r--basic/inc/basic/sbxobj.hxx125
-rw-r--r--basic/inc/basic/sbxprop.hxx61
-rw-r--r--basic/inc/basic/sbxvar.hxx512
-rw-r--r--basic/inc/basic/testtool.hxx160
-rw-r--r--basic/inc/basic/ttglobal.hrc49
-rw-r--r--basic/inc/basic/ttstrhlp.hxx74
-rw-r--r--basic/inc/basrid.hxx45
-rw-r--r--basic/inc/makefile.mk47
-rw-r--r--basic/inc/modsizeexceeded.hxx61
-rw-r--r--basic/inc/pch/precompiled_basic.cxx29
-rw-r--r--basic/inc/pch/precompiled_basic.hxx288
-rw-r--r--basic/inc/sb.hrc47
-rw-r--r--basic/inc/sb.hxx42
-rw-r--r--basic/inc/svtmsg.hrc115
-rw-r--r--basic/inc/testtool.hrc36
-rw-r--r--basic/inc/ttmsg.hrc111
-rwxr-xr-xbasic/prj/build.lst13
-rw-r--r--basic/prj/d.lst59
-rw-r--r--basic/source/app/app.cxx1948
-rw-r--r--basic/source/app/app.hxx196
-rw-r--r--basic/source/app/appbased.cxx299
-rw-r--r--basic/source/app/appbased.hxx74
-rw-r--r--basic/source/app/appedit.cxx301
-rw-r--r--basic/source/app/appedit.hxx70
-rw-r--r--basic/source/app/apperror.cxx115
-rw-r--r--basic/source/app/apperror.hxx49
-rw-r--r--basic/source/app/appwin.cxx657
-rw-r--r--basic/source/app/appwin.hxx138
-rw-r--r--basic/source/app/basic.hrc184
-rw-r--r--basic/source/app/basic.src1472
-rw-r--r--basic/source/app/basicrt.cxx144
-rw-r--r--basic/source/app/basmsg.hrc45
-rw-r--r--basic/source/app/basmsg.src54
-rw-r--r--basic/source/app/brkpnts.cxx386
-rw-r--r--basic/source/app/brkpnts.hxx94
-rw-r--r--basic/source/app/dataedit.hxx116
-rw-r--r--basic/source/app/dialogs.cxx1507
-rw-r--r--basic/source/app/dialogs.hxx371
-rw-r--r--basic/source/app/makefile.mk101
-rw-r--r--basic/source/app/msgedit.cxx999
-rw-r--r--basic/source/app/msgedit.hxx114
-rw-r--r--basic/source/app/mybasic.cxx304
-rw-r--r--basic/source/app/printer.cxx122
-rw-r--r--basic/source/app/printer.hxx52
-rw-r--r--basic/source/app/process.cxx229
-rw-r--r--basic/source/app/processw.cxx282
-rw-r--r--basic/source/app/processw.hxx90
-rw-r--r--basic/source/app/resids.hrc158
-rw-r--r--basic/source/app/status.cxx125
-rw-r--r--basic/source/app/status.hxx54
-rw-r--r--basic/source/app/svtmsg.src339
-rw-r--r--basic/source/app/testbasi.cxx31
-rw-r--r--basic/source/app/testtool.idl47
-rw-r--r--basic/source/app/testtool.src61
-rw-r--r--basic/source/app/textedit.cxx866
-rw-r--r--basic/source/app/textedit.hxx138
-rw-r--r--basic/source/app/ttbasic.cxx36
-rw-r--r--basic/source/app/ttbasic.hxx32
-rw-r--r--basic/source/app/ttmsg.src160
-rw-r--r--basic/source/basmgr/basicmanagerrepository.cxx641
-rw-r--r--basic/source/basmgr/basmgr.cxx2490
-rw-r--r--basic/source/basmgr/makefile.mk46
-rw-r--r--basic/source/classes/disas.cxx687
-rw-r--r--basic/source/classes/errobject.cxx225
-rw-r--r--basic/source/classes/eventatt.cxx647
-rw-r--r--basic/source/classes/image.cxx544
-rw-r--r--basic/source/classes/makefile.mk76
-rw-r--r--basic/source/classes/propacc.cxx430
-rwxr-xr-xbasic/source/classes/sb.cxx1985
-rw-r--r--basic/source/classes/sb.src681
-rw-r--r--basic/source/classes/sbintern.cxx82
-rwxr-xr-xbasic/source/classes/sbunoobj.cxx4419
-rw-r--r--basic/source/classes/sbxmod.cxx2456
-rw-r--r--basic/source/comp/buffer.cxx250
-rw-r--r--basic/source/comp/codegen.cxx533
-rw-r--r--basic/source/comp/dim.cxx1135
-rw-r--r--basic/source/comp/exprgen.cxx303
-rw-r--r--basic/source/comp/exprnode.cxx488
-rw-r--r--basic/source/comp/exprtree.cxx1146
-rw-r--r--basic/source/comp/io.cxx358
-rw-r--r--basic/source/comp/loops.cxx558
-rw-r--r--basic/source/comp/makefile.mk73
-rw-r--r--basic/source/comp/parser.cxx863
-rwxr-xr-xbasic/source/comp/sbcomp.cxx477
-rw-r--r--basic/source/comp/scanner.cxx582
-rw-r--r--basic/source/comp/symtbl.cxx536
-rw-r--r--basic/source/comp/token.cxx714
-rw-r--r--basic/source/inc/buffer.hxx63
-rw-r--r--basic/source/inc/codegen.hxx92
-rw-r--r--basic/source/inc/collelem.hxx47
-rw-r--r--basic/source/inc/disas.hxx72
-rw-r--r--basic/source/inc/dlgcont.hxx175
-rw-r--r--basic/source/inc/errobject.hxx52
-rw-r--r--basic/source/inc/expr.hxx269
-rw-r--r--basic/source/inc/filefmt.hxx178
-rw-r--r--basic/source/inc/image.hxx110
-rw-r--r--basic/source/inc/iosys.hxx113
-rw-r--r--basic/source/inc/namecont.hxx766
-rw-r--r--basic/source/inc/object.hxx100
-rw-r--r--basic/source/inc/opcodes.hxx172
-rw-r--r--basic/source/inc/parser.hxx152
-rw-r--r--basic/source/inc/propacc.hxx203
-rw-r--r--basic/source/inc/runtime.hxx530
-rw-r--r--basic/source/inc/sbcomp.hxx38
-rw-r--r--basic/source/inc/sbintern.hxx144
-rw-r--r--basic/source/inc/sbjsmeth.hxx53
-rw-r--r--basic/source/inc/sbjsmod.hxx50
-rwxr-xr-xbasic/source/inc/sbtrace.hxx42
-rw-r--r--basic/source/inc/sbunoobj.hxx325
-rw-r--r--basic/source/inc/scanner.hxx146
-rw-r--r--basic/source/inc/scriptcont.hxx199
-rw-r--r--basic/source/inc/stdobj.hxx51
-rw-r--r--basic/source/inc/symtbl.hxx249
-rw-r--r--basic/source/inc/token.hxx183
-rw-r--r--basic/source/runtime/basrdll.cxx104
-rw-r--r--basic/source/runtime/ddectrl.cxx192
-rw-r--r--basic/source/runtime/ddectrl.hxx64
-rw-r--r--basic/source/runtime/dllmgr.cxx738
-rw-r--r--basic/source/runtime/dllmgr.hxx60
-rw-r--r--basic/source/runtime/inputbox.cxx197
-rw-r--r--basic/source/runtime/iosys.cxx1048
-rw-r--r--basic/source/runtime/makefile.mk71
-rw-r--r--basic/source/runtime/methods.cxx4540
-rw-r--r--basic/source/runtime/methods1.cxx2588
-rw-r--r--basic/source/runtime/props.cxx776
-rw-r--r--basic/source/runtime/rtlproto.hxx349
-rwxr-xr-xbasic/source/runtime/runtime.cxx1268
-rw-r--r--basic/source/runtime/stdobj.cxx788
-rw-r--r--basic/source/runtime/stdobj1.cxx551
-rw-r--r--basic/source/runtime/step0.cxx1326
-rw-r--r--basic/source/runtime/step1.cxx574
-rwxr-xr-xbasic/source/runtime/step2.cxx1261
-rw-r--r--basic/source/runtime/wnt-mingw.s53
-rw-r--r--basic/source/runtime/wnt.asm56
-rw-r--r--basic/source/sample/collelem.cxx79
-rw-r--r--basic/source/sample/makefile.mk58
-rw-r--r--basic/source/sample/object.cxx278
-rw-r--r--basic/source/sample/sample.bas39
-rw-r--r--basic/source/sbx/format.src85
-rw-r--r--basic/source/sbx/makefile.mk77
-rw-r--r--basic/source/sbx/sbxarray.cxx857
-rw-r--r--basic/source/sbx/sbxbase.cxx455
-rw-r--r--basic/source/sbx/sbxbool.cxx252
-rw-r--r--basic/source/sbx/sbxbyte.cxx329
-rw-r--r--basic/source/sbx/sbxchar.cxx325
-rw-r--r--basic/source/sbx/sbxcoll.cxx301
-rw-r--r--basic/source/sbx/sbxconv.hxx151
-rw-r--r--basic/source/sbx/sbxcurr.cxx395
-rw-r--r--basic/source/sbx/sbxdate.cxx404
-rw-r--r--basic/source/sbx/sbxdbl.cxx306
-rw-r--r--basic/source/sbx/sbxdec.cxx797
-rw-r--r--basic/source/sbx/sbxdec.hxx122
-rw-r--r--basic/source/sbx/sbxexec.cxx401
-rw-r--r--basic/source/sbx/sbxform.cxx1168
-rw-r--r--basic/source/sbx/sbxint.cxx967
-rw-r--r--basic/source/sbx/sbxlng.cxx341
-rw-r--r--basic/source/sbx/sbxmstrm.cxx39
-rw-r--r--basic/source/sbx/sbxobj.cxx1145
-rw-r--r--basic/source/sbx/sbxres.cxx91
-rw-r--r--basic/source/sbx/sbxres.hxx87
-rw-r--r--basic/source/sbx/sbxscan.cxx963
-rw-r--r--basic/source/sbx/sbxsng.cxx359
-rw-r--r--basic/source/sbx/sbxstr.cxx321
-rw-r--r--basic/source/sbx/sbxuint.cxx331
-rw-r--r--basic/source/sbx/sbxulng.cxx321
-rw-r--r--basic/source/sbx/sbxvals.cxx109
-rw-r--r--basic/source/sbx/sbxvalue.cxx1851
-rw-r--r--basic/source/sbx/sbxvar.cxx642
-rw-r--r--basic/source/uno/dlgcont.cxx658
-rw-r--r--basic/source/uno/makefile.mk49
-rw-r--r--basic/source/uno/modsizeexceeded.cxx68
-rw-r--r--basic/source/uno/namecont.cxx3506
-rw-r--r--basic/source/uno/sbmodule.cxx44
-rw-r--r--basic/source/uno/sbmodule.hxx45
-rw-r--r--basic/source/uno/sbservices.cxx63
-rw-r--r--basic/source/uno/scriptcont.cxx1328
-rw-r--r--basic/util/makefile.mk146
-rw-r--r--basic/win/res/basic.icobin0 -> 766 bytes-rw-r--r--basic/win/res/testtool.icobin0 -> 766 bytes-rw-r--r--basic/win/res/work.icobin0 -> 766 bytes-rw-r--r--basic/workben/basmgr.src31
-rw-r--r--basic/workben/makefile.mk89
-rw-r--r--basic/workben/mgrtest.cxx591
-rw-r--r--bean/com/sun/star/beans/ContainerFactory.java47
-rw-r--r--bean/com/sun/star/beans/JavaWindowPeerFake.java122
-rw-r--r--bean/com/sun/star/beans/LocalOfficeConnection.java617
-rw-r--r--bean/com/sun/star/beans/LocalOfficeWindow.java309
-rw-r--r--bean/com/sun/star/beans/NativeConnection.java59
-rw-r--r--bean/com/sun/star/beans/NativeService.java36
-rw-r--r--bean/com/sun/star/beans/OfficeConnection.java79
-rw-r--r--bean/com/sun/star/beans/OfficeWindow.java55
-rw-r--r--bean/com/sun/star/beans/makefile.mk64
-rw-r--r--bean/com/sun/star/comp/beans/CallWatchThread.java128
-rw-r--r--bean/com/sun/star/comp/beans/ContainerFactory.java47
-rw-r--r--bean/com/sun/star/comp/beans/Controller.java110
-rw-r--r--bean/com/sun/star/comp/beans/Frame.java182
-rw-r--r--bean/com/sun/star/comp/beans/HasConnectionException.java40
-rw-r--r--bean/com/sun/star/comp/beans/InvalidArgumentException.java38
-rw-r--r--bean/com/sun/star/comp/beans/JavaWindowPeerFake.java122
-rw-r--r--bean/com/sun/star/comp/beans/LocalOfficeConnection.java823
-rw-r--r--bean/com/sun/star/comp/beans/LocalOfficeWindow.java288
-rw-r--r--bean/com/sun/star/comp/beans/NativeConnection.java62
-rw-r--r--bean/com/sun/star/comp/beans/NativeService.java37
-rw-r--r--bean/com/sun/star/comp/beans/NoConnectionException.java40
-rw-r--r--bean/com/sun/star/comp/beans/NoDocumentException.java38
-rw-r--r--bean/com/sun/star/comp/beans/OOoBean.java1511
-rw-r--r--bean/com/sun/star/comp/beans/OfficeConnection.java80
-rw-r--r--bean/com/sun/star/comp/beans/OfficeDocument.java226
-rw-r--r--bean/com/sun/star/comp/beans/OfficeWindow.java56
-rw-r--r--bean/com/sun/star/comp/beans/SystemWindowException.java41
-rw-r--r--bean/com/sun/star/comp/beans/Wrapper.java108
-rw-r--r--bean/com/sun/star/comp/beans/makefile.mk75
-rw-r--r--bean/native/unix/com_sun_star_beans_LocalOfficeWindow.c99
-rw-r--r--bean/native/unix/com_sun_star_comp_beans_LocalOfficeWindow.c147
-rw-r--r--bean/native/unix/makefile.mk39
-rw-r--r--bean/native/win32/com_sun_star_beans_LocalOfficeWindow.c102
-rw-r--r--bean/native/win32/com_sun_star_comp_beans_LocalOfficeWindow.c217
-rw-r--r--bean/native/win32/makefile.mk34
-rw-r--r--bean/native/win32/officebean.dxp4
-rw-r--r--bean/prj/build.lst6
-rw-r--r--bean/prj/d.lst5
-rw-r--r--bean/qa/complex/OOoBeanTest.java656
-rw-r--r--bean/qa/complex/ScreenComparer.java233
-rw-r--r--bean/qa/complex/WriterFrame.java209
-rw-r--r--bean/qa/complex/makefile.mk95
-rw-r--r--bean/test/Test.java68
-rw-r--r--bean/test/applet/oooapplet/OOoViewer.java208
-rw-r--r--bean/test/applet/oooapplet/bean.policy16
-rw-r--r--bean/test/applet/oooapplet/example.html22
-rw-r--r--bean/test/applet/oooapplet/makefile.mk88
-rw-r--r--bean/test/makefile.mk95
-rw-r--r--bean/util/delzip0
-rw-r--r--bean/util/makefile.mk56
-rw-r--r--beanshell/bsh-2.0b1-src.patch83
-rw-r--r--beanshell/makefile.mk58
-rw-r--r--beanshell/prj/build.lst3
-rw-r--r--beanshell/prj/d.lst1
-rw-r--r--berkeleydb/db-4.7.25-mingw.patch348
-rw-r--r--berkeleydb/db-4.7.25.patch1048
-rw-r--r--berkeleydb/makefile.mk182
-rw-r--r--berkeleydb/prj/build.lst3
-rw-r--r--berkeleydb/prj/d.lst15
-rw-r--r--boost/README.Regex_Experimental30
-rw-r--r--boost/Regex_Experimental.tar.gzbin0 -> 3463 bytes-rw-r--r--boost/aliasing.patch43
-rw-r--r--boost/boost_1_39_0.patch287
-rw-r--r--boost/makefile.mk109
-rw-r--r--boost/prj/build.lst3
-rw-r--r--boost/prj/d.lst312
-rw-r--r--bootstrap.184
-rw-r--r--bridges/inc/bridges/cpp_uno/bridge.hxx503
-rw-r--r--bridges/inc/bridges/cpp_uno/shared/arraypointer.hxx55
-rw-r--r--bridges/inc/bridges/cpp_uno/shared/bridge.hxx128
-rw-r--r--bridges/inc/bridges/cpp_uno/shared/cppinterfaceproxy.hxx106
-rw-r--r--bridges/inc/bridges/cpp_uno/shared/types.hxx77
-rw-r--r--bridges/inc/bridges/cpp_uno/shared/unointerfaceproxy.hxx116
-rw-r--r--bridges/inc/bridges/cpp_uno/shared/vtablefactory.hxx214
-rw-r--r--bridges/inc/bridges/cpp_uno/shared/vtables.hxx108
-rw-r--r--bridges/inc/bridges/cpp_uno/type_misc.hxx129
-rw-r--r--bridges/inc/bridges/remote/bridgeimpl.hxx94
-rw-r--r--bridges/inc/bridges/remote/connection.h67
-rw-r--r--bridges/inc/bridges/remote/context.h260
-rw-r--r--bridges/inc/bridges/remote/counter.hxx57
-rw-r--r--bridges/inc/bridges/remote/helper.hxx68
-rw-r--r--bridges/inc/bridges/remote/mapping.hxx69
-rw-r--r--bridges/inc/bridges/remote/proxy.hxx91
-rw-r--r--bridges/inc/bridges/remote/remote.h93
-rw-r--r--bridges/inc/bridges/remote/remote.hxx73
-rw-r--r--bridges/inc/bridges/remote/stub.hxx64
-rw-r--r--bridges/inc/makefile.mk47
-rw-r--r--bridges/inc/pch/precompiled_bridges.cxx29
-rw-r--r--bridges/inc/pch/precompiled_bridges.hxx152
-rw-r--r--bridges/prj/build.lst36
-rw-r--r--bridges/prj/d.lst28
-rw-r--r--bridges/source/bridge_exports.map8
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_intel/call.s248
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_intel/cc50_solaris_intel.hxx73
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_intel/cpp2uno.cxx527
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_intel/except.cxx449
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_intel/hash.cxx263
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_intel/makefile.mk75
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_intel/uno2cpp.cxx418
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_sparc/call.s199
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_sparc/cc50_solaris_sparc.hxx87
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_sparc/cpp2uno.cxx530
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_sparc/except.cxx445
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_sparc/flushcode.hxx48
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_sparc/hash.cxx264
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_sparc/makefile.mk80
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_sparc/uno2cpp.cxx396
-rw-r--r--bridges/source/cpp_uno/cc5_solaris_sparc64/callvirtualmethod.hxx36
-rw-r--r--bridges/source/cpp_uno/cc5_solaris_sparc64/callvirtualmethod.s59
-rw-r--r--bridges/source/cpp_uno/cc5_solaris_sparc64/cpp2uno.cxx611
-rw-r--r--bridges/source/cpp_uno/cc5_solaris_sparc64/exceptions.cxx459
-rw-r--r--bridges/source/cpp_uno/cc5_solaris_sparc64/exceptions.hxx72
-rw-r--r--bridges/source/cpp_uno/cc5_solaris_sparc64/flushcode.hxx48
-rw-r--r--bridges/source/cpp_uno/cc5_solaris_sparc64/fp.hxx113
-rw-r--r--bridges/source/cpp_uno/cc5_solaris_sparc64/fp.s602
-rw-r--r--bridges/source/cpp_uno/cc5_solaris_sparc64/isdirectreturntype.cxx81
-rw-r--r--bridges/source/cpp_uno/cc5_solaris_sparc64/isdirectreturntype.hxx41
-rw-r--r--bridges/source/cpp_uno/cc5_solaris_sparc64/makefile.mk61
-rw-r--r--bridges/source/cpp_uno/cc5_solaris_sparc64/uno2cpp.cxx509
-rw-r--r--bridges/source/cpp_uno/cc5_solaris_sparc64/vtableslotcall.hxx35
-rw-r--r--bridges/source/cpp_uno/cc5_solaris_sparc64/vtableslotcall.s51
-rw-r--r--bridges/source/cpp_uno/gcc3_freebsd_intel/call.s268
-rw-r--r--bridges/source/cpp_uno/gcc3_freebsd_intel/cpp2uno.cxx490
-rw-r--r--bridges/source/cpp_uno/gcc3_freebsd_intel/except.cxx338
-rw-r--r--bridges/source/cpp_uno/gcc3_freebsd_intel/makefile.mk81
-rw-r--r--bridges/source/cpp_uno/gcc3_freebsd_intel/share.hxx90
-rw-r--r--bridges/source/cpp_uno/gcc3_freebsd_intel/uno2cpp.cxx444
-rw-r--r--bridges/source/cpp_uno/gcc3_freebsd_x86-64/abi.cxx803
-rw-r--r--bridges/source/cpp_uno/gcc3_freebsd_x86-64/abi.hxx67
-rw-r--r--bridges/source/cpp_uno/gcc3_freebsd_x86-64/call.s93
-rw-r--r--bridges/source/cpp_uno/gcc3_freebsd_x86-64/cpp2uno.cxx541
-rw-r--r--bridges/source/cpp_uno/gcc3_freebsd_x86-64/except.cxx338
-rw-r--r--bridges/source/cpp_uno/gcc3_freebsd_x86-64/makefile.mk80
-rw-r--r--bridges/source/cpp_uno/gcc3_freebsd_x86-64/share.hxx90
-rw-r--r--bridges/source/cpp_uno/gcc3_freebsd_x86-64/uno2cpp.cxx558
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_alpha/cpp2uno.cxx676
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_alpha/except.cxx287
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_alpha/makefile.mk77
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_alpha/share.hxx98
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_alpha/uno2cpp.cxx532
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_arm/armhelper.S38
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_arm/cpp2uno.cxx550
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_arm/except.cxx341
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_arm/makefile.mk84
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_arm/share.hxx100
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_arm/uno2cpp.cxx669
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_hppa/call.cxx142
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_hppa/cpp2uno.cxx725
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_hppa/except.cxx334
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_hppa/makefile.mk82
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_hppa/share.hxx99
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_hppa/uno2cpp.cxx521
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_ia64/call.s20
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_ia64/cpp2uno.cxx684
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_ia64/except.cxx287
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_ia64/makefile.mk83
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_ia64/share.hxx130
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_ia64/uno2cpp.cxx690
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_intel/call.s274
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_intel/cpp2uno.cxx489
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_intel/except.cxx330
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_intel/makefile.mk81
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_intel/share.hxx90
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_intel/uno2cpp.cxx451
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_m68k/cpp2uno.cxx536
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_m68k/except.cxx334
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_m68k/makefile.mk80
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_m68k/share.hxx91
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_m68k/uno2cpp.cxx493
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_mips/cpp2uno.cxx803
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_mips/except.cxx325
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_mips/makefile.mk81
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_mips/share.hxx91
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_mips/uno2cpp.cxx597
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_powerpc/cpp2uno.cxx795
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_powerpc/except.cxx287
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_powerpc/makefile.mk80
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_powerpc/share.hxx91
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_powerpc/uno2cpp.cxx672
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_powerpc64/cpp2uno.cxx722
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_powerpc64/except.cxx287
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_powerpc64/makefile.mk79
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_powerpc64/share.hxx96
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_powerpc64/uno2cpp.cxx600
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_s390/cpp2uno.cxx695
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_s390/except.cxx287
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_s390/makefile.mk77
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_s390/share.hxx92
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_s390/uno2cpp.cxx635
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_s390x/cpp2uno.cxx657
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_s390x/except.cxx287
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_s390x/makefile.mk77
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_s390x/share.hxx98
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_s390x/uno2cpp.cxx537
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_sparc/call.s10
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_sparc/cpp2uno.cxx575
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_sparc/except.cxx328
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_sparc/makefile.mk81
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_sparc/share.hxx97
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_sparc/uno2cpp.cxx600
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_x86-64/abi.cxx796
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_x86-64/abi.hxx67
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_x86-64/call.s96
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_x86-64/cpp2uno.cxx520
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_x86-64/except.cxx330
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_x86-64/makefile.mk80
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx90
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_x86-64/uno2cpp.cxx571
-rw-r--r--bridges/source/cpp_uno/gcc3_macosx_intel/call.s327
-rw-r--r--bridges/source/cpp_uno/gcc3_macosx_intel/cpp2uno.cxx519
-rw-r--r--bridges/source/cpp_uno/gcc3_macosx_intel/except.cxx329
-rw-r--r--bridges/source/cpp_uno/gcc3_macosx_intel/makefile.mk76
-rw-r--r--bridges/source/cpp_uno/gcc3_macosx_intel/share.hxx92
-rw-r--r--bridges/source/cpp_uno/gcc3_macosx_intel/uno2cpp.cxx495
-rw-r--r--bridges/source/cpp_uno/gcc3_macosx_powerpc/cpp2uno.cxx730
-rw-r--r--bridges/source/cpp_uno/gcc3_macosx_powerpc/except.cxx286
-rw-r--r--bridges/source/cpp_uno/gcc3_macosx_powerpc/makefile.mk78
-rw-r--r--bridges/source/cpp_uno/gcc3_macosx_powerpc/share.hxx91
-rw-r--r--bridges/source/cpp_uno/gcc3_macosx_powerpc/uno2cpp.cxx634
-rw-r--r--bridges/source/cpp_uno/gcc3_netbsd_intel/cpp2uno.cxx563
-rw-r--r--bridges/source/cpp_uno/gcc3_netbsd_intel/except.cxx331
-rw-r--r--bridges/source/cpp_uno/gcc3_netbsd_intel/makefile.mk75
-rw-r--r--bridges/source/cpp_uno/gcc3_netbsd_intel/share.hxx86
-rw-r--r--bridges/source/cpp_uno/gcc3_netbsd_intel/uno2cpp.cxx433
-rw-r--r--bridges/source/cpp_uno/gcc3_os2_intel/cpp2uno.cxx525
-rw-r--r--bridges/source/cpp_uno/gcc3_os2_intel/defs/gcc3_uno.def915
-rw-r--r--bridges/source/cpp_uno/gcc3_os2_intel/except.cxx349
-rw-r--r--bridges/source/cpp_uno/gcc3_os2_intel/makefile.mk73
-rw-r--r--bridges/source/cpp_uno/gcc3_os2_intel/share.hxx90
-rw-r--r--bridges/source/cpp_uno/gcc3_os2_intel/uno2cpp.cxx451
-rw-r--r--bridges/source/cpp_uno/gcc3_solaris_intel/cpp2uno.cxx523
-rw-r--r--bridges/source/cpp_uno/gcc3_solaris_intel/except.cxx329
-rw-r--r--bridges/source/cpp_uno/gcc3_solaris_intel/makefile.mk73
-rw-r--r--bridges/source/cpp_uno/gcc3_solaris_intel/share.hxx90
-rw-r--r--bridges/source/cpp_uno/gcc3_solaris_intel/uno2cpp.cxx427
-rw-r--r--bridges/source/cpp_uno/gcc3_solaris_sparc/cpp2uno.cxx564
-rw-r--r--bridges/source/cpp_uno/gcc3_solaris_sparc/except.cxx327
-rw-r--r--bridges/source/cpp_uno/gcc3_solaris_sparc/makefile.mk77
-rw-r--r--bridges/source/cpp_uno/gcc3_solaris_sparc/share.hxx97
-rw-r--r--bridges/source/cpp_uno/gcc3_solaris_sparc/uno2cpp.cxx595
-rw-r--r--bridges/source/cpp_uno/mingw_intel/call.s261
-rw-r--r--bridges/source/cpp_uno/mingw_intel/cpp2uno.cxx518
-rw-r--r--bridges/source/cpp_uno/mingw_intel/dllinit.cxx56
-rw-r--r--bridges/source/cpp_uno/mingw_intel/except.cxx314
-rw-r--r--bridges/source/cpp_uno/mingw_intel/makefile.mk91
-rw-r--r--bridges/source/cpp_uno/mingw_intel/share.hxx90
-rw-r--r--bridges/source/cpp_uno/mingw_intel/smallstruct.cxx79
-rw-r--r--bridges/source/cpp_uno/mingw_intel/smallstruct.hxx35
-rw-r--r--bridges/source/cpp_uno/mingw_intel/uno2cpp.cxx500
-rw-r--r--bridges/source/cpp_uno/msvc_win32_intel/cpp2uno.cxx488
-rw-r--r--bridges/source/cpp_uno/msvc_win32_intel/dllinit.cxx58
-rw-r--r--bridges/source/cpp_uno/msvc_win32_intel/except.cxx632
-rw-r--r--bridges/source/cpp_uno/msvc_win32_intel/makefile.mk83
-rw-r--r--bridges/source/cpp_uno/msvc_win32_intel/msci.hxx57
-rw-r--r--bridges/source/cpp_uno/msvc_win32_intel/uno2cpp.cxx465
-rw-r--r--bridges/source/cpp_uno/shared/bridge.cxx226
-rw-r--r--bridges/source/cpp_uno/shared/component.cxx272
-rw-r--r--bridges/source/cpp_uno/shared/component.hxx39
-rw-r--r--bridges/source/cpp_uno/shared/cppinterfaceproxy.cxx205
-rw-r--r--bridges/source/cpp_uno/shared/guardedarray.hxx52
-rw-r--r--bridges/source/cpp_uno/shared/makefile.mk53
-rw-r--r--bridges/source/cpp_uno/shared/types.cxx126
-rw-r--r--bridges/source/cpp_uno/shared/unointerfaceproxy.cxx142
-rw-r--r--bridges/source/cpp_uno/shared/vtablefactory.cxx382
-rw-r--r--bridges/source/cpp_uno/shared/vtables.cxx154
-rw-r--r--bridges/source/jni_uno/java/com/sun/star/bridges/jni_uno/JNI_info_holder.java52
-rw-r--r--bridges/source/jni_uno/java/com/sun/star/bridges/jni_uno/JNI_proxy.java218
-rw-r--r--bridges/source/jni_uno/java/com/sun/star/bridges/jni_uno/makefile.mk53
-rw-r--r--bridges/source/jni_uno/java/com/sun/star/bridges/jni_uno/manifest1
-rw-r--r--bridges/source/jni_uno/java_uno.map27
-rw-r--r--bridges/source/jni_uno/jni_base.h292
-rw-r--r--bridges/source/jni_uno/jni_bridge.cxx569
-rw-r--r--bridges/source/jni_uno/jni_bridge.h124
-rw-r--r--bridges/source/jni_uno/jni_data.cxx2576
-rw-r--r--bridges/source/jni_uno/jni_helper.h162
-rw-r--r--bridges/source/jni_uno/jni_info.cxx996
-rw-r--r--bridges/source/jni_uno/jni_info.h375
-rw-r--r--bridges/source/jni_uno/jni_java2uno.cxx704
-rw-r--r--bridges/source/jni_uno/jni_uno2java.cxx873
-rw-r--r--bridges/source/jni_uno/makefile.mk85
-rw-r--r--bridges/source/jni_uno/nativethreadpool.cxx230
-rw-r--r--bridges/source/remote/context/context.cxx499
-rw-r--r--bridges/source/remote/context/exports.dxp5
-rw-r--r--bridges/source/remote/context/makefile.mk65
-rwxr-xr-xbridges/source/remote/context/rmcxt.map10
-rw-r--r--bridges/source/remote/idl/corba.idl88
-rw-r--r--bridges/source/remote/static/helper.cxx209
-rw-r--r--bridges/source/remote/static/makefile.mk61
-rw-r--r--bridges/source/remote/static/mapping.cxx218
-rw-r--r--bridges/source/remote/static/proxy.cxx338
-rw-r--r--bridges/source/remote/static/remote.cxx161
-rw-r--r--bridges/source/remote/static/remote_types.cxx96
-rw-r--r--bridges/source/remote/static/remote_types.hxx89
-rw-r--r--bridges/source/remote/static/stub.cxx336
-rw-r--r--bridges/source/remote/urp/makefile.mk78
-rw-r--r--bridges/source/remote/urp/urp_bridgeimpl.cxx250
-rw-r--r--bridges/source/remote/urp/urp_bridgeimpl.hxx133
-rw-r--r--bridges/source/remote/urp/urp_cache.h57
-rw-r--r--bridges/source/remote/urp/urp_cache.hxx160
-rw-r--r--bridges/source/remote/urp/urp_dispatch.cxx116
-rw-r--r--bridges/source/remote/urp/urp_dispatch.hxx78
-rw-r--r--bridges/source/remote/urp/urp_environment.cxx551
-rw-r--r--bridges/source/remote/urp/urp_job.cxx939
-rw-r--r--bridges/source/remote/urp/urp_job.hxx378
-rw-r--r--bridges/source/remote/urp/urp_log.cxx147
-rw-r--r--bridges/source/remote/urp/urp_log.hxx50
-rw-r--r--bridges/source/remote/urp/urp_marshal.cxx235
-rw-r--r--bridges/source/remote/urp/urp_marshal.hxx343
-rw-r--r--bridges/source/remote/urp/urp_marshal_decl.hxx106
-rw-r--r--bridges/source/remote/urp/urp_property.hxx93
-rw-r--r--bridges/source/remote/urp/urp_propertyobject.cxx793
-rw-r--r--bridges/source/remote/urp/urp_propertyobject.hxx108
-rw-r--r--bridges/source/remote/urp/urp_reader.cxx832
-rw-r--r--bridges/source/remote/urp/urp_reader.hxx78
-rw-r--r--bridges/source/remote/urp/urp_replycontainer.hxx75
-rw-r--r--bridges/source/remote/urp/urp_threadid.cxx48
-rw-r--r--bridges/source/remote/urp/urp_threadid.hxx59
-rw-r--r--bridges/source/remote/urp/urp_unmarshal.cxx707
-rw-r--r--bridges/source/remote/urp/urp_unmarshal.hxx280
-rw-r--r--bridges/source/remote/urp/urp_writer.cxx269
-rw-r--r--bridges/source/remote/urp/urp_writer.hxx83
-rw-r--r--bridges/test/com/sun/star/lib/TestBed.java232
-rw-r--r--bridges/test/com/sun/star/lib/makefile.mk36
-rw-r--r--bridges/test/com/sun/star/lib/uno/bridges/java_remote/Bug107753_Test.java394
-rw-r--r--bridges/test/com/sun/star/lib/uno/bridges/java_remote/Bug108825_Test.java163
-rw-r--r--bridges/test/com/sun/star/lib/uno/bridges/java_remote/Bug110892_Test.java124
-rw-r--r--bridges/test/com/sun/star/lib/uno/bridges/java_remote/Bug111153_Test.java103
-rw-r--r--bridges/test/com/sun/star/lib/uno/bridges/java_remote/Bug114133_Test.java76
-rw-r--r--bridges/test/com/sun/star/lib/uno/bridges/java_remote/Bug51323_Test.java84
-rw-r--r--bridges/test/com/sun/star/lib/uno/bridges/java_remote/Bug92174_Test.java99
-rw-r--r--bridges/test/com/sun/star/lib/uno/bridges/java_remote/Bug97697_Test.java105
-rw-r--r--bridges/test/com/sun/star/lib/uno/bridges/java_remote/Bug98508_Test.idl37
-rw-r--r--bridges/test/com/sun/star/lib/uno/bridges/java_remote/Bug98508_Test.java104
-rwxr-xr-xbridges/test/com/sun/star/lib/uno/bridges/java_remote/MethodIdTest.java473
-rw-r--r--bridges/test/com/sun/star/lib/uno/bridges/java_remote/PolyStructTest.idl52
-rw-r--r--bridges/test/com/sun/star/lib/uno/bridges/java_remote/PolyStructTest.java260
-rw-r--r--bridges/test/com/sun/star/lib/uno/bridges/java_remote/StopMessageDispatcherTest.java108
-rw-r--r--bridges/test/com/sun/star/lib/uno/bridges/java_remote/makefile.mk51
-rw-r--r--bridges/test/inter_libs_exc/inter.cxx66
-rw-r--r--bridges/test/inter_libs_exc/makefile.mk80
-rw-r--r--bridges/test/inter_libs_exc/share.h7
-rw-r--r--bridges/test/inter_libs_exc/starter.cxx65
-rw-r--r--bridges/test/inter_libs_exc/starter.map7
-rw-r--r--bridges/test/inter_libs_exc/thrower.cxx48
-rw-r--r--bridges/test/inter_libs_exc/thrower.map7
-rw-r--r--bridges/test/java_uno/acquire/TestAcquire.java304
-rw-r--r--bridges/test/java_uno/acquire/makefile.mk117
-rw-r--r--bridges/test/java_uno/acquire/readme.txt21
-rw-r--r--bridges/test/java_uno/acquire/testacquire.cxx574
-rw-r--r--bridges/test/java_uno/acquire/types.idl68
-rw-r--r--bridges/test/java_uno/any/TestAny.java2267
-rw-r--r--bridges/test/java_uno/any/TestJni.java48
-rw-r--r--bridges/test/java_uno/any/TestRemote.java64
-rw-r--r--bridges/test/java_uno/any/makefile.mk127
-rw-r--r--bridges/test/java_uno/any/test_javauno_any.map6
-rw-r--r--bridges/test/java_uno/any/transport.cxx108
-rw-r--r--bridges/test/java_uno/any/types.idl42
-rw-r--r--bridges/test/java_uno/equals/TestEquals.java1304
-rw-r--r--bridges/test/java_uno/equals/makefile.mk96
-rw-r--r--bridges/test/java_uno/equals/testequals.cxx232
-rw-r--r--bridges/test/java_uno/equals/types.idl47
-rw-r--r--bridges/test/java_uno/nativethreadpool/Relay.java125
-rw-r--r--bridges/test/java_uno/nativethreadpool/makefile.mk121
-rw-r--r--bridges/test/java_uno/nativethreadpool/readme39
-rw-r--r--bridges/test/java_uno/nativethreadpool/relay.manifest2
-rw-r--r--bridges/test/java_uno/nativethreadpool/testnativethreadpoolclient.cxx184
-rw-r--r--bridges/test/java_uno/nativethreadpool/testnativethreadpoolserver.cxx146
-rw-r--r--bridges/test/java_uno/nativethreadpool/types.idl40
-rw-r--r--bridges/test/java_uno/nativethreadpool/version.map35
-rw-r--r--bridges/test/makefile.mk175
-rw-r--r--bridges/test/performance/makefile.mk62
-rw-r--r--bridges/test/performance/testperformance.cxx190
-rw-r--r--bridges/test/test_bridge.idl82
-rw-r--r--bridges/test/testclient.cxx247
-rw-r--r--bridges/test/testclient.java156
-rw-r--r--bridges/test/testcomp.cxx799
-rw-r--r--bridges/test/testcomp.h156
-rw-r--r--bridges/test/testoffice.cxx279
-rw-r--r--bridges/test/testsameprocess.cxx215
-rw-r--r--bridges/test/testserver.cxx253
-rw-r--r--bridges/unotypes/makefile.mk63
-rw-r--r--bridges/version.mk40
-rw-r--r--cairo/cairo-1.8.0.patch251
-rwxr-xr-xcairo/cairo/dummy_pkg_config3
-rw-r--r--cairo/cairo/makefile.mk202
-rw-r--r--cairo/pixman-0.12.0.patch25
-rw-r--r--cairo/pixman/makefile.mk164
-rw-r--r--cairo/prj/build.lst4
-rw-r--r--cairo/prj/d.lst12
-rw-r--r--canvas/inc/canvas/base/basemutexhelper.hxx69
-rw-r--r--canvas/inc/canvas/base/bitmapcanvasbase.hxx134
-rw-r--r--canvas/inc/canvas/base/bufferedgraphicdevicebase.hxx293
-rw-r--r--canvas/inc/canvas/base/cachedprimitivebase.hxx122
-rw-r--r--canvas/inc/canvas/base/canvasbase.hxx483
-rw-r--r--canvas/inc/canvas/base/canvascustomspritebase.hxx277
-rw-r--r--canvas/inc/canvas/base/canvascustomspritehelper.hxx293
-rw-r--r--canvas/inc/canvas/base/doublebitmapbase.hxx151
-rw-r--r--canvas/inc/canvas/base/floatbitmapbase.hxx155
-rw-r--r--canvas/inc/canvas/base/graphicdevicebase.hxx391
-rw-r--r--canvas/inc/canvas/base/integerbitmapbase.hxx151
-rw-r--r--canvas/inc/canvas/base/sprite.hxx119
-rw-r--r--canvas/inc/canvas/base/spritecanvasbase.hxx202
-rw-r--r--canvas/inc/canvas/base/spritesurface.hxx73
-rwxr-xr-xcanvas/inc/canvas/canvastools.hxx661
-rw-r--r--canvas/inc/canvas/debug.hxx65
-rw-r--r--canvas/inc/canvas/elapsedtime.hxx182
-rw-r--r--canvas/inc/canvas/parametricpolypolygon.hxx172
-rw-r--r--canvas/inc/canvas/prioritybooster.hxx65
-rw-r--r--canvas/inc/canvas/propertysethelper.hxx161
-rw-r--r--canvas/inc/canvas/rendering/bitmap.hxx320
-rw-r--r--canvas/inc/canvas/rendering/icachedprimitive.hxx66
-rw-r--r--canvas/inc/canvas/rendering/icolorbuffer.hxx94
-rw-r--r--canvas/inc/canvas/rendering/irendermodule.hxx149
-rw-r--r--canvas/inc/canvas/rendering/isurface.hxx88
-rw-r--r--canvas/inc/canvas/rendering/isurfaceproxy.hxx113
-rw-r--r--canvas/inc/canvas/rendering/isurfaceproxymanager.hxx79
-rw-r--r--canvas/inc/canvas/spriteredrawmanager.hxx434
-rw-r--r--canvas/inc/canvas/vclwrapper.hxx149
-rw-r--r--canvas/inc/canvas/verbosetrace.hxx38
-rw-r--r--canvas/inc/canvas/verifyinput.hxx720
-rw-r--r--canvas/inc/makefile.mk47
-rw-r--r--canvas/inc/pch/precompiled_canvas.cxx29
-rw-r--r--canvas/inc/pch/precompiled_canvas.hxx32
-rw-r--r--canvas/overview.txt50
-rw-r--r--canvas/prj/build.lst10
-rw-r--r--canvas/prj/d.lst26
-rw-r--r--canvas/source/cairo/cairo_cachedbitmap.cxx90
-rw-r--r--canvas/source/cairo/cairo_cachedbitmap.hxx67
-rw-r--r--canvas/source/cairo/cairo_cairo.cxx64
-rw-r--r--canvas/source/cairo/cairo_cairo.hxx97
-rw-r--r--canvas/source/cairo/cairo_canvas.cxx195
-rw-r--r--canvas/source/cairo/cairo_canvas.hxx161
-rw-r--r--canvas/source/cairo/cairo_canvasbitmap.cxx286
-rw-r--r--canvas/source/cairo/cairo_canvasbitmap.hxx138
-rw-r--r--canvas/source/cairo/cairo_canvascustomsprite.cxx175
-rw-r--r--canvas/source/cairo/cairo_canvascustomsprite.hxx156
-rw-r--r--canvas/source/cairo/cairo_canvasfont.cxx193
-rw-r--r--canvas/source/cairo/cairo_canvasfont.hxx96
-rw-r--r--canvas/source/cairo/cairo_canvashelper.cxx1995
-rw-r--r--canvas/source/cairo/cairo_canvashelper.hxx335
-rw-r--r--canvas/source/cairo/cairo_canvashelper_text.cxx398
-rw-r--r--canvas/source/cairo/cairo_canvashelper_texturefill.cxx144
-rw-r--r--canvas/source/cairo/cairo_devicehelper.cxx302
-rw-r--r--canvas/source/cairo/cairo_devicehelper.hxx143
-rw-r--r--canvas/source/cairo/cairo_quartz_cairo.cxx347
-rw-r--r--canvas/source/cairo/cairo_quartz_cairo.hxx73
-rw-r--r--canvas/source/cairo/cairo_repainttarget.hxx60
-rw-r--r--canvas/source/cairo/cairo_services.cxx83
-rw-r--r--canvas/source/cairo/cairo_sprite.hxx71
-rw-r--r--canvas/source/cairo/cairo_spritecanvas.cxx232
-rw-r--r--canvas/source/cairo/cairo_spritecanvas.hxx174
-rw-r--r--canvas/source/cairo/cairo_spritecanvashelper.cxx544
-rw-r--r--canvas/source/cairo/cairo_spritecanvashelper.hxx147
-rw-r--r--canvas/source/cairo/cairo_spritedevicehelper.cxx201
-rw-r--r--canvas/source/cairo/cairo_spritedevicehelper.hxx95
-rw-r--r--canvas/source/cairo/cairo_spritehelper.cxx183
-rw-r--r--canvas/source/cairo/cairo_spritehelper.hxx115
-rw-r--r--canvas/source/cairo/cairo_spritesurface.hxx70
-rw-r--r--canvas/source/cairo/cairo_surfaceprovider.hxx82
-rw-r--r--canvas/source/cairo/cairo_textlayout.cxx656
-rw-r--r--canvas/source/cairo/cairo_textlayout.hxx120
-rw-r--r--canvas/source/cairo/cairo_win32_cairo.cxx325
-rw-r--r--canvas/source/cairo/cairo_win32_cairo.hxx70
-rw-r--r--canvas/source/cairo/cairo_xlib_cairo.cxx352
-rw-r--r--canvas/source/cairo/cairo_xlib_cairo.hxx106
-rw-r--r--canvas/source/cairo/exports.dxp3
-rw-r--r--canvas/source/cairo/makefile.mk132
-rwxr-xr-xcanvas/source/directx/dx_5rm.cxx2283
-rwxr-xr-xcanvas/source/directx/dx_9rm.cxx1363
-rwxr-xr-xcanvas/source/directx/dx_bitmap.cxx219
-rwxr-xr-xcanvas/source/directx/dx_bitmap.hxx93
-rwxr-xr-xcanvas/source/directx/dx_bitmapcanvashelper.cxx246
-rwxr-xr-xcanvas/source/directx/dx_bitmapcanvashelper.hxx136
-rw-r--r--canvas/source/directx/dx_bitmapprovider.hxx45
-rw-r--r--canvas/source/directx/dx_canvas.cxx255
-rw-r--r--canvas/source/directx/dx_canvas.hxx175
-rwxr-xr-xcanvas/source/directx/dx_canvasbitmap.cxx277
-rwxr-xr-xcanvas/source/directx/dx_canvasbitmap.hxx104
-rwxr-xr-xcanvas/source/directx/dx_canvascustomsprite.cxx123
-rwxr-xr-xcanvas/source/directx/dx_canvascustomsprite.hxx139
-rwxr-xr-xcanvas/source/directx/dx_canvasfont.cxx180
-rwxr-xr-xcanvas/source/directx/dx_canvasfont.hxx104
-rwxr-xr-xcanvas/source/directx/dx_canvashelper.cxx814
-rwxr-xr-xcanvas/source/directx/dx_canvashelper.hxx257
-rwxr-xr-xcanvas/source/directx/dx_canvashelper_texturefill.cxx627
-rwxr-xr-xcanvas/source/directx/dx_config.cxx176
-rw-r--r--canvas/source/directx/dx_config.hxx89
-rwxr-xr-xcanvas/source/directx/dx_devicehelper.cxx236
-rwxr-xr-xcanvas/source/directx/dx_devicehelper.hxx121
-rwxr-xr-xcanvas/source/directx/dx_gdiplususer.cxx81
-rwxr-xr-xcanvas/source/directx/dx_gdiplususer.hxx55
-rw-r--r--canvas/source/directx/dx_graphicsprovider.hxx53
-rw-r--r--canvas/source/directx/dx_ibitmap.hxx70
-rwxr-xr-xcanvas/source/directx/dx_impltools.cxx668
-rwxr-xr-xcanvas/source/directx/dx_impltools.hxx142
-rwxr-xr-xcanvas/source/directx/dx_linepolypolygon.cxx65
-rwxr-xr-xcanvas/source/directx/dx_linepolypolygon.hxx56
-rwxr-xr-xcanvas/source/directx/dx_rendermodule.hxx90
-rwxr-xr-xcanvas/source/directx/dx_sprite.hxx51
-rwxr-xr-xcanvas/source/directx/dx_spritecanvas.cxx211
-rwxr-xr-xcanvas/source/directx/dx_spritecanvas.hxx155
-rwxr-xr-xcanvas/source/directx/dx_spritecanvashelper.cxx382
-rwxr-xr-xcanvas/source/directx/dx_spritecanvashelper.hxx161
-rw-r--r--canvas/source/directx/dx_spritedevicehelper.cxx259
-rw-r--r--canvas/source/directx/dx_spritedevicehelper.hxx114
-rwxr-xr-xcanvas/source/directx/dx_spritehelper.cxx216
-rwxr-xr-xcanvas/source/directx/dx_spritehelper.hxx111
-rw-r--r--canvas/source/directx/dx_surfacebitmap.cxx804
-rw-r--r--canvas/source/directx/dx_surfacebitmap.hxx147
-rwxr-xr-xcanvas/source/directx/dx_surfacegraphics.cxx85
-rwxr-xr-xcanvas/source/directx/dx_surfacegraphics.hxx45
-rwxr-xr-xcanvas/source/directx/dx_textlayout.cxx280
-rwxr-xr-xcanvas/source/directx/dx_textlayout.hxx115
-rwxr-xr-xcanvas/source/directx/dx_textlayout_drawhelper.cxx312
-rwxr-xr-xcanvas/source/directx/dx_textlayout_drawhelper.hxx86
-rwxr-xr-xcanvas/source/directx/dx_vcltools.cxx523
-rwxr-xr-xcanvas/source/directx/dx_vcltools.hxx64
-rwxr-xr-xcanvas/source/directx/dx_winstuff.hxx219
-rw-r--r--canvas/source/directx/exports.dxp3
-rw-r--r--canvas/source/directx/makefile.mk219
-rw-r--r--canvas/source/factory/cf_service.cxx553
-rw-r--r--canvas/source/factory/makefile.mk56
-rw-r--r--canvas/source/null/exports.dxp3
-rw-r--r--canvas/source/null/makefile.mk70
-rw-r--r--canvas/source/null/null_canvasbitmap.cxx84
-rw-r--r--canvas/source/null/null_canvasbitmap.hxx92
-rw-r--r--canvas/source/null/null_canvascustomsprite.cxx105
-rw-r--r--canvas/source/null/null_canvascustomsprite.hxx136
-rw-r--r--canvas/source/null/null_canvasfont.cxx121
-rw-r--r--canvas/source/null/null_canvasfont.hxx95
-rw-r--r--canvas/source/null/null_canvashelper.cxx336
-rw-r--r--canvas/source/null/null_canvashelper.hxx273
-rw-r--r--canvas/source/null/null_devicehelper.cxx239
-rw-r--r--canvas/source/null/null_devicehelper.hxx107
-rw-r--r--canvas/source/null/null_spritecanvas.cxx166
-rw-r--r--canvas/source/null/null_spritecanvas.hxx149
-rw-r--r--canvas/source/null/null_spritecanvashelper.cxx131
-rw-r--r--canvas/source/null/null_spritecanvashelper.hxx136
-rw-r--r--canvas/source/null/null_spritehelper.cxx97
-rw-r--r--canvas/source/null/null_spritehelper.hxx105
-rw-r--r--canvas/source/null/null_textlayout.cxx261
-rw-r--r--canvas/source/null/null_textlayout.hxx107
-rw-r--r--canvas/source/null/null_usagecounter.hxx76
-rw-r--r--canvas/source/null/sprite.hxx47
-rw-r--r--canvas/source/simplecanvas/exports.dxp3
-rw-r--r--canvas/source/simplecanvas/makefile.mk63
-rw-r--r--canvas/source/simplecanvas/simplecanvasimpl.cxx400
-rw-r--r--canvas/source/tools/bitmap.cxx838
-rw-r--r--canvas/source/tools/cachedprimitivebase.cxx112
-rw-r--r--canvas/source/tools/canvascustomspritehelper.cxx496
-rwxr-xr-xcanvas/source/tools/canvastools.cxx1044
-rw-r--r--canvas/source/tools/canvastools.flt4
-rw-r--r--canvas/source/tools/elapsedtime.cxx224
-rw-r--r--canvas/source/tools/image.cxx2394
-rw-r--r--canvas/source/tools/image.hxx298
-rw-r--r--canvas/source/tools/image_sysprereq.h102
-rw-r--r--canvas/source/tools/imagecachedprimitive.hxx57
-rw-r--r--canvas/source/tools/makefile.mk101
-rw-r--r--canvas/source/tools/page.cxx152
-rw-r--r--canvas/source/tools/page.hxx157
-rw-r--r--canvas/source/tools/pagemanager.cxx222
-rw-r--r--canvas/source/tools/pagemanager.hxx94
-rw-r--r--canvas/source/tools/parametricpolypolygon.cxx290
-rw-r--r--canvas/source/tools/prioritybooster.cxx83
-rw-r--r--canvas/source/tools/propertysethelper.cxx187
-rw-r--r--canvas/source/tools/spriteredrawmanager.cxx520
-rw-r--r--canvas/source/tools/surface.cxx496
-rw-r--r--canvas/source/tools/surface.hxx162
-rw-r--r--canvas/source/tools/surfaceproxy.cxx182
-rw-r--r--canvas/source/tools/surfaceproxy.hxx134
-rw-r--r--canvas/source/tools/surfaceproxymanager.cxx86
-rw-r--r--canvas/source/tools/surfacerect.hxx135
-rw-r--r--canvas/source/tools/verifyinput.cxx926
-rw-r--r--canvas/source/vcl/backbuffer.cxx71
-rw-r--r--canvas/source/vcl/backbuffer.hxx67
-rw-r--r--canvas/source/vcl/bitmapbackbuffer.cxx165
-rw-r--r--canvas/source/vcl/bitmapbackbuffer.hxx104
-rw-r--r--canvas/source/vcl/cachedbitmap.cxx104
-rw-r--r--canvas/source/vcl/cachedbitmap.hxx78
-rw-r--r--canvas/source/vcl/canvas.cxx161
-rw-r--r--canvas/source/vcl/canvas.hxx131
-rw-r--r--canvas/source/vcl/canvasbitmap.cxx144
-rw-r--r--canvas/source/vcl/canvasbitmap.hxx129
-rw-r--r--canvas/source/vcl/canvasbitmaphelper.cxx567
-rw-r--r--canvas/source/vcl/canvasbitmaphelper.hxx129
-rw-r--r--canvas/source/vcl/canvascustomsprite.cxx197
-rw-r--r--canvas/source/vcl/canvascustomsprite.hxx133
-rw-r--r--canvas/source/vcl/canvasfont.cxx183
-rw-r--r--canvas/source/vcl/canvasfont.hxx100
-rw-r--r--canvas/source/vcl/canvashelper.cxx1428
-rw-r--r--canvas/source/vcl/canvashelper.hxx344
-rw-r--r--canvas/source/vcl/canvashelper_texturefill.cxx1181
-rw-r--r--canvas/source/vcl/devicehelper.cxx242
-rw-r--r--canvas/source/vcl/devicehelper.hxx103
-rw-r--r--canvas/source/vcl/exports.dxp3
-rw-r--r--canvas/source/vcl/impltools.cxx544
-rw-r--r--canvas/source/vcl/impltools.hxx201
-rw-r--r--canvas/source/vcl/makefile.mk85
-rw-r--r--canvas/source/vcl/outdevprovider.hxx61
-rw-r--r--canvas/source/vcl/repainttarget.hxx63
-rw-r--r--canvas/source/vcl/services.cxx90
-rw-r--r--canvas/source/vcl/sprite.hxx71
-rw-r--r--canvas/source/vcl/spritecanvas.cxx178
-rw-r--r--canvas/source/vcl/spritecanvas.hxx172
-rw-r--r--canvas/source/vcl/spritecanvashelper.cxx718
-rw-r--r--canvas/source/vcl/spritecanvashelper.hxx179
-rw-r--r--canvas/source/vcl/spritedevicehelper.cxx158
-rw-r--r--canvas/source/vcl/spritedevicehelper.hxx82
-rw-r--r--canvas/source/vcl/spritehelper.cxx443
-rw-r--r--canvas/source/vcl/spritehelper.hxx121
-rw-r--r--canvas/source/vcl/textlayout.cxx496
-rw-r--r--canvas/source/vcl/textlayout.hxx115
-rw-r--r--canvas/source/vcl/windowoutdevholder.cxx57
-rw-r--r--canvas/source/vcl/windowoutdevholder.hxx66
-rw-r--r--canvas/workben/canvasdemo.cxx712
-rw-r--r--canvas/workben/makefile.mk37
-rw-r--r--chart2/chartview.pmk30
-rw-r--r--chart2/inc/makefile.mk47
-rw-r--r--chart2/inc/pch/precompiled_chart2.cxx29
-rw-r--r--chart2/inc/pch/precompiled_chart2.hxx275
-rw-r--r--chart2/prj/build.lst27
-rw-r--r--chart2/prj/d.lst23
-rw-r--r--chart2/qa/TestCaseOldAPI.java1033
-rw-r--r--chart2/qa/data.chd14
-rw-r--r--chart2/qa/makefile.mk70
-rw-r--r--chart2/qa/unoapi/Test.java51
-rw-r--r--chart2/qa/unoapi/knownissues.xcl40
-rw-r--r--chart2/qa/unoapi/makefile.mk48
-rw-r--r--chart2/qa/unoapi/sch.sce26
-rw-r--r--chart2/qa/unoapi/testdocuments/TransparencyChart.sxsbin0 -> 10810 bytes-rw-r--r--chart2/qa/unoapi/testdocuments/emptyChart.sdsbin0 -> 44544 bytes-rw-r--r--chart2/qa/unoapi/testdocuments/space-metal.jpgbin0 -> 4313 bytes-rw-r--r--chart2/source/controller/accessibility/AccStatisticsObject.cxx81
-rw-r--r--chart2/source/controller/accessibility/AccStatisticsObject.hxx68
-rw-r--r--chart2/source/controller/accessibility/AccessibleBase.cxx1010
-rw-r--r--chart2/source/controller/accessibility/AccessibleChartElement.cxx332
-rw-r--r--chart2/source/controller/accessibility/AccessibleChartElement.hxx142
-rw-r--r--chart2/source/controller/accessibility/AccessibleChartShape.cxx289
-rw-r--r--chart2/source/controller/accessibility/AccessibleChartShape.hxx104
-rw-r--r--chart2/source/controller/accessibility/AccessibleChartView.cxx416
-rw-r--r--chart2/source/controller/accessibility/AccessibleTextHelper.cxx203
-rw-r--r--chart2/source/controller/accessibility/AccessibleViewForwarder.cxx116
-rw-r--r--chart2/source/controller/accessibility/AccessibleViewForwarder.hxx65
-rw-r--r--chart2/source/controller/accessibility/ChartElementFactory.cxx145
-rw-r--r--chart2/source/controller/accessibility/ChartElementFactory.hxx48
-rw-r--r--chart2/source/controller/accessibility/makefile.mk54
-rw-r--r--chart2/source/controller/chartapiwrapper/AreaWrapper.cxx207
-rw-r--r--chart2/source/controller/chartapiwrapper/AreaWrapper.hxx105
-rw-r--r--chart2/source/controller/chartapiwrapper/AxisWrapper.cxx596
-rw-r--r--chart2/source/controller/chartapiwrapper/AxisWrapper.hxx140
-rw-r--r--chart2/source/controller/chartapiwrapper/Chart2ModelContact.cxx319
-rw-r--r--chart2/source/controller/chartapiwrapper/Chart2ModelContact.hxx169
-rw-r--r--chart2/source/controller/chartapiwrapper/ChartDataWrapper.cxx633
-rw-r--r--chart2/source/controller/chartapiwrapper/ChartDataWrapper.hxx149
-rw-r--r--chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx1623
-rw-r--r--chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx887
-rw-r--r--chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.hxx160
-rw-r--r--chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx2148
-rw-r--r--chart2/source/controller/chartapiwrapper/DiagramWrapper.hxx319
-rw-r--r--chart2/source/controller/chartapiwrapper/GridWrapper.cxx211
-rw-r--r--chart2/source/controller/chartapiwrapper/GridWrapper.hxx103
-rw-r--r--chart2/source/controller/chartapiwrapper/LegendWrapper.cxx459
-rw-r--r--chart2/source/controller/chartapiwrapper/LegendWrapper.hxx113
-rw-r--r--chart2/source/controller/chartapiwrapper/MinMaxLineWrapper.cxx435
-rw-r--r--chart2/source/controller/chartapiwrapper/MinMaxLineWrapper.hxx139
-rw-r--r--chart2/source/controller/chartapiwrapper/ReferenceSizePropertyProvider.hxx48
-rw-r--r--chart2/source/controller/chartapiwrapper/TitleWrapper.cxx566
-rw-r--r--chart2/source/controller/chartapiwrapper/TitleWrapper.hxx136
-rw-r--r--chart2/source/controller/chartapiwrapper/UpDownBarWrapper.cxx402
-rw-r--r--chart2/source/controller/chartapiwrapper/UpDownBarWrapper.hxx137
-rw-r--r--chart2/source/controller/chartapiwrapper/WallFloorWrapper.cxx192
-rw-r--r--chart2/source/controller/chartapiwrapper/WallFloorWrapper.hxx89
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedAddInProperty.cxx158
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedAddInProperty.hxx111
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedAutomaticPositionProperties.cxx156
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedAutomaticPositionProperties.hxx49
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedAxisAndGridExistenceProperties.cxx448
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedAxisAndGridExistenceProperties.hxx76
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedCharacterHeightProperty.cxx172
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedCharacterHeightProperty.hxx102
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedDataCaptionProperties.cxx193
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedDataCaptionProperties.hxx61
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedGapwidthProperty.cxx201
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedGapwidthProperty.hxx87
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedNumberFormatProperty.cxx199
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedNumberFormatProperty.hxx92
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedScaleProperty.cxx511
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedScaleProperty.hxx92
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedScaleTextProperties.cxx167
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedScaleTextProperties.hxx54
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedSceneProperty.cxx131
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedSceneProperty.hxx82
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedSeriesAreaOrLineProperty.cxx70
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedSeriesAreaOrLineProperty.hxx60
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedSeriesOrDiagramProperty.hxx189
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedSplineProperties.cxx287
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedSplineProperties.hxx59
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx1154
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.hxx57
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedStockProperties.cxx330
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedStockProperties.hxx59
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx593
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.hxx61
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedTextRotationProperty.cxx87
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedTextRotationProperty.hxx58
-rw-r--r--chart2/source/controller/chartapiwrapper/makefile.mk77
-rw-r--r--chart2/source/controller/dialogs/Bitmaps.hrc216
-rw-r--r--chart2/source/controller/dialogs/Bitmaps.src543
-rw-r--r--chart2/source/controller/dialogs/Bitmaps_HC.hrc213
-rw-r--r--chart2/source/controller/dialogs/Bitmaps_HC.src543
-rw-r--r--chart2/source/controller/dialogs/ChangingResource.cxx56
-rw-r--r--chart2/source/controller/dialogs/ChangingResource.hxx63
-rw-r--r--chart2/source/controller/dialogs/ChartTypeDialogController.cxx1285
-rw-r--r--chart2/source/controller/dialogs/ChartTypeDialogController.hxx317
-rw-r--r--chart2/source/controller/dialogs/ChartTypeTemplateProvider.hxx53
-rw-r--r--chart2/source/controller/dialogs/CommonResources.hrc79
-rw-r--r--chart2/source/controller/dialogs/DataBrowser.cxx1364
-rw-r--r--chart2/source/controller/dialogs/DataBrowser.hxx204
-rw-r--r--chart2/source/controller/dialogs/DataBrowserModel.cxx1000
-rw-r--r--chart2/source/controller/dialogs/DataBrowserModel.hxx181
-rw-r--r--chart2/source/controller/dialogs/DialogModel.cxx849
-rw-r--r--chart2/source/controller/dialogs/DialogModel.hxx197
-rw-r--r--chart2/source/controller/dialogs/ObjectNameProvider.cxx852
-rw-r--r--chart2/source/controller/dialogs/RangeEdit.cxx70
-rw-r--r--chart2/source/controller/dialogs/RangeSelectionButton.cxx56
-rw-r--r--chart2/source/controller/dialogs/RangeSelectionHelper.cxx198
-rw-r--r--chart2/source/controller/dialogs/RangeSelectionListener.cxx75
-rw-r--r--chart2/source/controller/dialogs/ResourceIds.hrc86
-rw-r--r--chart2/source/controller/dialogs/Strings.src608
-rw-r--r--chart2/source/controller/dialogs/Strings_AdditionalControls.src57
-rw-r--r--chart2/source/controller/dialogs/Strings_ChartTypes.src153
-rw-r--r--chart2/source/controller/dialogs/Strings_Scale.src44
-rw-r--r--chart2/source/controller/dialogs/Strings_Statistic.src72
-rw-r--r--chart2/source/controller/dialogs/TabPages.hrc172
-rw-r--r--chart2/source/controller/dialogs/TextDirectionListBox.cxx60
-rw-r--r--chart2/source/controller/dialogs/TimerTriggeredControllerLock.cxx70
-rw-r--r--chart2/source/controller/dialogs/TitleDialogData.cxx124
-rw-r--r--chart2/source/controller/dialogs/dlg_ChartType.cxx78
-rw-r--r--chart2/source/controller/dialogs/dlg_ChartType.hrc35
-rw-r--r--chart2/source/controller/dialogs/dlg_ChartType.src57
-rw-r--r--chart2/source/controller/dialogs/dlg_ChartType_UNO.cxx139
-rw-r--r--chart2/source/controller/dialogs/dlg_CreationWizard.cxx267
-rw-r--r--chart2/source/controller/dialogs/dlg_CreationWizard.hrc32
-rw-r--r--chart2/source/controller/dialogs/dlg_CreationWizard.src39
-rw-r--r--chart2/source/controller/dialogs/dlg_CreationWizard_UNO.cxx433
-rw-r--r--chart2/source/controller/dialogs/dlg_DataEditor.cxx363
-rw-r--r--chart2/source/controller/dialogs/dlg_DataEditor.hrc47
-rw-r--r--chart2/source/controller/dialogs/dlg_DataEditor.src148
-rw-r--r--chart2/source/controller/dialogs/dlg_DataSource.cxx253
-rw-r--r--chart2/source/controller/dialogs/dlg_DataSource.hrc33
-rw-r--r--chart2/source/controller/dialogs/dlg_DataSource.src48
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertAxis_Grid.cxx164
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertAxis_Grid.hrc46
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertAxis_Grid.src99
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertDataLabel.cxx74
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertDataLabel.hrc32
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertDataLabel.src42
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertErrorBars.cxx134
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertErrorBars.hrc31
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertErrorBars.src43
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertLegend.cxx78
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertLegend.hrc31
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertLegend.src47
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertTitle.cxx67
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertTitle.hrc31
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertTitle.src42
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertTrendline.cxx114
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertTrendline.hrc31
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertTrendline.src48
-rw-r--r--chart2/source/controller/dialogs/dlg_NumberFormat.cxx86
-rw-r--r--chart2/source/controller/dialogs/dlg_NumberFormat.hxx54
-rw-r--r--chart2/source/controller/dialogs/dlg_ObjectProperties.cxx652
-rw-r--r--chart2/source/controller/dialogs/dlg_ObjectProperties.src39
-rw-r--r--chart2/source/controller/dialogs/dlg_ShapeFont.cxx92
-rw-r--r--chart2/source/controller/dialogs/dlg_ShapeFont.src62
-rw-r--r--chart2/source/controller/dialogs/dlg_ShapeParagraph.cxx93
-rw-r--r--chart2/source/controller/dialogs/dlg_ShapeParagraph.src67
-rw-r--r--chart2/source/controller/dialogs/dlg_View3D.cxx118
-rw-r--r--chart2/source/controller/dialogs/dlg_View3D.hrc40
-rw-r--r--chart2/source/controller/dialogs/dlg_View3D.src48
-rw-r--r--chart2/source/controller/dialogs/hidother.src116
-rw-r--r--chart2/source/controller/dialogs/makefile.mk205
-rw-r--r--chart2/source/controller/dialogs/res_BarGeometry.cxx112
-rw-r--r--chart2/source/controller/dialogs/res_BarGeometry.hxx67
-rw-r--r--chart2/source/controller/dialogs/res_BarGeometry.src49
-rw-r--r--chart2/source/controller/dialogs/res_DataLabel.cxx419
-rw-r--r--chart2/source/controller/dialogs/res_DataLabel.hxx104
-rw-r--r--chart2/source/controller/dialogs/res_DataLabel_IDs.hrc45
-rw-r--r--chart2/source/controller/dialogs/res_DataLabel_tmpl.hrc169
-rw-r--r--chart2/source/controller/dialogs/res_ErrorBar.cxx787
-rw-r--r--chart2/source/controller/dialogs/res_ErrorBar_IDs.hrc63
-rw-r--r--chart2/source/controller/dialogs/res_ErrorBar_tmpl.hrc228
-rw-r--r--chart2/source/controller/dialogs/res_LegendPosition.cxx265
-rw-r--r--chart2/source/controller/dialogs/res_LegendPosition.hxx90
-rw-r--r--chart2/source/controller/dialogs/res_LegendPosition_IDs.hrc32
-rw-r--r--chart2/source/controller/dialogs/res_LegendPosition_tmpl.hrc80
-rw-r--r--chart2/source/controller/dialogs/res_SecondaryAxisCheckBoxes_tmpl.hrc59
-rw-r--r--chart2/source/controller/dialogs/res_TextSeparator.cxx155
-rw-r--r--chart2/source/controller/dialogs/res_TextSeparator.hxx75
-rw-r--r--chart2/source/controller/dialogs/res_TextSeparator.src49
-rw-r--r--chart2/source/controller/dialogs/res_Titles.cxx224
-rw-r--r--chart2/source/controller/dialogs/res_Titles.hrc47
-rw-r--r--chart2/source/controller/dialogs/res_Titles.hxx77
-rw-r--r--chart2/source/controller/dialogs/res_Titlesx_tmpl.hrc149
-rw-r--r--chart2/source/controller/dialogs/res_Trendline.cxx282
-rw-r--r--chart2/source/controller/dialogs/res_Trendline.hxx83
-rw-r--r--chart2/source/controller/dialogs/res_Trendline_IDs.hrc44
-rw-r--r--chart2/source/controller/dialogs/res_Trendline_tmpl.hrc123
-rw-r--r--chart2/source/controller/dialogs/tp_3D_SceneAppearance.cxx363
-rw-r--r--chart2/source/controller/dialogs/tp_3D_SceneAppearance.hrc38
-rw-r--r--chart2/source/controller/dialogs/tp_3D_SceneAppearance.hxx99
-rw-r--r--chart2/source/controller/dialogs/tp_3D_SceneAppearance.src98
-rw-r--r--chart2/source/controller/dialogs/tp_3D_SceneGeometry.cxx296
-rw-r--r--chart2/source/controller/dialogs/tp_3D_SceneGeometry.hrc40
-rw-r--r--chart2/source/controller/dialogs/tp_3D_SceneGeometry.hxx112
-rw-r--r--chart2/source/controller/dialogs/tp_3D_SceneGeometry.src147
-rw-r--r--chart2/source/controller/dialogs/tp_3D_SceneIllumination.cxx650
-rw-r--r--chart2/source/controller/dialogs/tp_3D_SceneIllumination.hrc46
-rw-r--r--chart2/source/controller/dialogs/tp_3D_SceneIllumination.hxx145
-rw-r--r--chart2/source/controller/dialogs/tp_3D_SceneIllumination.src162
-rw-r--r--chart2/source/controller/dialogs/tp_AxisLabel.cxx323
-rw-r--r--chart2/source/controller/dialogs/tp_AxisLabel.hxx99
-rw-r--r--chart2/source/controller/dialogs/tp_AxisLabel.src186
-rw-r--r--chart2/source/controller/dialogs/tp_AxisPositions.cxx498
-rw-r--r--chart2/source/controller/dialogs/tp_AxisPositions.hxx112
-rw-r--r--chart2/source/controller/dialogs/tp_AxisPositions.src292
-rw-r--r--chart2/source/controller/dialogs/tp_ChartType.cxx1183
-rw-r--r--chart2/source/controller/dialogs/tp_ChartType.hrc62
-rw-r--r--chart2/source/controller/dialogs/tp_ChartType.hxx125
-rw-r--r--chart2/source/controller/dialogs/tp_ChartType.src259
-rw-r--r--chart2/source/controller/dialogs/tp_DataLabel.cxx74
-rw-r--r--chart2/source/controller/dialogs/tp_DataLabel.hxx64
-rw-r--r--chart2/source/controller/dialogs/tp_DataLabel.src42
-rw-r--r--chart2/source/controller/dialogs/tp_DataSource.cxx1076
-rw-r--r--chart2/source/controller/dialogs/tp_DataSource.hrc50
-rw-r--r--chart2/source/controller/dialogs/tp_DataSource.hxx179
-rw-r--r--chart2/source/controller/dialogs/tp_DataSource.src171
-rw-r--r--chart2/source/controller/dialogs/tp_DataSourceControls.cxx57
-rw-r--r--chart2/source/controller/dialogs/tp_DataSourceControls.hxx70
-rw-r--r--chart2/source/controller/dialogs/tp_ErrorBars.cxx100
-rw-r--r--chart2/source/controller/dialogs/tp_ErrorBars.hxx65
-rw-r--r--chart2/source/controller/dialogs/tp_ErrorBars.src38
-rw-r--r--chart2/source/controller/dialogs/tp_LegendPosition.cxx88
-rw-r--r--chart2/source/controller/dialogs/tp_LegendPosition.hxx69
-rw-r--r--chart2/source/controller/dialogs/tp_LegendPosition.src65
-rw-r--r--chart2/source/controller/dialogs/tp_Location.cxx71
-rw-r--r--chart2/source/controller/dialogs/tp_Location.hrc32
-rw-r--r--chart2/source/controller/dialogs/tp_Location.hxx76
-rw-r--r--chart2/source/controller/dialogs/tp_Location.src73
-rw-r--r--chart2/source/controller/dialogs/tp_PointGeometry.cxx104
-rw-r--r--chart2/source/controller/dialogs/tp_PointGeometry.hxx58
-rw-r--r--chart2/source/controller/dialogs/tp_PointGeometry.src36
-rw-r--r--chart2/source/controller/dialogs/tp_PolarOptions.cxx126
-rw-r--r--chart2/source/controller/dialogs/tp_PolarOptions.hrc40
-rw-r--r--chart2/source/controller/dialogs/tp_PolarOptions.hxx67
-rw-r--r--chart2/source/controller/dialogs/tp_PolarOptions.src87
-rw-r--r--chart2/source/controller/dialogs/tp_RangeChooser.cxx414
-rw-r--r--chart2/source/controller/dialogs/tp_RangeChooser.hrc40
-rw-r--r--chart2/source/controller/dialogs/tp_RangeChooser.hxx124
-rw-r--r--chart2/source/controller/dialogs/tp_RangeChooser.src94
-rw-r--r--chart2/source/controller/dialogs/tp_Scale.cxx518
-rw-r--r--chart2/source/controller/dialogs/tp_Scale.hxx126
-rw-r--r--chart2/source/controller/dialogs/tp_Scale.src190
-rw-r--r--chart2/source/controller/dialogs/tp_SeriesToAxis.cxx313
-rw-r--r--chart2/source/controller/dialogs/tp_SeriesToAxis.hrc45
-rw-r--r--chart2/source/controller/dialogs/tp_SeriesToAxis.hxx95
-rw-r--r--chart2/source/controller/dialogs/tp_SeriesToAxis.src176
-rw-r--r--chart2/source/controller/dialogs/tp_TitleRotation.cxx126
-rw-r--r--chart2/source/controller/dialogs/tp_TitleRotation.hxx69
-rw-r--r--chart2/source/controller/dialogs/tp_TitleRotation.src93
-rw-r--r--chart2/source/controller/dialogs/tp_Trendline.cxx77
-rw-r--r--chart2/source/controller/dialogs/tp_Trendline.hxx59
-rw-r--r--chart2/source/controller/dialogs/tp_Trendline.src38
-rw-r--r--chart2/source/controller/dialogs/tp_Wizard_TitlesAndObjects.cxx187
-rw-r--r--chart2/source/controller/dialogs/tp_Wizard_TitlesAndObjects.hrc50
-rw-r--r--chart2/source/controller/dialogs/tp_Wizard_TitlesAndObjects.hxx93
-rw-r--r--chart2/source/controller/dialogs/tp_Wizard_TitlesAndObjects.src92
-rw-r--r--chart2/source/controller/drawinglayer/DrawViewWrapper.cxx445
-rw-r--r--chart2/source/controller/drawinglayer/ViewElementListProvider.cxx274
-rw-r--r--chart2/source/controller/drawinglayer/makefile.mk49
-rw-r--r--chart2/source/controller/inc/AccessibleBase.hxx379
-rw-r--r--chart2/source/controller/inc/AccessibleChartView.hxx155
-rw-r--r--chart2/source/controller/inc/AccessibleTextHelper.hxx113
-rw-r--r--chart2/source/controller/inc/AxisItemConverter.hxx92
-rw-r--r--chart2/source/controller/inc/CharacterPropertyItemConverter.hxx84
-rw-r--r--chart2/source/controller/inc/ChartDocumentWrapper.hxx235
-rw-r--r--chart2/source/controller/inc/ChartRenderer.hxx76
-rw-r--r--chart2/source/controller/inc/ConfigurationAccess.hxx59
-rw-r--r--chart2/source/controller/inc/DataPointItemConverter.hxx110
-rw-r--r--chart2/source/controller/inc/DrawViewWrapper.hxx112
-rwxr-xr-xchart2/source/controller/inc/ErrorBarItemConverter.hxx84
-rw-r--r--chart2/source/controller/inc/GraphicPropertyItemConverter.hxx85
-rw-r--r--chart2/source/controller/inc/HelpIds.hrc182
-rw-r--r--chart2/source/controller/inc/ItemConverter.hxx215
-rw-r--r--chart2/source/controller/inc/ItemPropertyMap.hxx90
-rw-r--r--chart2/source/controller/inc/LegendItemConverter.hxx79
-rw-r--r--chart2/source/controller/inc/MenuResIds.hrc41
-rw-r--r--chart2/source/controller/inc/MultipleChartConverters.hxx130
-rw-r--r--chart2/source/controller/inc/MultipleItemConverter.hxx60
-rw-r--r--chart2/source/controller/inc/ObjectHierarchy.hxx120
-rw-r--r--chart2/source/controller/inc/ObjectNameProvider.hxx87
-rw-r--r--chart2/source/controller/inc/PositionAndSizeHelper.hxx60
-rwxr-xr-xchart2/source/controller/inc/RangeEdit.hxx56
-rw-r--r--chart2/source/controller/inc/RangeSelectionButton.hxx55
-rwxr-xr-xchart2/source/controller/inc/RangeSelectionHelper.hxx87
-rw-r--r--chart2/source/controller/inc/RangeSelectionListener.hxx79
-rw-r--r--chart2/source/controller/inc/RegressionCurveItemConverter.hxx82
-rw-r--r--chart2/source/controller/inc/RegressionEquationItemConverter.hxx83
-rw-r--r--chart2/source/controller/inc/SchSlotIds.hxx234
-rw-r--r--chart2/source/controller/inc/SeriesOptionsItemConverter.hxx102
-rw-r--r--chart2/source/controller/inc/ShapeController.hrc50
-rw-r--r--chart2/source/controller/inc/StatisticsItemConverter.hxx75
-rw-r--r--chart2/source/controller/inc/TabPageNotifiable.hxx51
-rw-r--r--chart2/source/controller/inc/TextDirectionListBox.hxx49
-rw-r--r--chart2/source/controller/inc/TimerTriggeredControllerLock.hxx63
-rw-r--r--chart2/source/controller/inc/TitleDialogData.hxx67
-rw-r--r--chart2/source/controller/inc/TitleItemConverter.hxx80
-rw-r--r--chart2/source/controller/inc/ViewElementListProvider.hxx70
-rw-r--r--chart2/source/controller/inc/dlg_ChartType.hxx76
-rw-r--r--chart2/source/controller/inc/dlg_ChartType_UNO.hxx86
-rw-r--r--chart2/source/controller/inc/dlg_CreationWizard.hxx105
-rw-r--r--chart2/source/controller/inc/dlg_CreationWizard_UNO.hxx129
-rw-r--r--chart2/source/controller/inc/dlg_DataEditor.hxx121
-rw-r--r--chart2/source/controller/inc/dlg_DataSource.hxx100
-rw-r--r--chart2/source/controller/inc/dlg_InsertAxis_Grid.hxx101
-rw-r--r--chart2/source/controller/inc/dlg_InsertDataLabel.hxx72
-rw-r--r--chart2/source/controller/inc/dlg_InsertErrorBars.hxx78
-rw-r--r--chart2/source/controller/inc/dlg_InsertLegend.hxx72
-rw-r--r--chart2/source/controller/inc/dlg_InsertTitle.hxx64
-rw-r--r--chart2/source/controller/inc/dlg_InsertTrendline.hxx68
-rw-r--r--chart2/source/controller/inc/dlg_ObjectProperties.hxx155
-rw-r--r--chart2/source/controller/inc/dlg_ShapeFont.hxx59
-rw-r--r--chart2/source/controller/inc/dlg_ShapeParagraph.hxx54
-rw-r--r--chart2/source/controller/inc/dlg_View3D.hxx84
-rw-r--r--chart2/source/controller/inc/res_ErrorBar.hxx155
-rw-r--r--chart2/source/controller/itemsetwrapper/AxisItemConverter.cxx835
-rw-r--r--chart2/source/controller/itemsetwrapper/CharacterPropertyItemConverter.cxx518
-rw-r--r--chart2/source/controller/itemsetwrapper/DataPointItemConverter.cxx700
-rwxr-xr-xchart2/source/controller/itemsetwrapper/ErrorBarItemConverter.cxx456
-rw-r--r--chart2/source/controller/itemsetwrapper/GraphicPropertyItemConverter.cxx809
-rw-r--r--chart2/source/controller/itemsetwrapper/ItemConverter.cxx269
-rw-r--r--chart2/source/controller/itemsetwrapper/LegendItemConverter.cxx236
-rw-r--r--chart2/source/controller/itemsetwrapper/MultipleChartConverters.cxx233
-rw-r--r--chart2/source/controller/itemsetwrapper/MultipleItemConverter.cxx84
-rw-r--r--chart2/source/controller/itemsetwrapper/RegressionCurveItemConverter.cxx276
-rw-r--r--chart2/source/controller/itemsetwrapper/RegressionEquationItemConverter.cxx187
-rw-r--r--chart2/source/controller/itemsetwrapper/SchWhichPairs.hxx254
-rw-r--r--chart2/source/controller/itemsetwrapper/SeriesOptionsItemConverter.cxx453
-rw-r--r--chart2/source/controller/itemsetwrapper/StatisticsItemConverter.cxx697
-rw-r--r--chart2/source/controller/itemsetwrapper/TitleItemConverter.cxx245
-rw-r--r--chart2/source/controller/itemsetwrapper/makefile.mk60
-rw-r--r--chart2/source/controller/main/ChartController.cxx1603
-rw-r--r--chart2/source/controller/main/ChartController.hxx737
-rw-r--r--chart2/source/controller/main/ChartController_EditData.cxx80
-rw-r--r--chart2/source/controller/main/ChartController_Insert.cxx946
-rw-r--r--chart2/source/controller/main/ChartController_Position.cxx191
-rw-r--r--chart2/source/controller/main/ChartController_Properties.cxx860
-rw-r--r--chart2/source/controller/main/ChartController_TextEdit.cxx271
-rw-r--r--chart2/source/controller/main/ChartController_Tools.cxx921
-rw-r--r--chart2/source/controller/main/ChartController_Window.cxx2029
-rw-r--r--chart2/source/controller/main/ChartDropTargetHelper.cxx204
-rw-r--r--chart2/source/controller/main/ChartDropTargetHelper.hxx69
-rw-r--r--chart2/source/controller/main/ChartFrameloader.cxx208
-rw-r--r--chart2/source/controller/main/ChartFrameloader.hxx91
-rw-r--r--chart2/source/controller/main/ChartRenderer.cxx178
-rw-r--r--chart2/source/controller/main/ChartTransferable.cxx172
-rw-r--r--chart2/source/controller/main/ChartTransferable.hxx67
-rw-r--r--chart2/source/controller/main/ChartWindow.cxx271
-rw-r--r--chart2/source/controller/main/ChartWindow.hxx88
-rw-r--r--chart2/source/controller/main/CommandDispatch.cxx211
-rw-r--r--chart2/source/controller/main/CommandDispatch.hxx151
-rw-r--r--chart2/source/controller/main/CommandDispatchContainer.cxx216
-rw-r--r--chart2/source/controller/main/CommandDispatchContainer.hxx160
-rw-r--r--chart2/source/controller/main/ConfigurationAccess.cxx120
-rw-r--r--chart2/source/controller/main/ControllerCommandDispatch.cxx805
-rw-r--r--chart2/source/controller/main/ControllerCommandDispatch.hxx136
-rw-r--r--chart2/source/controller/main/DragMethod_Base.cxx93
-rw-r--r--chart2/source/controller/main/DragMethod_Base.hxx69
-rw-r--r--chart2/source/controller/main/DragMethod_PieSegment.cxx163
-rw-r--r--chart2/source/controller/main/DragMethod_PieSegment.hxx64
-rw-r--r--chart2/source/controller/main/DragMethod_RotateDiagram.cxx237
-rw-r--r--chart2/source/controller/main/DragMethod_RotateDiagram.hxx92
-rw-r--r--chart2/source/controller/main/DrawCommandDispatch.cxx674
-rw-r--r--chart2/source/controller/main/DrawCommandDispatch.hrc50
-rw-r--r--chart2/source/controller/main/DrawCommandDispatch.hxx93
-rw-r--r--chart2/source/controller/main/ElementSelector.cxx344
-rw-r--r--chart2/source/controller/main/ElementSelector.hxx123
-rw-r--r--chart2/source/controller/main/FeatureCommandDispatchBase.cxx114
-rw-r--r--chart2/source/controller/main/FeatureCommandDispatchBase.hxx115
-rw-r--r--chart2/source/controller/main/ImplUndoManager.cxx505
-rw-r--r--chart2/source/controller/main/ImplUndoManager.hxx227
-rw-r--r--chart2/source/controller/main/ObjectHierarchy.cxx862
-rw-r--r--chart2/source/controller/main/PositionAndSizeHelper.cxx189
-rw-r--r--chart2/source/controller/main/SelectionHelper.cxx685
-rw-r--r--chart2/source/controller/main/SelectionHelper.hxx139
-rw-r--r--chart2/source/controller/main/ShapeController.cxx738
-rw-r--r--chart2/source/controller/main/ShapeController.hxx100
-rw-r--r--chart2/source/controller/main/ShapeToolbarController.cxx298
-rw-r--r--chart2/source/controller/main/ShapeToolbarController.hxx103
-rw-r--r--chart2/source/controller/main/StatusBarCommandDispatch.cxx156
-rw-r--r--chart2/source/controller/main/StatusBarCommandDispatch.hxx110
-rw-r--r--chart2/source/controller/main/UndoCommandDispatch.cxx147
-rw-r--r--chart2/source/controller/main/UndoCommandDispatch.hxx86
-rw-r--r--chart2/source/controller/main/UndoGuard.cxx143
-rw-r--r--chart2/source/controller/main/UndoManager.cxx440
-rw-r--r--chart2/source/controller/main/_serviceregistration_controller.cxx125
-rw-r--r--chart2/source/controller/main/makefile.mk84
-rw-r--r--chart2/source/controller/makefile.mk128
-rw-r--r--chart2/source/controller/menus/ShapeContextMenu.src124
-rw-r--r--chart2/source/controller/menus/ShapeEditContextMenu.src65
-rw-r--r--chart2/source/controller/menus/makefile.mk63
-rw-r--r--chart2/source/inc/AxisHelper.hxx247
-rw-r--r--chart2/source/inc/AxisIndexDefines.hxx38
-rw-r--r--chart2/source/inc/BaseGFXHelper.hxx102
-rw-r--r--chart2/source/inc/CachedDataSequence.hxx192
-rw-r--r--chart2/source/inc/CharacterProperties.hxx147
-rw-r--r--chart2/source/inc/ChartDebugTrace.hxx69
-rw-r--r--chart2/source/inc/ChartModelHelper.hxx115
-rw-r--r--chart2/source/inc/ChartTypeHelper.hxx104
-rw-r--r--chart2/source/inc/ChartViewHelper.hxx51
-rw-r--r--chart2/source/inc/CloneHelper.hxx124
-rw-r--r--chart2/source/inc/ColorPerPointHelper.hxx65
-rw-r--r--chart2/source/inc/CommonConverters.hxx279
-rw-r--r--chart2/source/inc/CommonFunctors.hxx228
-rw-r--r--chart2/source/inc/ConfigColorScheme.hxx94
-rw-r--r--chart2/source/inc/ConfigItemListener.hxx45
-rw-r--r--chart2/source/inc/ContainerHelper.hxx181
-rw-r--r--chart2/source/inc/ControllerLockGuard.hxx93
-rw-r--r--chart2/source/inc/DataSeriesHelper.hxx213
-rw-r--r--chart2/source/inc/DataSource.hxx83
-rw-r--r--chart2/source/inc/DataSourceHelper.hxx164
-rw-r--r--chart2/source/inc/DiagramHelper.hxx350
-rw-r--r--chart2/source/inc/DisposeHelper.hxx101
-rw-r--r--chart2/source/inc/ErrorBar.hxx160
-rw-r--r--chart2/source/inc/EventListenerHelper.hxx222
-rw-r--r--chart2/source/inc/ExplicitCategoriesProvider.hxx108
-rw-r--r--chart2/source/inc/ExponentialRegressionCurveCalculator.hxx74
-rw-r--r--chart2/source/inc/FastPropertyIdRanges.hxx57
-rw-r--r--chart2/source/inc/FillProperties.hxx91
-rw-r--r--chart2/source/inc/FormattedStringHelper.hxx57
-rwxr-xr-xchart2/source/inc/InternalData.hxx109
-rw-r--r--chart2/source/inc/InternalDataProvider.hxx246
-rw-r--r--chart2/source/inc/LabeledDataSequence.hxx115
-rw-r--r--chart2/source/inc/LegendHelper.hxx78
-rw-r--r--chart2/source/inc/LifeTime.hxx255
-rw-r--r--chart2/source/inc/LineProperties.hxx77
-rw-r--r--chart2/source/inc/LinearRegressionCurveCalculator.hxx74
-rw-r--r--chart2/source/inc/LogarithmicRegressionCurveCalculator.hxx74
-rw-r--r--chart2/source/inc/MeanValueRegressionCurveCalculator.hxx73
-rw-r--r--chart2/source/inc/MediaDescriptorHelper.hxx207
-rw-r--r--chart2/source/inc/ModifyListenerCallBack.hxx68
-rw-r--r--chart2/source/inc/ModifyListenerHelper.hxx307
-rw-r--r--chart2/source/inc/MutexContainer.hxx50
-rw-r--r--chart2/source/inc/NameContainer.hxx104
-rw-r--r--chart2/source/inc/NamedFillProperties.hxx75
-rw-r--r--chart2/source/inc/NamedLineProperties.hxx75
-rw-r--r--chart2/source/inc/NamedProperties.hxx62
-rw-r--r--chart2/source/inc/NoWarningThisInCTOR.hxx46
-rw-r--r--chart2/source/inc/OPropertySet.hxx319
-rw-r--r--chart2/source/inc/ObjectIdentifier.hxx278
-rw-r--r--chart2/source/inc/PotentialRegressionCurveCalculator.hxx76
-rw-r--r--chart2/source/inc/PropertyHelper.hxx197
-rw-r--r--chart2/source/inc/RangeHighlighter.hxx116
-rw-r--r--chart2/source/inc/ReferenceSizeProvider.hxx145
-rw-r--r--chart2/source/inc/RegressionCurveCalculator.hxx93
-rw-r--r--chart2/source/inc/RegressionCurveHelper.hxx241
-rw-r--r--chart2/source/inc/RelativePositionHelper.hxx120
-rw-r--r--chart2/source/inc/RelativeSizeHelper.hxx59
-rw-r--r--chart2/source/inc/ResId.hxx48
-rw-r--r--chart2/source/inc/RessourceManager.hxx53
-rw-r--r--chart2/source/inc/Scaling.hxx210
-rw-r--r--chart2/source/inc/SceneProperties.hxx96
-rw-r--r--chart2/source/inc/ServiceMacros.hxx146
-rw-r--r--chart2/source/inc/StackMode.hxx47
-rw-r--r--chart2/source/inc/StatisticsHelper.hxx133
-rw-r--r--chart2/source/inc/Strings.hrc409
-rw-r--r--chart2/source/inc/ThreeDHelper.hxx159
-rw-r--r--chart2/source/inc/TitleHelper.hxx101
-rw-r--r--chart2/source/inc/TrueGuard.hxx48
-rw-r--r--chart2/source/inc/UncachedDataSequence.hxx206
-rw-r--r--chart2/source/inc/UndoGuard.hxx120
-rw-r--r--chart2/source/inc/UndoManager.hxx180
-rw-r--r--chart2/source/inc/UserDefinedProperties.hxx69
-rw-r--r--chart2/source/inc/WeakListenerAdapter.hxx127
-rw-r--r--chart2/source/inc/WrappedDefaultProperty.hxx66
-rw-r--r--chart2/source/inc/WrappedDirectStateProperty.hxx53
-rw-r--r--chart2/source/inc/WrappedIgnoreProperty.hxx81
-rw-r--r--chart2/source/inc/WrappedProperty.hxx86
-rw-r--r--chart2/source/inc/WrappedPropertySet.hxx145
-rw-r--r--chart2/source/inc/XMLRangeHelper.hxx74
-rw-r--r--chart2/source/inc/charttoolsdllapi.hxx41
-rw-r--r--chart2/source/inc/chartview/ChartSfxItemIds.hxx262
-rw-r--r--chart2/source/inc/chartview/DataPointSymbolSupplier.hxx59
-rw-r--r--chart2/source/inc/chartview/DrawModelWrapper.hxx114
-rw-r--r--chart2/source/inc/chartview/ExplicitValueProvider.hxx119
-rw-r--r--chart2/source/inc/chartview/NumberFormatterWrapper.hxx82
-rw-r--r--chart2/source/inc/chartview/chartviewdllapi.hxx41
-rw-r--r--chart2/source/inc/chartview/servicenames_charttypes.hxx47
-rw-r--r--chart2/source/inc/exports.dxp3
-rw-r--r--chart2/source/inc/macros.hxx53
-rw-r--r--chart2/source/inc/servicenames.hxx71
-rw-r--r--chart2/source/inc/servicenames_charttypes.hxx49
-rw-r--r--chart2/source/inc/servicenames_coosystems.hxx43
-rw-r--r--chart2/source/inc/servicenames_dlwrapper.hxx41
-rw-r--r--chart2/source/model/filter/XMLFilter.cxx873
-rw-r--r--chart2/source/model/filter/makefile.mk49
-rw-r--r--chart2/source/model/inc/BaseCoordinateSystem.hxx190
-rw-r--r--chart2/source/model/inc/CartesianCoordinateSystem.hxx93
-rw-r--r--chart2/source/model/inc/ChartTypeManager.hxx92
-rw-r--r--chart2/source/model/inc/DataSeries.hxx230
-rw-r--r--chart2/source/model/inc/DataSeriesTree.hxx91
-rw-r--r--chart2/source/model/inc/Diagram.hxx241
-rw-r--r--chart2/source/model/inc/PolarCoordinateSystem.hxx93
-rw-r--r--chart2/source/model/inc/StockBar.hxx119
-rw-r--r--chart2/source/model/inc/XMLFilter.hxx223
-rw-r--r--chart2/source/model/inc/_serviceregistration_charttypes.hxx40
-rw-r--r--chart2/source/model/main/Axis.cxx646
-rw-r--r--chart2/source/model/main/Axis.hxx184
-rw-r--r--chart2/source/model/main/BaseCoordinateSystem.cxx409
-rw-r--r--chart2/source/model/main/CartesianCoordinateSystem.cxx155
-rwxr-xr-xchart2/source/model/main/ChartModel.cxx1378
-rw-r--r--chart2/source/model/main/ChartModel.hxx609
-rw-r--r--chart2/source/model/main/ChartModel_Persistence.cxx860
-rw-r--r--chart2/source/model/main/DataPoint.cxx319
-rw-r--r--chart2/source/model/main/DataPoint.hxx143
-rw-r--r--chart2/source/model/main/DataPointProperties.cxx438
-rw-r--r--chart2/source/model/main/DataPointProperties.hxx101
-rw-r--r--chart2/source/model/main/DataSeries.cxx624
-rw-r--r--chart2/source/model/main/DataSeriesProperties.cxx98
-rw-r--r--chart2/source/model/main/DataSeriesProperties.hxx63
-rw-r--r--chart2/source/model/main/Diagram.cxx713
-rw-r--r--chart2/source/model/main/FormattedString.cxx263
-rw-r--r--chart2/source/model/main/FormattedString.hxx140
-rw-r--r--chart2/source/model/main/GridProperties.cxx273
-rw-r--r--chart2/source/model/main/GridProperties.hxx128
-rw-r--r--chart2/source/model/main/LayoutContainer.cxx138
-rw-r--r--chart2/source/model/main/LayoutContainer.hxx90
-rw-r--r--chart2/source/model/main/Legend.cxx369
-rw-r--r--chart2/source/model/main/Legend.hxx154
-rw-r--r--chart2/source/model/main/PageBackground.cxx255
-rw-r--r--chart2/source/model/main/PageBackground.hxx132
-rw-r--r--chart2/source/model/main/PolarCoordinateSystem.cxx155
-rw-r--r--chart2/source/model/main/StockBar.cxx267
-rw-r--r--chart2/source/model/main/Title.cxx412
-rw-r--r--chart2/source/model/main/Title.hxx147
-rw-r--r--chart2/source/model/main/Wall.cxx260
-rw-r--r--chart2/source/model/main/Wall.hxx127
-rw-r--r--chart2/source/model/main/_serviceregistration_model.cxx220
-rw-r--r--chart2/source/model/main/makefile.mk67
-rw-r--r--chart2/source/model/makefile.mk100
-rw-r--r--chart2/source/model/template/AreaChartType.cxx77
-rw-r--r--chart2/source/model/template/AreaChartType.hxx64
-rw-r--r--chart2/source/model/template/AreaChartTypeTemplate.cxx281
-rw-r--r--chart2/source/model/template/AreaChartTypeTemplate.hxx103
-rw-r--r--chart2/source/model/template/BarChartType.cxx78
-rw-r--r--chart2/source/model/template/BarChartType.hxx64
-rw-r--r--chart2/source/model/template/BarChartTypeTemplate.cxx353
-rw-r--r--chart2/source/model/template/BarChartTypeTemplate.hxx121
-rw-r--r--chart2/source/model/template/BubbleChartType.cxx242
-rw-r--r--chart2/source/model/template/BubbleChartType.hxx86
-rw-r--r--chart2/source/model/template/BubbleChartTypeTemplate.cxx314
-rw-r--r--chart2/source/model/template/BubbleChartTypeTemplate.hxx101
-rw-r--r--chart2/source/model/template/BubbleDataInterpreter.cxx308
-rw-r--r--chart2/source/model/template/BubbleDataInterpreter.hxx61
-rw-r--r--chart2/source/model/template/CandleStickChartType.cxx355
-rw-r--r--chart2/source/model/template/CandleStickChartType.hxx90
-rw-r--r--chart2/source/model/template/ChartType.cxx325
-rw-r--r--chart2/source/model/template/ChartType.hxx183
-rw-r--r--chart2/source/model/template/ChartTypeManager.cxx619
-rw-r--r--chart2/source/model/template/ChartTypeTemplate.cxx933
-rw-r--r--chart2/source/model/template/ChartTypeTemplate.hxx299
-rw-r--r--chart2/source/model/template/ColumnChartType.cxx202
-rw-r--r--chart2/source/model/template/ColumnChartType.hxx74
-rw-r--r--chart2/source/model/template/ColumnLineChartTypeTemplate.cxx453
-rw-r--r--chart2/source/model/template/ColumnLineChartTypeTemplate.hxx119
-rw-r--r--chart2/source/model/template/ColumnLineDataInterpreter.cxx101
-rw-r--r--chart2/source/model/template/ColumnLineDataInterpreter.hxx59
-rw-r--r--chart2/source/model/template/DataInterpreter.cxx461
-rw-r--r--chart2/source/model/template/DataInterpreter.hxx100
-rw-r--r--chart2/source/model/template/FilledNetChartType.cxx94
-rw-r--r--chart2/source/model/template/FilledNetChartType.hxx63
-rw-r--r--chart2/source/model/template/LineChartType.cxx214
-rw-r--r--chart2/source/model/template/LineChartType.hxx75
-rw-r--r--chart2/source/model/template/LineChartTypeTemplate.cxx412
-rw-r--r--chart2/source/model/template/LineChartTypeTemplate.hxx109
-rw-r--r--chart2/source/model/template/NetChartType.cxx180
-rw-r--r--chart2/source/model/template/NetChartType.hxx93
-rw-r--r--chart2/source/model/template/NetChartTypeTemplate.cxx229
-rw-r--r--chart2/source/model/template/NetChartTypeTemplate.hxx87
-rw-r--r--chart2/source/model/template/PieChartType.cxx239
-rw-r--r--chart2/source/model/template/PieChartType.hxx81
-rw-r--r--chart2/source/model/template/PieChartTypeTemplate.cxx661
-rw-r--r--chart2/source/model/template/PieChartTypeTemplate.hxx140
-rw-r--r--chart2/source/model/template/ScatterChartType.cxx296
-rw-r--r--chart2/source/model/template/ScatterChartType.hxx91
-rw-r--r--chart2/source/model/template/ScatterChartTypeTemplate.cxx432
-rw-r--r--chart2/source/model/template/ScatterChartTypeTemplate.hxx110
-rw-r--r--chart2/source/model/template/StockChartTypeTemplate.cxx560
-rw-r--r--chart2/source/model/template/StockChartTypeTemplate.hxx138
-rw-r--r--chart2/source/model/template/StockDataInterpreter.cxx344
-rw-r--r--chart2/source/model/template/StockDataInterpreter.hxx69
-rw-r--r--chart2/source/model/template/XYDataInterpreter.cxx273
-rw-r--r--chart2/source/model/template/XYDataInterpreter.hxx61
-rw-r--r--chart2/source/model/template/_serviceregistration_charttypes.cxx138
-rw-r--r--chart2/source/model/template/makefile.mk82
-rw-r--r--chart2/source/tools/AxisHelper.cxx976
-rw-r--r--chart2/source/tools/BaseGFXHelper.cxx222
-rw-r--r--chart2/source/tools/CachedDataSequence.cxx409
-rw-r--r--chart2/source/tools/CharacterProperties.cxx608
-rw-r--r--chart2/source/tools/ChartDebugTrace.cxx417
-rw-r--r--chart2/source/tools/ChartModelHelper.cxx267
-rw-r--r--chart2/source/tools/ChartTypeHelper.cxx685
-rw-r--r--chart2/source/tools/ChartViewHelper.cxx72
-rw-r--r--chart2/source/tools/ColorPerPointHelper.cxx97
-rw-r--r--chart2/source/tools/CommonConverters.cxx549
-rw-r--r--chart2/source/tools/ConfigColorScheme.cxx202
-rw-r--r--chart2/source/tools/ControllerLockGuard.cxx89
-rw-r--r--chart2/source/tools/DataSeriesHelper.cxx918
-rw-r--r--chart2/source/tools/DataSource.cxx91
-rw-r--r--chart2/source/tools/DataSourceHelper.cxx552
-rw-r--r--chart2/source/tools/DiagramHelper.cxx1559
-rw-r--r--chart2/source/tools/ErrorBar.cxx363
-rw-r--r--chart2/source/tools/ExplicitCategoriesProvider.cxx422
-rw-r--r--chart2/source/tools/ExponentialRegressionCurveCalculator.cxx183
-rw-r--r--chart2/source/tools/FillProperties.cxx277
-rw-r--r--chart2/source/tools/FormattedStringHelper.cxx80
-rw-r--r--chart2/source/tools/ImplOPropertySet.cxx207
-rw-r--r--chart2/source/tools/ImplOPropertySet.hxx96
-rwxr-xr-xchart2/source/tools/InternalData.cxx530
-rw-r--r--chart2/source/tools/InternalDataProvider.cxx1314
-rw-r--r--chart2/source/tools/LabeledDataSequence.cxx179
-rw-r--r--chart2/source/tools/LegendHelper.cxx147
-rw-r--r--chart2/source/tools/LifeTime.cxx546
-rw-r--r--chart2/source/tools/LineProperties.cxx185
-rw-r--r--chart2/source/tools/LinearRegressionCurveCalculator.cxx179
-rw-r--r--chart2/source/tools/LogarithmicRegressionCurveCalculator.cxx191
-rw-r--r--chart2/source/tools/MeanValueRegressionCurveCalculator.cxx143
-rw-r--r--chart2/source/tools/MediaDescriptorHelper.cxx221
-rw-r--r--chart2/source/tools/ModifyListenerCallBack.cxx134
-rw-r--r--chart2/source/tools/ModifyListenerHelper.cxx213
-rw-r--r--chart2/source/tools/MutexContainer.cxx43
-rw-r--r--chart2/source/tools/NameContainer.cxx189
-rw-r--r--chart2/source/tools/NamedFillProperties.cxx114
-rw-r--r--chart2/source/tools/NamedLineProperties.cxx99
-rw-r--r--chart2/source/tools/NamedProperties.cxx59
-rw-r--r--chart2/source/tools/OPropertySet.cxx530
-rw-r--r--chart2/source/tools/ObjectIdentifier.cxx1491
-rw-r--r--chart2/source/tools/PotentialRegressionCurveCalculator.cxx177
-rw-r--r--chart2/source/tools/PropertyHelper.cxx314
-rw-r--r--chart2/source/tools/RangeHighlighter.cxx406
-rw-r--r--chart2/source/tools/ReferenceSizeProvider.cxx378
-rw-r--r--chart2/source/tools/RegressionCalculationHelper.hxx131
-rw-r--r--chart2/source/tools/RegressionCurveCalculator.cxx168
-rw-r--r--chart2/source/tools/RegressionCurveHelper.cxx736
-rw-r--r--chart2/source/tools/RegressionCurveModel.cxx441
-rw-r--r--chart2/source/tools/RegressionCurveModel.hxx259
-rw-r--r--chart2/source/tools/RegressionEquation.cxx362
-rw-r--r--chart2/source/tools/RegressionEquation.hxx143
-rw-r--r--chart2/source/tools/RelativePositionHelper.cxx399
-rw-r--r--chart2/source/tools/RelativeSizeHelper.cxx100
-rw-r--r--chart2/source/tools/ResId.cxx47
-rw-r--r--chart2/source/tools/RessourceManager.cxx49
-rw-r--r--chart2/source/tools/Scaling.cxx271
-rw-r--r--chart2/source/tools/SceneProperties.cxx382
-rw-r--r--chart2/source/tools/StatisticsHelper.cxx403
-rw-r--r--chart2/source/tools/ThreeDHelper.cxx1527
-rw-r--r--chart2/source/tools/TitleHelper.cxx378
-rw-r--r--chart2/source/tools/TrueGuard.cxx47
-rw-r--r--chart2/source/tools/UncachedDataSequence.cxx379
-rw-r--r--chart2/source/tools/UserDefinedProperties.cxx73
-rw-r--r--chart2/source/tools/WeakListenerAdapter.cxx76
-rw-r--r--chart2/source/tools/WrappedDefaultProperty.cxx92
-rw-r--r--chart2/source/tools/WrappedDirectStateProperty.cxx59
-rw-r--r--chart2/source/tools/WrappedIgnoreProperty.cxx148
-rw-r--r--chart2/source/tools/WrappedProperty.cxx150
-rw-r--r--chart2/source/tools/WrappedPropertySet.cxx495
-rw-r--r--chart2/source/tools/XMLRangeHelper.cxx418
-rw-r--r--chart2/source/tools/_serviceregistration_tools.cxx200
-rw-r--r--chart2/source/tools/exports.flt3
-rw-r--r--chart2/source/tools/makefile.mk189
-rw-r--r--chart2/source/view/axes/MinimumAndMaximumSupplier.cxx201
-rw-r--r--chart2/source/view/axes/ScaleAutomatism.cxx760
-rw-r--r--chart2/source/view/axes/TickmarkHelper.cxx937
-rw-r--r--chart2/source/view/axes/TickmarkHelper.hxx276
-rw-r--r--chart2/source/view/axes/TickmarkProperties.hxx53
-rw-r--r--chart2/source/view/axes/VAxisBase.cxx253
-rw-r--r--chart2/source/view/axes/VAxisBase.hxx107
-rw-r--r--chart2/source/view/axes/VAxisOrGridBase.cxx98
-rw-r--r--chart2/source/view/axes/VAxisOrGridBase.hxx83
-rw-r--r--chart2/source/view/axes/VAxisProperties.cxx486
-rw-r--r--chart2/source/view/axes/VAxisProperties.hxx168
-rw-r--r--chart2/source/view/axes/VCartesianAxis.cxx1600
-rw-r--r--chart2/source/view/axes/VCartesianAxis.hxx146
-rw-r--r--chart2/source/view/axes/VCartesianCoordinateSystem.cxx250
-rw-r--r--chart2/source/view/axes/VCartesianCoordinateSystem.hxx64
-rw-r--r--chart2/source/view/axes/VCartesianGrid.cxx339
-rw-r--r--chart2/source/view/axes/VCartesianGrid.hxx71
-rw-r--r--chart2/source/view/axes/VCoordinateSystem.cxx598
-rw-r--r--chart2/source/view/axes/VPolarAngleAxis.cxx234
-rw-r--r--chart2/source/view/axes/VPolarAngleAxis.hxx66
-rw-r--r--chart2/source/view/axes/VPolarAxis.cxx83
-rw-r--r--chart2/source/view/axes/VPolarAxis.hxx71
-rw-r--r--chart2/source/view/axes/VPolarCoordinateSystem.cxx211
-rw-r--r--chart2/source/view/axes/VPolarCoordinateSystem.hxx68
-rw-r--r--chart2/source/view/axes/VPolarGrid.cxx273
-rw-r--r--chart2/source/view/axes/VPolarGrid.hxx96
-rw-r--r--chart2/source/view/axes/VPolarRadiusAxis.cxx186
-rw-r--r--chart2/source/view/axes/VPolarRadiusAxis.hxx98
-rw-r--r--chart2/source/view/axes/makefile.mk66
-rw-r--r--chart2/source/view/charttypes/AreaChart.cxx1005
-rw-r--r--chart2/source/view/charttypes/AreaChart.hxx134
-rwxr-xr-xchart2/source/view/charttypes/BarChart.cxx1019
-rw-r--r--chart2/source/view/charttypes/BarChart.hxx110
-rw-r--r--chart2/source/view/charttypes/BarPositionHelper.cxx138
-rw-r--r--chart2/source/view/charttypes/BarPositionHelper.hxx76
-rw-r--r--chart2/source/view/charttypes/BubbleChart.cxx417
-rw-r--r--chart2/source/view/charttypes/BubbleChart.hxx94
-rw-r--r--chart2/source/view/charttypes/CandleStickChart.cxx398
-rw-r--r--chart2/source/view/charttypes/CandleStickChart.hxx89
-rw-r--r--chart2/source/view/charttypes/CategoryPositionHelper.cxx100
-rw-r--r--chart2/source/view/charttypes/CategoryPositionHelper.hxx68
-rw-r--r--chart2/source/view/charttypes/PieChart.cxx897
-rw-r--r--chart2/source/view/charttypes/PieChart.hxx145
-rw-r--r--chart2/source/view/charttypes/Splines.cxx545
-rw-r--r--chart2/source/view/charttypes/Splines.hxx61
-rw-r--r--chart2/source/view/charttypes/VSeriesPlotter.cxx2110
-rw-r--r--chart2/source/view/charttypes/makefile.mk55
-rw-r--r--chart2/source/view/diagram/VDiagram.cxx811
-rw-r--r--chart2/source/view/diagram/makefile.mk48
-rw-r--r--chart2/source/view/exports.flt4
-rw-r--r--chart2/source/view/inc/Clipping.hxx70
-rw-r--r--chart2/source/view/inc/LabelAlignment.hxx41
-rw-r--r--chart2/source/view/inc/LabelPositionHelper.hxx86
-rw-r--r--chart2/source/view/inc/LegendEntryProvider.hxx63
-rw-r--r--chart2/source/view/inc/Linear3DTransformation.hxx67
-rw-r--r--chart2/source/view/inc/MinimumAndMaximumSupplier.hxx100
-rw-r--r--chart2/source/view/inc/PlotterBase.hxx126
-rw-r--r--chart2/source/view/inc/PlottingPositionHelper.hxx406
-rw-r--r--chart2/source/view/inc/PolarLabelPositionHelper.hxx76
-rw-r--r--chart2/source/view/inc/PropertyMapper.hxx133
-rw-r--r--chart2/source/view/inc/ScaleAutomatism.hxx119
-rw-r--r--chart2/source/view/inc/ShapeFactory.hxx254
-rw-r--r--chart2/source/view/inc/Stripe.hxx89
-rw-r--r--chart2/source/view/inc/VCoordinateSystem.hxx212
-rw-r--r--chart2/source/view/inc/VDataSeries.hxx264
-rw-r--r--chart2/source/view/inc/VDiagram.hxx136
-rw-r--r--chart2/source/view/inc/VLegendSymbolFactory.hxx77
-rw-r--r--chart2/source/view/inc/VLineProperties.hxx61
-rw-r--r--chart2/source/view/inc/VPolarTransformation.hxx67
-rw-r--r--chart2/source/view/inc/VSeriesPlotter.hxx453
-rw-r--r--chart2/source/view/inc/ViewDefines.hxx47
-rw-r--r--chart2/source/view/main/ChartItemPool.cxx258
-rw-r--r--chart2/source/view/main/ChartItemPool.hxx58
-rw-r--r--chart2/source/view/main/ChartView.cxx3187
-rw-r--r--chart2/source/view/main/ChartView.hxx261
-rw-r--r--chart2/source/view/main/Clipping.cxx304
-rw-r--r--chart2/source/view/main/DataPointSymbolSupplier.cxx66
-rw-r--r--chart2/source/view/main/DrawModelWrapper.cxx411
-rw-r--r--chart2/source/view/main/LabelPositionHelper.cxx488
-rw-r--r--chart2/source/view/main/Linear3DTransformation.cxx107
-rw-r--r--chart2/source/view/main/NumberFormatterWrapper.cxx169
-rw-r--r--chart2/source/view/main/PlotterBase.cxx135
-rw-r--r--chart2/source/view/main/PlottingPositionHelper.cxx667
-rw-r--r--chart2/source/view/main/PolarLabelPositionHelper.cxx188
-rw-r--r--chart2/source/view/main/PropertyMapper.cxx539
-rw-r--r--chart2/source/view/main/ShapeFactory.cxx2111
-rw-r--r--chart2/source/view/main/Stripe.cxx360
-rw-r--r--chart2/source/view/main/VDataSeries.cxx986
-rw-r--r--chart2/source/view/main/VLegend.cxx834
-rw-r--r--chart2/source/view/main/VLegend.hxx111
-rw-r--r--chart2/source/view/main/VLegendSymbolFactory.cxx374
-rw-r--r--chart2/source/view/main/VLineProperties.cxx109
-rw-r--r--chart2/source/view/main/VPolarTransformation.cxx94
-rw-r--r--chart2/source/view/main/VTitle.cxx299
-rw-r--r--chart2/source/view/main/VTitle.hxx83
-rw-r--r--chart2/source/view/main/_serviceregistration_view.cxx71
-rw-r--r--chart2/source/view/main/makefile.mk68
-rw-r--r--chart2/source/view/makefile.mk120
-rw-r--r--chart2/uiconfig/accelerator/en-US/default.xml30
-rw-r--r--chart2/uiconfig/menubar/menubar.xml156
-rw-r--r--chart2/uiconfig/statusbar/statusbar.xml6
-rw-r--r--chart2/uiconfig/toolbar/arrowshapes.xml34
-rw-r--r--chart2/uiconfig/toolbar/basicshapes.xml29
-rw-r--r--chart2/uiconfig/toolbar/calloutshapes.xml11
-rw-r--r--chart2/uiconfig/toolbar/drawbar.xml20
-rw-r--r--chart2/uiconfig/toolbar/flowchartshapes.xml36
-rw-r--r--chart2/uiconfig/toolbar/standardbar.xml22
-rw-r--r--chart2/uiconfig/toolbar/starshapes.xml17
-rw-r--r--chart2/uiconfig/toolbar/symbolshapes.xml24
-rw-r--r--chart2/uiconfig/toolbar/toolbar.xml15
-rw-r--r--chart2/util/makefile.mk60
-rw-r--r--chart2/util/makefile.pmk46
-rw-r--r--chart2/util/target.pmk32
-rw-r--r--chart2/workbench/addin/exports.dxp3
-rw-r--r--chart2/workbench/addin/makefile.mk86
-rw-r--r--chart2/workbench/addin/sampleaddin.cxx716
-rw-r--r--chart2/workbench/addin/sampleaddin.def7
-rw-r--r--chart2/workbench/addin/sampleaddin.hxx161
-rw-r--r--cli_ure/inc/makefile.mk48
-rw-r--r--cli_ure/inc/pch/precompiled_cli_ure.cxx29
-rw-r--r--cli_ure/inc/pch/precompiled_cli_ure.hxx32
-rw-r--r--cli_ure/prj/build.lst13
-rw-r--r--cli_ure/prj/d.lst13
-rw-r--r--cli_ure/qa/climaker/ClimakerTestCase.java98
-rw-r--r--cli_ure/qa/climaker/climaker.cs1487
-rw-r--r--cli_ure/qa/climaker/makefile.mk135
-rw-r--r--cli_ure/qa/climaker/testobjects.cs588
-rw-r--r--cli_ure/qa/climaker/types.idl483
-rw-r--r--cli_ure/qa/versioning/readme.txt28
-rw-r--r--cli_ure/readme.txt272
-rw-r--r--cli_ure/source/basetypes/assembly.cs2
-rw-r--r--cli_ure/source/basetypes/cli_basetypes_config11
-rw-r--r--cli_ure/source/basetypes/makefile.mk105
-rw-r--r--cli_ure/source/basetypes/uno/Any.cs211
-rw-r--r--cli_ure/source/basetypes/uno/BoundAttribute.cs46
-rw-r--r--cli_ure/source/basetypes/uno/ExceptionAttribute.cs70
-rw-r--r--cli_ure/source/basetypes/uno/OnewayAttribute.cs43
-rw-r--r--cli_ure/source/basetypes/uno/ParameterizedTypeAttribute.cs68
-rw-r--r--cli_ure/source/basetypes/uno/PolymorphicType.cs443
-rw-r--r--cli_ure/source/basetypes/uno/TypeArgumentsAttribute.cs84
-rw-r--r--cli_ure/source/basetypes/uno/TypeParametersAttribute.cs65
-rw-r--r--cli_ure/source/climaker/climaker.exe.config10
-rw-r--r--cli_ure/source/climaker/climaker_app.cxx749
-rw-r--r--cli_ure/source/climaker/climaker_emit.cxx2323
-rw-r--r--cli_ure/source/climaker/climaker_share.h268
-rw-r--r--cli_ure/source/climaker/makefile.mk137
-rw-r--r--cli_ure/source/cliuno.snkbin0 -> 596 bytes-rw-r--r--cli_ure/source/makefile.mk48
-rw-r--r--cli_ure/source/native/assembly.cxx36
-rw-r--r--cli_ure/source/native/cli_cppuhelper_config11
-rw-r--r--cli_ure/source/native/makefile.mk184
-rw-r--r--cli_ure/source/native/msvc.map6
-rw-r--r--cli_ure/source/native/native_bootstrap.cxx433
-rw-r--r--cli_ure/source/native/native_share.h120
-rw-r--r--cli_ure/source/native/path.cxx218
-rw-r--r--cli_ure/source/scripts/increment_version.pl281
-rw-r--r--cli_ure/source/scripts/subst_template.pl133
-rw-r--r--cli_ure/source/uno_bridge/README.txt20
-rw-r--r--cli_ure/source/uno_bridge/bridge_exports.map8
-rw-r--r--cli_ure/source/uno_bridge/cli_base.h180
-rw-r--r--cli_ure/source/uno_bridge/cli_bridge.cxx369
-rw-r--r--cli_ure/source/uno_bridge/cli_bridge.h120
-rw-r--r--cli_ure/source/uno_bridge/cli_data.cxx2011
-rw-r--r--cli_ure/source/uno_bridge/cli_environment.cxx173
-rw-r--r--cli_ure/source/uno_bridge/cli_environment.h114
-rw-r--r--cli_ure/source/uno_bridge/cli_proxy.cxx1178
-rw-r--r--cli_ure/source/uno_bridge/cli_proxy.h299
-rw-r--r--cli_ure/source/uno_bridge/cli_uno.cxx290
-rw-r--r--cli_ure/source/uno_bridge/makefile.mk95
-rw-r--r--cli_ure/source/ure/assembly.cs2
-rw-r--r--cli_ure/source/ure/cli_ure_config11
-rw-r--r--cli_ure/source/ure/makefile.mk102
-rw-r--r--cli_ure/source/ure/uno/util/DisposeGuard.cs59
-rw-r--r--cli_ure/source/ure/uno/util/WeakAdapter.cs120
-rw-r--r--cli_ure/source/ure/uno/util/WeakBase.cs178
-rw-r--r--cli_ure/source/ure/uno/util/WeakComponentBase.cs194
-rw-r--r--cli_ure/unotypes/cli_uretypes_config11
-rw-r--r--cli_ure/unotypes/makefile.mk79
-rw-r--r--cli_ure/util/makefile.pmk35
-rw-r--r--cli_ure/util/target.pmk44
-rw-r--r--cli_ure/version/incversions.txt39
-rw-r--r--cli_ure/version/makefile.mk60
-rw-r--r--cli_ure/version/version.txt47
-rw-r--r--cli_ure/workbench/dynload/dynload.cs35
-rw-r--r--cli_ure/workbench/dynload/makefile.mk68
-rw-r--r--cli_ure/workbench/dynload/readme.txt2
-rwxr-xr-xcodemaker/codemaker.pmk53
-rw-r--r--codemaker/inc/codemaker/codemaker.hxx56
-rw-r--r--codemaker/inc/codemaker/commoncpp.hxx57
-rw-r--r--codemaker/inc/codemaker/commonjava.hxx44
-rw-r--r--codemaker/inc/codemaker/dependencies.hxx149
-rw-r--r--codemaker/inc/codemaker/exceptiontree.hxx124
-rw-r--r--codemaker/inc/codemaker/generatedtypeset.hxx79
-rw-r--r--codemaker/inc/codemaker/global.hxx151
-rw-r--r--codemaker/inc/codemaker/options.hxx98
-rw-r--r--codemaker/inc/codemaker/typemanager.hxx182
-rw-r--r--codemaker/inc/codemaker/unotype.hxx110
-rw-r--r--codemaker/inc/makefile.mk47
-rw-r--r--codemaker/inc/pch/precompiled_codemaker.cxx29
-rw-r--r--codemaker/inc/pch/precompiled_codemaker.hxx32
-rw-r--r--codemaker/prj/build.lst11
-rw-r--r--codemaker/prj/d.lst14
-rw-r--r--codemaker/source/bonobowrappermaker/corbamaker.cxx239
-rw-r--r--codemaker/source/bonobowrappermaker/corbaoptions.cxx256
-rw-r--r--codemaker/source/bonobowrappermaker/corbaoptions.hxx51
-rw-r--r--codemaker/source/bonobowrappermaker/corbatype.cxx2782
-rw-r--r--codemaker/source/bonobowrappermaker/corbatype.hxx310
-rw-r--r--codemaker/source/bonobowrappermaker/makefile.mk62
-rw-r--r--codemaker/source/codemaker/codemaker.cxx188
-rw-r--r--codemaker/source/codemaker/dependencies.cxx281
-rw-r--r--codemaker/source/codemaker/exceptiontree.cxx106
-rw-r--r--codemaker/source/codemaker/global.cxx449
-rw-r--r--codemaker/source/codemaker/makefile.mk51
-rw-r--r--codemaker/source/codemaker/options.cxx99
-rw-r--r--codemaker/source/codemaker/typemanager.cxx403
-rw-r--r--codemaker/source/codemaker/unotype.cxx103
-rw-r--r--codemaker/source/commoncpp/commoncpp.cxx355
-rw-r--r--codemaker/source/commoncpp/makefile.mk42
-rw-r--r--codemaker/source/commonjava/commonjava.cxx167
-rw-r--r--codemaker/source/commonjava/makefile.mk42
-rw-r--r--codemaker/source/cppumaker/cppumaker.cxx244
-rw-r--r--codemaker/source/cppumaker/cppuoptions.cxx355
-rw-r--r--codemaker/source/cppumaker/cppuoptions.hxx51
-rw-r--r--codemaker/source/cppumaker/cpputype.cxx4504
-rw-r--r--codemaker/source/cppumaker/cpputype.hxx406
-rw-r--r--codemaker/source/cppumaker/dumputils.cxx91
-rw-r--r--codemaker/source/cppumaker/dumputils.hxx46
-rw-r--r--codemaker/source/cppumaker/includes.cxx280
-rw-r--r--codemaker/source/cppumaker/includes.hxx121
-rw-r--r--codemaker/source/cppumaker/makefile.mk65
-rw-r--r--codemaker/source/cunomaker/cunomaker.cxx186
-rw-r--r--codemaker/source/cunomaker/cunooptions.cxx330
-rw-r--r--codemaker/source/cunomaker/cunooptions.hxx51
-rw-r--r--codemaker/source/cunomaker/cunotype.cxx3533
-rw-r--r--codemaker/source/cunomaker/cunotype.hxx309
-rw-r--r--codemaker/source/cunomaker/makefile.mk61
-rw-r--r--codemaker/source/idlmaker/idlmaker.cxx186
-rw-r--r--codemaker/source/idlmaker/idloptions.cxx251
-rw-r--r--codemaker/source/idlmaker/idloptions.hxx51
-rw-r--r--codemaker/source/idlmaker/idltype.cxx1752
-rw-r--r--codemaker/source/idlmaker/idltype.hxx249
-rw-r--r--codemaker/source/idlmaker/makefile.mk62
-rw-r--r--codemaker/source/javamaker/classfile.cxx903
-rw-r--r--codemaker/source/javamaker/classfile.hxx274
-rw-r--r--codemaker/source/javamaker/javamaker.cxx247
-rw-r--r--codemaker/source/javamaker/javaoptions.cxx299
-rw-r--r--codemaker/source/javamaker/javaoptions.hxx51
-rw-r--r--codemaker/source/javamaker/javatype.cxx3374
-rw-r--r--codemaker/source/javamaker/javatype.hxx45
-rw-r--r--codemaker/source/javamaker/makefile.mk58
-rw-r--r--codemaker/test/cppumaker/makefile.mk73
-rw-r--r--codemaker/test/cppumaker/test_codemaker_cppumaker.cxx567
-rw-r--r--codemaker/test/cppumaker/types.idl717
-rw-r--r--codemaker/test/cppumaker/version.map34
-rw-r--r--codemaker/test/javamaker/Test.java559
-rw-r--r--codemaker/test/javamaker/java15/Test.java100
-rw-r--r--codemaker/test/javamaker/java15/makefile.mk41
-rw-r--r--codemaker/test/javamaker/java15/types.idl50
-rw-r--r--codemaker/test/javamaker/makefile.mk41
-rw-r--r--codemaker/test/javamaker/types.idl433
-rw-r--r--comphelper/inc/comphelper/ChainablePropertySet.hxx156
-rw-r--r--comphelper/inc/comphelper/ChainablePropertySetInfo.hxx77
-rw-r--r--comphelper/inc/comphelper/IdPropArrayHelper.hxx123
-rw-r--r--comphelper/inc/comphelper/InlineContainer.hxx149
-rw-r--r--comphelper/inc/comphelper/MasterPropertySet.hxx155
-rw-r--r--comphelper/inc/comphelper/MasterPropertySetInfo.hxx69
-rw-r--r--comphelper/inc/comphelper/PropertyInfoHash.hxx71
-rw-r--r--comphelper/inc/comphelper/SelectionMultiplex.hxx117
-rw-r--r--comphelper/inc/comphelper/SettingsHelper.hxx123
-rw-r--r--comphelper/inc/comphelper/TypeGeneration.hxx124
-rw-r--r--comphelper/inc/comphelper/accessiblecomponenthelper.hxx144
-rw-r--r--comphelper/inc/comphelper/accessiblecontexthelper.hxx376
-rw-r--r--comphelper/inc/comphelper/accessibleeventbuffer.hxx133
-rw-r--r--comphelper/inc/comphelper/accessibleeventnotifier.hxx173
-rw-r--r--comphelper/inc/comphelper/accessiblekeybindinghelper.hxx83
-rw-r--r--comphelper/inc/comphelper/accessibleselectionhelper.hxx134
-rw-r--r--comphelper/inc/comphelper/accessibletexthelper.hxx185
-rw-r--r--comphelper/inc/comphelper/accessiblewrapper.hxx411
-rw-r--r--comphelper/inc/comphelper/accimplaccess.hxx166
-rw-r--r--comphelper/inc/comphelper/anytostring.hxx50
-rw-r--r--comphelper/inc/comphelper/asyncnotification.hxx198
-rw-r--r--comphelper/inc/comphelper/attributelist.hxx77
-rw-r--r--comphelper/inc/comphelper/basicio.hxx106
-rw-r--r--comphelper/inc/comphelper/broadcasthelper.hxx69
-rw-r--r--comphelper/inc/comphelper/classids.hxx574
-rw-r--r--comphelper/inc/comphelper/comphelperdllapi.h14
-rw-r--r--comphelper/inc/comphelper/componentbase.hxx161
-rw-r--r--comphelper/inc/comphelper/componentcontext.hxx252
-rw-r--r--comphelper/inc/comphelper/componentfactory.hxx118
-rw-r--r--comphelper/inc/comphelper/componentmodule.hxx441
-rw-r--r--comphelper/inc/comphelper/composedprops.hxx127
-rw-r--r--comphelper/inc/comphelper/configurationhelper.hxx261
-rw-r--r--comphelper/inc/comphelper/container.hxx85
-rw-r--r--comphelper/inc/comphelper/containermultiplexer.hxx115
-rw-r--r--comphelper/inc/comphelper/docpasswordhelper.hxx320
-rwxr-xr-xcomphelper/inc/comphelper/docpasswordrequest.hxx103
-rw-r--r--comphelper/inc/comphelper/documentconstants.hxx113
-rw-r--r--comphelper/inc/comphelper/documentinfo.hxx59
-rw-r--r--comphelper/inc/comphelper/embeddedobjectcontainer.hxx188
-rw-r--r--comphelper/inc/comphelper/enumhelper.hxx150
-rw-r--r--comphelper/inc/comphelper/eventattachermgr.hxx68
-rw-r--r--comphelper/inc/comphelper/evtlistenerhlp.hxx56
-rwxr-xr-xcomphelper/inc/comphelper/evtmethodhelper.hxx41
-rw-r--r--comphelper/inc/comphelper/extract.hxx164
-rw-r--r--comphelper/inc/comphelper/fileformat.h41
-rw-r--r--comphelper/inc/comphelper/genericpropertyset.hxx41
-rw-r--r--comphelper/inc/comphelper/guarding.hxx63
-rw-r--r--comphelper/inc/comphelper/ihwrapnofilter.hxx102
-rw-r--r--comphelper/inc/comphelper/implbase_var.hxx403
-rw-r--r--comphelper/inc/comphelper/implementationreference.hxx273
-rw-r--r--comphelper/inc/comphelper/interaction.hxx170
-rw-r--r--comphelper/inc/comphelper/legacysingletonfactory.hxx72
-rw-r--r--comphelper/inc/comphelper/listenernotification.hxx308
-rw-r--r--comphelper/inc/comphelper/locale.hxx443
-rw-r--r--comphelper/inc/comphelper/logging.hxx794
-rw-r--r--comphelper/inc/comphelper/make_shared_from_uno.hxx75
-rw-r--r--comphelper/inc/comphelper/makesequence.hxx87
-rw-r--r--comphelper/inc/comphelper/mediadescriptor.hxx340
-rw-r--r--comphelper/inc/comphelper/mimeconfighelper.hxx133
-rw-r--r--comphelper/inc/comphelper/namecontainer.hxx42
-rw-r--r--comphelper/inc/comphelper/namedvaluecollection.hxx355
-rw-r--r--comphelper/inc/comphelper/numberedcollection.hxx198
-rw-r--r--comphelper/inc/comphelper/numbers.hxx74
-rw-r--r--comphelper/inc/comphelper/officeresourcebundle.hxx116
-rw-r--r--comphelper/inc/comphelper/ofopxmlhelper.hxx139
-rw-r--r--comphelper/inc/comphelper/optional.hxx90
-rw-r--r--comphelper/inc/comphelper/optionalvalue.hxx187
-rw-r--r--comphelper/inc/comphelper/oslfile2streamwrap.hxx108
-rw-r--r--comphelper/inc/comphelper/otransactedfilestream.hxx136
-rw-r--r--comphelper/inc/comphelper/processfactory.hxx98
-rw-r--r--comphelper/inc/comphelper/propagg.hxx329
-rw-r--r--comphelper/inc/comphelper/proparrhlp.hxx182
-rw-r--r--comphelper/inc/comphelper/property.hxx238
-rw-r--r--comphelper/inc/comphelper/propertybag.hxx237
-rw-r--r--comphelper/inc/comphelper/propertycontainer.hxx97
-rw-r--r--comphelper/inc/comphelper/propertycontainerhelper.hxx218
-rw-r--r--comphelper/inc/comphelper/propertysethelper.hxx102
-rw-r--r--comphelper/inc/comphelper/propertysetinfo.hxx103
-rw-r--r--comphelper/inc/comphelper/propertystatecontainer.hxx120
-rw-r--r--comphelper/inc/comphelper/propmultiplex.hxx116
-rw-r--r--comphelper/inc/comphelper/propstate.hxx112
-rw-r--r--comphelper/inc/comphelper/proxyaggregation.hxx229
-rw-r--r--comphelper/inc/comphelper/querydeep.hxx484
-rw-r--r--comphelper/inc/comphelper/regpathhelper.hxx71
-rw-r--r--comphelper/inc/comphelper/scopeguard.hxx72
-rw-r--r--comphelper/inc/comphelper/seekableinput.hxx84
-rw-r--r--comphelper/inc/comphelper/seqstream.hxx146
-rw-r--r--comphelper/inc/comphelper/sequence.hxx389
-rw-r--r--comphelper/inc/comphelper/sequenceashashmap.hxx384
-rw-r--r--comphelper/inc/comphelper/sequenceasvector.hxx247
-rw-r--r--comphelper/inc/comphelper/servicedecl.hxx459
-rw-r--r--comphelper/inc/comphelper/servicehelper.hxx105
-rw-r--r--comphelper/inc/comphelper/serviceinfohelper.hxx63
-rw-r--r--comphelper/inc/comphelper/sharedmutex.hxx91
-rw-r--r--comphelper/inc/comphelper/stillreadwriteinteraction.hxx69
-rw-r--r--comphelper/inc/comphelper/stl_types.hxx282
-rw-r--r--comphelper/inc/comphelper/stlunosequence.hxx86
-rw-r--r--comphelper/inc/comphelper/storagehelper.hxx171
-rw-r--r--comphelper/inc/comphelper/streamsection.hxx88
-rw-r--r--comphelper/inc/comphelper/string.hxx135
-rw-r--r--comphelper/inc/comphelper/synchronousdispatch.hxx74
-rw-r--r--comphelper/inc/comphelper/types.hxx180
-rw-r--r--comphelper/inc/comphelper/uieventslogger.hxx57
-rw-r--r--comphelper/inc/comphelper/uno3.hxx302
-rw-r--r--comphelper/inc/comphelper/unwrapargs.hxx150
-rw-r--r--comphelper/inc/comphelper/weak.hxx63
-rw-r--r--comphelper/inc/comphelper/weakbag.hxx92
-rw-r--r--comphelper/inc/comphelper/weakeventlistener.hxx189
-rw-r--r--comphelper/inc/makefile.mk48
-rw-r--r--comphelper/inc/pch/precompiled_comphelper.cxx29
-rw-r--r--comphelper/inc/pch/precompiled_comphelper.hxx32
-rw-r--r--comphelper/prj/build.lst13
-rw-r--r--comphelper/prj/d.lst14
-rw-r--r--comphelper/qa/complex/comphelper/Map.java514
-rw-r--r--comphelper/qa/complex/comphelper/SequenceOutputStreamUnitTest.java71
-rw-r--r--comphelper/qa/complex/comphelper/Test01.java107
-rw-r--r--comphelper/qa/complex/comphelper/TestHelper.java49
-rw-r--r--comphelper/qa/complex/comphelper_all.sce2
-rw-r--r--comphelper/qa/complex/makefile.mk83
-rw-r--r--comphelper/qa/makefile.mk56
-rw-r--r--comphelper/qa/test_string.cxx82
-rw-r--r--comphelper/qa/test_weakbag.cxx70
-rw-r--r--comphelper/qa/version.map34
-rw-r--r--comphelper/source/compare/AnyCompareFactory.cxx191
-rw-r--r--comphelper/source/compare/makefile.mk47
-rw-r--r--comphelper/source/container/IndexedPropertyValuesContainer.cxx270
-rw-r--r--comphelper/source/container/NamedPropertyValuesContainer.cxx239
-rw-r--r--comphelper/source/container/container.cxx153
-rw-r--r--comphelper/source/container/containermultiplexer.cxx203
-rw-r--r--comphelper/source/container/embeddedobjectcontainer.cxx1663
-rw-r--r--comphelper/source/container/enumerablemap.cxx1000
-rw-r--r--comphelper/source/container/enumhelper.cxx297
-rw-r--r--comphelper/source/container/makefile.mk55
-rw-r--r--comphelper/source/container/namecontainer.cxx211
-rw-r--r--comphelper/source/eventattachermgr/eventattachermgr.cxx1036
-rw-r--r--comphelper/source/eventattachermgr/makefile.mk50
-rw-r--r--comphelper/source/inc/comphelper_module.hxx43
-rw-r--r--comphelper/source/misc/SelectionMultiplex.cxx174
-rw-r--r--comphelper/source/misc/accessiblecomponenthelper.cxx221
-rw-r--r--comphelper/source/misc/accessiblecontexthelper.cxx356
-rw-r--r--comphelper/source/misc/accessibleeventbuffer.cxx110
-rw-r--r--comphelper/source/misc/accessibleeventnotifier.cxx259
-rw-r--r--comphelper/source/misc/accessiblekeybindinghelper.cxx114
-rw-r--r--comphelper/source/misc/accessibleselectionhelper.cxx192
-rw-r--r--comphelper/source/misc/accessibletexthelper.cxx915
-rw-r--r--comphelper/source/misc/accessiblewrapper.cxx683
-rw-r--r--comphelper/source/misc/accimplaccess.cxx189
-rw-r--r--comphelper/source/misc/anytostring.cxx335
-rw-r--r--comphelper/source/misc/asyncnotification.cxx281
-rw-r--r--comphelper/source/misc/comphelper_module.cxx41
-rw-r--r--comphelper/source/misc/comphelper_services.cxx79
-rw-r--r--comphelper/source/misc/componentbase.cxx74
-rw-r--r--comphelper/source/misc/componentcontext.cxx151
-rw-r--r--comphelper/source/misc/componentmodule.cxx237
-rw-r--r--comphelper/source/misc/configurationhelper.cxx207
-rw-r--r--comphelper/source/misc/docpasswordhelper.cxx380
-rw-r--r--comphelper/source/misc/docpasswordrequest.cxx194
-rw-r--r--comphelper/source/misc/documentinfo.cxx197
-rw-r--r--comphelper/source/misc/documentiologring.cxx179
-rw-r--r--comphelper/source/misc/documentiologring.hxx88
-rw-r--r--comphelper/source/misc/evtlistenerhlp.cxx52
-rwxr-xr-xcomphelper/source/misc/evtmethodhelper.cxx77
-rw-r--r--comphelper/source/misc/ihwrapnofilter.cxx117
-rw-r--r--comphelper/source/misc/instancelocker.cxx512
-rw-r--r--comphelper/source/misc/instancelocker.hxx133
-rw-r--r--comphelper/source/misc/interaction.cxx99
-rw-r--r--comphelper/source/misc/legacysingletonfactory.cxx197
-rw-r--r--comphelper/source/misc/listenernotification.cxx127
-rw-r--r--comphelper/source/misc/locale.cxx683
-rw-r--r--comphelper/source/misc/logging.cxx405
-rw-r--r--comphelper/source/misc/makefile.mk101
-rw-r--r--comphelper/source/misc/mediadescriptor.cxx868
-rw-r--r--comphelper/source/misc/mimeconfighelper.cxx805
-rw-r--r--comphelper/source/misc/namedvaluecollection.cxx338
-rw-r--r--comphelper/source/misc/numberedcollection.cxx276
-rw-r--r--comphelper/source/misc/numbers.cxx150
-rw-r--r--comphelper/source/misc/officeresourcebundle.cxx240
-rw-r--r--comphelper/source/misc/officerestartmanager.cxx210
-rw-r--r--comphelper/source/misc/officerestartmanager.hxx91
-rw-r--r--comphelper/source/misc/proxyaggregation.cxx276
-rw-r--r--comphelper/source/misc/querydeep.cxx76
-rw-r--r--comphelper/source/misc/regpathhelper.cxx235
-rw-r--r--comphelper/source/misc/scopeguard.cxx71
-rw-r--r--comphelper/source/misc/sequence.cxx103
-rw-r--r--comphelper/source/misc/sequenceashashmap.cxx400
-rw-r--r--comphelper/source/misc/servicedecl.cxx196
-rw-r--r--comphelper/source/misc/serviceinfohelper.cxx112
-rw-r--r--comphelper/source/misc/sharedmutex.cxx62
-rw-r--r--comphelper/source/misc/stillreadwriteinteraction.cxx144
-rw-r--r--comphelper/source/misc/storagehelper.cxx487
-rw-r--r--comphelper/source/misc/string.cxx125
-rw-r--r--comphelper/source/misc/synchronousdispatch.cxx102
-rw-r--r--comphelper/source/misc/types.cxx477
-rw-r--r--comphelper/source/misc/uieventslogger.cxx686
-rw-r--r--comphelper/source/misc/weak.cxx76
-rw-r--r--comphelper/source/misc/weakeventlistener.cxx93
-rw-r--r--comphelper/source/officeinstdir/makefile.mk50
-rw-r--r--comphelper/source/officeinstdir/officeinstallationdirectories.cxx350
-rw-r--r--comphelper/source/officeinstdir/officeinstallationdirectories.hxx107
-rw-r--r--comphelper/source/processfactory/componentfactory.cxx86
-rw-r--r--comphelper/source/processfactory/makefile.mk52
-rw-r--r--comphelper/source/processfactory/processfactory.cxx127
-rw-r--r--comphelper/source/property/ChainablePropertySet.cxx321
-rw-r--r--comphelper/source/property/ChainablePropertySetInfo.cxx142
-rw-r--r--comphelper/source/property/MasterPropertySet.cxx505
-rw-r--r--comphelper/source/property/MasterPropertySetInfo.cxx170
-rw-r--r--comphelper/source/property/TypeGeneration.cxx237
-rw-r--r--comphelper/source/property/composedprops.cxx357
-rw-r--r--comphelper/source/property/genericpropertyset.cxx301
-rw-r--r--comphelper/source/property/makefile.mk65
-rw-r--r--comphelper/source/property/opropertybag.cxx585
-rw-r--r--comphelper/source/property/opropertybag.hxx242
-rw-r--r--comphelper/source/property/propagg.cxx1027
-rw-r--r--comphelper/source/property/property.cxx245
-rw-r--r--comphelper/source/property/propertybag.cxx221
-rw-r--r--comphelper/source/property/propertycontainer.cxx105
-rw-r--r--comphelper/source/property/propertycontainerhelper.cxx552
-rw-r--r--comphelper/source/property/propertysethelper.cxx328
-rw-r--r--comphelper/source/property/propertysetinfo.cxx214
-rw-r--r--comphelper/source/property/propertystatecontainer.cxx339
-rw-r--r--comphelper/source/property/propmultiplex.cxx182
-rw-r--r--comphelper/source/property/propstate.cxx261
-rw-r--r--comphelper/source/streaming/basicio.cxx174
-rw-r--r--comphelper/source/streaming/makefile.mk54
-rw-r--r--comphelper/source/streaming/memorystream.cxx247
-rw-r--r--comphelper/source/streaming/oslfile2streamwrap.cxx198
-rw-r--r--comphelper/source/streaming/otransactedfilestream.cxx824
-rw-r--r--comphelper/source/streaming/seekableinput.cxx267
-rw-r--r--comphelper/source/streaming/seqinputstreamserv.cxx251
-rw-r--r--comphelper/source/streaming/seqoutputstreamserv.cxx172
-rw-r--r--comphelper/source/streaming/seqstream.cxx243
-rw-r--r--comphelper/source/streaming/streamsection.cxx122
-rw-r--r--comphelper/source/xml/attributelist.cxx179
-rw-r--r--comphelper/source/xml/makefile.mk48
-rw-r--r--comphelper/source/xml/ofopxmlhelper.cxx467
-rw-r--r--comphelper/test/uno_iterators/makefile.mk48
-rw-r--r--comphelper/test/uno_iterators/uno_iterators.cxx218
-rw-r--r--comphelper/util/exports.dxp3
-rw-r--r--comphelper/util/makefile.mk70
-rw-r--r--comphelper/util/makefile.pmk35
-rw-r--r--comphelper/version.mk46
-rwxr-xr-xconfig.sub1714
-rw-r--r--configmgr/inc/makefile.mk38
-rw-r--r--configmgr/inc/pch/precompiled_configmgr.cxx28
-rw-r--r--configmgr/inc/pch/precompiled_configmgr.hxx32
-rw-r--r--configmgr/prj/build.lst4
-rw-r--r--configmgr/prj/d.lst3
-rw-r--r--configmgr/qa/unit/data.xcd5190
-rw-r--r--configmgr/qa/unit/makefile.mk93
-rw-r--r--configmgr/qa/unit/no_localization0
-rw-r--r--configmgr/qa/unit/test.cxx678
-rw-r--r--configmgr/qa/unit/urebootstrap.ini30
-rw-r--r--configmgr/qa/unit/version.map34
-rw-r--r--configmgr/qa/unoapi/Test.java50
-rw-r--r--configmgr/qa/unoapi/makefile.mk50
-rw-r--r--configmgr/qa/unoapi/module.sce29
-rw-r--r--configmgr/source/README157
-rw-r--r--configmgr/source/access.cxx2198
-rw-r--r--configmgr/source/access.hxx582
-rw-r--r--configmgr/source/broadcaster.cxx237
-rw-r--r--configmgr/source/broadcaster.hxx181
-rw-r--r--configmgr/source/childaccess.cxx391
-rw-r--r--configmgr/source/childaccess.hxx157
-rw-r--r--configmgr/source/components.cxx672
-rw-r--r--configmgr/source/components.hxx160
-rw-r--r--configmgr/source/configurationprovider.cxx519
-rw-r--r--configmgr/source/configurationprovider.hxx67
-rw-r--r--configmgr/source/configurationregistry.cxx950
-rw-r--r--configmgr/source/configurationregistry.hxx57
-rw-r--r--configmgr/source/data.cxx328
-rw-r--r--configmgr/source/data.hxx87
-rw-r--r--configmgr/source/defaultprovider.cxx131
-rw-r--r--configmgr/source/defaultprovider.hxx59
-rw-r--r--configmgr/source/groupnode.cxx90
-rw-r--r--configmgr/source/groupnode.hxx75
-rw-r--r--configmgr/source/localizedpropertynode.cxx87
-rw-r--r--configmgr/source/localizedpropertynode.hxx76
-rw-r--r--configmgr/source/localizedvaluenode.cxx78
-rw-r--r--configmgr/source/localizedvaluenode.hxx66
-rw-r--r--configmgr/source/lock.cxx39
-rw-r--r--configmgr/source/lock.hxx41
-rw-r--r--configmgr/source/makefile.mk84
-rw-r--r--configmgr/source/modifications.cxx66
-rw-r--r--configmgr/source/modifications.hxx65
-rw-r--r--configmgr/source/node.cxx108
-rw-r--r--configmgr/source/node.hxx86
-rw-r--r--configmgr/source/nodemap.cxx50
-rw-r--r--configmgr/source/nodemap.hxx49
-rw-r--r--configmgr/source/pad.cxx91
-rw-r--r--configmgr/source/pad.hxx61
-rw-r--r--configmgr/source/parsemanager.cxx85
-rw-r--r--configmgr/source/parsemanager.hxx69
-rw-r--r--configmgr/source/parser.hxx62
-rw-r--r--configmgr/source/partial.cxx137
-rw-r--r--configmgr/source/partial.hxx71
-rw-r--r--configmgr/source/path.hxx43
-rw-r--r--configmgr/source/propertynode.cxx110
-rw-r--r--configmgr/source/propertynode.hxx83
-rw-r--r--configmgr/source/rootaccess.cxx327
-rw-r--r--configmgr/source/rootaccess.hxx157
-rw-r--r--configmgr/source/services.cxx135
-rw-r--r--configmgr/source/setnode.cxx129
-rw-r--r--configmgr/source/setnode.hxx84
-rw-r--r--configmgr/source/span.hxx64
-rw-r--r--configmgr/source/type.cxx187
-rw-r--r--configmgr/source/type.hxx56
-rw-r--r--configmgr/source/update.cxx210
-rw-r--r--configmgr/source/update.hxx59
-rw-r--r--configmgr/source/valueparser.cxx470
-rw-r--r--configmgr/source/valueparser.hxx92
-rw-r--r--configmgr/source/writemodfile.cxx601
-rw-r--r--configmgr/source/writemodfile.hxx45
-rw-r--r--configmgr/source/xcdparser.cxx183
-rw-r--r--configmgr/source/xcdparser.hxx78
-rw-r--r--configmgr/source/xcsparser.cxx669
-rw-r--r--configmgr/source/xcsparser.hxx106
-rw-r--r--configmgr/source/xcuparser.cxx1121
-rw-r--r--configmgr/source/xcuparser.hxx153
-rw-r--r--configmgr/source/xmldata.cxx204
-rw-r--r--configmgr/source/xmldata.hxx58
-rw-r--r--configmgr/source/xmlreader.cxx1054
-rw-r--r--configmgr/source/xmlreader.hxx186
-rwxr-xr-xconfigure.cmd7
-rw-r--r--configure.in7096
-rw-r--r--connectivity/com/sun/star/sdbcx/comp/hsqldb/FileSystemRuntimeException.java73
-rw-r--r--connectivity/com/sun/star/sdbcx/comp/hsqldb/NativeInputStreamHelper.java74
-rw-r--r--connectivity/com/sun/star/sdbcx/comp/hsqldb/NativeLibraries.java80
-rw-r--r--connectivity/com/sun/star/sdbcx/comp/hsqldb/NativeOutputStreamHelper.java48
-rw-r--r--connectivity/com/sun/star/sdbcx/comp/hsqldb/NativeStorageAccess.java80
-rw-r--r--connectivity/com/sun/star/sdbcx/comp/hsqldb/StorageAccess.java171
-rw-r--r--connectivity/com/sun/star/sdbcx/comp/hsqldb/StorageFileAccess.java107
-rw-r--r--connectivity/com/sun/star/sdbcx/comp/hsqldb/StorageNativeInputStream.java53
-rw-r--r--connectivity/com/sun/star/sdbcx/comp/hsqldb/StorageNativeOutputStream.java143
-rw-r--r--connectivity/com/sun/star/sdbcx/comp/hsqldb/makefile.mk65
-rw-r--r--connectivity/dbtools.pmk29
-rw-r--r--connectivity/inc/connectivity/BlobHelper.hxx51
-rw-r--r--connectivity/inc/connectivity/CommonTools.hxx216
-rw-r--r--connectivity/inc/connectivity/ConnectionWrapper.hxx98
-rw-r--r--connectivity/inc/connectivity/DateConversion.hxx94
-rwxr-xr-xconnectivity/inc/connectivity/DriversConfig.hxx87
-rw-r--r--connectivity/inc/connectivity/FValue.hxx467
-rw-r--r--connectivity/inc/connectivity/IParseContext.hxx108
-rw-r--r--connectivity/inc/connectivity/PColumn.hxx148
-rw-r--r--connectivity/inc/connectivity/ParameterCont.hxx59
-rw-r--r--connectivity/inc/connectivity/SQLStatementHelper.hxx54
-rw-r--r--connectivity/inc/connectivity/StdTypeDefs.hxx48
-rw-r--r--connectivity/inc/connectivity/TColumnsHelper.hxx70
-rw-r--r--connectivity/inc/connectivity/TIndex.hxx56
-rw-r--r--connectivity/inc/connectivity/TIndexColumns.hxx50
-rw-r--r--connectivity/inc/connectivity/TIndexes.hxx57
-rw-r--r--connectivity/inc/connectivity/TKey.hxx54
-rw-r--r--connectivity/inc/connectivity/TKeyColumns.hxx50
-rw-r--r--connectivity/inc/connectivity/TKeys.hxx66
-rw-r--r--connectivity/inc/connectivity/TTableHelper.hxx173
-rw-r--r--connectivity/inc/connectivity/conncleanup.hxx97
-rw-r--r--connectivity/inc/connectivity/dbcharset.hxx168
-rw-r--r--connectivity/inc/connectivity/dbconversion.hxx224
-rw-r--r--connectivity/inc/connectivity/dbexception.hxx377
-rw-r--r--connectivity/inc/connectivity/dbmetadata.hxx200
-rw-r--r--connectivity/inc/connectivity/dbtools.hxx825
-rw-r--r--connectivity/inc/connectivity/dbtoolsdllapi.hxx40
-rw-r--r--connectivity/inc/connectivity/filtermanager.hxx131
-rw-r--r--connectivity/inc/connectivity/formattedcolumnvalue.hxx119
-rw-r--r--connectivity/inc/connectivity/parameters.hxx426
-rw-r--r--connectivity/inc/connectivity/paramwrapper.hxx208
-rw-r--r--connectivity/inc/connectivity/predicateinput.hxx126
-rw-r--r--connectivity/inc/connectivity/sdbcx/IRefreshable.hxx57
-rw-r--r--connectivity/inc/connectivity/sdbcx/VCatalog.hxx132
-rw-r--r--connectivity/inc/connectivity/sdbcx/VCollection.hxx243
-rw-r--r--connectivity/inc/connectivity/sdbcx/VColumn.hxx118
-rw-r--r--connectivity/inc/connectivity/sdbcx/VDescriptor.hxx102
-rw-r--r--connectivity/inc/connectivity/sdbcx/VGroup.hxx113
-rw-r--r--connectivity/inc/connectivity/sdbcx/VIndex.hxx117
-rw-r--r--connectivity/inc/connectivity/sdbcx/VIndexColumn.hxx69
-rw-r--r--connectivity/inc/connectivity/sdbcx/VKey.hxx128
-rw-r--r--connectivity/inc/connectivity/sdbcx/VKeyColumn.hxx71
-rw-r--r--connectivity/inc/connectivity/sdbcx/VTable.hxx148
-rw-r--r--connectivity/inc/connectivity/sdbcx/VTypeDef.hxx47
-rw-r--r--connectivity/inc/connectivity/sdbcx/VUser.hxx107
-rw-r--r--connectivity/inc/connectivity/sdbcx/VView.hxx108
-rw-r--r--connectivity/inc/connectivity/sqlerror.hxx340
-rw-r--r--connectivity/inc/connectivity/sqliterator.hxx366
-rw-r--r--connectivity/inc/connectivity/sqlnode.hxx472
-rw-r--r--connectivity/inc/connectivity/sqlparse.hxx261
-rw-r--r--connectivity/inc/connectivity/standardsqlstate.hxx73
-rw-r--r--connectivity/inc/connectivity/statementcomposer.hxx111
-rw-r--r--connectivity/inc/connectivity/virtualdbtools.hxx358
-rw-r--r--connectivity/inc/connectivity/warningscontainer.hxx107
-rw-r--r--connectivity/inc/makefile.mk47
-rw-r--r--connectivity/inc/pch/precompiled_connectivity.cxx29
-rw-r--r--connectivity/inc/pch/precompiled_connectivity.hxx334
-rwxr-xr-xconnectivity/makefile.pmk62
-rw-r--r--connectivity/prj/build.lst32
-rw-r--r--connectivity/prj/d.lst33
-rw-r--r--connectivity/qa/connectivity/GeneralTest.java62
-rw-r--r--connectivity/qa/connectivity/makefile.mk65
-rwxr-xr-xconnectivity/qa/connectivity/tools/AbstractDatabase.java222
-rw-r--r--connectivity/qa/connectivity/tools/CRMDatabase.java292
-rw-r--r--connectivity/qa/connectivity/tools/DataSource.java145
-rwxr-xr-xconnectivity/qa/connectivity/tools/DatabaseAccess.java63
-rwxr-xr-xconnectivity/qa/connectivity/tools/DbaseDatabase.java98
-rw-r--r--connectivity/qa/connectivity/tools/HsqlColumnDescriptor.java84
-rw-r--r--connectivity/qa/connectivity/tools/HsqlDatabase.java213
-rw-r--r--connectivity/qa/connectivity/tools/HsqlTableDescriptor.java102
-rw-r--r--connectivity/qa/connectivity/tools/QueryDefinition.java74
-rw-r--r--connectivity/qa/connectivity/tools/RowSet.java292
-rw-r--r--connectivity/qa/connectivity/tools/makefile.mk65
-rw-r--r--connectivity/qa/connectivity/tools/sdb/Connection.java93
-rw-r--r--connectivity/qa/drivers/dbase/.nbattrs10
-rw-r--r--connectivity/qa/drivers/dbase/DBaseDateFunctions.java309
-rw-r--r--connectivity/qa/drivers/dbase/DBaseDriverTest.java94
-rw-r--r--connectivity/qa/drivers/dbase/DBaseNumericFunctions.java402
-rwxr-xr-xconnectivity/qa/drivers/dbase/DBaseSqlTests.java96
-rw-r--r--connectivity/qa/drivers/dbase/DBaseStringFunctions.java323
-rw-r--r--connectivity/qa/drivers/dbase/makefile.mk64
-rw-r--r--connectivity/qa/drivers/dbase/test.properties5
-rw-r--r--connectivity/qa/drivers/hsqldb/DatabaseMetaData.java152
-rw-r--r--connectivity/qa/drivers/hsqldb/DriverTest.java170
-rw-r--r--connectivity/qa/drivers/hsqldb/TestCacheSize.java617
-rw-r--r--connectivity/qa/drivers/jdbc/LongVarCharTest.java131
-rw-r--r--connectivity/qa/drivers/jdbc/makefile.mk66
-rw-r--r--connectivity/source/commontools/AutoRetrievingBase.cxx71
-rw-r--r--connectivity/source/commontools/BlobHelper.cxx69
-rw-r--r--connectivity/source/commontools/CommonTools.cxx369
-rw-r--r--connectivity/source/commontools/ConnectionWrapper.cxx267
-rw-r--r--connectivity/source/commontools/DateConversion.cxx520
-rwxr-xr-xconnectivity/source/commontools/DriversConfig.cxx262
-rw-r--r--connectivity/source/commontools/FDatabaseMetaDataResultSet.cxx913
-rw-r--r--connectivity/source/commontools/FDatabaseMetaDataResultSetMetaData.cxx692
-rw-r--r--connectivity/source/commontools/FValue.cxx2333
-rw-r--r--connectivity/source/commontools/ParamterSubstitution.cxx132
-rw-r--r--connectivity/source/commontools/RowFunctionParser.cxx499
-rw-r--r--connectivity/source/commontools/TColumnsHelper.cxx225
-rw-r--r--connectivity/source/commontools/TConnection.cxx106
-rw-r--r--connectivity/source/commontools/TDatabaseMetaDataBase.cxx333
-rw-r--r--connectivity/source/commontools/TIndex.cxx110
-rw-r--r--connectivity/source/commontools/TIndexColumns.cxx127
-rw-r--r--connectivity/source/commontools/TIndexes.cxx262
-rw-r--r--connectivity/source/commontools/TKey.cxx119
-rw-r--r--connectivity/source/commontools/TKeyColumns.cxx145
-rw-r--r--connectivity/source/commontools/TKeys.cxx320
-rw-r--r--connectivity/source/commontools/TPrivilegesResultSet.cxx155
-rw-r--r--connectivity/source/commontools/TSkipDeletedSet.cxx278
-rw-r--r--connectivity/source/commontools/TSortIndex.cxx178
-rw-r--r--connectivity/source/commontools/TTableHelper.cxx630
-rw-r--r--connectivity/source/commontools/conncleanup.cxx247
-rw-r--r--connectivity/source/commontools/dbcharset.cxx232
-rw-r--r--connectivity/source/commontools/dbconversion.cxx490
-rw-r--r--connectivity/source/commontools/dbexception.cxx564
-rw-r--r--connectivity/source/commontools/dbmetadata.cxx448
-rw-r--r--connectivity/source/commontools/dbtools.cxx2173
-rw-r--r--connectivity/source/commontools/dbtools2.cxx974
-rw-r--r--connectivity/source/commontools/filtermanager.cxx198
-rw-r--r--connectivity/source/commontools/formattedcolumnvalue.cxx338
-rw-r--r--connectivity/source/commontools/makefile.mk103
-rw-r--r--connectivity/source/commontools/parameters.cxx1120
-rw-r--r--connectivity/source/commontools/paramwrapper.cxx364
-rw-r--r--connectivity/source/commontools/predicateinput.cxx391
-rw-r--r--connectivity/source/commontools/propertyids.cxx198
-rw-r--r--connectivity/source/commontools/sqlerror.cxx363
-rw-r--r--connectivity/source/commontools/statementcomposer.cxx315
-rw-r--r--connectivity/source/commontools/warningscontainer.cxx123
-rw-r--r--connectivity/source/cpool/ZConnectionPool.cxx336
-rw-r--r--connectivity/source/cpool/ZConnectionPool.hxx155
-rw-r--r--connectivity/source/cpool/ZConnectionWrapper.cxx258
-rw-r--r--connectivity/source/cpool/ZConnectionWrapper.hxx87
-rw-r--r--connectivity/source/cpool/ZDriverWrapper.cxx135
-rw-r--r--connectivity/source/cpool/ZDriverWrapper.hxx89
-rw-r--r--connectivity/source/cpool/ZPoolCollection.cxx581
-rw-r--r--connectivity/source/cpool/ZPoolCollection.hxx148
-rw-r--r--connectivity/source/cpool/ZPooledConnection.cxx88
-rw-r--r--connectivity/source/cpool/ZPooledConnection.hxx68
-rw-r--r--connectivity/source/cpool/Zregistration.cxx108
-rw-r--r--connectivity/source/cpool/dbpool.xml28
-rw-r--r--connectivity/source/cpool/exports.dxp3
-rw-r--r--connectivity/source/cpool/makefile.mk81
-rw-r--r--connectivity/source/dbtools/dbt.xml16
-rw-r--r--connectivity/source/dbtools/exports.dxp3
-rw-r--r--connectivity/source/dbtools/makefile.mk97
-rw-r--r--connectivity/source/drivers/adabas/BCatalog.cxx168
-rw-r--r--connectivity/source/drivers/adabas/BColumns.cxx184
-rw-r--r--connectivity/source/drivers/adabas/BConnection.cxx274
-rw-r--r--connectivity/source/drivers/adabas/BDatabaseMetaData.cxx161
-rw-r--r--connectivity/source/drivers/adabas/BDriver.cxx1819
-rw-r--r--connectivity/source/drivers/adabas/BFunctions.cxx275
-rw-r--r--connectivity/source/drivers/adabas/BGroup.cxx94
-rw-r--r--connectivity/source/drivers/adabas/BGroups.cxx93
-rw-r--r--connectivity/source/drivers/adabas/BIndex.cxx106
-rw-r--r--connectivity/source/drivers/adabas/BIndexColumns.cxx124
-rw-r--r--connectivity/source/drivers/adabas/BIndexes.cxx192
-rw-r--r--connectivity/source/drivers/adabas/BKeys.cxx181
-rw-r--r--connectivity/source/drivers/adabas/BPreparedStatement.cxx76
-rw-r--r--connectivity/source/drivers/adabas/BResultSet.cxx223
-rw-r--r--connectivity/source/drivers/adabas/BResultSetMetaData.cxx87
-rw-r--r--connectivity/source/drivers/adabas/BStatement.cxx79
-rw-r--r--connectivity/source/drivers/adabas/BTable.cxx376
-rw-r--r--connectivity/source/drivers/adabas/BTables.cxx522
-rw-r--r--connectivity/source/drivers/adabas/BUser.cxx332
-rw-r--r--connectivity/source/drivers/adabas/BUsers.cxx128
-rw-r--r--connectivity/source/drivers/adabas/BViews.cxx194
-rw-r--r--connectivity/source/drivers/adabas/Bservices.cxx176
-rw-r--r--connectivity/source/drivers/adabas/adabas.mxp.map148
-rwxr-xr-xconnectivity/source/drivers/adabas/adabas.xcu130
-rw-r--r--connectivity/source/drivers/adabas/adabas.xml27
-rw-r--r--connectivity/source/drivers/adabas/exports.dxp3
-rw-r--r--connectivity/source/drivers/adabas/makefile.mk106
-rw-r--r--connectivity/source/drivers/ado/ACallableStatement.cxx235
-rw-r--r--connectivity/source/drivers/ado/ACatalog.cxx127
-rw-r--r--connectivity/source/drivers/ado/AColumn.cxx300
-rw-r--r--connectivity/source/drivers/ado/AColumns.cxx142
-rw-r--r--connectivity/source/drivers/ado/AConnection.cxx625
-rw-r--r--connectivity/source/drivers/ado/ADatabaseMetaData.cxx1093
-rw-r--r--connectivity/source/drivers/ado/ADatabaseMetaDataImpl.cxx608
-rw-r--r--connectivity/source/drivers/ado/ADatabaseMetaDataResultSet.cxx1218
-rw-r--r--connectivity/source/drivers/ado/ADatabaseMetaDataResultSetMetaData.cxx233
-rw-r--r--connectivity/source/drivers/ado/ADriver.cxx271
-rw-r--r--connectivity/source/drivers/ado/AGroup.cxx192
-rw-r--r--connectivity/source/drivers/ado/AGroups.cxx88
-rw-r--r--connectivity/source/drivers/ado/AIndex.cxx157
-rw-r--r--connectivity/source/drivers/ado/AIndexes.cxx90
-rw-r--r--connectivity/source/drivers/ado/AKey.cxx167
-rw-r--r--connectivity/source/drivers/ado/AKeyColumn.cxx71
-rw-r--r--connectivity/source/drivers/ado/AKeyColumns.cxx97
-rw-r--r--connectivity/source/drivers/ado/AKeys.cxx115
-rw-r--r--connectivity/source/drivers/ado/APreparedStatement.cxx564
-rw-r--r--connectivity/source/drivers/ado/AResultSet.cxx1173
-rw-r--r--connectivity/source/drivers/ado/AResultSetMetaData.cxx262
-rw-r--r--connectivity/source/drivers/ado/AStatement.cxx841
-rw-r--r--connectivity/source/drivers/ado/ATable.cxx257
-rw-r--r--connectivity/source/drivers/ado/ATables.cxx115
-rw-r--r--connectivity/source/drivers/ado/AUser.cxx227
-rw-r--r--connectivity/source/drivers/ado/AUsers.cxx87
-rw-r--r--connectivity/source/drivers/ado/AView.cxx123
-rw-r--r--connectivity/source/drivers/ado/AViews.cxx104
-rw-r--r--connectivity/source/drivers/ado/Aolevariant.cxx791
-rw-r--r--connectivity/source/drivers/ado/Aservices.cxx175
-rw-r--r--connectivity/source/drivers/ado/Awrapado.cxx2201
-rwxr-xr-xconnectivity/source/drivers/ado/ado.xcu259
-rw-r--r--connectivity/source/drivers/ado/ado.xml29
-rw-r--r--connectivity/source/drivers/ado/ado_post_sys_include.h32
-rw-r--r--connectivity/source/drivers/ado/ado_pre_sys_include.h37
-rw-r--r--connectivity/source/drivers/ado/adoimp.cxx336
-rw-r--r--connectivity/source/drivers/ado/exports.dxp3
-rw-r--r--connectivity/source/drivers/ado/makefile.mk114
-rw-r--r--connectivity/source/drivers/calc/CCatalog.cxx80
-rw-r--r--connectivity/source/drivers/calc/CColumns.cxx55
-rw-r--r--connectivity/source/drivers/calc/CConnection.cxx295
-rw-r--r--connectivity/source/drivers/calc/CDatabaseMetaData.cxx490
-rw-r--r--connectivity/source/drivers/calc/CDriver.cxx105
-rw-r--r--connectivity/source/drivers/calc/CPreparedStatement.cxx43
-rw-r--r--connectivity/source/drivers/calc/CResultSet.cxx191
-rw-r--r--connectivity/source/drivers/calc/CStatement.cxx43
-rw-r--r--connectivity/source/drivers/calc/CTable.cxx871
-rw-r--r--connectivity/source/drivers/calc/CTables.cxx62
-rw-r--r--connectivity/source/drivers/calc/CalcDriver.xml32
-rw-r--r--connectivity/source/drivers/calc/Cservices.cxx175
-rwxr-xr-xconnectivity/source/drivers/calc/calc.xcu63
-rw-r--r--connectivity/source/drivers/calc/exports.dxp3
-rw-r--r--connectivity/source/drivers/calc/makefile.mk96
-rw-r--r--connectivity/source/drivers/dbase/DCatalog.cxx70
-rw-r--r--connectivity/source/drivers/dbase/DCode.cxx131
-rw-r--r--connectivity/source/drivers/dbase/DColumns.cxx91
-rw-r--r--connectivity/source/drivers/dbase/DConnection.cxx135
-rw-r--r--connectivity/source/drivers/dbase/DDatabaseMetaData.cxx416
-rw-r--r--connectivity/source/drivers/dbase/DDriver.cxx127
-rw-r--r--connectivity/source/drivers/dbase/DIndex.cxx679
-rw-r--r--connectivity/source/drivers/dbase/DIndexColumns.cxx94
-rw-r--r--connectivity/source/drivers/dbase/DIndexIter.cxx315
-rw-r--r--connectivity/source/drivers/dbase/DIndexes.cxx137
-rw-r--r--connectivity/source/drivers/dbase/DNoException.cxx650
-rw-r--r--connectivity/source/drivers/dbase/DPreparedStatement.cxx42
-rw-r--r--connectivity/source/drivers/dbase/DResultSet.cxx249
-rw-r--r--connectivity/source/drivers/dbase/DStatement.cxx44
-rw-r--r--connectivity/source/drivers/dbase/DTable.cxx2847
-rw-r--r--connectivity/source/drivers/dbase/DTables.cxx144
-rw-r--r--connectivity/source/drivers/dbase/Dservices.cxx175
-rw-r--r--connectivity/source/drivers/dbase/dbase.mxp.map173
-rwxr-xr-xconnectivity/source/drivers/dbase/dbase.xcu100
-rw-r--r--connectivity/source/drivers/dbase/dbase.xml33
-rw-r--r--connectivity/source/drivers/dbase/dindexnode.cxx1056
-rw-r--r--connectivity/source/drivers/dbase/exports.dxp3
-rw-r--r--connectivity/source/drivers/dbase/makefile.mk129
-rw-r--r--connectivity/source/drivers/evoab/LCatalog.cxx72
-rw-r--r--connectivity/source/drivers/evoab/LCatalog.hxx49
-rw-r--r--connectivity/source/drivers/evoab/LColumnAlias.cxx232
-rw-r--r--connectivity/source/drivers/evoab/LColumnAlias.hxx113
-rw-r--r--connectivity/source/drivers/evoab/LColumns.cxx57
-rw-r--r--connectivity/source/drivers/evoab/LColumns.hxx52
-rw-r--r--connectivity/source/drivers/evoab/LConfigAccess.cxx161
-rw-r--r--connectivity/source/drivers/evoab/LConfigAccess.hxx46
-rw-r--r--connectivity/source/drivers/evoab/LConnection.cxx267
-rw-r--r--connectivity/source/drivers/evoab/LConnection.hxx78
-rw-r--r--connectivity/source/drivers/evoab/LDatabaseMetaData.cxx391
-rw-r--r--connectivity/source/drivers/evoab/LDatabaseMetaData.hxx56
-rw-r--r--connectivity/source/drivers/evoab/LDebug.cxx42
-rw-r--r--connectivity/source/drivers/evoab/LDebug.hxx42
-rw-r--r--connectivity/source/drivers/evoab/LDriver.cxx505
-rw-r--r--connectivity/source/drivers/evoab/LDriver.hxx115
-rw-r--r--connectivity/source/drivers/evoab/LFolderList.cxx563
-rw-r--r--connectivity/source/drivers/evoab/LFolderList.hxx92
-rw-r--r--connectivity/source/drivers/evoab/LNoException.cxx324
-rw-r--r--connectivity/source/drivers/evoab/LPreparedStatement.cxx43
-rw-r--r--connectivity/source/drivers/evoab/LPreparedStatement.hxx50
-rw-r--r--connectivity/source/drivers/evoab/LResultSet.cxx190
-rw-r--r--connectivity/source/drivers/evoab/LResultSet.hxx81
-rw-r--r--connectivity/source/drivers/evoab/LServices.cxx175
-rw-r--r--connectivity/source/drivers/evoab/LStatement.cxx43
-rw-r--r--connectivity/source/drivers/evoab/LStatement.hxx49
-rw-r--r--connectivity/source/drivers/evoab/LTable.cxx870
-rw-r--r--connectivity/source/drivers/evoab/LTable.hxx100
-rw-r--r--connectivity/source/drivers/evoab/LTables.cxx62
-rw-r--r--connectivity/source/drivers/evoab/LTables.hxx52
-rwxr-xr-xconnectivity/source/drivers/evoab/evoab.xcu61
-rw-r--r--connectivity/source/drivers/evoab/evoab.xml33
-rw-r--r--connectivity/source/drivers/evoab/exports.dxp3
-rw-r--r--connectivity/source/drivers/evoab/makefile.mk104
-rw-r--r--connectivity/source/drivers/evoab2/EApi.cxx135
-rw-r--r--connectivity/source/drivers/evoab2/EApi.h143
-rw-r--r--connectivity/source/drivers/evoab2/NCatalog.cxx100
-rw-r--r--connectivity/source/drivers/evoab2/NCatalog.hxx56
-rw-r--r--connectivity/source/drivers/evoab2/NColumns.cxx90
-rw-r--r--connectivity/source/drivers/evoab2/NColumns.hxx57
-rw-r--r--connectivity/source/drivers/evoab2/NConnection.cxx292
-rw-r--r--connectivity/source/drivers/evoab2/NConnection.hxx123
-rw-r--r--connectivity/source/drivers/evoab2/NDatabaseMetaData.cxx1192
-rw-r--r--connectivity/source/drivers/evoab2/NDatabaseMetaData.hxx236
-rw-r--r--connectivity/source/drivers/evoab2/NDebug.cxx40
-rw-r--r--connectivity/source/drivers/evoab2/NDebug.hxx42
-rw-r--r--connectivity/source/drivers/evoab2/NDriver.cxx190
-rw-r--r--connectivity/source/drivers/evoab2/NDriver.hxx98
-rw-r--r--connectivity/source/drivers/evoab2/NPreparedStatement.cxx335
-rw-r--r--connectivity/source/drivers/evoab2/NPreparedStatement.hxx138
-rw-r--r--connectivity/source/drivers/evoab2/NResultSet.cxx1020
-rw-r--r--connectivity/source/drivers/evoab2/NResultSet.hxx183
-rw-r--r--connectivity/source/drivers/evoab2/NResultSetMetaData.cxx194
-rw-r--r--connectivity/source/drivers/evoab2/NResultSetMetaData.hxx88
-rw-r--r--connectivity/source/drivers/evoab2/NServices.cxx175
-rw-r--r--connectivity/source/drivers/evoab2/NStatement.cxx682
-rw-r--r--connectivity/source/drivers/evoab2/NStatement.hxx288
-rw-r--r--connectivity/source/drivers/evoab2/NTable.cxx89
-rw-r--r--connectivity/source/drivers/evoab2/NTable.hxx67
-rw-r--r--connectivity/source/drivers/evoab2/NTables.cxx105
-rw-r--r--connectivity/source/drivers/evoab2/NTables.hxx54
-rw-r--r--connectivity/source/drivers/evoab2/evoab.xml30
-rwxr-xr-xconnectivity/source/drivers/evoab2/evoab2.xcu76
-rw-r--r--connectivity/source/drivers/evoab2/makefile.mk112
-rw-r--r--connectivity/source/drivers/file/FCatalog.cxx121
-rw-r--r--connectivity/source/drivers/file/FColumns.cxx94
-rw-r--r--connectivity/source/drivers/file/FConnection.cxx461
-rw-r--r--connectivity/source/drivers/file/FDatabaseMetaData.cxx1223
-rw-r--r--connectivity/source/drivers/file/FDateFunctions.cxx289
-rw-r--r--connectivity/source/drivers/file/FDriver.cxx285
-rw-r--r--connectivity/source/drivers/file/FNoException.cxx131
-rw-r--r--connectivity/source/drivers/file/FNumericFunctions.cxx249
-rw-r--r--connectivity/source/drivers/file/FPreparedStatement.cxx634
-rw-r--r--connectivity/source/drivers/file/FResultSet.cxx1893
-rw-r--r--connectivity/source/drivers/file/FResultSetMetaData.cxx219
-rw-r--r--connectivity/source/drivers/file/FStatement.cxx860
-rw-r--r--connectivity/source/drivers/file/FStringFunctions.cxx267
-rw-r--r--connectivity/source/drivers/file/FTable.cxx257
-rw-r--r--connectivity/source/drivers/file/FTables.cxx83
-rw-r--r--connectivity/source/drivers/file/fanalyzer.cxx322
-rw-r--r--connectivity/source/drivers/file/fcode.cxx519
-rw-r--r--connectivity/source/drivers/file/fcomp.cxx917
-rw-r--r--connectivity/source/drivers/file/file.xml32
-rw-r--r--connectivity/source/drivers/file/makefile.mk108
-rw-r--r--connectivity/source/drivers/file/quotedstring.cxx164
-rw-r--r--connectivity/source/drivers/flat/ECatalog.cxx75
-rw-r--r--connectivity/source/drivers/flat/EColumns.cxx56
-rw-r--r--connectivity/source/drivers/flat/EConnection.cxx181
-rw-r--r--connectivity/source/drivers/flat/EDatabaseMetaData.cxx267
-rw-r--r--connectivity/source/drivers/flat/EDriver.cxx145
-rw-r--r--connectivity/source/drivers/flat/EPreparedStatement.cxx46
-rw-r--r--connectivity/source/drivers/flat/EResultSet.cxx189
-rw-r--r--connectivity/source/drivers/flat/EStatement.cxx43
-rw-r--r--connectivity/source/drivers/flat/ETable.cxx847
-rw-r--r--connectivity/source/drivers/flat/ETables.cxx62
-rw-r--r--connectivity/source/drivers/flat/Eservices.cxx175
-rw-r--r--connectivity/source/drivers/flat/exports.dxp3
-rw-r--r--connectivity/source/drivers/flat/flat.mxp.map141
-rwxr-xr-xconnectivity/source/drivers/flat/flat.xcu110
-rw-r--r--connectivity/source/drivers/flat/flat.xml33
-rw-r--r--connectivity/source/drivers/flat/makefile.mk107
-rw-r--r--connectivity/source/drivers/hsqldb/HCatalog.cxx166
-rw-r--r--connectivity/source/drivers/hsqldb/HColumns.cxx89
-rw-r--r--connectivity/source/drivers/hsqldb/HConnection.cxx422
-rw-r--r--connectivity/source/drivers/hsqldb/HDriver.cxx886
-rw-r--r--connectivity/source/drivers/hsqldb/HStorage.hxx118
-rw-r--r--connectivity/source/drivers/hsqldb/HStorageAccess.cxx551
-rw-r--r--connectivity/source/drivers/hsqldb/HStorageMap.cxx362
-rw-r--r--connectivity/source/drivers/hsqldb/HTable.cxx427
-rw-r--r--connectivity/source/drivers/hsqldb/HTables.cxx200
-rw-r--r--connectivity/source/drivers/hsqldb/HTerminateListener.cxx64
-rw-r--r--connectivity/source/drivers/hsqldb/HTerminateListener.hxx66
-rw-r--r--connectivity/source/drivers/hsqldb/HTools.cxx73
-rw-r--r--connectivity/source/drivers/hsqldb/HUser.cxx351
-rw-r--r--connectivity/source/drivers/hsqldb/HUsers.cxx120
-rw-r--r--connectivity/source/drivers/hsqldb/HView.cxx213
-rw-r--r--connectivity/source/drivers/hsqldb/HViews.cxx169
-rw-r--r--connectivity/source/drivers/hsqldb/Hservices.cxx177
-rw-r--r--connectivity/source/drivers/hsqldb/StorageFileAccess.cxx180
-rw-r--r--connectivity/source/drivers/hsqldb/StorageNativeInputStream.cxx306
-rw-r--r--connectivity/source/drivers/hsqldb/StorageNativeOutputStream.cxx219
-rw-r--r--connectivity/source/drivers/hsqldb/accesslog.cxx83
-rw-r--r--connectivity/source/drivers/hsqldb/accesslog.hxx145
-rw-r--r--connectivity/source/drivers/hsqldb/exports.dxp30
-rw-r--r--connectivity/source/drivers/hsqldb/hsqldb.map35
-rwxr-xr-xconnectivity/source/drivers/hsqldb/hsqldb.xcu78
-rw-r--r--connectivity/source/drivers/hsqldb/hsqldb.xml28
-rw-r--r--connectivity/source/drivers/hsqldb/hsqlui.hrc36
-rw-r--r--connectivity/source/drivers/hsqldb/hsqlui.src53
-rw-r--r--connectivity/source/drivers/hsqldb/makefile.mk117
-rw-r--r--connectivity/source/drivers/jdbc/Array.cxx152
-rw-r--r--connectivity/source/drivers/jdbc/Blob.cxx148
-rw-r--r--connectivity/source/drivers/jdbc/Boolean.cxx51
-rw-r--r--connectivity/source/drivers/jdbc/CallableStatement.cxx359
-rw-r--r--connectivity/source/drivers/jdbc/Class.cxx73
-rw-r--r--connectivity/source/drivers/jdbc/Clob.cxx146
-rw-r--r--connectivity/source/drivers/jdbc/ConnectionLog.cxx134
-rw-r--r--connectivity/source/drivers/jdbc/ContextClassLoader.cxx131
-rw-r--r--connectivity/source/drivers/jdbc/DatabaseMetaData.cxx1462
-rw-r--r--connectivity/source/drivers/jdbc/Date.cxx53
-rw-r--r--connectivity/source/drivers/jdbc/DriverPropertyInfo.cxx141
-rw-r--r--connectivity/source/drivers/jdbc/Exception.cxx48
-rw-r--r--connectivity/source/drivers/jdbc/InputStream.cxx110
-rw-r--r--connectivity/source/drivers/jdbc/JBigDecimal.cxx89
-rw-r--r--connectivity/source/drivers/jdbc/JConnection.cxx873
-rw-r--r--connectivity/source/drivers/jdbc/JDriver.cxx256
-rw-r--r--connectivity/source/drivers/jdbc/JStatement.cxx829
-rw-r--r--connectivity/source/drivers/jdbc/Object.cxx429
-rw-r--r--connectivity/source/drivers/jdbc/PreparedStatement.cxx666
-rw-r--r--connectivity/source/drivers/jdbc/Reader.cxx121
-rw-r--r--connectivity/source/drivers/jdbc/Ref.cxx61
-rw-r--r--connectivity/source/drivers/jdbc/ResultSet.cxx1087
-rw-r--r--connectivity/source/drivers/jdbc/ResultSetMetaData.cxx238
-rw-r--r--connectivity/source/drivers/jdbc/SQLException.cxx100
-rw-r--r--connectivity/source/drivers/jdbc/SQLWarning.cxx48
-rw-r--r--connectivity/source/drivers/jdbc/String.cxx62
-rw-r--r--connectivity/source/drivers/jdbc/Throwable.cxx69
-rw-r--r--connectivity/source/drivers/jdbc/Timestamp.cxx201
-rw-r--r--connectivity/source/drivers/jdbc/exports.dxp3
-rw-r--r--connectivity/source/drivers/jdbc/jdbc.mxp.map154
-rwxr-xr-xconnectivity/source/drivers/jdbc/jdbc.xcu214
-rw-r--r--connectivity/source/drivers/jdbc/jdbc.xml30
-rw-r--r--connectivity/source/drivers/jdbc/jservices.cxx177
-rw-r--r--connectivity/source/drivers/jdbc/makefile.mk112
-rw-r--r--connectivity/source/drivers/jdbc/tools.cxx274
-rw-r--r--connectivity/source/drivers/kab/KCatalog.cxx124
-rw-r--r--connectivity/source/drivers/kab/KCatalog.hxx64
-rw-r--r--connectivity/source/drivers/kab/KColumns.cxx98
-rw-r--r--connectivity/source/drivers/kab/KColumns.hxx54
-rw-r--r--connectivity/source/drivers/kab/KConnection.cxx328
-rw-r--r--connectivity/source/drivers/kab/KConnection.hxx139
-rw-r--r--connectivity/source/drivers/kab/KDEInit.cxx155
-rw-r--r--connectivity/source/drivers/kab/KDEInit.h44
-rw-r--r--connectivity/source/drivers/kab/KDatabaseMetaData.cxx1080
-rw-r--r--connectivity/source/drivers/kab/KDatabaseMetaData.hxx213
-rw-r--r--connectivity/source/drivers/kab/KDriver.cxx473
-rw-r--r--connectivity/source/drivers/kab/KDriver.hxx223
-rw-r--r--connectivity/source/drivers/kab/KPreparedStatement.cxx390
-rw-r--r--connectivity/source/drivers/kab/KPreparedStatement.hxx119
-rw-r--r--connectivity/source/drivers/kab/KResultSet.cxx987
-rw-r--r--connectivity/source/drivers/kab/KResultSet.hxx224
-rw-r--r--connectivity/source/drivers/kab/KResultSetMetaData.cxx187
-rw-r--r--connectivity/source/drivers/kab/KResultSetMetaData.hxx92
-rw-r--r--connectivity/source/drivers/kab/KServices.cxx177
-rw-r--r--connectivity/source/drivers/kab/KStatement.cxx584
-rw-r--r--connectivity/source/drivers/kab/KStatement.hxx172
-rw-r--r--connectivity/source/drivers/kab/KTable.cxx96
-rw-r--r--connectivity/source/drivers/kab/KTable.hxx68
-rw-r--r--connectivity/source/drivers/kab/KTables.cxx90
-rw-r--r--connectivity/source/drivers/kab/KTables.hxx61
-rw-r--r--connectivity/source/drivers/kab/exports.dxp3
-rwxr-xr-xconnectivity/source/drivers/kab/kab.xcu46
-rw-r--r--connectivity/source/drivers/kab/kab.xml79
-rw-r--r--connectivity/source/drivers/kab/kabdrv.map9
-rw-r--r--connectivity/source/drivers/kab/kcondition.cxx229
-rw-r--r--connectivity/source/drivers/kab/kcondition.hxx162
-rw-r--r--connectivity/source/drivers/kab/kfields.cxx94
-rw-r--r--connectivity/source/drivers/kab/kfields.hxx47
-rw-r--r--connectivity/source/drivers/kab/korder.cxx88
-rw-r--r--connectivity/source/drivers/kab/korder.hxx74
-rw-r--r--connectivity/source/drivers/kab/makefile.mk140
-rwxr-xr-xconnectivity/source/drivers/macab/MacabAddressBook.cxx256
-rwxr-xr-xconnectivity/source/drivers/macab/MacabAddressBook.hxx72
-rwxr-xr-xconnectivity/source/drivers/macab/MacabCatalog.cxx124
-rwxr-xr-xconnectivity/source/drivers/macab/MacabCatalog.hxx64
-rwxr-xr-xconnectivity/source/drivers/macab/MacabColumns.cxx98
-rwxr-xr-xconnectivity/source/drivers/macab/MacabColumns.hxx54
-rwxr-xr-xconnectivity/source/drivers/macab/MacabConnection.cxx324
-rwxr-xr-xconnectivity/source/drivers/macab/MacabConnection.hxx131
-rwxr-xr-xconnectivity/source/drivers/macab/MacabDatabaseMetaData.cxx1126
-rwxr-xr-xconnectivity/source/drivers/macab/MacabDatabaseMetaData.hxx212
-rwxr-xr-xconnectivity/source/drivers/macab/MacabDriver.cxx348
-rwxr-xr-xconnectivity/source/drivers/macab/MacabDriver.hxx196
-rw-r--r--connectivity/source/drivers/macab/MacabGroup.cxx102
-rw-r--r--connectivity/source/drivers/macab/MacabGroup.hxx51
-rw-r--r--connectivity/source/drivers/macab/MacabHeader.cxx343
-rw-r--r--connectivity/source/drivers/macab/MacabHeader.hxx71
-rwxr-xr-xconnectivity/source/drivers/macab/MacabPreparedStatement.cxx407
-rwxr-xr-xconnectivity/source/drivers/macab/MacabPreparedStatement.hxx119
-rwxr-xr-xconnectivity/source/drivers/macab/MacabRecord.cxx347
-rwxr-xr-xconnectivity/source/drivers/macab/MacabRecord.hxx77
-rwxr-xr-xconnectivity/source/drivers/macab/MacabRecords.cxx1212
-rwxr-xr-xconnectivity/source/drivers/macab/MacabRecords.hxx136
-rwxr-xr-xconnectivity/source/drivers/macab/MacabResultSet.cxx1073
-rwxr-xr-xconnectivity/source/drivers/macab/MacabResultSet.hxx226
-rwxr-xr-xconnectivity/source/drivers/macab/MacabResultSetMetaData.cxx224
-rwxr-xr-xconnectivity/source/drivers/macab/MacabResultSetMetaData.hxx94
-rwxr-xr-xconnectivity/source/drivers/macab/MacabServices.cxx177
-rwxr-xr-xconnectivity/source/drivers/macab/MacabStatement.cxx611
-rwxr-xr-xconnectivity/source/drivers/macab/MacabStatement.hxx176
-rwxr-xr-xconnectivity/source/drivers/macab/MacabTable.cxx96
-rwxr-xr-xconnectivity/source/drivers/macab/MacabTable.hxx68
-rwxr-xr-xconnectivity/source/drivers/macab/MacabTables.cxx90
-rwxr-xr-xconnectivity/source/drivers/macab/MacabTables.hxx61
-rwxr-xr-xconnectivity/source/drivers/macab/exports.dxp3
-rwxr-xr-xconnectivity/source/drivers/macab/macab.xcu46
-rwxr-xr-xconnectivity/source/drivers/macab/macab.xml79
-rwxr-xr-xconnectivity/source/drivers/macab/macabcondition.cxx250
-rwxr-xr-xconnectivity/source/drivers/macab/macabcondition.hxx169
-rwxr-xr-xconnectivity/source/drivers/macab/macaborder.cxx86
-rwxr-xr-xconnectivity/source/drivers/macab/macaborder.hxx74
-rw-r--r--connectivity/source/drivers/macab/macabutilities.hxx149
-rwxr-xr-xconnectivity/source/drivers/macab/makefile.mk129
-rw-r--r--connectivity/source/drivers/mozab/MCatalog.cxx127
-rw-r--r--connectivity/source/drivers/mozab/MCatalog.hxx66
-rw-r--r--connectivity/source/drivers/mozab/MColumnAlias.cxx191
-rw-r--r--connectivity/source/drivers/mozab/MColumnAlias.hxx85
-rw-r--r--connectivity/source/drivers/mozab/MColumns.cxx100
-rw-r--r--connectivity/source/drivers/mozab/MColumns.hxx58
-rw-r--r--connectivity/source/drivers/mozab/MConfigAccess.cxx273
-rw-r--r--connectivity/source/drivers/mozab/MConfigAccess.hxx39
-rw-r--r--connectivity/source/drivers/mozab/MConnection.cxx603
-rw-r--r--connectivity/source/drivers/mozab/MConnection.hxx231
-rw-r--r--connectivity/source/drivers/mozab/MDatabaseMetaData.cxx1031
-rw-r--r--connectivity/source/drivers/mozab/MDatabaseMetaData.hxx204
-rw-r--r--connectivity/source/drivers/mozab/MDriver.cxx329
-rw-r--r--connectivity/source/drivers/mozab/MDriver.hxx110
-rw-r--r--connectivity/source/drivers/mozab/MExtConfigAccess.hxx46
-rw-r--r--connectivity/source/drivers/mozab/MPreparedStatement.cxx544
-rw-r--r--connectivity/source/drivers/mozab/MPreparedStatement.hxx169
-rw-r--r--connectivity/source/drivers/mozab/MResultSet.cxx1980
-rw-r--r--connectivity/source/drivers/mozab/MResultSet.hxx366
-rw-r--r--connectivity/source/drivers/mozab/MResultSetMetaData.cxx212
-rw-r--r--connectivity/source/drivers/mozab/MResultSetMetaData.hxx98
-rw-r--r--connectivity/source/drivers/mozab/MServices.cxx225
-rw-r--r--connectivity/source/drivers/mozab/MStatement.cxx561
-rw-r--r--connectivity/source/drivers/mozab/MStatement.hxx213
-rw-r--r--connectivity/source/drivers/mozab/MTable.cxx95
-rw-r--r--connectivity/source/drivers/mozab/MTable.hxx72
-rw-r--r--connectivity/source/drivers/mozab/MTables.cxx104
-rw-r--r--connectivity/source/drivers/mozab/MTables.hxx55
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MMozillaBootstrap.cxx334
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MMozillaBootstrap.hxx101
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSFolders.cxx171
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSFolders.hxx46
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSINIParser.cxx139
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSINIParser.hxx83
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSInit.cxx347
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSInit.hxx45
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSProfile.cxx631
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSProfile.hxx74
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSProfileDirServiceProvider.cxx240
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSProfileDirServiceProvider.hxx83
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSProfileDiscover.cxx535
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSProfileDiscover.hxx134
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSProfileManager.cxx113
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSProfileManager.hxx80
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSRunnable.cxx98
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSRunnable.hxx68
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/makefile.mk93
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/mozilla_nsinit.h54
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/mozilla_nsprofile.h89
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/mozilla_nsprofiledirserviceprovider.h41
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/mozilla_profile_discover.h46
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/mozilla_profilemanager.h84
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/post_include_windows.h30
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/pre_include_windows.h31
-rw-r--r--connectivity/source/drivers/mozab/exports.dxp3
-rw-r--r--connectivity/source/drivers/mozab/makefile.mk186
-rw-r--r--connectivity/source/drivers/mozab/makefile_mozab.mk128
-rwxr-xr-xconnectivity/source/drivers/mozab/mozab.xcu154
-rw-r--r--connectivity/source/drivers/mozab/mozab.xml82
-rwxr-xr-xconnectivity/source/drivers/mozab/mozab2.xcu118
-rw-r--r--connectivity/source/drivers/mozab/mozabdrv.map8
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MDatabaseMetaDataHelper.cxx806
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MDatabaseMetaDataHelper.hxx80
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MErrorResource.hxx77
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MLdapAttributeMap.cxx450
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MLdapAttributeMap.hxx75
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MNSDeclares.hxx52
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MNSInclude.hxx81
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MNSMozabProxy.cxx404
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MNSMozabProxy.hxx119
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MNSTerminateListener.cxx86
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MNSTerminateListener.hxx57
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MNameMapper.cxx142
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MNameMapper.hxx83
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MQuery.cxx823
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MQuery.hxx282
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MQueryHelper.cxx635
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MQueryHelper.hxx142
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MTypeConverter.cxx138
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MTypeConverter.hxx66
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/makefile.mk77
-rw-r--r--connectivity/source/drivers/mozab/post_include_mozilla.h58
-rw-r--r--connectivity/source/drivers/mozab/pre_include_mozilla.h70
-rw-r--r--connectivity/source/drivers/mysql/YCatalog.cxx174
-rw-r--r--connectivity/source/drivers/mysql/YColumns.cxx89
-rw-r--r--connectivity/source/drivers/mysql/YDriver.cxx481
-rw-r--r--connectivity/source/drivers/mysql/YTable.cxx385
-rw-r--r--connectivity/source/drivers/mysql/YTables.cxx243
-rw-r--r--connectivity/source/drivers/mysql/YUser.cxx350
-rw-r--r--connectivity/source/drivers/mysql/YUsers.cxx118
-rw-r--r--connectivity/source/drivers/mysql/YViews.cxx162
-rw-r--r--connectivity/source/drivers/mysql/Yservices.cxx176
-rw-r--r--connectivity/source/drivers/mysql/exports.dxp3
-rw-r--r--connectivity/source/drivers/mysql/makefile.mk84
-rwxr-xr-xconnectivity/source/drivers/mysql/mysql.xcu258
-rw-r--r--connectivity/source/drivers/mysql/mysql.xml29
-rw-r--r--connectivity/source/drivers/odbc/OFunctions.cxx281
-rw-r--r--connectivity/source/drivers/odbc/ORealDriver.cxx369
-rw-r--r--connectivity/source/drivers/odbc/ORealDriver.hxx50
-rw-r--r--connectivity/source/drivers/odbc/makefile.mk78
-rwxr-xr-xconnectivity/source/drivers/odbc/odbc.xcu175
-rw-r--r--connectivity/source/drivers/odbc/odbc.xml28
-rw-r--r--connectivity/source/drivers/odbc/oservices.cxx177
-rw-r--r--connectivity/source/drivers/odbcbase/OConnection.cxx670
-rw-r--r--connectivity/source/drivers/odbcbase/ODatabaseMetaData.cxx1743
-rw-r--r--connectivity/source/drivers/odbcbase/ODatabaseMetaDataResultSet.cxx1323
-rw-r--r--connectivity/source/drivers/odbcbase/ODriver.cxx229
-rw-r--r--connectivity/source/drivers/odbcbase/OPreparedStatement.cxx973
-rw-r--r--connectivity/source/drivers/odbcbase/OResultSet.cxx1755
-rw-r--r--connectivity/source/drivers/odbcbase/OResultSetMetaData.cxx312
-rw-r--r--connectivity/source/drivers/odbcbase/OStatement.cxx1154
-rw-r--r--connectivity/source/drivers/odbcbase/OTools.cxx946
-rw-r--r--connectivity/source/drivers/odbcbase/makefile.mk90
-rw-r--r--connectivity/source/inc/AutoRetrievingBase.hxx59
-rw-r--r--connectivity/source/inc/FDatabaseMetaDataResultSet.hxx279
-rw-r--r--connectivity/source/inc/FDatabaseMetaDataResultSetMetaData.hxx114
-rw-r--r--connectivity/source/inc/OColumn.hxx146
-rw-r--r--connectivity/source/inc/OSubComponent.hxx92
-rw-r--r--connectivity/source/inc/OTypeInfo.hxx92
-rw-r--r--connectivity/source/inc/ParameterSubstitution.hxx71
-rw-r--r--connectivity/source/inc/RowFunctionParser.hxx152
-rw-r--r--connectivity/source/inc/TConnection.hxx92
-rw-r--r--connectivity/source/inc/TDatabaseMetaDataBase.hxx142
-rw-r--r--connectivity/source/inc/TKeyValue.hxx82
-rw-r--r--connectivity/source/inc/TPrivilegesResultSet.hxx54
-rw-r--r--connectivity/source/inc/TResultSetHelper.hxx58
-rw-r--r--connectivity/source/inc/TSkipDeletedSet.hxx105
-rw-r--r--connectivity/source/inc/TSortIndex.hxx139
-rw-r--r--connectivity/source/inc/UStringDescription_Impl.hxx106
-rw-r--r--connectivity/source/inc/adabas/BCatalog.hxx77
-rw-r--r--connectivity/source/inc/adabas/BColumn.hxx54
-rw-r--r--connectivity/source/inc/adabas/BColumns.hxx61
-rw-r--r--connectivity/source/inc/adabas/BConnection.hxx78
-rw-r--r--connectivity/source/inc/adabas/BDatabaseMetaData.hxx55
-rw-r--r--connectivity/source/inc/adabas/BDriver.hxx177
-rw-r--r--connectivity/source/inc/adabas/BGroup.hxx50
-rw-r--r--connectivity/source/inc/adabas/BGroups.hxx66
-rw-r--r--connectivity/source/inc/adabas/BIndex.hxx58
-rw-r--r--connectivity/source/inc/adabas/BIndexColumn.hxx58
-rw-r--r--connectivity/source/inc/adabas/BIndexColumns.hxx58
-rw-r--r--connectivity/source/inc/adabas/BIndexes.hxx58
-rw-r--r--connectivity/source/inc/adabas/BKeys.hxx55
-rw-r--r--connectivity/source/inc/adabas/BPreparedStatement.hxx52
-rw-r--r--connectivity/source/inc/adabas/BResultSet.hxx60
-rw-r--r--connectivity/source/inc/adabas/BResultSetMetaData.hxx56
-rw-r--r--connectivity/source/inc/adabas/BStatement.hxx62
-rw-r--r--connectivity/source/inc/adabas/BTable.hxx110
-rw-r--r--connectivity/source/inc/adabas/BTables.hxx80
-rw-r--r--connectivity/source/inc/adabas/BUser.hxx82
-rw-r--r--connectivity/source/inc/adabas/BUsers.hxx66
-rw-r--r--connectivity/source/inc/adabas/BViews.hxx64
-rw-r--r--connectivity/source/inc/ado/ACallableStatement.hxx88
-rw-r--r--connectivity/source/inc/ado/ACatalog.hxx61
-rw-r--r--connectivity/source/inc/ado/ACollection.hxx231
-rw-r--r--connectivity/source/inc/ado/AColumn.hxx70
-rw-r--r--connectivity/source/inc/ado/AColumns.hxx68
-rw-r--r--connectivity/source/inc/ado/AConnection.hxx151
-rw-r--r--connectivity/source/inc/ado/ADatabaseMetaData.hxx230
-rw-r--r--connectivity/source/inc/ado/ADatabaseMetaDataResultSet.hxx227
-rw-r--r--connectivity/source/inc/ado/ADatabaseMetaDataResultSetMetaData.hxx115
-rw-r--r--connectivity/source/inc/ado/ADriver.hxx93
-rw-r--r--connectivity/source/inc/ado/AGroup.hxx76
-rw-r--r--connectivity/source/inc/ado/AGroups.hxx69
-rw-r--r--connectivity/source/inc/ado/AIndex.hxx65
-rw-r--r--connectivity/source/inc/ado/AIndexColumn.hxx58
-rw-r--r--connectivity/source/inc/ado/AIndexColumns.hxx55
-rw-r--r--connectivity/source/inc/ado/AIndexes.hxx66
-rw-r--r--connectivity/source/inc/ado/AKey.hxx73
-rw-r--r--connectivity/source/inc/ado/AKeyColumn.hxx58
-rw-r--r--connectivity/source/inc/ado/AKeyColumns.hxx55
-rw-r--r--connectivity/source/inc/ado/AKeys.hxx66
-rw-r--r--connectivity/source/inc/ado/APreparedStatement.hxx124
-rw-r--r--connectivity/source/inc/ado/AResultSet.hxx237
-rw-r--r--connectivity/source/inc/ado/AResultSetMetaData.hxx93
-rw-r--r--connectivity/source/inc/ado/AStatement.hxx201
-rw-r--r--connectivity/source/inc/ado/ATable.hxx88
-rw-r--r--connectivity/source/inc/ado/ATables.hxx65
-rw-r--r--connectivity/source/inc/ado/AUser.hxx102
-rw-r--r--connectivity/source/inc/ado/AUsers.hxx70
-rw-r--r--connectivity/source/inc/ado/AView.hxx66
-rw-r--r--connectivity/source/inc/ado/AViews.hxx64
-rw-r--r--connectivity/source/inc/ado/Aolevariant.hxx175
-rw-r--r--connectivity/source/inc/ado/Aolewrap.hxx245
-rw-r--r--connectivity/source/inc/ado/Awrapado.hxx419
-rw-r--r--connectivity/source/inc/ado/Awrapadox.hxx149
-rw-r--r--connectivity/source/inc/ado/WrapCatalog.hxx58
-rw-r--r--connectivity/source/inc/ado/WrapColumn.hxx72
-rw-r--r--connectivity/source/inc/ado/WrapIndex.hxx60
-rw-r--r--connectivity/source/inc/ado/WrapKey.hxx62
-rw-r--r--connectivity/source/inc/ado/WrapTable.hxx65
-rw-r--r--connectivity/source/inc/ado/WrapTypeDefs.hxx53
-rw-r--r--connectivity/source/inc/ado/adoimp.hxx112
-rw-r--r--connectivity/source/inc/calc/CCatalog.hxx50
-rw-r--r--connectivity/source/inc/calc/CColumns.hxx53
-rw-r--r--connectivity/source/inc/calc/CConnection.hxx97
-rw-r--r--connectivity/source/inc/calc/CDatabaseMetaData.hxx61
-rw-r--r--connectivity/source/inc/calc/CDriver.hxx65
-rw-r--r--connectivity/source/inc/calc/CPreparedStatement.hxx50
-rw-r--r--connectivity/source/inc/calc/CResultSet.hxx90
-rw-r--r--connectivity/source/inc/calc/CStatement.hxx50
-rw-r--r--connectivity/source/inc/calc/CTable.hxx107
-rw-r--r--connectivity/source/inc/calc/CTables.hxx52
-rw-r--r--connectivity/source/inc/dbase/DCatalog.hxx49
-rw-r--r--connectivity/source/inc/dbase/DCode.hxx69
-rw-r--r--connectivity/source/inc/dbase/DColumns.hxx55
-rw-r--r--connectivity/source/inc/dbase/DConnection.hxx58
-rw-r--r--connectivity/source/inc/dbase/DDatabaseMetaData.hxx68
-rw-r--r--connectivity/source/inc/dbase/DDatabaseMetaDataResultSet.hxx196
-rw-r--r--connectivity/source/inc/dbase/DDatabaseMetaDataResultSetMetaData.hxx108
-rw-r--r--connectivity/source/inc/dbase/DDriver.hxx61
-rw-r--r--connectivity/source/inc/dbase/DIndex.hxx160
-rw-r--r--connectivity/source/inc/dbase/DIndexColumns.hxx60
-rw-r--r--connectivity/source/inc/dbase/DIndexIter.hxx85
-rw-r--r--connectivity/source/inc/dbase/DIndexPage.hxx89
-rw-r--r--connectivity/source/inc/dbase/DIndexes.hxx61
-rw-r--r--connectivity/source/inc/dbase/DPreparedStatement.hxx50
-rw-r--r--connectivity/source/inc/dbase/DResultSet.hxx90
-rw-r--r--connectivity/source/inc/dbase/DStatement.hxx49
-rw-r--r--connectivity/source/inc/dbase/DTable.hxx185
-rw-r--r--connectivity/source/inc/dbase/DTables.hxx58
-rw-r--r--connectivity/source/inc/dbase/dindexnode.hxx347
-rw-r--r--connectivity/source/inc/diagnose_ex.h46
-rw-r--r--connectivity/source/inc/file/FCatalog.hxx71
-rw-r--r--connectivity/source/inc/file/FColumns.hxx59
-rw-r--r--connectivity/source/inc/file/FConnection.hxx160
-rw-r--r--connectivity/source/inc/file/FDatabaseMetaData.hxx197
-rw-r--r--connectivity/source/inc/file/FDateFunctions.hxx242
-rw-r--r--connectivity/source/inc/file/FDriver.hxx87
-rw-r--r--connectivity/source/inc/file/FNumericFunctions.hxx376
-rw-r--r--connectivity/source/inc/file/FPreparedStatement.hxx135
-rw-r--r--connectivity/source/inc/file/FResultSet.hxx357
-rw-r--r--connectivity/source/inc/file/FResultSetMetaData.hxx91
-rw-r--r--connectivity/source/inc/file/FStatement.hxx223
-rw-r--r--connectivity/source/inc/file/FStringFunctions.hxx283
-rw-r--r--connectivity/source/inc/file/FTable.hxx120
-rw-r--r--connectivity/source/inc/file/FTables.hxx61
-rw-r--r--connectivity/source/inc/file/fanalyzer.hxx96
-rw-r--r--connectivity/source/inc/file/fcode.hxx396
-rw-r--r--connectivity/source/inc/file/fcomp.hxx120
-rw-r--r--connectivity/source/inc/file/filedllapi.hxx40
-rw-r--r--connectivity/source/inc/file/quotedstring.hxx55
-rw-r--r--connectivity/source/inc/flat/ECatalog.hxx49
-rw-r--r--connectivity/source/inc/flat/EColumns.hxx52
-rw-r--r--connectivity/source/inc/flat/EConnection.hxx71
-rw-r--r--connectivity/source/inc/flat/EDatabaseMetaData.hxx55
-rw-r--r--connectivity/source/inc/flat/EDriver.hxx61
-rw-r--r--connectivity/source/inc/flat/EPreparedStatement.hxx50
-rw-r--r--connectivity/source/inc/flat/EResultSet.hxx81
-rw-r--r--connectivity/source/inc/flat/EStatement.hxx49
-rw-r--r--connectivity/source/inc/flat/ETable.hxx103
-rw-r--r--connectivity/source/inc/flat/ETables.hxx52
-rw-r--r--connectivity/source/inc/hsqldb/HCatalog.hxx72
-rw-r--r--connectivity/source/inc/hsqldb/HColumns.hxx70
-rw-r--r--connectivity/source/inc/hsqldb/HConnection.hxx186
-rw-r--r--connectivity/source/inc/hsqldb/HDriver.hxx144
-rw-r--r--connectivity/source/inc/hsqldb/HStorageAccess.h95
-rw-r--r--connectivity/source/inc/hsqldb/HStorageAccess.hxx43
-rw-r--r--connectivity/source/inc/hsqldb/HStorageMap.hxx94
-rw-r--r--connectivity/source/inc/hsqldb/HTable.hxx128
-rw-r--r--connectivity/source/inc/hsqldb/HTables.hxx78
-rw-r--r--connectivity/source/inc/hsqldb/HTools.hxx65
-rw-r--r--connectivity/source/inc/hsqldb/HUser.hxx82
-rw-r--r--connectivity/source/inc/hsqldb/HUsers.hxx62
-rw-r--r--connectivity/source/inc/hsqldb/HView.hxx97
-rw-r--r--connectivity/source/inc/hsqldb/HViews.hxx63
-rw-r--r--connectivity/source/inc/hsqldb/StorageFileAccess.h37
-rw-r--r--connectivity/source/inc/hsqldb/StorageNativeInputStream.h70
-rw-r--r--connectivity/source/inc/internalnode.hxx60
-rw-r--r--connectivity/source/inc/java/ContextClassLoader.hxx103
-rw-r--r--connectivity/source/inc/java/GlobalRef.hxx122
-rw-r--r--connectivity/source/inc/java/LocalRef.hxx106
-rw-r--r--connectivity/source/inc/java/io/InputStream.hxx60
-rw-r--r--connectivity/source/inc/java/io/Reader.hxx61
-rw-r--r--connectivity/source/inc/java/lang/Boolean.hxx53
-rw-r--r--connectivity/source/inc/java/lang/Class.hxx55
-rw-r--r--connectivity/source/inc/java/lang/Exception.hxx51
-rw-r--r--connectivity/source/inc/java/lang/Object.hxx175
-rw-r--r--connectivity/source/inc/java/lang/String.hxx53
-rw-r--r--connectivity/source/inc/java/lang/Throwable.hxx54
-rw-r--r--connectivity/source/inc/java/math/BigDecimal.hxx53
-rw-r--r--connectivity/source/inc/java/sql/Array.hxx63
-rw-r--r--connectivity/source/inc/java/sql/Blob.hxx63
-rw-r--r--connectivity/source/inc/java/sql/CallableStatement.hxx91
-rw-r--r--connectivity/source/inc/java/sql/Clob.hxx63
-rw-r--r--connectivity/source/inc/java/sql/Connection.hxx151
-rw-r--r--connectivity/source/inc/java/sql/ConnectionLog.hxx142
-rw-r--r--connectivity/source/inc/java/sql/DatabaseMetaData.hxx224
-rw-r--r--connectivity/source/inc/java/sql/Driver.hxx76
-rw-r--r--connectivity/source/inc/java/sql/DriverPropertyInfo.hxx61
-rw-r--r--connectivity/source/inc/java/sql/JStatement.hxx219
-rw-r--r--connectivity/source/inc/java/sql/PreparedStatement.hxx113
-rw-r--r--connectivity/source/inc/java/sql/Ref.hxx58
-rw-r--r--connectivity/source/inc/java/sql/ResultSet.hxx208
-rw-r--r--connectivity/source/inc/java/sql/ResultSetMetaData.hxx82
-rw-r--r--connectivity/source/inc/java/sql/SQLException.hxx68
-rw-r--r--connectivity/source/inc/java/sql/SQLWarning.hxx64
-rw-r--r--connectivity/source/inc/java/sql/Timestamp.hxx99
-rw-r--r--connectivity/source/inc/java/tools.hxx92
-rw-r--r--connectivity/source/inc/java/util/Date.hxx54
-rw-r--r--connectivity/source/inc/java/util/Property.hxx49
-rw-r--r--connectivity/source/inc/mysql/YCatalog.hxx73
-rw-r--r--connectivity/source/inc/mysql/YColumns.hxx70
-rw-r--r--connectivity/source/inc/mysql/YDriver.hxx126
-rw-r--r--connectivity/source/inc/mysql/YTable.hxx128
-rw-r--r--connectivity/source/inc/mysql/YTables.hxx88
-rw-r--r--connectivity/source/inc/mysql/YUser.hxx82
-rw-r--r--connectivity/source/inc/mysql/YUsers.hxx62
-rw-r--r--connectivity/source/inc/mysql/YViews.hxx64
-rw-r--r--connectivity/source/inc/odbc/OBoundParam.hxx222
-rw-r--r--connectivity/source/inc/odbc/OConnection.hxx160
-rw-r--r--connectivity/source/inc/odbc/ODatabaseMetaData.hxx224
-rw-r--r--connectivity/source/inc/odbc/ODatabaseMetaDataResultSet.hxx242
-rw-r--r--connectivity/source/inc/odbc/ODefs3.hxx92
-rw-r--r--connectivity/source/inc/odbc/ODriver.hxx90
-rw-r--r--connectivity/source/inc/odbc/OFunctiondefs.hxx175
-rw-r--r--connectivity/source/inc/odbc/OFunctions.hxx556
-rw-r--r--connectivity/source/inc/odbc/OPreparedStatement.hxx171
-rw-r--r--connectivity/source/inc/odbc/OResultSet.hxx327
-rw-r--r--connectivity/source/inc/odbc/OResultSetMetaData.hxx126
-rw-r--r--connectivity/source/inc/odbc/OStatement.hxx248
-rw-r--r--connectivity/source/inc/odbc/OTools.hxx276
-rw-r--r--connectivity/source/inc/odbc/odbcbasedllapi.hxx40
-rw-r--r--connectivity/source/inc/propertyids.hxx159
-rw-r--r--connectivity/source/inc/resource/adabas_res.hrc43
-rw-r--r--connectivity/source/inc/resource/ado_res.hrc50
-rw-r--r--connectivity/source/inc/resource/calc_res.hrc41
-rw-r--r--connectivity/source/inc/resource/common_res.hrc78
-rw-r--r--connectivity/source/inc/resource/conn_shared_res.hrc73
-rw-r--r--connectivity/source/inc/resource/dbase_res.hrc61
-rw-r--r--connectivity/source/inc/resource/evoab2_res.hrc42
-rw-r--r--connectivity/source/inc/resource/file_res.hrc48
-rw-r--r--connectivity/source/inc/resource/hsqldb_res.hrc47
-rw-r--r--connectivity/source/inc/resource/jdbc_log.hrc90
-rw-r--r--connectivity/source/inc/resource/kab_res.hrc43
-rw-r--r--connectivity/source/inc/resource/macab_res.hrc41
-rw-r--r--connectivity/source/inc/resource/mozab_res.hrc74
-rw-r--r--connectivity/source/inc/resource/sharedresources.hxx164
-rw-r--r--connectivity/source/inc/sqlscan.hxx90
-rw-r--r--connectivity/source/manager/exports.dxp3
-rw-r--r--connectivity/source/manager/makefile.mk79
-rw-r--r--connectivity/source/manager/mdrivermanager.cxx741
-rw-r--r--connectivity/source/manager/mdrivermanager.hxx146
-rw-r--r--connectivity/source/manager/mregistration.cxx112
-rw-r--r--connectivity/source/manager/sdbc.mxp.map53
-rw-r--r--connectivity/source/parse/PColumn.cxx249
-rw-r--r--connectivity/source/parse/internalnode.cxx85
-rw-r--r--connectivity/source/parse/makefile.mk67
-rw-r--r--connectivity/source/parse/sqlbison.y4381
-rw-r--r--connectivity/source/parse/sqlflex.l809
-rw-r--r--connectivity/source/parse/sqliterator.cxx2247
-rw-r--r--connectivity/source/parse/sqlnode.cxx2826
-rw-r--r--connectivity/source/parse/wrap_sqlbison.cxx31
-rw-r--r--connectivity/source/parse/wrap_sqlflex.cxx35
-rw-r--r--connectivity/source/resource/conn_error_message.src99
-rw-r--r--connectivity/source/resource/conn_log_res.src312
-rw-r--r--connectivity/source/resource/conn_shared_res.src649
-rw-r--r--connectivity/source/resource/makefile.mk108
-rw-r--r--connectivity/source/resource/sharedresources.cxx242
-rw-r--r--connectivity/source/sdbcx/VCatalog.cxx241
-rw-r--r--connectivity/source/sdbcx/VCollection.cxx603
-rw-r--r--connectivity/source/sdbcx/VColumn.cxx229
-rw-r--r--connectivity/source/sdbcx/VDescriptor.cxx155
-rw-r--r--connectivity/source/sdbcx/VGroup.cxx183
-rw-r--r--connectivity/source/sdbcx/VIndex.cxx223
-rw-r--r--connectivity/source/sdbcx/VIndexColumn.cxx120
-rw-r--r--connectivity/source/sdbcx/VKey.cxx228
-rw-r--r--connectivity/source/sdbcx/VKeyColumn.cxx125
-rw-r--r--connectivity/source/sdbcx/VTable.cxx336
-rw-r--r--connectivity/source/sdbcx/VUser.cxx194
-rw-r--r--connectivity/source/sdbcx/VView.cxx150
-rw-r--r--connectivity/source/sdbcx/makefile.mk63
-rw-r--r--connectivity/source/simpledbt/charset_s.cxx73
-rw-r--r--connectivity/source/simpledbt/charset_s.hxx68
-rw-r--r--connectivity/source/simpledbt/dbtfactory.cxx114
-rw-r--r--connectivity/source/simpledbt/dbtfactory.hxx81
-rw-r--r--connectivity/source/simpledbt/makefile.mk53
-rw-r--r--connectivity/source/simpledbt/parsenode_s.cxx93
-rw-r--r--connectivity/source/simpledbt/parsenode_s.hxx81
-rw-r--r--connectivity/source/simpledbt/parser_s.cxx86
-rw-r--r--connectivity/source/simpledbt/parser_s.hxx74
-rw-r--r--connectivity/source/simpledbt/refbase.cxx64
-rw-r--r--connectivity/source/simpledbt/refbase.hxx61
-rw-r--r--connectivity/source/simpledbt/staticdbtools_s.cxx212
-rw-r--r--connectivity/source/simpledbt/staticdbtools_s.hxx207
-rwxr-xr-xconnectivity/target.pmk36
-rwxr-xr-xconnectivity/util/makefile.mk62
-rw-r--r--connectivity/version.mk119
-rw-r--r--connectivity/workben/TT/StartTest.classbin0 -> 183 bytes-rw-r--r--connectivity/workben/TT/StartTest.java293
-rw-r--r--connectivity/workben/iniParser/main.cxx189
-rw-r--r--connectivity/workben/iniParser/makefile.mk62
-rw-r--r--connectivity/workben/little/main.cxx117
-rw-r--r--connectivity/workben/little/makefile.mk60
-rw-r--r--connectivity/workben/skeleton/SResultSet.hxx246
-rw-r--r--connectivity/workben/skeleton/how_to_write_a_driver.txt51
-rw-r--r--connectivity/workben/testmoz/initUNO.cxx45
-rw-r--r--connectivity/workben/testmoz/main.cxx724
-rw-r--r--connectivity/workben/testmoz/makefile.mk70
-rw-r--r--connectivity/workben/testmoz/mozthread.cxx477
-rw-r--r--cosv/inc/cosv/bstream.hxx150
-rw-r--r--cosv/inc/cosv/comdline.hxx70
-rw-r--r--cosv/inc/cosv/comfunc.hxx125
-rw-r--r--cosv/inc/cosv/commandline.hxx180
-rw-r--r--cosv/inc/cosv/csv_env.hxx154
-rw-r--r--cosv/inc/cosv/csv_ostream.hxx134
-rw-r--r--cosv/inc/cosv/csv_precomp.h46
-rw-r--r--cosv/inc/cosv/datetime.hxx84
-rw-r--r--cosv/inc/cosv/dirchain.hxx180
-rw-r--r--cosv/inc/cosv/file.hxx137
-rw-r--r--cosv/inc/cosv/mbstream.hxx93
-rw-r--r--cosv/inc/cosv/openclose.hxx144
-rw-r--r--cosv/inc/cosv/persist.hxx105
-rw-r--r--cosv/inc/cosv/ploc.hxx129
-rw-r--r--cosv/inc/cosv/ploc_dir.hxx118
-rw-r--r--cosv/inc/cosv/plocroot.hxx80
-rw-r--r--cosv/inc/cosv/std_outp.hxx136
-rw-r--r--cosv/inc/cosv/str_types.hxx94
-rw-r--r--cosv/inc/cosv/streamstr.hxx391
-rw-r--r--cosv/inc/cosv/string.hxx579
-rw-r--r--cosv/inc/cosv/stringdata.hxx135
-rw-r--r--cosv/inc/cosv/tpl/dyn.hxx238
-rw-r--r--cosv/inc/cosv/tpl/funcall.hxx307
-rw-r--r--cosv/inc/cosv/tpl/processor.hxx183
-rw-r--r--cosv/inc/cosv/tpl/range.hxx191
-rw-r--r--cosv/inc/cosv/tpl/swelist.hxx369
-rw-r--r--cosv/inc/cosv/tpl/tpltools.hxx228
-rw-r--r--cosv/inc/cosv/tpl/vvector.hxx539
-rw-r--r--cosv/inc/cosv/x.hxx71
-rw-r--r--cosv/prj/build.lst16
-rw-r--r--cosv/prj/d.lst8
-rw-r--r--cosv/source/comphelp/badcast.cxx45
-rw-r--r--cosv/source/comphelp/makefile.mk55
-rw-r--r--cosv/source/fullcpp.mk57
-rw-r--r--cosv/source/inc/precomp.h36
-rw-r--r--cosv/source/service/comdline.cxx57
-rw-r--r--cosv/source/service/comfunc.cxx155
-rw-r--r--cosv/source/service/commandline.cxx342
-rw-r--r--cosv/source/service/csv_ostream.cxx92
-rw-r--r--cosv/source/service/datetime.cxx84
-rw-r--r--cosv/source/service/makefile.mk59
-rw-r--r--cosv/source/service/std_outp.cxx81
-rw-r--r--cosv/source/storage/dirchain.cxx155
-rw-r--r--cosv/source/storage/file.cxx242
-rw-r--r--cosv/source/storage/makefile.mk69
-rw-r--r--cosv/source/storage/mbstream.cxx119
-rw-r--r--cosv/source/storage/persist.cxx113
-rw-r--r--cosv/source/storage/ploc.cxx157
-rw-r--r--cosv/source/storage/ploc_dir.cxx364
-rw-r--r--cosv/source/storage/plocroot.cxx525
-rw-r--r--cosv/source/strings/makefile.mk58
-rw-r--r--cosv/source/strings/str_types.cxx44
-rw-r--r--cosv/source/strings/streamstr.cxx981
-rw-r--r--cosv/source/strings/string.cxx414
-rw-r--r--cosv/source/unittest/file_ut.cxx121
-rw-r--r--cosv/source/unittest/makefile.mk80
-rw-r--r--cosv/source/unittest/string_ut.cxx140
-rw-r--r--cosv/source/unittest/ut.hxx53
-rw-r--r--cosv/source/unittest/ut_main.cxx47
-rw-r--r--cosv/util/makefile.mk58
-rw-r--r--cppcanvas/inc/cppcanvas/basegfxfactory.hxx104
-rw-r--r--cppcanvas/inc/cppcanvas/bitmap.hxx80
-rw-r--r--cppcanvas/inc/cppcanvas/bitmapcanvas.hxx66
-rw-r--r--cppcanvas/inc/cppcanvas/canvas.hxx116
-rw-r--r--cppcanvas/inc/cppcanvas/canvasgraphic.hxx170
-rw-r--r--cppcanvas/inc/cppcanvas/color.hxx95
-rw-r--r--cppcanvas/inc/cppcanvas/customsprite.hxx53
-rw-r--r--cppcanvas/inc/cppcanvas/font.hxx65
-rw-r--r--cppcanvas/inc/cppcanvas/polypolygon.hxx93
-rw-r--r--cppcanvas/inc/cppcanvas/renderer.hxx147
-rw-r--r--cppcanvas/inc/cppcanvas/sprite.hxx116
-rw-r--r--cppcanvas/inc/cppcanvas/spritecanvas.hxx81
-rw-r--r--cppcanvas/inc/cppcanvas/text.hxx55
-rw-r--r--cppcanvas/inc/cppcanvas/vclfactory.hxx147
-rw-r--r--cppcanvas/inc/makefile.mk47
-rw-r--r--cppcanvas/inc/pch/precompiled_cppcanvas.cxx29
-rw-r--r--cppcanvas/inc/pch/precompiled_cppcanvas.hxx32
-rw-r--r--cppcanvas/prj/build.lst7
-rw-r--r--cppcanvas/prj/d.lst19
-rw-r--r--cppcanvas/source/inc/action.hxx164
-rw-r--r--cppcanvas/source/inc/canvasgraphichelper.hxx86
-rw-r--r--cppcanvas/source/inc/implrenderer.hxx187
-rw-r--r--cppcanvas/source/inc/tools.hxx56
-rw-r--r--cppcanvas/source/mtfrenderer/bitmapaction.cxx238
-rw-r--r--cppcanvas/source/mtfrenderer/bitmapaction.hxx81
-rw-r--r--cppcanvas/source/mtfrenderer/cachedprimitivebase.cxx93
-rw-r--r--cppcanvas/source/mtfrenderer/cachedprimitivebase.hxx95
-rw-r--r--cppcanvas/source/mtfrenderer/implrenderer.cxx3155
-rw-r--r--cppcanvas/source/mtfrenderer/lineaction.cxx167
-rw-r--r--cppcanvas/source/mtfrenderer/lineaction.hxx73
-rw-r--r--cppcanvas/source/mtfrenderer/makefile.mk57
-rw-r--r--cppcanvas/source/mtfrenderer/mtftools.cxx693
-rw-r--r--cppcanvas/source/mtfrenderer/mtftools.hxx270
-rw-r--r--cppcanvas/source/mtfrenderer/outdevstate.hxx145
-rw-r--r--cppcanvas/source/mtfrenderer/pointaction.cxx187
-rw-r--r--cppcanvas/source/mtfrenderer/pointaction.hxx78
-rw-r--r--cppcanvas/source/mtfrenderer/polypolyaction.cxx538
-rw-r--r--cppcanvas/source/mtfrenderer/polypolyaction.hxx101
-rw-r--r--cppcanvas/source/mtfrenderer/textaction.cxx2315
-rw-r--r--cppcanvas/source/mtfrenderer/textaction.hxx102
-rw-r--r--cppcanvas/source/mtfrenderer/transparencygroupaction.cxx592
-rw-r--r--cppcanvas/source/mtfrenderer/transparencygroupaction.hxx140
-rw-r--r--cppcanvas/source/tools/canvasgraphichelper.cxx151
-rw-r--r--cppcanvas/source/tools/makefile.mk50
-rw-r--r--cppcanvas/source/tools/tools.cxx62
-rw-r--r--cppcanvas/source/wrapper/basegfxfactory.cxx164
-rw-r--r--cppcanvas/source/wrapper/implbitmap.cxx126
-rw-r--r--cppcanvas/source/wrapper/implbitmap.hxx82
-rw-r--r--cppcanvas/source/wrapper/implbitmapcanvas.cxx73
-rw-r--r--cppcanvas/source/wrapper/implbitmapcanvas.hxx76
-rw-r--r--cppcanvas/source/wrapper/implcanvas.cxx141
-rw-r--r--cppcanvas/source/wrapper/implcanvas.hxx104
-rw-r--r--cppcanvas/source/wrapper/implcolor.cxx68
-rw-r--r--cppcanvas/source/wrapper/implcolor.hxx66
-rw-r--r--cppcanvas/source/wrapper/implcustomsprite.cxx82
-rw-r--r--cppcanvas/source/wrapper/implcustomsprite.hxx71
-rw-r--r--cppcanvas/source/wrapper/implfont.cxx91
-rw-r--r--cppcanvas/source/wrapper/implfont.hxx83
-rw-r--r--cppcanvas/source/wrapper/implpolypolygon.cxx201
-rw-r--r--cppcanvas/source/wrapper/implpolypolygon.hxx99
-rw-r--r--cppcanvas/source/wrapper/implsprite.cxx236
-rw-r--r--cppcanvas/source/wrapper/implsprite.hxx95
-rw-r--r--cppcanvas/source/wrapper/implspritecanvas.cxx159
-rw-r--r--cppcanvas/source/wrapper/implspritecanvas.hxx110
-rw-r--r--cppcanvas/source/wrapper/impltext.cxx101
-rw-r--r--cppcanvas/source/wrapper/impltext.hxx78
-rw-r--r--cppcanvas/source/wrapper/makefile.mk60
-rw-r--r--cppcanvas/source/wrapper/vclfactory.cxx363
-rw-r--r--cppcanvas/util/cppcanvas.flt4
-rw-r--r--cppcanvas/util/makefile.mk70
-rw-r--r--cppu/inc/com/sun/star/uno/Any.h383
-rw-r--r--cppu/inc/com/sun/star/uno/Any.hxx589
-rw-r--r--cppu/inc/com/sun/star/uno/Reference.h533
-rw-r--r--cppu/inc/com/sun/star/uno/Reference.hxx431
-rw-r--r--cppu/inc/com/sun/star/uno/Sequence.h288
-rw-r--r--cppu/inc/com/sun/star/uno/Sequence.hxx307
-rw-r--r--cppu/inc/com/sun/star/uno/Type.h458
-rw-r--r--cppu/inc/com/sun/star/uno/Type.hxx327
-rw-r--r--cppu/inc/com/sun/star/uno/genfunc.h69
-rw-r--r--cppu/inc/com/sun/star/uno/genfunc.hxx88
-rw-r--r--cppu/inc/cppu/Enterable.hxx114
-rw-r--r--cppu/inc/cppu/EnvDcp.hxx75
-rw-r--r--cppu/inc/cppu/EnvGuards.hxx113
-rw-r--r--cppu/inc/cppu/FreeReference.hxx166
-rw-r--r--cppu/inc/cppu/Map.hxx113
-rw-r--r--cppu/inc/cppu/Shield.hxx90
-rw-r--r--cppu/inc/cppu/helper/purpenv/Environment.hxx46
-rw-r--r--cppu/inc/cppu/helper/purpenv/Mapping.hxx68
-rw-r--r--cppu/inc/cppu/macros.hxx65
-rw-r--r--cppu/inc/cppu/unotype.hxx377
-rw-r--r--cppu/inc/makefile.mk48
-rw-r--r--cppu/inc/pch/precompiled_cppu.cxx29
-rw-r--r--cppu/inc/pch/precompiled_cppu.hxx32
-rw-r--r--cppu/inc/typelib/typeclass.h104
-rw-r--r--cppu/inc/typelib/typedescription.h1160
-rw-r--r--cppu/inc/typelib/typedescription.hxx226
-rw-r--r--cppu/inc/typelib/uik.h53
-rw-r--r--cppu/inc/uno/Enterable.h112
-rw-r--r--cppu/inc/uno/EnvDcp.h63
-rw-r--r--cppu/inc/uno/any2.h178
-rw-r--r--cppu/inc/uno/cuno.h50
-rw-r--r--cppu/inc/uno/current_context.h68
-rw-r--r--cppu/inc/uno/current_context.hxx127
-rw-r--r--cppu/inc/uno/data.h257
-rw-r--r--cppu/inc/uno/dispatcher.h97
-rw-r--r--cppu/inc/uno/dispatcher.hxx175
-rw-r--r--cppu/inc/uno/environment.h385
-rw-r--r--cppu/inc/uno/environment.hxx278
-rw-r--r--cppu/inc/uno/lbnames.h103
-rw-r--r--cppu/inc/uno/mapping.h203
-rw-r--r--cppu/inc/uno/mapping.hxx354
-rw-r--r--cppu/inc/uno/sequence2.h187
-rw-r--r--cppu/inc/uno/threadpool.h189
-rw-r--r--cppu/prj/build.lst12
-rw-r--r--cppu/prj/d.lst74
-rw-r--r--cppu/qa/makefile.mk96
-rw-r--r--cppu/qa/test_any.cxx2330
-rw-r--r--cppu/qa/test_recursion.cxx57
-rw-r--r--cppu/qa/test_reference.cxx156
-rw-r--r--cppu/qa/test_unotype.cxx812
-rw-r--r--cppu/qa/types.idl63
-rw-r--r--cppu/qa/version.map34
-rw-r--r--cppu/source/AffineBridge/AffineBridge.cxx364
-rw-r--r--cppu/source/AffineBridge/makefile.mk44
-rwxr-xr-xcppu/source/LogBridge/LogBridge.cxx277
-rwxr-xr-xcppu/source/LogBridge/makefile.mk44
-rw-r--r--cppu/source/UnsafeBridge/UnsafeBridge.cxx163
-rw-r--r--cppu/source/UnsafeBridge/makefile.mk44
-rw-r--r--cppu/source/cppu/cppu_opt.cxx81
-rw-r--r--cppu/source/cppu/makefile.mk45
-rw-r--r--cppu/source/helper/purpenv/Proxy.hxx89
-rw-r--r--cppu/source/helper/purpenv/export.mk19
-rw-r--r--cppu/source/helper/purpenv/helper_purpenv_Environment.cxx537
-rw-r--r--cppu/source/helper/purpenv/helper_purpenv_Mapping.cxx233
-rw-r--r--cppu/source/helper/purpenv/helper_purpenv_Proxy.cxx530
-rw-r--r--cppu/source/helper/purpenv/makefile.mk46
-rw-r--r--cppu/source/threadpool/current.cxx299
-rw-r--r--cppu/source/threadpool/current.hxx48
-rw-r--r--cppu/source/threadpool/jobqueue.cxx191
-rw-r--r--cppu/source/threadpool/jobqueue.hxx79
-rw-r--r--cppu/source/threadpool/makefile.mk49
-rw-r--r--cppu/source/threadpool/thread.cxx217
-rw-r--r--cppu/source/threadpool/thread.hxx88
-rw-r--r--cppu/source/threadpool/threadident.cxx135
-rw-r--r--cppu/source/threadpool/threadpool.cxx502
-rw-r--r--cppu/source/threadpool/threadpool.hxx129
-rw-r--r--cppu/source/typelib/makefile.mk45
-rw-r--r--cppu/source/typelib/static_types.cxx673
-rw-r--r--cppu/source/typelib/typelib.cxx2671
-rw-r--r--cppu/source/uno/EnvDcp.c49
-rw-r--r--cppu/source/uno/EnvStack.cxx380
-rw-r--r--cppu/source/uno/IdentityMapping.cxx106
-rw-r--r--cppu/source/uno/IdentityMapping.hxx39
-rw-r--r--cppu/source/uno/any.cxx150
-rw-r--r--cppu/source/uno/assign.hxx635
-rw-r--r--cppu/source/uno/cascade_mapping.cxx341
-rw-r--r--cppu/source/uno/cascade_mapping.hxx41
-rw-r--r--cppu/source/uno/constr.hxx267
-rw-r--r--cppu/source/uno/copy.hxx886
-rw-r--r--cppu/source/uno/data.cxx617
-rw-r--r--cppu/source/uno/destr.hxx438
-rw-r--r--cppu/source/uno/env_subst.cxx54
-rw-r--r--cppu/source/uno/env_subst.hxx41
-rw-r--r--cppu/source/uno/eq.hxx668
-rw-r--r--cppu/source/uno/lbenv.cxx1182
-rw-r--r--cppu/source/uno/lbmap.cxx692
-rw-r--r--cppu/source/uno/loadmodule.cxx55
-rw-r--r--cppu/source/uno/loadmodule.hxx51
-rw-r--r--cppu/source/uno/makefile.mk55
-rw-r--r--cppu/source/uno/prim.hxx206
-rw-r--r--cppu/source/uno/sequence.cxx1016
-rwxr-xr-xcppu/util/cppu.map127
-rw-r--r--cppu/util/empty.def6
-rw-r--r--cppu/util/extra.mk89
-rw-r--r--cppu/util/makefile.mk105
-rw-r--r--cppu/util/makefile.pmk32
-rw-r--r--cppu/util/purpenvhelper3MSC.map8
-rw-r--r--cppu/util/target.pmk62
-rw-r--r--cppu/util/uno_purpenvhelperC52.map9
-rw-r--r--cppu/util/uno_purpenvhelpergcc3.map8
-rw-r--r--cppu/util/uno_purpenvhelperwntgcc.map8
-rw-r--r--cppu/util/unsafe_os2.map7
-rwxr-xr-xcppuhelper/inc/cppuhelper/access_control.hxx124
-rw-r--r--cppuhelper/inc/cppuhelper/basemutex.hxx49
-rw-r--r--cppuhelper/inc/cppuhelper/bootstrap.hxx223
-rw-r--r--cppuhelper/inc/cppuhelper/compbase.hxx115
-rw-r--r--cppuhelper/inc/cppuhelper/compbase1.hxx137
-rw-r--r--cppuhelper/inc/cppuhelper/compbase10.hxx137
-rw-r--r--cppuhelper/inc/cppuhelper/compbase11.hxx137
-rw-r--r--cppuhelper/inc/cppuhelper/compbase12.hxx137
-rw-r--r--cppuhelper/inc/cppuhelper/compbase2.hxx137
-rw-r--r--cppuhelper/inc/cppuhelper/compbase3.hxx137
-rw-r--r--cppuhelper/inc/cppuhelper/compbase4.hxx137
-rw-r--r--cppuhelper/inc/cppuhelper/compbase5.hxx137
-rw-r--r--cppuhelper/inc/cppuhelper/compbase6.hxx137
-rw-r--r--cppuhelper/inc/cppuhelper/compbase7.hxx137
-rw-r--r--cppuhelper/inc/cppuhelper/compbase8.hxx137
-rw-r--r--cppuhelper/inc/cppuhelper/compbase9.hxx136
-rw-r--r--cppuhelper/inc/cppuhelper/compbase_ex.hxx176
-rw-r--r--cppuhelper/inc/cppuhelper/component.hxx120
-rw-r--r--cppuhelper/inc/cppuhelper/component_context.hxx96
-rw-r--r--cppuhelper/inc/cppuhelper/exc_hlp.hxx98
-rw-r--r--cppuhelper/inc/cppuhelper/factory.hxx277
-rw-r--r--cppuhelper/inc/cppuhelper/findsofficepath.h45
-rw-r--r--cppuhelper/inc/cppuhelper/implbase.hxx298
-rw-r--r--cppuhelper/inc/cppuhelper/implbase1.hxx295
-rw-r--r--cppuhelper/inc/cppuhelper/implbase10.hxx300
-rw-r--r--cppuhelper/inc/cppuhelper/implbase11.hxx301
-rw-r--r--cppuhelper/inc/cppuhelper/implbase12.hxx302
-rw-r--r--cppuhelper/inc/cppuhelper/implbase2.hxx291
-rw-r--r--cppuhelper/inc/cppuhelper/implbase3.hxx293
-rw-r--r--cppuhelper/inc/cppuhelper/implbase4.hxx294
-rw-r--r--cppuhelper/inc/cppuhelper/implbase5.hxx295
-rw-r--r--cppuhelper/inc/cppuhelper/implbase6.hxx296
-rw-r--r--cppuhelper/inc/cppuhelper/implbase7.hxx298
-rw-r--r--cppuhelper/inc/cppuhelper/implbase8.hxx298
-rw-r--r--cppuhelper/inc/cppuhelper/implbase9.hxx300
-rw-r--r--cppuhelper/inc/cppuhelper/implbase_ex.hxx174
-rw-r--r--cppuhelper/inc/cppuhelper/implbase_ex_post.hxx231
-rw-r--r--cppuhelper/inc/cppuhelper/implbase_ex_pre.hxx36
-rw-r--r--cppuhelper/inc/cppuhelper/implementationentry.hxx111
-rw-r--r--cppuhelper/inc/cppuhelper/interfacecontainer.h604
-rw-r--r--cppuhelper/inc/cppuhelper/interfacecontainer.hxx203
-rw-r--r--cppuhelper/inc/cppuhelper/propertysetmixin.hxx488
-rw-r--r--cppuhelper/inc/cppuhelper/propshlp.hxx640
-rw-r--r--cppuhelper/inc/cppuhelper/proptypehlp.h76
-rw-r--r--cppuhelper/inc/cppuhelper/proptypehlp.hxx530
-rw-r--r--cppuhelper/inc/cppuhelper/queryinterface.hxx541
-rw-r--r--cppuhelper/inc/cppuhelper/servicefactory.hxx122
-rw-r--r--cppuhelper/inc/cppuhelper/shlib.hxx82
-rw-r--r--cppuhelper/inc/cppuhelper/stdidlclass.hxx389
-rw-r--r--cppuhelper/inc/cppuhelper/typeprovider.hxx242
-rw-r--r--cppuhelper/inc/cppuhelper/unourl.hxx192
-rw-r--r--cppuhelper/inc/cppuhelper/weak.hxx172
-rw-r--r--cppuhelper/inc/cppuhelper/weakagg.hxx111
-rw-r--r--cppuhelper/inc/cppuhelper/weakref.hxx169
-rw-r--r--cppuhelper/inc/makefile.mk47
-rw-r--r--cppuhelper/inc/pch/precompiled_cppuhelper.cxx29
-rw-r--r--cppuhelper/inc/pch/precompiled_cppuhelper.hxx32
-rw-r--r--cppuhelper/prj/build.lst6
-rw-r--r--cppuhelper/prj/d.lst74
-rw-r--r--cppuhelper/qa/ifcontainer/cppu_ifcontainer.cxx283
-rw-r--r--cppuhelper/qa/ifcontainer/export.map7
-rw-r--r--cppuhelper/qa/ifcontainer/makefile.mk61
-rw-r--r--cppuhelper/qa/propertysetmixin/JavaSupplier.java322
-rw-r--r--cppuhelper/qa/propertysetmixin/comp_propertysetmixin.cxx436
-rw-r--r--cppuhelper/qa/propertysetmixin/makefile.mk125
-rw-r--r--cppuhelper/qa/propertysetmixin/manifest2
-rw-r--r--cppuhelper/qa/propertysetmixin/test.map34
-rw-r--r--cppuhelper/qa/propertysetmixin/test_propertysetmixin.cxx680
-rw-r--r--cppuhelper/qa/propertysetmixin/types.idl85
-rw-r--r--cppuhelper/qa/sce/test_unourl.sce1
-rw-r--r--cppuhelper/qa/unourl/cppu_unourl.cxx481
-rw-r--r--cppuhelper/qa/unourl/export.map7
-rw-r--r--cppuhelper/qa/unourl/makefile.mk61
-rw-r--r--cppuhelper/qa/weak/makefile.mk53
-rw-r--r--cppuhelper/qa/weak/test_weak.cxx109
-rw-r--r--cppuhelper/qa/weak/version.map34
-rw-r--r--cppuhelper/source/access_control.cxx149
-rw-r--r--cppuhelper/source/bootstrap.cxx664
-rwxr-xr-xcppuhelper/source/cc5_solaris_sparc.map389
-rw-r--r--cppuhelper/source/component.cxx248
-rw-r--r--cppuhelper/source/component_context.cxx899
-rw-r--r--cppuhelper/source/exc_thrower.cxx298
-rw-r--r--cppuhelper/source/factory.cxx1140
-rw-r--r--cppuhelper/source/findsofficepath.c205
-rw-r--r--cppuhelper/source/gcc3.map384
-rw-r--r--cppuhelper/source/gcc3os2.map377
-rw-r--r--cppuhelper/source/implbase.cxx471
-rw-r--r--cppuhelper/source/implbase_ex.cxx469
-rw-r--r--cppuhelper/source/implementationentry.cxx102
-rw-r--r--cppuhelper/source/interfacecontainer.cxx731
-rw-r--r--cppuhelper/source/macro_expander.cxx198
-rw-r--r--cppuhelper/source/macro_expander.hxx60
-rw-r--r--cppuhelper/source/makefile.mk192
-rw-r--r--cppuhelper/source/msvc_win32_intel.map280
-rw-r--r--cppuhelper/source/propertysetmixin.cxx1428
-rw-r--r--cppuhelper/source/propshlp.cxx1241
-rw-r--r--cppuhelper/source/servicefactory.cxx660
-rw-r--r--cppuhelper/source/shlib.cxx609
-rw-r--r--cppuhelper/source/stdidlclass.cxx259
-rw-r--r--cppuhelper/source/tdmgr.cxx762
-rw-r--r--cppuhelper/source/typeprovider.cxx326
-rw-r--r--cppuhelper/source/unorc30
-rw-r--r--cppuhelper/source/unourl.cxx298
-rw-r--r--cppuhelper/source/weak.cxx553
-rw-r--r--cppuhelper/test/bootstrap/TestEnv.cxx128
-rw-r--r--cppuhelper/test/bootstrap/TestEnv.def8
-rw-r--r--cppuhelper/test/bootstrap/bootstrap.test.cxx320
-rw-r--r--cppuhelper/test/bootstrap/makefile.mk61
-rw-r--r--cppuhelper/test/cfg_data/instance/uno/components.xml76
-rw-r--r--cppuhelper/test/cfg_data/template/uno/components.xml24
-rw-r--r--cppuhelper/test/cfg_test.cxx303
-rw-r--r--cppuhelper/test/helpertest.idl84
-rw-r--r--cppuhelper/test/loader/loader.test.cxx205
-rw-r--r--cppuhelper/test/loader/makefile.mk59
-rw-r--r--cppuhelper/test/makefile.mk168
-rw-r--r--cppuhelper/test/testcmp/TestComponent.cxx247
-rw-r--r--cppuhelper/test/testcmp/TestComponent.hxx56
-rwxr-xr-xcppuhelper/test/testcmp/TestComponent.uno.def11
-rw-r--r--cppuhelper/test/testcmp/makefile.mk49
-rw-r--r--cppuhelper/test/testcontainer.cxx153
-rw-r--r--cppuhelper/test/testdefaultbootstrapping.cxx84
-rw-r--r--cppuhelper/test/testdefaultbootstrapping.pl277
-rw-r--r--cppuhelper/test/testhelper.cxx104
-rw-r--r--cppuhelper/test/testhelper.hxx31
-rw-r--r--cppuhelper/test/testidlclass.cxx227
-rw-r--r--cppuhelper/test/testimplhelper.cxx581
-rw-r--r--cppuhelper/test/testlib/UNO.pm68
-rwxr-xr-xcppuhelper/test/testlib/defbootstrap.map8
-rw-r--r--cppuhelper/test/testlib/defbootstrap_lib.cxx117
-rwxr-xr-xcppuhelper/test/testlib/makefile.mk103
-rw-r--r--cppuhelper/test/testpropshlp.cxx1181
-rw-r--r--cppuhelper/test/testproptyphlp.cxx84
-rw-r--r--cppuhelper/unotypes/cppuhelper/detail/XExceptionThrower.idl47
-rw-r--r--cppuhelper/unotypes/makefile.mk52
-rw-r--r--cppunit/ldflags.patch10
-rw-r--r--cppunit/makefile.mk192
-rw-r--r--cppunit/ooo-DllPlugInTester.mk50
-rw-r--r--cppunit/ooo-cppunit_dll.mk100
-rw-r--r--cppunit/prj/build.lst2
-rw-r--r--cppunit/prj/d.lst29
-rw-r--r--cppunit/solarisfinite.patch14
-rw-r--r--cppunit/warnings.patch22
-rw-r--r--cppunit/windows.patch12
-rw-r--r--cpputools/prj/build.lst8
-rw-r--r--cpputools/prj/d.lst12
-rwxr-xr-xcpputools/source/regcomplazy/makefile.mk54
-rwxr-xr-xcpputools/source/regcomplazy/regcomplazy.cxx282
-rw-r--r--cpputools/source/registercomponent/makefile.mk75
-rw-r--r--cpputools/source/registercomponent/registercomponent.cxx846
-rw-r--r--cpputools/source/regsingleton/makefile.mk79
-rw-r--r--cpputools/source/regsingleton/regsingleton.cxx173
-rw-r--r--cpputools/source/sp2bv/makefile.mk56
-rw-r--r--cpputools/source/sp2bv/readme.txt10
-rw-r--r--cpputools/source/sp2bv/sp2bv.cxx141
-rw-r--r--cpputools/source/unoexe/makefile.mk91
-rw-r--r--cpputools/source/unoexe/unoexe.cxx899
-rwxr-xr-xcrashrep/prj/build.lst5
-rwxr-xr-xcrashrep/prj/d.lst3
-rw-r--r--crashrep/source/all/crashrep.ulf220
-rw-r--r--crashrep/source/all/makefile.mk49
-rwxr-xr-xcrashrep/source/unx/main.cxx1122
-rwxr-xr-xcrashrep/source/unx/makefile.mk74
-rwxr-xr-xcrashrep/source/win32/base64.cpp83
-rwxr-xr-xcrashrep/source/win32/base64.h45
-rwxr-xr-xcrashrep/source/win32/ctrylnglist.txt29
-rwxr-xr-xcrashrep/source/win32/makefile.mk89
-rwxr-xr-xcrashrep/source/win32/rcfooter.txt1
-rwxr-xr-xcrashrep/source/win32/rcheader.txt114
-rwxr-xr-xcrashrep/source/win32/rctemplate.txt192
-rwxr-xr-xcrashrep/source/win32/resource.h120
-rwxr-xr-xcrashrep/source/win32/soreport.cpp2982
-rw-r--r--cui/inc/makefile.mk48
-rw-r--r--cui/inc/pch/precompiled_cui.cxx29
-rw-r--r--cui/inc/pch/precompiled_cui.hxx965
-rw-r--r--cui/prj/build.lst9
-rwxr-xr-xcui/prj/d.lst8
-rw-r--r--cui/source/customize/acccfg.cxx1541
-rw-r--r--cui/source/customize/acccfg.hrc75
-rw-r--r--cui/source/customize/acccfg.src357
-rw-r--r--cui/source/customize/cfg.cxx5811
-rw-r--r--cui/source/customize/cfg.hrc105
-rw-r--r--cui/source/customize/cfg.src872
-rw-r--r--cui/source/customize/cfgutil.cxx1691
-rw-r--r--cui/source/customize/eventdlg.cxx247
-rw-r--r--cui/source/customize/eventdlg.hrc43
-rw-r--r--cui/source/customize/eventdlg.hxx78
-rw-r--r--cui/source/customize/eventdlg.src111
-rw-r--r--cui/source/customize/macropg.cxx1054
-rw-r--r--cui/source/customize/macropg.hrc101
-rw-r--r--cui/source/customize/macropg.src485
-rw-r--r--cui/source/customize/macropg_impl.hxx73
-rw-r--r--cui/source/customize/makefile.mk63
-rw-r--r--cui/source/customize/selector.cxx1211
-rw-r--r--cui/source/customize/selector.hrc57
-rw-r--r--cui/source/customize/selector.src212
-rw-r--r--cui/source/dialogs/SpellAttrib.cxx172
-rw-r--r--cui/source/dialogs/SpellAttrib.hxx173
-rwxr-xr-xcui/source/dialogs/SpellDialog.cxx2152
-rw-r--r--cui/source/dialogs/SpellDialog.hrc55
-rw-r--r--cui/source/dialogs/SpellDialog.src242
-rw-r--r--cui/source/dialogs/charmap.hrc51
-rw-r--r--cui/source/dialogs/charmap.src159
-rw-r--r--cui/source/dialogs/commonlingui.cxx243
-rw-r--r--cui/source/dialogs/commonlingui.hxx159
-rw-r--r--cui/source/dialogs/commonlingui.src153
-rw-r--r--cui/source/dialogs/cuicharmap.cxx589
-rw-r--r--cui/source/dialogs/cuifmsearch.cxx965
-rw-r--r--cui/source/dialogs/cuigaldlg.cxx1269
-rw-r--r--cui/source/dialogs/cuigrfflt.cxx756
-rw-r--r--cui/source/dialogs/cuihyperdlg.cxx412
-rw-r--r--cui/source/dialogs/cuiimapdlg.hrc44
-rw-r--r--cui/source/dialogs/cuiimapdlg.src148
-rw-r--r--cui/source/dialogs/cuiimapwnd.cxx97
-rw-r--r--cui/source/dialogs/cuitbxform.cxx65
-rw-r--r--cui/source/dialogs/dlgname.cxx236
-rw-r--r--cui/source/dialogs/dlgname.hrc46
-rw-r--r--cui/source/dialogs/dlgname.src269
-rw-r--r--cui/source/dialogs/fmsearch.hrc86
-rw-r--r--cui/source/dialogs/fmsearch.src329
-rw-r--r--cui/source/dialogs/gallery.src479
-rw-r--r--cui/source/dialogs/grfflt.hrc80
-rw-r--r--cui/source/dialogs/grfflt.src454
-rw-r--r--cui/source/dialogs/hangulhanjadlg.cxx1899
-rw-r--r--cui/source/dialogs/hangulhanjadlg.hrc197
-rw-r--r--cui/source/dialogs/hangulhanjadlg.src428
-rw-r--r--cui/source/dialogs/hldocntp.cxx487
-rw-r--r--cui/source/dialogs/hldoctp.cxx374
-rw-r--r--cui/source/dialogs/hlinettp.cxx544
-rw-r--r--cui/source/dialogs/hlmailtp.cxx361
-rw-r--r--cui/source/dialogs/hlmarkwn.cxx543
-rw-r--r--cui/source/dialogs/hlmarkwn.hrc34
-rw-r--r--cui/source/dialogs/hlmarkwn.src95
-rw-r--r--cui/source/dialogs/hltpbase.cxx870
-rw-r--r--cui/source/dialogs/hyperdlg.hrc100
-rw-r--r--cui/source/dialogs/hyperdlg.src968
-rwxr-xr-xcui/source/dialogs/hyphen.cxx657
-rwxr-xr-xcui/source/dialogs/hyphen.hrc46
-rwxr-xr-xcui/source/dialogs/hyphen.src126
-rw-r--r--cui/source/dialogs/iconcdlg.cxx1231
-rw-r--r--cui/source/dialogs/iconcdlg.src60
-rw-r--r--cui/source/dialogs/insdlg.cxx1052
-rw-r--r--cui/source/dialogs/insrc.cxx82
-rw-r--r--cui/source/dialogs/insrc.hrc40
-rw-r--r--cui/source/dialogs/insrc.src115
-rw-r--r--cui/source/dialogs/linkdlg.cxx713
-rwxr-xr-xcui/source/dialogs/makefile.mk120
-rw-r--r--cui/source/dialogs/multifil.cxx184
-rw-r--r--cui/source/dialogs/multipat.cxx360
-rw-r--r--cui/source/dialogs/multipat.hrc44
-rw-r--r--cui/source/dialogs/multipat.src150
-rw-r--r--cui/source/dialogs/newtabledlg.cxx71
-rw-r--r--cui/source/dialogs/newtabledlg.hrc35
-rw-r--r--cui/source/dialogs/newtabledlg.src135
-rwxr-xr-xcui/source/dialogs/passwdomdlg.cxx343
-rwxr-xr-xcui/source/dialogs/passwdomdlg.hrc61
-rwxr-xr-xcui/source/dialogs/passwdomdlg.src228
-rw-r--r--cui/source/dialogs/pastedlg.cxx307
-rw-r--r--cui/source/dialogs/plfilter.cxx126
-rw-r--r--cui/source/dialogs/postdlg.cxx259
-rw-r--r--cui/source/dialogs/postdlg.hrc51
-rw-r--r--cui/source/dialogs/postdlg.src157
-rw-r--r--cui/source/dialogs/scriptdlg.cxx1624
-rw-r--r--cui/source/dialogs/scriptdlg.hrc80
-rw-r--r--cui/source/dialogs/scriptdlg.src307
-rw-r--r--cui/source/dialogs/sdrcelldlg.cxx101
-rw-r--r--cui/source/dialogs/sdrcelldlg.src141
-rw-r--r--cui/source/dialogs/showcols.cxx138
-rw-r--r--cui/source/dialogs/showcols.src102
-rw-r--r--cui/source/dialogs/splitcelldlg.cxx111
-rw-r--r--cui/source/dialogs/splitcelldlg.hrc42
-rw-r--r--cui/source/dialogs/splitcelldlg.src132
-rw-r--r--cui/source/dialogs/srchxtra.cxx289
-rw-r--r--cui/source/dialogs/srchxtra.hrc51
-rw-r--r--cui/source/dialogs/srchxtra.src279
-rw-r--r--cui/source/dialogs/svuidlg.hrc134
-rw-r--r--cui/source/dialogs/svuidlg.src708
-rw-r--r--cui/source/dialogs/tbxform.src64
-rwxr-xr-xcui/source/dialogs/thesdlg.cxx780
-rwxr-xr-xcui/source/dialogs/thesdlg.hrc52
-rwxr-xr-xcui/source/dialogs/thesdlg.src146
-rwxr-xr-xcui/source/dialogs/thesdlg_impl.hxx227
-rw-r--r--cui/source/dialogs/winpluginlib.cpp226
-rw-r--r--cui/source/dialogs/zoom.cxx490
-rw-r--r--cui/source/dialogs/zoom.hrc53
-rw-r--r--cui/source/dialogs/zoom.src157
-rw-r--r--cui/source/factory/cuiexp.cxx51
-rw-r--r--cui/source/factory/cuiresmgr.cxx50
-rwxr-xr-xcui/source/factory/dlgfact.cxx1979
-rw-r--r--cui/source/factory/dlgfact.hxx799
-rw-r--r--cui/source/factory/init.cxx53
-rw-r--r--cui/source/factory/makefile.mk52
-rw-r--r--cui/source/inc/ControlFocusHelper.hxx48
-rw-r--r--cui/source/inc/SpellDialog.hxx263
-rw-r--r--cui/source/inc/acccfg.hxx236
-rw-r--r--cui/source/inc/align.hxx101
-rw-r--r--cui/source/inc/autocdlg.hxx518
-rw-r--r--cui/source/inc/backgrnd.hxx170
-rw-r--r--cui/source/inc/bbdlg.hxx56
-rw-r--r--cui/source/inc/border.hxx156
-rw-r--r--cui/source/inc/cfg.hxx819
-rw-r--r--cui/source/inc/cfgutil.hxx212
-rw-r--r--cui/source/inc/chardlg.hxx396
-rw-r--r--cui/source/inc/connect.hxx118
-rw-r--r--cui/source/inc/cuicharmap.hxx143
-rw-r--r--cui/source/inc/cuifmsearch.hxx227
-rw-r--r--cui/source/inc/cuigaldlg.hxx372
-rw-r--r--cui/source/inc/cuigrfflt.hxx253
-rw-r--r--cui/source/inc/cuihyperdlg.hxx114
-rw-r--r--cui/source/inc/cuiimapwnd.hxx54
-rw-r--r--cui/source/inc/cuioptgenrl.hxx127
-rwxr-xr-xcui/source/inc/cuires.hrc442
-rw-r--r--cui/source/inc/cuisrchdlg.hxx72
-rw-r--r--cui/source/inc/cuitabarea.hxx802
-rw-r--r--cui/source/inc/cuitabline.hxx430
-rw-r--r--cui/source/inc/cuitbxform.hxx29
-rw-r--r--cui/source/inc/dbregister.hxx152
-rw-r--r--cui/source/inc/defdlgname.hxx40
-rw-r--r--cui/source/inc/dialmgr.hxx48
-rw-r--r--cui/source/inc/dlgname.hxx204
-rw-r--r--cui/source/inc/dstribut.hxx125
-rw-r--r--cui/source/inc/gallery.hrc101
-rw-r--r--cui/source/inc/grfpage.hxx140
-rw-r--r--cui/source/inc/hangulhanjadlg.hxx347
-rw-r--r--cui/source/inc/headertablistbox.hxx68
-rwxr-xr-xcui/source/inc/helpid.hrc400
-rw-r--r--cui/source/inc/hldocntp.hxx76
-rw-r--r--cui/source/inc/hldoctp.hxx93
-rw-r--r--cui/source/inc/hlinettp.hxx107
-rw-r--r--cui/source/inc/hlmailtp.hxx77
-rw-r--r--cui/source/inc/hlmarkwn.hxx111
-rw-r--r--cui/source/inc/hlmarkwn_def.hxx36
-rw-r--r--cui/source/inc/hltpbase.hxx208
-rwxr-xr-xcui/source/inc/hyphen.hxx72
-rw-r--r--cui/source/inc/iconcdlg.hxx270
-rw-r--r--cui/source/inc/insdlg.hxx212
-rw-r--r--cui/source/inc/insrc.hxx69
-rw-r--r--cui/source/inc/internationaloptions.hxx58
-rw-r--r--cui/source/inc/labdlg.hxx144
-rw-r--r--cui/source/inc/linkdlg.hxx134
-rwxr-xr-xcui/source/inc/macroass.hxx134
-rw-r--r--cui/source/inc/macropg.hxx175
-rw-r--r--cui/source/inc/measure.hxx127
-rw-r--r--cui/source/inc/multifil.hxx59
-rw-r--r--cui/source/inc/multipat.hxx89
-rw-r--r--cui/source/inc/newtabledlg.hxx62
-rw-r--r--cui/source/inc/numfmt.hxx188
-rw-r--r--cui/source/inc/numpages.hxx469
-rw-r--r--cui/source/inc/optasian.hxx81
-rw-r--r--cui/source/inc/optdict.hxx188
-rw-r--r--cui/source/inc/optimprove.hxx118
-rw-r--r--cui/source/inc/optlingu.hxx181
-rw-r--r--cui/source/inc/optpath.hxx116
-rw-r--r--cui/source/inc/page.hxx238
-rw-r--r--cui/source/inc/paragrph.hxx326
-rwxr-xr-xcui/source/inc/passwdomdlg.hxx62
-rw-r--r--cui/source/inc/pastedlg.hxx95
-rw-r--r--cui/source/inc/postdlg.hxx126
-rw-r--r--cui/source/inc/radiobtnbox.hxx62
-rw-r--r--cui/source/inc/scriptdlg.hxx237
-rw-r--r--cui/source/inc/sdrcelldlg.hxx63
-rw-r--r--cui/source/inc/selector.hxx240
-rw-r--r--cui/source/inc/showcols.hxx66
-rw-r--r--cui/source/inc/splitcelldlg.hxx69
-rw-r--r--cui/source/inc/srchxtra.hxx108
-rw-r--r--cui/source/inc/tabstpge.hxx159
-rw-r--r--cui/source/inc/textanim.hxx128
-rw-r--r--cui/source/inc/textattr.hxx135
-rwxr-xr-xcui/source/inc/thesdlg.hxx61
-rw-r--r--cui/source/inc/transfrm.hxx305
-rw-r--r--cui/source/inc/treeopt.hxx352
-rw-r--r--cui/source/inc/zoom.hxx114
-rw-r--r--cui/source/options/cfgchart.cxx324
-rw-r--r--cui/source/options/cfgchart.hxx116
-rw-r--r--cui/source/options/connpoolconfig.cxx223
-rw-r--r--cui/source/options/connpoolconfig.hxx54
-rw-r--r--cui/source/options/connpooloptions.cxx507
-rw-r--r--cui/source/options/connpooloptions.hrc49
-rw-r--r--cui/source/options/connpooloptions.hxx92
-rw-r--r--cui/source/options/connpooloptions.src166
-rw-r--r--cui/source/options/connpoolsettings.cxx113
-rw-r--r--cui/source/options/connpoolsettings.hxx107
-rw-r--r--cui/source/options/cuisrchdlg.cxx94
-rw-r--r--cui/source/options/dbregister.cxx470
-rw-r--r--cui/source/options/dbregister.hrc42
-rw-r--r--cui/source/options/dbregister.src90
-rw-r--r--cui/source/options/dbregisterednamesconfig.cxx142
-rw-r--r--cui/source/options/dbregisterednamesconfig.hxx54
-rw-r--r--cui/source/options/dbregistersettings.cxx76
-rw-r--r--cui/source/options/dbregistersettings.hxx95
-rw-r--r--cui/source/options/doclinkdialog.cxx224
-rw-r--r--cui/source/options/doclinkdialog.hrc50
-rw-r--r--cui/source/options/doclinkdialog.hxx93
-rw-r--r--cui/source/options/doclinkdialog.src151
-rw-r--r--cui/source/options/fontsubs.cxx611
-rw-r--r--cui/source/options/fontsubs.hrc62
-rw-r--r--cui/source/options/fontsubs.hxx134
-rw-r--r--cui/source/options/fontsubs.src196
-rw-r--r--cui/source/options/internationaloptions.cxx164
-rw-r--r--cui/source/options/internationaloptions.hrc72
-rw-r--r--cui/source/options/internationaloptions.src103
-rw-r--r--cui/source/options/makefile.mk118
-rw-r--r--cui/source/options/optHeaderTabListbox.cxx87
-rw-r--r--cui/source/options/optHeaderTabListbox.hxx45
-rw-r--r--cui/source/options/optaccessibility.cxx185
-rw-r--r--cui/source/options/optaccessibility.hrc84
-rw-r--r--cui/source/options/optaccessibility.hxx65
-rw-r--r--cui/source/options/optaccessibility.src152
-rw-r--r--cui/source/options/optasian.cxx467
-rw-r--r--cui/source/options/optasian.hrc49
-rw-r--r--cui/source/options/optasian.src174
-rw-r--r--cui/source/options/optchart.cxx236
-rw-r--r--cui/source/options/optchart.hrc37
-rw-r--r--cui/source/options/optchart.hxx89
-rw-r--r--cui/source/options/optchart.src83
-rw-r--r--cui/source/options/optcolor.cxx1630
-rw-r--r--cui/source/options/optcolor.hrc219
-rw-r--r--cui/source/options/optcolor.hxx81
-rw-r--r--cui/source/options/optcolor.src549
-rw-r--r--cui/source/options/optctl.cxx170
-rw-r--r--cui/source/options/optctl.hrc58
-rw-r--r--cui/source/options/optctl.hxx70
-rw-r--r--cui/source/options/optctl.src116
-rwxr-xr-xcui/source/options/optdict.cxx803
-rw-r--r--cui/source/options/optdict.hrc65
-rw-r--r--cui/source/options/optdict.src279
-rw-r--r--cui/source/options/optfltr.cxx436
-rw-r--r--cui/source/options/optfltr.hrc55
-rw-r--r--cui/source/options/optfltr.hxx115
-rw-r--r--cui/source/options/optfltr.src201
-rw-r--r--cui/source/options/optgdlg.cxx1874
-rw-r--r--cui/source/options/optgdlg.hrc205
-rw-r--r--cui/source/options/optgdlg.hxx217
-rw-r--r--cui/source/options/optgdlg.src640
-rw-r--r--cui/source/options/optgenrl.cxx561
-rw-r--r--cui/source/options/optgenrl.hrc85
-rw-r--r--cui/source/options/optgenrl.src312
-rw-r--r--cui/source/options/opthtml.cxx267
-rw-r--r--cui/source/options/opthtml.hrc63
-rw-r--r--cui/source/options/opthtml.hxx89
-rw-r--r--cui/source/options/opthtml.src287
-rw-r--r--cui/source/options/optimprove.cxx199
-rw-r--r--cui/source/options/optimprove.hrc50
-rw-r--r--cui/source/options/optimprove.src121
-rw-r--r--cui/source/options/optimprove2.cxx254
-rw-r--r--cui/source/options/optinet2.cxx1924
-rwxr-xr-xcui/source/options/optinet2.hrc171
-rwxr-xr-xcui/source/options/optinet2.hxx340
-rwxr-xr-xcui/source/options/optinet2.src613
-rw-r--r--cui/source/options/optjava.cxx1085
-rw-r--r--cui/source/options/optjava.hrc83
-rw-r--r--cui/source/options/optjava.hxx193
-rw-r--r--cui/source/options/optjava.src287
-rw-r--r--cui/source/options/optjsearch.cxx382
-rw-r--r--cui/source/options/optjsearch.hrc50
-rw-r--r--cui/source/options/optjsearch.hxx93
-rw-r--r--cui/source/options/optjsearch.src220
-rw-r--r--cui/source/options/optlingu.cxx2552
-rw-r--r--cui/source/options/optlingu.hrc88
-rw-r--r--cui/source/options/optlingu.src354
-rw-r--r--cui/source/options/optmemory.cxx271
-rw-r--r--cui/source/options/optmemory.hrc86
-rw-r--r--cui/source/options/optmemory.hxx89
-rw-r--r--cui/source/options/optmemory.src207
-rw-r--r--cui/source/options/optpath.cxx862
-rw-r--r--cui/source/options/optpath.hrc43
-rw-r--r--cui/source/options/optpath.src200
-rw-r--r--cui/source/options/optsave.cxx779
-rw-r--r--cui/source/options/optsave.hrc81
-rw-r--r--cui/source/options/optsave.hxx105
-rw-r--r--cui/source/options/optsave.src322
-rw-r--r--cui/source/options/optspell.hrc42
-rw-r--r--cui/source/options/optspell.src125
-rw-r--r--cui/source/options/optupdt.cxx412
-rw-r--r--cui/source/options/optupdt.hrc49
-rw-r--r--cui/source/options/optupdt.hxx81
-rw-r--r--cui/source/options/optupdt.src111
-rw-r--r--cui/source/options/radiobtnbox.cxx115
-rw-r--r--cui/source/options/readonlyimage.cxx81
-rw-r--r--cui/source/options/readonlyimage.hxx43
-rw-r--r--cui/source/options/readonlyimage.src52
-rw-r--r--cui/source/options/sdbcdriverenum.cxx122
-rw-r--r--cui/source/options/sdbcdriverenum.hxx75
-rw-r--r--cui/source/options/securityoptions.cxx104
-rw-r--r--cui/source/options/securityoptions.hrc80
-rw-r--r--cui/source/options/securityoptions.hxx91
-rw-r--r--cui/source/options/securityoptions.src165
-rw-r--r--cui/source/options/treeopt.cxx2849
-rw-r--r--cui/source/options/treeopt.hrc100
-rw-r--r--cui/source/options/treeopt.src351
-rw-r--r--cui/source/options/webconninfo.cxx374
-rw-r--r--cui/source/options/webconninfo.hrc62
-rw-r--r--cui/source/options/webconninfo.hxx85
-rw-r--r--cui/source/options/webconninfo.src103
-rw-r--r--cui/source/tabpages/align.cxx296
-rw-r--r--cui/source/tabpages/align.hrc84
-rw-r--r--cui/source/tabpages/align.src248
-rw-r--r--cui/source/tabpages/autocdlg.cxx2867
-rw-r--r--cui/source/tabpages/autocdlg.hrc159
-rw-r--r--cui/source/tabpages/autocdlg.src864
-rw-r--r--cui/source/tabpages/backgrnd.cxx1977
-rw-r--r--cui/source/tabpages/backgrnd.hrc70
-rw-r--r--cui/source/tabpages/backgrnd.src306
-rw-r--r--cui/source/tabpages/bbdlg.cxx72
-rw-r--r--cui/source/tabpages/bbdlg.src85
-rw-r--r--cui/source/tabpages/border.cxx1256
-rw-r--r--cui/source/tabpages/border.hrc106
-rw-r--r--cui/source/tabpages/border.src428
-rw-r--r--cui/source/tabpages/borderconn.cxx304
-rw-r--r--cui/source/tabpages/borderconn.hxx69
-rw-r--r--cui/source/tabpages/chardlg.cxx4022
-rw-r--r--cui/source/tabpages/chardlg.h71
-rw-r--r--cui/source/tabpages/chardlg.hrc181
-rw-r--r--cui/source/tabpages/chardlg.src1125
-rw-r--r--cui/source/tabpages/connect.cxx564
-rw-r--r--cui/source/tabpages/connect.hrc45
-rw-r--r--cui/source/tabpages/connect.src267
-rw-r--r--cui/source/tabpages/dstribut.cxx244
-rw-r--r--cui/source/tabpages/dstribut.hrc55
-rw-r--r--cui/source/tabpages/dstribut.src291
-rw-r--r--cui/source/tabpages/frmdirlbox.src93
-rw-r--r--cui/source/tabpages/grfpage.cxx835
-rw-r--r--cui/source/tabpages/grfpage.hrc53
-rw-r--r--cui/source/tabpages/grfpage.src332
-rw-r--r--cui/source/tabpages/labdlg.cxx650
-rw-r--r--cui/source/tabpages/labdlg.hrc77
-rw-r--r--cui/source/tabpages/labdlg.src298
-rw-r--r--cui/source/tabpages/macroass.cxx667
-rw-r--r--cui/source/tabpages/macroass.hrc82
-rw-r--r--cui/source/tabpages/macroass.src142
-rw-r--r--cui/source/tabpages/makefile.mk110
-rw-r--r--cui/source/tabpages/measure.cxx874
-rw-r--r--cui/source/tabpages/measure.hrc53
-rw-r--r--cui/source/tabpages/measure.src309
-rw-r--r--cui/source/tabpages/numfmt.cxx1950
-rw-r--r--cui/source/tabpages/numfmt.hrc74
-rw-r--r--cui/source/tabpages/numfmt.src294
-rw-r--r--cui/source/tabpages/numpages.cxx4056
-rw-r--r--cui/source/tabpages/numpages.hrc132
-rw-r--r--cui/source/tabpages/numpages.src811
-rw-r--r--cui/source/tabpages/page.cxx1771
-rw-r--r--cui/source/tabpages/page.h71
-rw-r--r--cui/source/tabpages/page.hrc84
-rw-r--r--cui/source/tabpages/page.src504
-rw-r--r--cui/source/tabpages/paragrph.cxx2365
-rw-r--r--cui/source/tabpages/paragrph.hrc121
-rw-r--r--cui/source/tabpages/paragrph.src732
-rw-r--r--cui/source/tabpages/strings.src178
-rw-r--r--cui/source/tabpages/swpossizetabpage.cxx1971
-rw-r--r--cui/source/tabpages/swpossizetabpage.hrc59
-rw-r--r--cui/source/tabpages/swpossizetabpage.hxx158
-rw-r--r--cui/source/tabpages/swpossizetabpage.src295
-rw-r--r--cui/source/tabpages/tabarea.cxx368
-rw-r--r--cui/source/tabpages/tabarea.hrc187
-rw-r--r--cui/source/tabpages/tabarea.src1539
-rw-r--r--cui/source/tabpages/tabline.cxx298
-rw-r--r--cui/source/tabpages/tabline.hrc106
-rw-r--r--cui/source/tabpages/tabline.src801
-rw-r--r--cui/source/tabpages/tabstpge.cxx744
-rw-r--r--cui/source/tabpages/tabstpge.hrc63
-rw-r--r--cui/source/tabpages/tabstpge.src231
-rw-r--r--cui/source/tabpages/textanim.cxx757
-rw-r--r--cui/source/tabpages/textanim.hrc47
-rw-r--r--cui/source/tabpages/textanim.src320
-rw-r--r--cui/source/tabpages/textattr.cxx798
-rw-r--r--cui/source/tabpages/textattr.hrc46
-rw-r--r--cui/source/tabpages/textattr.src244
-rw-r--r--cui/source/tabpages/tparea.cxx2580
-rw-r--r--cui/source/tabpages/tpbitmap.cxx1161
-rw-r--r--cui/source/tabpages/tpcolor.cxx1273
-rw-r--r--cui/source/tabpages/tpgradnt.cxx935
-rw-r--r--cui/source/tabpages/tphatch.cxx893
-rw-r--r--cui/source/tabpages/tpline.cxx1923
-rw-r--r--cui/source/tabpages/tplnedef.cxx1012
-rw-r--r--cui/source/tabpages/tplneend.cxx747
-rw-r--r--cui/source/tabpages/tpshadow.cxx610
-rw-r--r--cui/source/tabpages/transfrm.cxx1697
-rw-r--r--cui/source/tabpages/transfrm.hrc76
-rw-r--r--cui/source/tabpages/transfrm.src609
-rw-r--r--cui/util/cui.map7
-rw-r--r--cui/util/hidother.src204
-rw-r--r--cui/util/makefile.mk106
-rw-r--r--cui/util/makefile.pmk40
-rw-r--r--curl/curl-7.19.7.patch83
-rw-r--r--curl/curl-7.19.7_mingw.patch24
-rw-r--r--curl/curl-7.19.7_win.patch19
-rw-r--r--curl/makefile.mk162
-rw-r--r--curl/prj/build.lst3
-rw-r--r--curl/prj/d.lst15
-rw-r--r--default_images/avmedia/res/av02048.pngbin0 -> 711 bytes-rw-r--r--default_images/avmedia/res/av02049.pngbin0 -> 712 bytes-rw-r--r--default_images/avmedia/res/av02050.pngbin0 -> 637 bytes-rw-r--r--default_images/avmedia/res/av02051.pngbin0 -> 653 bytes-rw-r--r--default_images/avmedia/res/av02052.pngbin0 -> 771 bytes-rw-r--r--default_images/avmedia/res/av02053.pngbin0 -> 477 bytes-rw-r--r--default_images/avmedia/res/av02054.pngbin0 -> 1059 bytes-rwxr-xr-xdefault_images/avmedia/res/avaudiologo.pngbin0 -> 6724 bytes-rwxr-xr-xdefault_images/avmedia/res/avemptylogo.pngbin0 -> 1906 bytes-rw-r--r--default_images/avmedia/res/avh02048.pngbin0 -> 141 bytes-rw-r--r--default_images/avmedia/res/avh02049.pngbin0 -> 131 bytes-rw-r--r--default_images/avmedia/res/avh02050.pngbin0 -> 125 bytes-rw-r--r--default_images/avmedia/res/avh02051.pngbin0 -> 123 bytes-rw-r--r--default_images/avmedia/res/avh02052.pngbin0 -> 154 bytes-rw-r--r--default_images/avmedia/res/avh02053.pngbin0 -> 135 bytes-rw-r--r--default_images/avmedia/res/avh02054.pngbin0 -> 175 bytes-rw-r--r--default_images/avmedia/res/avl02048.pngbin0 -> 1188 bytes-rwxr-xr-xdefault_images/avmedia/res/avl02049.pngbin0 -> 991 bytes-rwxr-xr-xdefault_images/avmedia/res/avl02050.pngbin0 -> 895 bytes-rwxr-xr-xdefault_images/avmedia/res/avl02051.pngbin0 -> 878 bytes-rwxr-xr-xdefault_images/avmedia/res/avl02052.pngbin0 -> 1197 bytes-rwxr-xr-xdefault_images/avmedia/res/avl02053.pngbin0 -> 786 bytes-rwxr-xr-xdefault_images/avmedia/res/avl02054.pngbin0 -> 1688 bytes-rw-r--r--default_images/avmedia/res/avlh02048.pngbin0 -> 175 bytes-rwxr-xr-xdefault_images/avmedia/res/avlh02049.pngbin0 -> 163 bytes-rwxr-xr-xdefault_images/avmedia/res/avlh02050.pngbin0 -> 147 bytes-rwxr-xr-xdefault_images/avmedia/res/avlh02051.pngbin0 -> 144 bytes-rwxr-xr-xdefault_images/avmedia/res/avlh02052.pngbin0 -> 200 bytes-rwxr-xr-xdefault_images/avmedia/res/avlh02053.pngbin0 -> 143 bytes-rwxr-xr-xdefault_images/avmedia/res/avlh02054.pngbin0 -> 231 bytes-rw-r--r--default_images/basctl/res/im01.pngbin0 -> 780 bytes-rw-r--r--default_images/basctl/res/imh01.pngbin0 -> 183 bytes-rw-r--r--default_images/basctl/res/locked.pngbin0 -> 385 bytes-rw-r--r--default_images/basctl/res/locked_h.pngbin0 -> 120 bytes-rw-r--r--default_images/chart2/res/areas3d_52x60.pngbin0 -> 459 bytes-rw-r--r--default_images/chart2/res/areas3d_52x60_h.pngbin0 -> 336 bytes-rw-r--r--default_images/chart2/res/areas_52x60.pngbin0 -> 400 bytes-rw-r--r--default_images/chart2/res/areas_52x60_h.pngbin0 -> 300 bytes-rw-r--r--default_images/chart2/res/areasfull3d_52x60.pngbin0 -> 319 bytes-rw-r--r--default_images/chart2/res/areasfull3d_52x60_h.pngbin0 -> 283 bytes-rw-r--r--default_images/chart2/res/areasfull_52x60.pngbin0 -> 287 bytes-rw-r--r--default_images/chart2/res/areasfull_52x60_h.pngbin0 -> 230 bytes-rw-r--r--default_images/chart2/res/areaspiled3d_52x60.pngbin0 -> 484 bytes-rw-r--r--default_images/chart2/res/areaspiled3d_52x60_h.pngbin0 -> 382 bytes-rw-r--r--default_images/chart2/res/areaspiled_52x60.pngbin0 -> 358 bytes-rw-r--r--default_images/chart2/res/areaspiled_52x60_h.pngbin0 -> 283 bytes-rw-r--r--default_images/chart2/res/bar3d_52x60.pngbin0 -> 337 bytes-rw-r--r--default_images/chart2/res/bar3d_52x60_h.pngbin0 -> 289 bytes-rw-r--r--default_images/chart2/res/bar3ddeep_52x60.pngbin0 -> 468 bytes-rw-r--r--default_images/chart2/res/bar3ddeep_52x60_h.pngbin0 -> 332 bytes-rw-r--r--default_images/chart2/res/bar_52x60.pngbin0 -> 227 bytes-rw-r--r--default_images/chart2/res/bar_52x60_h.pngbin0 -> 188 bytes-rw-r--r--default_images/chart2/res/barpercent3d_52x60.pngbin0 -> 303 bytes-rw-r--r--default_images/chart2/res/barpercent3d_52x60_h.pngbin0 -> 247 bytes-rw-r--r--default_images/chart2/res/barpercent_52x60.pngbin0 -> 218 bytes-rw-r--r--default_images/chart2/res/barpercent_52x60_h.pngbin0 -> 169 bytes-rw-r--r--default_images/chart2/res/barstack3d_52x60.pngbin0 -> 307 bytes-rw-r--r--default_images/chart2/res/barstack3d_52x60_h.pngbin0 -> 251 bytes-rw-r--r--default_images/chart2/res/barstack_52x60.pngbin0 -> 218 bytes-rw-r--r--default_images/chart2/res/barstack_52x60_h.pngbin0 -> 172 bytes-rw-r--r--default_images/chart2/res/bubble_52x60.pngbin0 -> 2715 bytes-rw-r--r--default_images/chart2/res/bubble_52x60_h.pngbin0 -> 339 bytes-rw-r--r--default_images/chart2/res/columnline_52x60.pngbin0 -> 281 bytes-rw-r--r--default_images/chart2/res/columnline_52x60_h.pngbin0 -> 222 bytes-rw-r--r--default_images/chart2/res/columnpercent3d_52x60.pngbin0 -> 324 bytes-rw-r--r--default_images/chart2/res/columnpercent3d_52x60_h.pngbin0 -> 274 bytes-rw-r--r--default_images/chart2/res/columnpercent_52x60.pngbin0 -> 218 bytes-rw-r--r--default_images/chart2/res/columnpercent_52x60_h.pngbin0 -> 177 bytes-rw-r--r--default_images/chart2/res/columns3d_52x60.pngbin0 -> 345 bytes-rw-r--r--default_images/chart2/res/columns3d_52x60_h.pngbin0 -> 278 bytes-rw-r--r--default_images/chart2/res/columns3ddeep_52x60.pngbin0 -> 454 bytes-rw-r--r--default_images/chart2/res/columns3ddeep_52x60_h.pngbin0 -> 334 bytes-rw-r--r--default_images/chart2/res/columns_52x60.pngbin0 -> 214 bytes-rw-r--r--default_images/chart2/res/columns_52x60_h.pngbin0 -> 174 bytes-rw-r--r--default_images/chart2/res/columnstack3d_52x60.pngbin0 -> 326 bytes-rw-r--r--default_images/chart2/res/columnstack3d_52x60_h.pngbin0 -> 278 bytes-rw-r--r--default_images/chart2/res/columnstack_52x60.pngbin0 -> 218 bytes-rw-r--r--default_images/chart2/res/columnstack_52x60_h.pngbin0 -> 178 bytes-rw-r--r--default_images/chart2/res/columnstackline_52x60.pngbin0 -> 247 bytes-rw-r--r--default_images/chart2/res/columnstackline_52x60_h.pngbin0 -> 194 bytes-rw-r--r--default_images/chart2/res/cone_52x60.pngbin0 -> 717 bytes-rw-r--r--default_images/chart2/res/cone_52x60_h.pngbin0 -> 341 bytes-rw-r--r--default_images/chart2/res/conedeep_52x60.pngbin0 -> 742 bytes-rw-r--r--default_images/chart2/res/conedeep_52x60_h.pngbin0 -> 462 bytes-rw-r--r--default_images/chart2/res/conehori_52x60.pngbin0 -> 623 bytes-rw-r--r--default_images/chart2/res/conehori_52x60_h.pngbin0 -> 356 bytes-rw-r--r--default_images/chart2/res/conehorideep_52x60.pngbin0 -> 685 bytes-rw-r--r--default_images/chart2/res/conehorideep_52x60_h.pngbin0 -> 436 bytes-rw-r--r--default_images/chart2/res/conehoripercent_52x60.pngbin0 -> 605 bytes-rw-r--r--default_images/chart2/res/conehoripercent_52x60_h.pngbin0 -> 360 bytes-rw-r--r--default_images/chart2/res/conehoristack_52x60.pngbin0 -> 650 bytes-rw-r--r--default_images/chart2/res/conehoristack_52x60_h.pngbin0 -> 378 bytes-rw-r--r--default_images/chart2/res/conepercent_52x60.pngbin0 -> 628 bytes-rw-r--r--default_images/chart2/res/conepercent_52x60_h.pngbin0 -> 383 bytes-rw-r--r--default_images/chart2/res/conestack_52x60.pngbin0 -> 687 bytes-rw-r--r--default_images/chart2/res/conestack_52x60_h.pngbin0 -> 401 bytes-rw-r--r--default_images/chart2/res/cylinder_52x60.pngbin0 -> 489 bytes-rw-r--r--default_images/chart2/res/cylinder_52x60_h.pngbin0 -> 326 bytes-rw-r--r--default_images/chart2/res/cylinderdeep_52x60.pngbin0 -> 570 bytes-rw-r--r--default_images/chart2/res/cylinderdeep_52x60_h.pngbin0 -> 397 bytes-rw-r--r--default_images/chart2/res/cylinderhori_52x60.pngbin0 -> 457 bytes-rw-r--r--default_images/chart2/res/cylinderhori_52x60_h.pngbin0 -> 295 bytes-rw-r--r--default_images/chart2/res/cylinderhorideep_52x60.pngbin0 -> 666 bytes-rw-r--r--default_images/chart2/res/cylinderhorideep_52x60_h.pngbin0 -> 380 bytes-rw-r--r--default_images/chart2/res/cylinderhoriprocent_52x60.pngbin0 -> 608 bytes-rw-r--r--default_images/chart2/res/cylinderhoriprocent_52x60_h.pngbin0 -> 333 bytes-rw-r--r--default_images/chart2/res/cylinderhoristack_52x60.pngbin0 -> 614 bytes-rw-r--r--default_images/chart2/res/cylinderhoristack_52x60_h.pngbin0 -> 321 bytes-rw-r--r--default_images/chart2/res/cylinderpercent_52x60.pngbin0 -> 596 bytes-rw-r--r--default_images/chart2/res/cylinderpercent_52x60_h.pngbin0 -> 341 bytes-rw-r--r--default_images/chart2/res/cylinderstack_52x60.pngbin0 -> 602 bytes-rw-r--r--default_images/chart2/res/cylinderstack_52x60_h.pngbin0 -> 355 bytes-rw-r--r--default_images/chart2/res/dataeditor_icon01.pngbin0 -> 502 bytes-rw-r--r--default_images/chart2/res/dataeditor_icon02.pngbin0 -> 586 bytes-rw-r--r--default_images/chart2/res/dataeditor_icon03.pngbin0 -> 380 bytes-rw-r--r--default_images/chart2/res/dataeditor_icon04.pngbin0 -> 486 bytes-rw-r--r--default_images/chart2/res/dataeditor_icon05.pngbin0 -> 685 bytes-rw-r--r--default_images/chart2/res/dataeditor_icon06.pngbin0 -> 624 bytes-rw-r--r--default_images/chart2/res/dataeditor_icon07.pngbin0 -> 486 bytes-rw-r--r--default_images/chart2/res/dataeditor_icon_h01.pngbin0 -> 114 bytes-rw-r--r--default_images/chart2/res/dataeditor_icon_h02.pngbin0 -> 111 bytes-rw-r--r--default_images/chart2/res/dataeditor_icon_h03.pngbin0 -> 105 bytes-rw-r--r--default_images/chart2/res/dataeditor_icon_h04.pngbin0 -> 103 bytes-rw-r--r--default_images/chart2/res/dataeditor_icon_h05.pngbin0 -> 145 bytes-rw-r--r--default_images/chart2/res/dataeditor_icon_h06.pngbin0 -> 146 bytes-rw-r--r--default_images/chart2/res/dataeditor_icon_h07.pngbin0 -> 111 bytes-rw-r--r--default_images/chart2/res/donut3d_52x60.pngbin0 -> 538 bytes-rw-r--r--default_images/chart2/res/donut3d_52x60_h.pngbin0 -> 394 bytes-rw-r--r--default_images/chart2/res/donut3dexploded_52x60.pngbin0 -> 733 bytes-rw-r--r--default_images/chart2/res/donut3dexploded_52x60_h.pngbin0 -> 462 bytes-rw-r--r--default_images/chart2/res/donut_52x60.pngbin0 -> 481 bytes-rw-r--r--default_images/chart2/res/donut_52x60_h.pngbin0 -> 379 bytes-rw-r--r--default_images/chart2/res/donutexploded_52x60.pngbin0 -> 564 bytes-rw-r--r--default_images/chart2/res/donutexploded_52x60_h.pngbin0 -> 451 bytes-rw-r--r--default_images/chart2/res/errorbothhori_30.pngbin0 -> 563 bytes-rw-r--r--default_images/chart2/res/errorbothhori_30_h.pngbin0 -> 112 bytes-rw-r--r--default_images/chart2/res/errorbothverti_30.pngbin0 -> 628 bytes-rw-r--r--default_images/chart2/res/errorbothverti_30_h.pngbin0 -> 112 bytes-rw-r--r--default_images/chart2/res/errordown_30.pngbin0 -> 596 bytes-rw-r--r--default_images/chart2/res/errordown_30_h.pngbin0 -> 111 bytes-rw-r--r--default_images/chart2/res/errorleft_30.pngbin0 -> 547 bytes-rw-r--r--default_images/chart2/res/errorleft_30_h.pngbin0 -> 111 bytes-rw-r--r--default_images/chart2/res/errorright_30.pngbin0 -> 552 bytes-rw-r--r--default_images/chart2/res/errorright_30_h.pngbin0 -> 110 bytes-rw-r--r--default_images/chart2/res/errorup_30.pngbin0 -> 586 bytes-rw-r--r--default_images/chart2/res/errorup_30_h.pngbin0 -> 106 bytes-rw-r--r--default_images/chart2/res/net_52x60.pngbin0 -> 805 bytes-rw-r--r--default_images/chart2/res/net_52x60_h.pngbin0 -> 557 bytes-rw-r--r--default_images/chart2/res/netfill_52x60.pngbin0 -> 2356 bytes-rw-r--r--default_images/chart2/res/netfill_52x60_h.pngbin0 -> 1111 bytes-rw-r--r--default_images/chart2/res/netlinepoint_52x60.pngbin0 -> 971 bytes-rw-r--r--default_images/chart2/res/netlinepoint_52x60_h.pngbin0 -> 571 bytes-rw-r--r--default_images/chart2/res/netlinepointstack_52x60.pngbin0 -> 1029 bytes-rw-r--r--default_images/chart2/res/netlinepointstack_52x60_h.pngbin0 -> 516 bytes-rw-r--r--default_images/chart2/res/netpoint_52x60.pngbin0 -> 789 bytes-rw-r--r--default_images/chart2/res/netpoint_52x60_h.pngbin0 -> 402 bytes-rw-r--r--default_images/chart2/res/netpointstack_52x60.pngbin0 -> 749 bytes-rw-r--r--default_images/chart2/res/netpointstack_52x60_h.pngbin0 -> 389 bytes-rw-r--r--default_images/chart2/res/netstack_52x60.pngbin0 -> 857 bytes-rw-r--r--default_images/chart2/res/netstack_52x60_h.pngbin0 -> 494 bytes-rw-r--r--default_images/chart2/res/netstackfill_52x60.pngbin0 -> 2913 bytes-rw-r--r--default_images/chart2/res/netstackfill_52x60_h.pngbin0 -> 1032 bytes-rw-r--r--default_images/chart2/res/nostackdirect3d_52x60.pngbin0 -> 813 bytes-rw-r--r--default_images/chart2/res/nostackdirect3d_52x60_h.pngbin0 -> 347 bytes-rw-r--r--default_images/chart2/res/nostackdirectboth_52x60.pngbin0 -> 566 bytes-rw-r--r--default_images/chart2/res/nostackdirectboth_52x60_h.pngbin0 -> 318 bytes-rw-r--r--default_images/chart2/res/nostackdirectlines_52x60.pngbin0 -> 394 bytes-rw-r--r--default_images/chart2/res/nostackdirectlines_52x60_h.pngbin0 -> 299 bytes-rw-r--r--default_images/chart2/res/nostackdirectpoints_52x60.pngbin0 -> 343 bytes-rw-r--r--default_images/chart2/res/nostackdirectpoints_52x60_h.pngbin0 -> 206 bytes-rw-r--r--default_images/chart2/res/nostacksmooth3d_52x60.pngbin0 -> 1314 bytes-rw-r--r--default_images/chart2/res/nostacksmooth3d_52x60_h.pngbin0 -> 361 bytes-rw-r--r--default_images/chart2/res/nostacksmoothboth_52x60.pngbin0 -> 847 bytes-rw-r--r--default_images/chart2/res/nostacksmoothboth_52x60_h.pngbin0 -> 337 bytes-rw-r--r--default_images/chart2/res/nostacksmoothlines_52x60.pngbin0 -> 756 bytes-rw-r--r--default_images/chart2/res/nostacksmoothlines_52x60_h.pngbin0 -> 302 bytes-rw-r--r--default_images/chart2/res/pie3d_52x60.pngbin0 -> 461 bytes-rw-r--r--default_images/chart2/res/pie3d_52x60_h.pngbin0 -> 313 bytes-rw-r--r--default_images/chart2/res/pie3dexploded_52x60.pngbin0 -> 555 bytes-rw-r--r--default_images/chart2/res/pie3dexploded_52x60_h.pngbin0 -> 411 bytes-rw-r--r--default_images/chart2/res/pie_52x60.pngbin0 -> 403 bytes-rw-r--r--default_images/chart2/res/pie_52x60_h.pngbin0 -> 312 bytes-rw-r--r--default_images/chart2/res/pieexploded_52x60.pngbin0 -> 442 bytes-rw-r--r--default_images/chart2/res/pieexploded_52x60_h.pngbin0 -> 347 bytes-rw-r--r--default_images/chart2/res/pyramind_52x60.pngbin0 -> 571 bytes-rw-r--r--default_images/chart2/res/pyramind_52x60_h.pngbin0 -> 347 bytes-rw-r--r--default_images/chart2/res/pyraminddeep_52x60.pngbin0 -> 657 bytes-rw-r--r--default_images/chart2/res/pyraminddeep_52x60_h.pngbin0 -> 430 bytes-rw-r--r--default_images/chart2/res/pyramindhori_52x60.pngbin0 -> 441 bytes-rw-r--r--default_images/chart2/res/pyramindhori_52x60_h.pngbin0 -> 332 bytes-rw-r--r--default_images/chart2/res/pyramindhorideep_52x60.pngbin0 -> 584 bytes-rw-r--r--default_images/chart2/res/pyramindhorideep_52x60_h.pngbin0 -> 409 bytes-rw-r--r--default_images/chart2/res/pyramindhoripercent_52x60.pngbin0 -> 463 bytes-rw-r--r--default_images/chart2/res/pyramindhoripercent_52x60_h.pngbin0 -> 320 bytes-rw-r--r--default_images/chart2/res/pyramindhoristack_52x60.pngbin0 -> 469 bytes-rw-r--r--default_images/chart2/res/pyramindhoristack_52x60_h.pngbin0 -> 317 bytes-rw-r--r--default_images/chart2/res/pyramindpercent_52x60.pngbin0 -> 533 bytes-rw-r--r--default_images/chart2/res/pyramindpercent_52x60_h.pngbin0 -> 357 bytes-rw-r--r--default_images/chart2/res/pyramindstack_52x60.pngbin0 -> 564 bytes-rw-r--r--default_images/chart2/res/pyramindstack_52x60_h.pngbin0 -> 361 bytes-rw-r--r--default_images/chart2/res/regexp.pngbin0 -> 1092 bytes-rw-r--r--default_images/chart2/res/regexp_h.pngbin0 -> 188 bytes-rw-r--r--default_images/chart2/res/reglin.pngbin0 -> 1000 bytes-rw-r--r--default_images/chart2/res/reglin_h.pngbin0 -> 183 bytes-rw-r--r--default_images/chart2/res/reglog.pngbin0 -> 1034 bytes-rw-r--r--default_images/chart2/res/reglog_h.pngbin0 -> 186 bytes-rw-r--r--default_images/chart2/res/regno.pngbin0 -> 608 bytes-rw-r--r--default_images/chart2/res/regno_h.pngbin0 -> 122 bytes-rw-r--r--default_images/chart2/res/regpow.pngbin0 -> 1149 bytes-rw-r--r--default_images/chart2/res/regpow_h.pngbin0 -> 193 bytes-rw-r--r--default_images/chart2/res/selectrange.pngbin0 -> 629 bytes-rw-r--r--default_images/chart2/res/selectrange_h.pngbin0 -> 119 bytes-rw-r--r--default_images/chart2/res/stackdirect3d_52x60.pngbin0 -> 738 bytes-rw-r--r--default_images/chart2/res/stackdirect3d_52x60_h.pngbin0 -> 286 bytes-rw-r--r--default_images/chart2/res/stackdirectboth_52x60.pngbin0 -> 582 bytes-rw-r--r--default_images/chart2/res/stackdirectboth_52x60_h.pngbin0 -> 279 bytes-rw-r--r--default_images/chart2/res/stackdirectlines_52x60.pngbin0 -> 409 bytes-rw-r--r--default_images/chart2/res/stackdirectlines_52x60_h.pngbin0 -> 246 bytes-rw-r--r--default_images/chart2/res/stackdirectpoints_52x60.pngbin0 -> 336 bytes-rw-r--r--default_images/chart2/res/stackdirectpoints_52x60_h.pngbin0 -> 205 bytes-rw-r--r--default_images/chart2/res/stacksmooth3d_52x60.pngbin0 -> 946 bytes-rw-r--r--default_images/chart2/res/stacksmooth3d_52x60_h.pngbin0 -> 279 bytes-rw-r--r--default_images/chart2/res/stacksmoothboth_52x60.pngbin0 -> 598 bytes-rw-r--r--default_images/chart2/res/stacksmoothboth_52x60_h.pngbin0 -> 289 bytes-rw-r--r--default_images/chart2/res/stacksmoothlines_52x60.pngbin0 -> 879 bytes-rw-r--r--default_images/chart2/res/stacksmoothlines_52x60_h.pngbin0 -> 251 bytes-rw-r--r--default_images/chart2/res/stock_52x60.pngbin0 -> 296 bytes-rw-r--r--default_images/chart2/res/stock_52x60_h.pngbin0 -> 166 bytes-rw-r--r--default_images/chart2/res/stockblock_52x60.pngbin0 -> 366 bytes-rw-r--r--default_images/chart2/res/stockblock_52x60_h.pngbin0 -> 195 bytes-rw-r--r--default_images/chart2/res/stockcolumns_52x60.pngbin0 -> 489 bytes-rw-r--r--default_images/chart2/res/stockcolumns_52x60_h.pngbin0 -> 248 bytes-rw-r--r--default_images/chart2/res/stockcolumnsattach_52x60.pngbin0 -> 557 bytes-rw-r--r--default_images/chart2/res/stockcolumnsattach_52x60_h.pngbin0 -> 258 bytes-rw-r--r--default_images/chart2/res/typearea_16.pngbin0 -> 600 bytes-rw-r--r--default_images/chart2/res/typearea_16_h.pngbin0 -> 154 bytes-rw-r--r--default_images/chart2/res/typebar_16.pngbin0 -> 442 bytes-rw-r--r--default_images/chart2/res/typebar_16_h.pngbin0 -> 103 bytes-rw-r--r--default_images/chart2/res/typebubble_16.pngbin0 -> 581 bytes-rw-r--r--default_images/chart2/res/typebubble_16_h.pngbin0 -> 141 bytes-rw-r--r--default_images/chart2/res/typecolumn_16.pngbin0 -> 521 bytes-rw-r--r--default_images/chart2/res/typecolumn_16_h.pngbin0 -> 100 bytes-rw-r--r--default_images/chart2/res/typecolumnline_16.pngbin0 -> 541 bytes-rw-r--r--default_images/chart2/res/typecolumnline_16_h.pngbin0 -> 150 bytes-rw-r--r--default_images/chart2/res/typenet_16.pngbin0 -> 582 bytes-rw-r--r--default_images/chart2/res/typenet_16_h.pngbin0 -> 187 bytes-rw-r--r--default_images/chart2/res/typepie_16.pngbin0 -> 895 bytes-rw-r--r--default_images/chart2/res/typepie_16_h.pngbin0 -> 155 bytes-rw-r--r--default_images/chart2/res/typepointline_16.pngbin0 -> 638 bytes-rw-r--r--default_images/chart2/res/typepointline_16_h.pngbin0 -> 155 bytes-rw-r--r--default_images/chart2/res/typestock_16.pngbin0 -> 405 bytes-rw-r--r--default_images/chart2/res/typestock_16_h.pngbin0 -> 124 bytes-rw-r--r--default_images/chart2/res/typexy_16.pngbin0 -> 388 bytes-rw-r--r--default_images/chart2/res/typexy_16_h.pngbin0 -> 163 bytes-rw-r--r--default_images/chart2/res/valueaxisdirect3d_52x60.pngbin0 -> 524 bytes-rw-r--r--default_images/chart2/res/valueaxisdirect3d_52x60_h.pngbin0 -> 363 bytes-rw-r--r--default_images/chart2/res/valueaxisdirectboth_52x60.pngbin0 -> 572 bytes-rw-r--r--default_images/chart2/res/valueaxisdirectboth_52x60_h.pngbin0 -> 345 bytes-rw-r--r--default_images/chart2/res/valueaxisdirectlines_52x60.pngbin0 -> 376 bytes-rw-r--r--default_images/chart2/res/valueaxisdirectlines_52x60_h.pngbin0 -> 313 bytes-rw-r--r--default_images/chart2/res/valueaxisdirectpoints_52x60.pngbin0 -> 344 bytes-rw-r--r--default_images/chart2/res/valueaxisdirectpoints_52x60_h.pngbin0 -> 207 bytes-rw-r--r--default_images/chart2/res/valueaxissmooth3d_52x60.pngbin0 -> 1501 bytes-rw-r--r--default_images/chart2/res/valueaxissmooth3d_52x60_h.pngbin0 -> 354 bytes-rw-r--r--default_images/chart2/res/valueaxissmoothboth_52x60.pngbin0 -> 879 bytes-rw-r--r--default_images/chart2/res/valueaxissmoothboth_52x60_h.pngbin0 -> 344 bytes-rw-r--r--default_images/chart2/res/valueaxissmoothlines_52x60.pngbin0 -> 796 bytes-rw-r--r--default_images/chart2/res/valueaxissmoothlines_52x60_h.pngbin0 -> 313 bytes-rw-r--r--default_images/database/linked_text_table.pngbin0 -> 607 bytes-rw-r--r--default_images/database/linked_text_table_hc.pngbin0 -> 144 bytes-rw-r--r--default_images/dbaccess/res/all_left.pngbin0 -> 460 bytes-rw-r--r--default_images/dbaccess/res/all_left_h.pngbin0 -> 106 bytes-rw-r--r--default_images/dbaccess/res/all_right.pngbin0 -> 448 bytes-rw-r--r--default_images/dbaccess/res/all_right_h.pngbin0 -> 106 bytes-rw-r--r--default_images/dbaccess/res/db.pngbin0 -> 1007 bytes-rw-r--r--default_images/dbaccess/res/db_sch.pngbin0 -> 176 bytes-rw-r--r--default_images/dbaccess/res/exerror.pngbin0 -> 510 bytes-rw-r--r--default_images/dbaccess/res/exerror_sch.pngbin0 -> 140 bytes-rw-r--r--default_images/dbaccess/res/exinfo.pngbin0 -> 801 bytes-rw-r--r--default_images/dbaccess/res/exinfo_sch.pngbin0 -> 370 bytes-rw-r--r--default_images/dbaccess/res/exwarning.pngbin0 -> 733 bytes-rw-r--r--default_images/dbaccess/res/exwarning_sch.pngbin0 -> 152 bytes-rw-r--r--default_images/dbaccess/res/form_16.pngbin0 -> 515 bytes-rw-r--r--default_images/dbaccess/res/form_16_h.pngbin0 -> 118 bytes-rw-r--r--default_images/dbaccess/res/forms_16.pngbin0 -> 586 bytes-rw-r--r--default_images/dbaccess/res/forms_16_h.pngbin0 -> 141 bytes-rw-r--r--default_images/dbaccess/res/forms_32.pngbin0 -> 1514 bytes-rw-r--r--default_images/dbaccess/res/forms_32_h.pngbin0 -> 212 bytes-rw-r--r--default_images/dbaccess/res/jo01.pngbin0 -> 404 bytes-rw-r--r--default_images/dbaccess/res/jo02.pngbin0 -> 443 bytes-rw-r--r--default_images/dbaccess/res/joh01.pngbin0 -> 112 bytes-rw-r--r--default_images/dbaccess/res/joh02.pngbin0 -> 110 bytes-rw-r--r--default_images/dbaccess/res/lc036.pngbin0 -> 1146 bytes-rw-r--r--default_images/dbaccess/res/lc037.pngbin0 -> 1173 bytes-rw-r--r--default_images/dbaccess/res/lc038.pngbin0 -> 1091 bytes-rw-r--r--default_images/dbaccess/res/lc039.pngbin0 -> 989 bytes-rw-r--r--default_images/dbaccess/res/lc040.pngbin0 -> 1583 bytes-rw-r--r--default_images/dbaccess/res/lch036.pngbin0 -> 173 bytes-rw-r--r--default_images/dbaccess/res/lch037.pngbin0 -> 186 bytes-rw-r--r--default_images/dbaccess/res/lch038.pngbin0 -> 202 bytes-rw-r--r--default_images/dbaccess/res/lch039.pngbin0 -> 166 bytes-rw-r--r--default_images/dbaccess/res/lch040.pngbin0 -> 237 bytes-rw-r--r--default_images/dbaccess/res/nu07.pngbin0 -> 477 bytes-rw-r--r--default_images/dbaccess/res/nu08.pngbin0 -> 510 bytes-rw-r--r--default_images/dbaccess/res/nu09.pngbin0 -> 454 bytes-rw-r--r--default_images/dbaccess/res/nuh07.pngbin0 -> 135 bytes-rw-r--r--default_images/dbaccess/res/nuh08.pngbin0 -> 140 bytes-rw-r--r--default_images/dbaccess/res/nuh09.pngbin0 -> 126 bytes-rw-r--r--default_images/dbaccess/res/one_left.pngbin0 -> 454 bytes-rw-r--r--default_images/dbaccess/res/one_left_h.pngbin0 -> 101 bytes-rw-r--r--default_images/dbaccess/res/one_right.pngbin0 -> 465 bytes-rw-r--r--default_images/dbaccess/res/one_right_h.pngbin0 -> 101 bytes-rw-r--r--default_images/dbaccess/res/pkey.pngbin0 -> 390 bytes-rw-r--r--default_images/dbaccess/res/pkey_sch.pngbin0 -> 110 bytes-rw-r--r--default_images/dbaccess/res/queries_32.pngbin0 -> 1107 bytes-rw-r--r--default_images/dbaccess/res/queries_32_h.pngbin0 -> 203 bytes-rw-r--r--default_images/dbaccess/res/report_16.pngbin0 -> 644 bytes-rw-r--r--default_images/dbaccess/res/report_16_h.pngbin0 -> 102 bytes-rw-r--r--default_images/dbaccess/res/reports_16.pngbin0 -> 656 bytes-rw-r--r--default_images/dbaccess/res/reports_16_h.pngbin0 -> 130 bytes-rw-r--r--default_images/dbaccess/res/reports_32.pngbin0 -> 1653 bytes-rw-r--r--default_images/dbaccess/res/reports_32_h.pngbin0 -> 213 bytes-rw-r--r--default_images/dbaccess/res/sc036.pngbin0 -> 771 bytes-rw-r--r--default_images/dbaccess/res/sc037.pngbin0 -> 765 bytes-rw-r--r--default_images/dbaccess/res/sc038.pngbin0 -> 755 bytes-rw-r--r--default_images/dbaccess/res/sc039.pngbin0 -> 706 bytes-rw-r--r--default_images/dbaccess/res/sc040.pngbin0 -> 873 bytes-rw-r--r--default_images/dbaccess/res/sch036.pngbin0 -> 146 bytes-rw-r--r--default_images/dbaccess/res/sch037.pngbin0 -> 163 bytes-rw-r--r--default_images/dbaccess/res/sch038.pngbin0 -> 177 bytes-rw-r--r--default_images/dbaccess/res/sch039.pngbin0 -> 146 bytes-rw-r--r--default_images/dbaccess/res/sch040.pngbin0 -> 176 bytes-rw-r--r--default_images/dbaccess/res/sortdown.pngbin0 -> 583 bytes-rw-r--r--default_images/dbaccess/res/sortdown_h.pngbin0 -> 174 bytes-rw-r--r--default_images/dbaccess/res/sortup.pngbin0 -> 574 bytes-rw-r--r--default_images/dbaccess/res/sortup_h.pngbin0 -> 176 bytes-rw-r--r--default_images/dbaccess/res/sxh03187.pngbin0 -> 142 bytes-rw-r--r--default_images/dbaccess/res/sxh16670.pngbin0 -> 168 bytes-rw-r--r--default_images/dbaccess/res/tables_32.pngbin0 -> 1353 bytes-rw-r--r--default_images/dbaccess/res/tables_32_h.pngbin0 -> 222 bytes-rw-r--r--default_images/desktop/res/caution_12.pngbin0 -> 548 bytes-rw-r--r--default_images/desktop/res/caution_12_h.pngbin0 -> 142 bytes-rw-r--r--default_images/desktop/res/caution_16.pngbin0 -> 733 bytes-rw-r--r--default_images/desktop/res/caution_16_h.pngbin0 -> 152 bytes-rw-r--r--default_images/desktop/res/extension_16.pngbin0 -> 557 bytes-rw-r--r--default_images/desktop/res/extension_16_h.pngbin0 -> 148 bytes-rw-r--r--default_images/desktop/res/extension_32.pngbin0 -> 1298 bytes-rw-r--r--default_images/desktop/res/extension_32_h.pngbin0 -> 225 bytes-rw-r--r--default_images/desktop/res/info_16.pngbin0 -> 801 bytes-rw-r--r--default_images/desktop/res/info_16_h.pngbin0 -> 370 bytes-rw-r--r--default_images/desktop/res/lock_16.pngbin0 -> 973 bytes-rw-r--r--default_images/desktop/res/lock_16_h.pngbin0 -> 151 bytes-rw-r--r--default_images/desktop/res/regkey.pngbin0 -> 1130 bytes-rw-r--r--default_images/desktop/res/shared_16.pngbin0 -> 4055 bytes-rw-r--r--default_images/desktop/res/shared_16_h.pngbin0 -> 3650 bytes-rw-r--r--default_images/extensions/res/addresspilot.pngbin0 -> 1410 bytes-rw-r--r--default_images/extensions/res/arrow.pngbin0 -> 537 bytes-rw-r--r--default_images/extensions/res/buttonminus.pngbin0 -> 457 bytes-rw-r--r--default_images/extensions/res/buttonminus_hc.pngbin0 -> 122 bytes-rw-r--r--default_images/extensions/res/buttonplus.pngbin0 -> 424 bytes-rw-r--r--default_images/extensions/res/buttonplus_hc.pngbin0 -> 228 bytes-rw-r--r--default_images/extensions/res/m_arrow.pngbin0 -> 526 bytes-rw-r--r--default_images/extensions/source/scanner/handle.pngbin0 -> 195 bytes-rw-r--r--default_images/extensions/source/scanner/minus.pngbin0 -> 293 bytes-rw-r--r--default_images/extensions/source/scanner/plus.pngbin0 -> 331 bytes-rw-r--r--default_images/extensions/source/update/ui/onlineupdate_16.pngbin0 -> 529 bytes-rw-r--r--default_images/extensions/source/update/ui/onlineupdate_16_h.pngbin0 -> 141 bytes-rw-r--r--default_images/extensions/source/update/ui/onlineupdate_26.pngbin0 -> 866 bytes-rw-r--r--default_images/extensions/source/update/ui/onlineupdate_26_h.pngbin0 -> 171 bytes-rw-r--r--default_images/formula/res/fapclose.pngbin0 -> 440 bytes-rw-r--r--default_images/formula/res/fapclose_h.pngbin0 -> 109 bytes-rw-r--r--default_images/formula/res/faperror.pngbin0 -> 453 bytes-rw-r--r--default_images/formula/res/faperror_h.pngbin0 -> 107 bytes-rw-r--r--default_images/formula/res/fapok.pngbin0 -> 444 bytes-rw-r--r--default_images/formula/res/fapok_h.pngbin0 -> 107 bytes-rw-r--r--default_images/formula/res/fapopen.pngbin0 -> 736 bytes-rw-r--r--default_images/formula/res/fapopen_h.pngbin0 -> 126 bytes-rw-r--r--default_images/formula/res/fx.pngbin0 -> 500 bytes-rw-r--r--default_images/formula/res/fx_h.pngbin0 -> 124 bytes-rw-r--r--default_images/formula/res/refinp1.pngbin0 -> 629 bytes-rw-r--r--default_images/formula/res/refinp1_h.pngbin0 -> 119 bytes-rw-r--r--default_images/formula/res/refinp2.pngbin0 -> 569 bytes-rw-r--r--default_images/formula/res/refinp2_h.pngbin0 -> 122 bytes-rw-r--r--default_images/fpicker/res/fp011.pngbin0 -> 705 bytes-rw-r--r--default_images/fpicker/res/fp014.pngbin0 -> 663 bytes-rw-r--r--default_images/fpicker/res/fph011.pngbin0 -> 135 bytes-rw-r--r--default_images/fpicker/res/fph014.pngbin0 -> 125 bytes-rw-r--r--default_images/fpicker/res/list.pngbin0 -> 202 bytes-rw-r--r--default_images/framework/res/addtemplate_32.pngbin0 -> 4077 bytes-rw-r--r--default_images/framework/res/arrow.pngbin0 -> 537 bytes-rw-r--r--default_images/framework/res/backing.pngbin0 -> 15255 bytes-rw-r--r--default_images/framework/res/backing_hc.pngbin0 -> 6358 bytes-rw-r--r--default_images/framework/res/backing_right.pngbin0 -> 23733 bytes-rw-r--r--default_images/framework/res/backing_right_hc.pngbin0 -> 7922 bytes-rw-r--r--default_images/framework/res/backing_rtl_left.pngbin0 -> 15255 bytes-rw-r--r--default_images/framework/res/backing_rtl_left_hc.pngbin0 -> 6358 bytes-rw-r--r--default_images/framework/res/backing_rtl_right.pngbin0 -> 23733 bytes-rw-r--r--default_images/framework/res/backing_rtl_right_hc.pngbin0 -> 7922 bytes-rw-r--r--default_images/framework/res/backing_space.pngbin0 -> 3703 bytes-rw-r--r--default_images/framework/res/backing_space_hc.pngbin0 -> 3613 bytes-rw-r--r--default_images/framework/res/extension.pngbin0 -> 4076 bytes-rw-r--r--default_images/framework/res/extension_hc.pngbin0 -> 3755 bytes-rw-r--r--default_images/framework/res/folder_32.pngbin0 -> 4205 bytes-rw-r--r--default_images/framework/res/folder_32_hc.pngbin0 -> 3700 bytes-rw-r--r--default_images/framework/res/info_26.pngbin0 -> 4016 bytes-rw-r--r--default_images/framework/res/info_hc.pngbin0 -> 3649 bytes-rw-r--r--default_images/framework/res/logo.pngbin0 -> 695 bytes-rw-r--r--default_images/framework/res/register_32.pngbin0 -> 4175 bytes-rw-r--r--default_images/framework/res/register_hc.pngbin0 -> 3729 bytes-rw-r--r--default_images/framework/res/template_hc.pngbin0 -> 3703 bytes-rw-r--r--default_images/framework/res/templates_32.pngbin0 -> 4394 bytes-rw-r--r--default_images/framework/res/templates_32_hc.pngbin0 -> 3838 bytes-rw-r--r--default_images/goodies/res/bombe.bmpbin0 -> 630 bytes-rw-r--r--default_images/goodies/res/explos1.bmpbin0 -> 630 bytes-rw-r--r--default_images/goodies/res/explos2.bmpbin0 -> 630 bytes-rw-r--r--default_images/goodies/res/explos3.bmpbin0 -> 630 bytes-rw-r--r--default_images/goodies/res/fighter1.bmpbin0 -> 630 bytes-rw-r--r--default_images/goodies/res/fighterl.bmpbin0 -> 630 bytes-rw-r--r--default_images/goodies/res/fighterr.bmpbin0 -> 630 bytes-rw-r--r--default_images/goodies/res/helden.bmpbin0 -> 4438 bytes-rw-r--r--default_images/goodies/res/monitio1.bmpbin0 -> 630 bytes-rw-r--r--default_images/goodies/res/monitio2.bmpbin0 -> 630 bytes-rw-r--r--default_images/goodies/res/monstb1.bmpbin0 -> 630 bytes-rw-r--r--default_images/goodies/res/monstb2.bmpbin0 -> 630 bytes-rw-r--r--default_images/goodies/res/monstb3.bmpbin0 -> 630 bytes-rw-r--r--default_images/goodies/res/monstb4.bmpbin0 -> 630 bytes-rw-r--r--default_images/goodies/res/monster1.bmpbin0 -> 630 bytes-rw-r--r--default_images/goodies/res/monster2.bmpbin0 -> 630 bytes-rw-r--r--default_images/goodies/res/monster3.bmpbin0 -> 630 bytes-rw-r--r--default_images/goodies/res/monster4.bmpbin0 -> 630 bytes-rw-r--r--default_images/goodies/res/scores.bmpbin0 -> 52918 bytes-rw-r--r--default_images/goodies/res/swars.bmpbin0 -> 9118 bytes-rw-r--r--default_images/goodies/res/uvisibl1.bmpbin0 -> 630 bytes-rw-r--r--default_images/goodies/res/uvisibl2.bmpbin0 -> 630 bytes-rw-r--r--default_images/goodies/res/uvisibl3.bmpbin0 -> 630 bytes-rw-r--r--default_images/goodies/res/wall1.bmpbin0 -> 630 bytes-rw-r--r--default_images/goodies/res/wall10.bmpbin0 -> 630 bytes-rw-r--r--default_images/goodies/res/wall2.bmpbin0 -> 630 bytes-rw-r--r--default_images/goodies/res/wall3.bmpbin0 -> 630 bytes-rw-r--r--default_images/goodies/res/wall4.bmpbin0 -> 630 bytes-rw-r--r--default_images/goodies/res/wall5.bmpbin0 -> 630 bytes-rw-r--r--default_images/goodies/res/wall6.bmpbin0 -> 630 bytes-rw-r--r--default_images/goodies/res/wall7.bmpbin0 -> 630 bytes-rw-r--r--default_images/goodies/res/wall8.bmpbin0 -> 630 bytes-rw-r--r--default_images/goodies/res/wall9.bmpbin0 -> 630 bytes-rw-r--r--default_images/goodies/res/wlcome2.bmpbin0 -> 52918 bytes-rw-r--r--default_images/introabout/about.bmpbin0 -> 118614 bytes-rwxr-xr-xdefault_images/introabout/about.pngbin0 -> 11174 bytes-rw-r--r--default_images/introabout/intro.bmpbin0 -> 378718 bytes-rwxr-xr-xdefault_images/introabout/intro.pngbin0 -> 28663 bytes-rw-r--r--default_images/minimizer/minimizepresi_80.pngbin0 -> 6716 bytes-rw-r--r--default_images/minimizer/minimizepresi_80_h.pngbin0 -> 4233 bytes-rw-r--r--default_images/minimizer/opt_16.pngbin0 -> 4033 bytes-rw-r--r--default_images/minimizer/opt_16_h.pngbin0 -> 3683 bytes-rw-r--r--default_images/minimizer/opt_26.pngbin0 -> 4401 bytes-rw-r--r--default_images/minimizer/opt_26_h.pngbin0 -> 3845 bytes-rw-r--r--default_images/oracleirm/res/irmprotecteditem.bmp0
-rw-r--r--default_images/padmin/source/butter.pngbin0 -> 1834 bytes-rw-r--r--default_images/padmin/source/fax.pngbin0 -> 730 bytes-rwxr-xr-xdefault_images/padmin/source/fax_16_h.pngbin0 -> 152 bytes-rw-r--r--default_images/padmin/source/pdf.pngbin0 -> 610 bytes-rw-r--r--default_images/padmin/source/print.pngbin0 -> 577 bytes-rwxr-xr-xdefault_images/padmin/source/printer_16_h.pngbin0 -> 133 bytes-rwxr-xr-xdefault_images/padmin/source/printer_40x48_h.pngbin0 -> 301 bytes-rw-r--r--default_images/padmin/source/printer_large.pngbin0 -> 1429 bytes-rwxr-xr-xdefault_images/padmin/source/printpdf_16_h.pngbin0 -> 150 bytes-rw-r--r--default_images/reportdesign/res/report_16.pngbin0 -> 644 bytes-rw-r--r--default_images/reportdesign/res/sc20557.pngbin0 -> 510 bytes-rwxr-xr-xdefault_images/reportdesign/res/sc30768.pngbin0 -> 583 bytes-rwxr-xr-xdefault_images/reportdesign/res/sc30769.pngbin0 -> 3927 bytes-rwxr-xr-xdefault_images/reportdesign/res/sc30770.pngbin0 -> 510 bytes-rwxr-xr-xdefault_images/reportdesign/res/sch30768.pngbin0 -> 348 bytes-rwxr-xr-xdefault_images/reportdesign/res/sch30769.pngbin0 -> 3670 bytes-rwxr-xr-xdefault_images/reportdesign/res/sch30770.pngbin0 -> 140 bytes-rw-r--r--default_images/reportdesign/res/sortdown.pngbin0 -> 583 bytes-rw-r--r--default_images/reportdesign/res/sortdown_h.pngbin0 -> 174 bytes-rw-r--r--default_images/reportdesign/res/sortup.pngbin0 -> 574 bytes-rw-r--r--default_images/reportdesign/res/sortup_h.pngbin0 -> 176 bytes-rw-r--r--default_images/reportdesign/res/sx10454.pngbin0 -> 498 bytes-rw-r--r--default_images/reportdesign/res/sx10928.pngbin0 -> 337 bytes-rw-r--r--default_images/reportdesign/res/sx10929.pngbin0 -> 394 bytes-rw-r--r--default_images/reportdesign/res/sx11047.pngbin0 -> 671 bytes-rw-r--r--default_images/reportdesign/res/sx12452.pngbin0 -> 863 bytes-rw-r--r--default_images/reportdesign/res/sx12453.pngbin0 -> 863 bytes-rw-r--r--default_images/reportdesign/res/sx12454.pngbin0 -> 546 bytes-rw-r--r--default_images/reportdesign/res/sx12464.pngbin0 -> 644 bytes-rw-r--r--default_images/reportdesign/res/sx12466.pngbin0 -> 499 bytes-rw-r--r--default_images/reportdesign/res/sx12468.pngbin0 -> 501 bytes-rw-r--r--default_images/reportdesign/res/sx12477.pngbin0 -> 394 bytes-rw-r--r--default_images/reportdesign/res/sx12594.pngbin0 -> 543 bytes-rw-r--r--default_images/reportdesign/res/sx12602.pngbin0 -> 498 bytes-rw-r--r--default_images/reportdesign/res/sx12603.pngbin0 -> 501 bytes-rw-r--r--default_images/reportdesign/res/sxh10454.pngbin0 -> 259 bytes-rw-r--r--default_images/reportdesign/res/sxh10928.pngbin0 -> 101 bytes-rw-r--r--default_images/reportdesign/res/sxh10929.pngbin0 -> 101 bytes-rw-r--r--default_images/reportdesign/res/sxh11047.pngbin0 -> 131 bytes-rw-r--r--default_images/reportdesign/res/sxh12452.pngbin0 -> 863 bytes-rw-r--r--default_images/reportdesign/res/sxh12453.pngbin0 -> 863 bytes-rw-r--r--default_images/reportdesign/res/sxh12454.pngbin0 -> 260 bytes-rw-r--r--default_images/reportdesign/res/sxh12464.pngbin0 -> 644 bytes-rw-r--r--default_images/reportdesign/res/sxh12466.pngbin0 -> 264 bytes-rw-r--r--default_images/reportdesign/res/sxh12468.pngbin0 -> 272 bytes-rw-r--r--default_images/reportdesign/res/sxh12477.pngbin0 -> 101 bytes-rw-r--r--default_images/reportdesign/res/sxh12594.pngbin0 -> 129 bytes-rw-r--r--default_images/reportdesign/res/sxh12602.pngbin0 -> 259 bytes-rw-r--r--default_images/reportdesign/res/sxh12603.pngbin0 -> 216 bytes-rw-r--r--default_images/res/adrbook.pngbin0 -> 998 bytes-rw-r--r--default_images/res/adrbook_hc.pngbin0 -> 128 bytes-rw-r--r--default_images/res/arrow_move_down.pngbin0 -> 583 bytes-rw-r--r--default_images/res/arrow_move_down_hc.pngbin0 -> 334 bytes-rw-r--r--default_images/res/arrow_move_up.pngbin0 -> 574 bytes-rw-r--r--default_images/res/arrow_move_up_hc.pngbin0 -> 176 bytes-rw-r--r--default_images/res/arrowup_16.pngbin0 -> 583 bytes-rw-r--r--default_images/res/ballgreen_7.pngbin0 -> 269 bytes-rw-r--r--default_images/res/ballred_7.pngbin0 -> 241 bytes-rw-r--r--default_images/res/basbrk.pngbin0 -> 608 bytes-rw-r--r--default_images/res/basgocl.pngbin0 -> 203 bytes-rw-r--r--default_images/res/basobj2.pngbin0 -> 195 bytes-rw-r--r--default_images/res/baswatr.pngbin0 -> 780 bytes-rw-r--r--default_images/res/baswatr_h.pngbin0 -> 181 bytes-rw-r--r--default_images/res/browse.pngbin0 -> 816 bytes-rw-r--r--default_images/res/browse_hc.pngbin0 -> 167 bytes-rw-r--r--default_images/res/commandimagelist/ar/lc_bold.pngbin0 -> 473 bytes-rw-r--r--default_images/res/commandimagelist/ar/lc_italic.pngbin0 -> 440 bytes-rw-r--r--default_images/res/commandimagelist/ar/lc_underline.pngbin0 -> 424 bytes-rw-r--r--default_images/res/commandimagelist/ar/lch_bold.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/ar/lch_italic.pngbin0 -> 425 bytes-rw-r--r--default_images/res/commandimagelist/ar/lch_underline.pngbin0 -> 177 bytes-rw-r--r--default_images/res/commandimagelist/ar/sc_bold.pngbin0 -> 328 bytes-rw-r--r--default_images/res/commandimagelist/ar/sc_italic.pngbin0 -> 304 bytes-rw-r--r--default_images/res/commandimagelist/ar/sc_underline.pngbin0 -> 341 bytes-rw-r--r--default_images/res/commandimagelist/ar/sch_bold.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/ar/sch_italic.pngbin0 -> 289 bytes-rw-r--r--default_images/res/commandimagelist/ar/sch_underline.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_backcolor.pngbin0 -> 735 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_bold.pngbin0 -> 519 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_dbqueryrename.pngbin0 -> 405 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_dbtablerename.pngbin0 -> 405 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_doubleclicktextedit.pngbin0 -> 452 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_edit.pngbin0 -> 333 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_editglossary.pngbin0 -> 557 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_hyphenate.pngbin0 -> 343 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_hyphenation.pngbin0 -> 343 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_insertedit.pngbin0 -> 333 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_italic.pngbin0 -> 545 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_label.pngbin0 -> 272 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_ordercrit.pngbin0 -> 564 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_pickthrough.pngbin0 -> 409 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_shadowed.pngbin0 -> 805 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_sortascending.pngbin0 -> 719 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_sortdescending.pngbin0 -> 695 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_sortdown.pngbin0 -> 695 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_sortup.pngbin0 -> 719 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_spelldialog.pngbin0 -> 485 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_spelling.pngbin0 -> 485 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_spellonline.pngbin0 -> 314 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_strikeout.pngbin0 -> 386 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_tablesort.pngbin0 -> 564 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_textdraft.pngbin0 -> 515 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_thesaurus.pngbin0 -> 485 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_thesaurusdialog.pngbin0 -> 485 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_underline.pngbin0 -> 508 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_underlinedouble.pngbin0 -> 509 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_backcolor.pngbin0 -> 218 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_bold.pngbin0 -> 446 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_doubleclicktextedit.pngbin0 -> 184 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_edit.pngbin0 -> 153 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_editglossary.pngbin0 -> 220 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_hyphenate.pngbin0 -> 153 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_hyphenation.pngbin0 -> 153 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_insertedit.pngbin0 -> 153 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_insertfixedtext.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_italic.pngbin0 -> 498 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_label.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_ordercrit.pngbin0 -> 454 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_pickthrough.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_quickedit.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_sortascending.pngbin0 -> 490 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_sortdescending.pngbin0 -> 488 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_sortdown.pngbin0 -> 488 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_sortup.pngbin0 -> 490 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_spelldialog.pngbin0 -> 184 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_spelling.pngbin0 -> 182 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_spellonline.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_strikeout.pngbin0 -> 196 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_tablesort.pngbin0 -> 454 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_thesaurus.pngbin0 -> 168 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_thesaurusdialog.pngbin0 -> 168 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_toggleaxistitle.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_toggletitle.pngbin0 -> 154 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_underline.pngbin0 -> 435 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_underlinedouble.pngbin0 -> 436 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_backcolor.pngbin0 -> 406 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_bold.pngbin0 -> 372 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_dbqueryrename.pngbin0 -> 287 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_dbtablerename.pngbin0 -> 287 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_doubleclicktextedit.pngbin0 -> 326 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_edit.pngbin0 -> 264 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_editglossary.pngbin0 -> 345 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_hyphenate.pngbin0 -> 229 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_hyphenation.pngbin0 -> 229 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_insertedit.pngbin0 -> 264 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_insertfixedtext.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_italic.pngbin0 -> 347 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_label.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_ordercrit.pngbin0 -> 362 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_quickedit.pngbin0 -> 263 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_shadowed.pngbin0 -> 605 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_sortascending.pngbin0 -> 446 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_sortdescending.pngbin0 -> 440 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_sortdown.pngbin0 -> 440 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_sortup.pngbin0 -> 444 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_spelldialog.pngbin0 -> 340 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_spelling.pngbin0 -> 340 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_spellonline.pngbin0 -> 229 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_strikeout.pngbin0 -> 231 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_tablesort.pngbin0 -> 362 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_textdraft.pngbin0 -> 400 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_thesaurus.pngbin0 -> 350 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_thesaurusdialog.pngbin0 -> 350 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_underline.pngbin0 -> 365 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_underlinedouble.pngbin0 -> 388 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_backcolor.pngbin0 -> 185 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_bold.pngbin0 -> 297 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_editglossary.pngbin0 -> 165 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_hyphenate.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_hyphenation.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_insertedit.pngbin0 -> 116 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_italic.pngbin0 -> 318 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_label.pngbin0 -> 104 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_ordercrit.pngbin0 -> 316 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_pickthrough.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_sortascending.pngbin0 -> 337 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_sortdescending.pngbin0 -> 345 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_sortdown.pngbin0 -> 345 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_sortup.pngbin0 -> 337 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_spelldialog.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_spelling.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_spellonline.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_strikeout.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_tablesort.pngbin0 -> 316 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_thesaurus.pngbin0 -> 137 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_thesaurusdialog.pngbin0 -> 137 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_underline.pngbin0 -> 319 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_underlinedouble.pngbin0 -> 319 bytes-rw-r--r--default_images/res/commandimagelist/ca/lc_bold.pngbin0 -> 396 bytes-rw-r--r--default_images/res/commandimagelist/ca/lc_italic.pngbin0 -> 531 bytes-rw-r--r--default_images/res/commandimagelist/ca/lc_underline.pngbin0 -> 521 bytes-rw-r--r--default_images/res/commandimagelist/ca/lc_underlinedouble.pngbin0 -> 531 bytes-rw-r--r--default_images/res/commandimagelist/ca/lch_bold.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/ca/lch_italic.pngbin0 -> 489 bytes-rw-r--r--default_images/res/commandimagelist/ca/lch_underline.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/ca/lch_underlinedouble.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/ca/sc_bold.pngbin0 -> 296 bytes-rw-r--r--default_images/res/commandimagelist/ca/sc_italic.pngbin0 -> 368 bytes-rw-r--r--default_images/res/commandimagelist/ca/sc_underline.pngbin0 -> 386 bytes-rw-r--r--default_images/res/commandimagelist/ca/sc_underlinedouble.pngbin0 -> 394 bytes-rw-r--r--default_images/res/commandimagelist/ca/sch_bold.pngbin0 -> 105 bytes-rw-r--r--default_images/res/commandimagelist/ca/sch_italic.pngbin0 -> 339 bytes-rw-r--r--default_images/res/commandimagelist/ca/sch_underline.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/ca/sch_underlinedouble.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/cs/lc_bold.pngbin0 -> 473 bytes-rw-r--r--default_images/res/commandimagelist/cs/lc_italic.pngbin0 -> 440 bytes-rw-r--r--default_images/res/commandimagelist/cs/lc_numberformatdecimal.pngbin0 -> 671 bytes-rw-r--r--default_images/res/commandimagelist/cs/lc_underline.pngbin0 -> 424 bytes-rw-r--r--default_images/res/commandimagelist/cs/lc_underlinedouble.pngbin0 -> 424 bytes-rw-r--r--default_images/res/commandimagelist/cs/lch_bold.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/cs/lch_italic.pngbin0 -> 425 bytes-rw-r--r--default_images/res/commandimagelist/cs/lch_numberformatdecimal.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/cs/lch_underline.pngbin0 -> 177 bytes-rw-r--r--default_images/res/commandimagelist/cs/lch_underlinedouble.pngbin0 -> 178 bytes-rw-r--r--default_images/res/commandimagelist/cs/sc_bold.pngbin0 -> 328 bytes-rw-r--r--default_images/res/commandimagelist/cs/sc_italic.pngbin0 -> 304 bytes-rw-r--r--default_images/res/commandimagelist/cs/sc_numberformatdecimal.pngbin0 -> 485 bytes-rw-r--r--default_images/res/commandimagelist/cs/sc_underline.pngbin0 -> 341 bytes-rw-r--r--default_images/res/commandimagelist/cs/sc_underlinedouble.pngbin0 -> 361 bytes-rw-r--r--default_images/res/commandimagelist/cs/sch_bold.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/cs/sch_italic.pngbin0 -> 289 bytes-rw-r--r--default_images/res/commandimagelist/cs/sch_numberformatdecimal.pngbin0 -> 119 bytes-rw-r--r--default_images/res/commandimagelist/cs/sch_underline.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/cs/sch_underlinedouble.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/de/lc_bold.pngbin0 -> 452 bytes-rw-r--r--default_images/res/commandimagelist/de/lc_italic.pngbin0 -> 846 bytes-rw-r--r--default_images/res/commandimagelist/de/lc_numberformatdecimal.pngbin0 -> 703 bytes-rw-r--r--default_images/res/commandimagelist/de/lc_underline.pngbin0 -> 570 bytes-rw-r--r--default_images/res/commandimagelist/de/lc_underlinedouble.pngbin0 -> 560 bytes-rw-r--r--default_images/res/commandimagelist/de/lch_bold.pngbin0 -> 321 bytes-rw-r--r--default_images/res/commandimagelist/de/lch_italic.pngbin0 -> 190 bytes-rw-r--r--default_images/res/commandimagelist/de/lch_numberformatdecimal.pngbin0 -> 151 bytes-rw-r--r--default_images/res/commandimagelist/de/lch_underline.pngbin0 -> 177 bytes-rw-r--r--default_images/res/commandimagelist/de/lch_underlinedouble.pngbin0 -> 178 bytes-rw-r--r--default_images/res/commandimagelist/de/sc_bold.pngbin0 -> 354 bytes-rw-r--r--default_images/res/commandimagelist/de/sc_italic.pngbin0 -> 573 bytes-rw-r--r--default_images/res/commandimagelist/de/sc_numberformatdecimal.pngbin0 -> 488 bytes-rw-r--r--default_images/res/commandimagelist/de/sc_underline.pngbin0 -> 408 bytes-rw-r--r--default_images/res/commandimagelist/de/sc_underlinedouble.pngbin0 -> 425 bytes-rw-r--r--default_images/res/commandimagelist/de/sch_bold.pngbin0 -> 262 bytes-rw-r--r--default_images/res/commandimagelist/de/sch_italic.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/de/sch_numberformatdecimal.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/de/sch_underline.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/de/sch_underlinedouble.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/en-GB/lc_bold.pngbin0 -> 650 bytes-rw-r--r--default_images/res/commandimagelist/en-GB/lc_italic.pngbin0 -> 570 bytes-rw-r--r--default_images/res/commandimagelist/en-GB/lc_numberformatdecimal.pngbin0 -> 671 bytes-rw-r--r--default_images/res/commandimagelist/en-GB/lc_underline.pngbin0 -> 570 bytes-rw-r--r--default_images/res/commandimagelist/en-GB/lc_underlinedouble.pngbin0 -> 560 bytes-rw-r--r--default_images/res/commandimagelist/en-GB/lch_bold.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/en-GB/lch_italic.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/en-GB/lch_numberformatdecimal.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/en-GB/lch_underline.pngbin0 -> 177 bytes-rw-r--r--default_images/res/commandimagelist/en-GB/lch_underlinedouble.pngbin0 -> 178 bytes-rw-r--r--default_images/res/commandimagelist/en-GB/sc_bold.pngbin0 -> 473 bytes-rw-r--r--default_images/res/commandimagelist/en-GB/sc_italic.pngbin0 -> 412 bytes-rw-r--r--default_images/res/commandimagelist/en-GB/sc_numberformatdecimal.pngbin0 -> 485 bytes-rw-r--r--default_images/res/commandimagelist/en-GB/sc_underline.pngbin0 -> 408 bytes-rw-r--r--default_images/res/commandimagelist/en-GB/sc_underlinedouble.pngbin0 -> 425 bytes-rw-r--r--default_images/res/commandimagelist/en-GB/sch_bold.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/en-GB/sch_italic.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/en-GB/sch_numberformatdecimal.pngbin0 -> 119 bytes-rw-r--r--default_images/res/commandimagelist/en-GB/sch_underline.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/en-GB/sch_underlinedouble.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/es/lc_bold.pngbin0 -> 396 bytes-rw-r--r--default_images/res/commandimagelist/es/lc_italic.pngbin0 -> 531 bytes-rw-r--r--default_images/res/commandimagelist/es/lc_numberformatdecimal.pngbin0 -> 703 bytes-rw-r--r--default_images/res/commandimagelist/es/lc_underline.pngbin0 -> 521 bytes-rw-r--r--default_images/res/commandimagelist/es/lc_underlinedouble.pngbin0 -> 531 bytes-rw-r--r--default_images/res/commandimagelist/es/lch_bold.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/es/lch_italic.pngbin0 -> 489 bytes-rw-r--r--default_images/res/commandimagelist/es/lch_numberformatdecimal.pngbin0 -> 151 bytes-rw-r--r--default_images/res/commandimagelist/es/lch_underline.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/es/lch_underlinedouble.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/es/sc_bold.pngbin0 -> 296 bytes-rw-r--r--default_images/res/commandimagelist/es/sc_italic.pngbin0 -> 368 bytes-rw-r--r--default_images/res/commandimagelist/es/sc_numberformatdecimal.pngbin0 -> 488 bytes-rw-r--r--default_images/res/commandimagelist/es/sc_underline.pngbin0 -> 386 bytes-rw-r--r--default_images/res/commandimagelist/es/sc_underlinedouble.pngbin0 -> 394 bytes-rw-r--r--default_images/res/commandimagelist/es/sch_bold.pngbin0 -> 105 bytes-rw-r--r--default_images/res/commandimagelist/es/sch_italic.pngbin0 -> 339 bytes-rw-r--r--default_images/res/commandimagelist/es/sch_numberformatdecimal.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/es/sch_underline.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/es/sch_underlinedouble.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/et/lc_bold.pngbin0 -> 473 bytes-rw-r--r--default_images/res/commandimagelist/et/lc_italic.pngbin0 -> 440 bytes-rw-r--r--default_images/res/commandimagelist/et/lc_numberformatdecimal.pngbin0 -> 671 bytes-rw-r--r--default_images/res/commandimagelist/et/lc_underline.pngbin0 -> 424 bytes-rw-r--r--default_images/res/commandimagelist/et/lc_underlinedouble.pngbin0 -> 424 bytes-rw-r--r--default_images/res/commandimagelist/et/lch_bold.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/et/lch_italic.pngbin0 -> 425 bytes-rw-r--r--default_images/res/commandimagelist/et/lch_numberformatdecimal.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/et/lch_underline.pngbin0 -> 177 bytes-rw-r--r--default_images/res/commandimagelist/et/lch_underlinedouble.pngbin0 -> 178 bytes-rw-r--r--default_images/res/commandimagelist/et/sc_bold.pngbin0 -> 328 bytes-rw-r--r--default_images/res/commandimagelist/et/sc_italic.pngbin0 -> 304 bytes-rw-r--r--default_images/res/commandimagelist/et/sc_numberformatdecimal.pngbin0 -> 485 bytes-rw-r--r--default_images/res/commandimagelist/et/sc_underline.pngbin0 -> 339 bytes-rw-r--r--default_images/res/commandimagelist/et/sc_underlinedouble.pngbin0 -> 361 bytes-rw-r--r--default_images/res/commandimagelist/et/sch_bold.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/et/sch_italic.pngbin0 -> 289 bytes-rw-r--r--default_images/res/commandimagelist/et/sch_numberformatdecimal.pngbin0 -> 119 bytes-rw-r--r--default_images/res/commandimagelist/et/sch_underline.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/et/sch_underlinedouble.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/fr/lc_bold.pngbin0 -> 516 bytes-rw-r--r--default_images/res/commandimagelist/fr/lc_italic.pngbin0 -> 440 bytes-rw-r--r--default_images/res/commandimagelist/fr/lc_underline.pngbin0 -> 521 bytes-rw-r--r--default_images/res/commandimagelist/fr/lc_underlinedouble.pngbin0 -> 531 bytes-rw-r--r--default_images/res/commandimagelist/fr/lch_bold.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/fr/lch_italic.pngbin0 -> 425 bytes-rw-r--r--default_images/res/commandimagelist/fr/lch_underline.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/fr/lch_underlinedouble.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/fr/sc_bold.pngbin0 -> 366 bytes-rw-r--r--default_images/res/commandimagelist/fr/sc_italic.pngbin0 -> 304 bytes-rw-r--r--default_images/res/commandimagelist/fr/sc_underline.pngbin0 -> 386 bytes-rw-r--r--default_images/res/commandimagelist/fr/sc_underlinedouble.pngbin0 -> 394 bytes-rw-r--r--default_images/res/commandimagelist/fr/sch_bold.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/fr/sch_italic.pngbin0 -> 289 bytes-rw-r--r--default_images/res/commandimagelist/fr/sch_underline.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/fr/sch_underlinedouble.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/hu/lc_bold.pngbin0 -> 340 bytes-rw-r--r--default_images/res/commandimagelist/hu/lc_italic.pngbin0 -> 549 bytes-rw-r--r--default_images/res/commandimagelist/hu/lc_underline.pngbin0 -> 528 bytes-rw-r--r--default_images/res/commandimagelist/hu/lc_underlinedouble.pngbin0 -> 652 bytes-rw-r--r--default_images/res/commandimagelist/hu/lch_bold.pngbin0 -> 285 bytes-rw-r--r--default_images/res/commandimagelist/hu/lch_italic.pngbin0 -> 182 bytes-rw-r--r--default_images/res/commandimagelist/hu/lch_underline.pngbin0 -> 186 bytes-rw-r--r--default_images/res/commandimagelist/hu/lch_underlinedouble.pngbin0 -> 184 bytes-rw-r--r--default_images/res/commandimagelist/hu/sc_bold.pngbin0 -> 258 bytes-rw-r--r--default_images/res/commandimagelist/hu/sc_italic.pngbin0 -> 373 bytes-rw-r--r--default_images/res/commandimagelist/hu/sc_underline.pngbin0 -> 353 bytes-rw-r--r--default_images/res/commandimagelist/hu/sc_underlinedouble.pngbin0 -> 472 bytes-rw-r--r--default_images/res/commandimagelist/hu/sch_bold.pngbin0 -> 226 bytes-rw-r--r--default_images/res/commandimagelist/hu/sch_italic.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/hu/sch_underline.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/hu/sch_underlinedouble.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/it/lc_bold.pngbin0 -> 516 bytes-rw-r--r--default_images/res/commandimagelist/it/lc_italic.pngbin0 -> 531 bytes-rw-r--r--default_images/res/commandimagelist/it/lc_underline.pngbin0 -> 521 bytes-rw-r--r--default_images/res/commandimagelist/it/lc_underlinedouble.pngbin0 -> 531 bytes-rw-r--r--default_images/res/commandimagelist/it/lch_bold.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/it/lch_italic.pngbin0 -> 489 bytes-rw-r--r--default_images/res/commandimagelist/it/lch_underline.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/it/lch_underlinedouble.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/it/sc_bold.pngbin0 -> 366 bytes-rw-r--r--default_images/res/commandimagelist/it/sc_italic.pngbin0 -> 368 bytes-rw-r--r--default_images/res/commandimagelist/it/sc_underline.pngbin0 -> 386 bytes-rw-r--r--default_images/res/commandimagelist/it/sc_underlinedouble.pngbin0 -> 394 bytes-rw-r--r--default_images/res/commandimagelist/it/sch_bold.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/it/sch_italic.pngbin0 -> 339 bytes-rw-r--r--default_images/res/commandimagelist/it/sch_underline.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/it/sch_underlinedouble.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/ja/lc_bold.pngbin0 -> 473 bytes-rw-r--r--default_images/res/commandimagelist/ja/lc_italic.pngbin0 -> 440 bytes-rw-r--r--default_images/res/commandimagelist/ja/lc_underline.pngbin0 -> 424 bytes-rw-r--r--default_images/res/commandimagelist/ja/lc_underlinedouble.pngbin0 -> 424 bytes-rw-r--r--default_images/res/commandimagelist/ja/lch_bold.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/ja/lch_italic.pngbin0 -> 425 bytes-rw-r--r--default_images/res/commandimagelist/ja/lch_underline.pngbin0 -> 177 bytes-rw-r--r--default_images/res/commandimagelist/ja/lch_underlinedouble.pngbin0 -> 178 bytes-rw-r--r--default_images/res/commandimagelist/ja/sc_bold.pngbin0 -> 328 bytes-rw-r--r--default_images/res/commandimagelist/ja/sc_italic.pngbin0 -> 304 bytes-rw-r--r--default_images/res/commandimagelist/ja/sc_underline.pngbin0 -> 341 bytes-rw-r--r--default_images/res/commandimagelist/ja/sc_underlinedouble.pngbin0 -> 361 bytes-rw-r--r--default_images/res/commandimagelist/ja/sch_bold.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/ja/sch_italic.pngbin0 -> 289 bytes-rw-r--r--default_images/res/commandimagelist/ja/sch_underline.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/ja/sch_underlinedouble.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/km/lc_bold.pngbin0 -> 368 bytes-rw-r--r--default_images/res/commandimagelist/km/lc_italic.pngbin0 -> 608 bytes-rw-r--r--default_images/res/commandimagelist/km/lc_numberformatdecimal.pngbin0 -> 671 bytes-rw-r--r--default_images/res/commandimagelist/km/lc_underline.pngbin0 -> 573 bytes-rw-r--r--default_images/res/commandimagelist/km/lc_underlinedouble.pngbin0 -> 573 bytes-rw-r--r--default_images/res/commandimagelist/km/lch_bold.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/km/lch_italic.pngbin0 -> 556 bytes-rw-r--r--default_images/res/commandimagelist/km/lch_numberformatdecimal.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/km/lch_underline.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/km/lch_underlinedouble.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/km/sc_bold.pngbin0 -> 366 bytes-rw-r--r--default_images/res/commandimagelist/km/sc_italic.pngbin0 -> 495 bytes-rw-r--r--default_images/res/commandimagelist/km/sc_numberformatdecimal.pngbin0 -> 485 bytes-rw-r--r--default_images/res/commandimagelist/km/sc_underline.pngbin0 -> 497 bytes-rw-r--r--default_images/res/commandimagelist/km/sc_underlinedouble.pngbin0 -> 501 bytes-rw-r--r--default_images/res/commandimagelist/km/sch_bold.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/km/sch_italic.pngbin0 -> 483 bytes-rw-r--r--default_images/res/commandimagelist/km/sch_numberformatdecimal.pngbin0 -> 119 bytes-rw-r--r--default_images/res/commandimagelist/km/sch_underline.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/km/sch_underlinedouble.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_bold.pngbin0 -> 338 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_charfontname.pngbin0 -> 341 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_color.pngbin0 -> 349 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_drawtext.pngbin0 -> 318 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_fontcolor.pngbin0 -> 349 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_fontheight.pngbin0 -> 434 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_italic.pngbin0 -> 351 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_ordercrit.pngbin0 -> 315 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_outlinefont.pngbin0 -> 403 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_shadowed.pngbin0 -> 438 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_sortdown.pngbin0 -> 355 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_sortup.pngbin0 -> 368 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_strikeout.pngbin0 -> 341 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_tablesort.pngbin0 -> 315 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_text.pngbin0 -> 318 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_text_marquee.pngbin0 -> 413 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_textdirectionlefttoright.pngbin0 -> 362 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_textdirectiontoptobottom.pngbin0 -> 346 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_texttoolbox.pngbin0 -> 318 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_underline.pngbin0 -> 357 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_underlinedouble.pngbin0 -> 362 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_verticaltext.pngbin0 -> 312 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_bold.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_charfontname.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_color.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_drawtext.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_fontcolor.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_fontheight.pngbin0 -> 216 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_italic.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_ordercrit.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_outlinefont.pngbin0 -> 153 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_shadowed.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_sortdown.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_sortup.pngbin0 -> 153 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_strikeout.pngbin0 -> 154 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_tablesort.pngbin0 -> 116 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_text.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_text_marquee.pngbin0 -> 168 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_textdirectionlefttoright.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_textdirectiontoptobottom.pngbin0 -> 150 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_texttoolbox.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_underline.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_underlinedouble.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_verticaltext.pngbin0 -> 119 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_bold.pngbin0 -> 269 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_charfontname.pngbin0 -> 257 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_color.pngbin0 -> 271 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_drawtext.pngbin0 -> 258 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_fontcolor.pngbin0 -> 271 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_fontheight.pngbin0 -> 301 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_italic.pngbin0 -> 252 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_ordercrit.pngbin0 -> 244 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_outlinefont.pngbin0 -> 299 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_shadowed.pngbin0 -> 308 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_sortdown.pngbin0 -> 307 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_sortup.pngbin0 -> 281 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_strikeout.pngbin0 -> 263 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_tablesort.pngbin0 -> 244 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_text.pngbin0 -> 258 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_text_marquee.pngbin0 -> 267 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_textdirectionlefttoright.pngbin0 -> 283 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_textdirectiontoptobottom.pngbin0 -> 272 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_texttoolbox.pngbin0 -> 258 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_underline.pngbin0 -> 285 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_underlinedouble.pngbin0 -> 281 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_verticaltext.pngbin0 -> 243 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_bold.pngbin0 -> 113 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_charfontname.pngbin0 -> 105 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_color.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_drawtext.pngbin0 -> 105 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_fontcolor.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_fontheight.pngbin0 -> 137 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_italic.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_ordercrit.pngbin0 -> 243 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_outlinefont.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_shadowed.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_sortdown.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_sortup.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_strikeout.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_tablesort.pngbin0 -> 243 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_text.pngbin0 -> 105 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_text_marquee.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_textdirectionlefttoright.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_textdirectiontoptobottom.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_texttoolbox.pngbin0 -> 105 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_underline.pngbin0 -> 117 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_underlinedouble.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_verticaltext.pngbin0 -> 107 bytes-rw-r--r--default_images/res/commandimagelist/lc_absoluterecord.pngbin0 -> 1509 bytes-rw-r--r--default_images/res/commandimagelist/lc_actionmode.pngbin0 -> 1322 bytes-rw-r--r--default_images/res/commandimagelist/lc_addbookmark.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/lc_adddatefield.pngbin0 -> 818 bytes-rw-r--r--default_images/res/commandimagelist/lc_adddirect.pngbin0 -> 666 bytes-rw-r--r--default_images/res/commandimagelist/lc_addfield.pngbin0 -> 727 bytes-rw-r--r--default_images/res/commandimagelist/lc_addons.pngbin0 -> 897 bytes-rw-r--r--default_images/res/commandimagelist/lc_addprintarea.pngbin0 -> 796 bytes-rw-r--r--default_images/res/commandimagelist/lc_addtable.pngbin0 -> 740 bytes-rw-r--r--default_images/res/commandimagelist/lc_addwatch.pngbin0 -> 879 bytes-rw-r--r--default_images/res/commandimagelist/lc_adjust.pngbin0 -> 1348 bytes-rw-r--r--default_images/res/commandimagelist/lc_advancedmode.pngbin0 -> 1572 bytes-rw-r--r--default_images/res/commandimagelist/lc_alignblock.pngbin0 -> 479 bytes-rw-r--r--default_images/res/commandimagelist/lc_alignbottom.pngbin0 -> 851 bytes-rw-r--r--default_images/res/commandimagelist/lc_aligncenter.pngbin0 -> 985 bytes-rw-r--r--default_images/res/commandimagelist/lc_aligndown.pngbin0 -> 725 bytes-rw-r--r--default_images/res/commandimagelist/lc_alignhorizontalcenter.pngbin0 -> 493 bytes-rw-r--r--default_images/res/commandimagelist/lc_alignleft.pngbin0 -> 487 bytes-rw-r--r--default_images/res/commandimagelist/lc_alignmiddle.pngbin0 -> 955 bytes-rw-r--r--default_images/res/commandimagelist/lc_alignright.pngbin0 -> 486 bytes-rw-r--r--default_images/res/commandimagelist/lc_aligntop.pngbin0 -> 861 bytes-rw-r--r--default_images/res/commandimagelist/lc_alignup.pngbin0 -> 717 bytes-rw-r--r--default_images/res/commandimagelist/lc_alignvcenter.pngbin0 -> 973 bytes-rw-r--r--default_images/res/commandimagelist/lc_alignverticalcenter.pngbin0 -> 973 bytes-rw-r--r--default_images/res/commandimagelist/lc_animationeffects.pngbin0 -> 1029 bytes-rw-r--r--default_images/res/commandimagelist/lc_animationmode.pngbin0 -> 1406 bytes-rw-r--r--default_images/res/commandimagelist/lc_animationobjects.pngbin0 -> 949 bytes-rw-r--r--default_images/res/commandimagelist/lc_apply.pngbin0 -> 1435 bytes-rw-r--r--default_images/res/commandimagelist/lc_arc.pngbin0 -> 1042 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.chevron.pngbin0 -> 904 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.circular-arrow.pngbin0 -> 1267 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.corner-right-arrow.pngbin0 -> 748 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.down-arrow-callout.pngbin0 -> 834 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.down-arrow.pngbin0 -> 905 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.left-arrow-callout.pngbin0 -> 812 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.left-arrow.pngbin0 -> 794 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.left-right-arrow-callout.pngbin0 -> 920 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.left-right-arrow.pngbin0 -> 882 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.notched-right-arrow.pngbin0 -> 900 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.pentagon-right.pngbin0 -> 745 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.pngbin0 -> 882 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.quad-arrow-callout.pngbin0 -> 1318 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.quad-arrow.pngbin0 -> 1054 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.right-arrow-callout.pngbin0 -> 827 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.right-arrow.pngbin0 -> 822 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.s-sharped-arrow.pngbin0 -> 1235 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.split-arrow.pngbin0 -> 1008 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.split-round-arrow.pngbin0 -> 1252 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.striped-right-arrow.pngbin0 -> 860 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.up-arrow-callout.pngbin0 -> 755 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.up-arrow.pngbin0 -> 794 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.up-down-arrow-callout.pngbin0 -> 1012 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.up-down-arrow.pngbin0 -> 994 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.up-right-arrow-callout.pngbin0 -> 1013 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.up-right-arrow.pngbin0 -> 913 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.up-right-down-arrow.pngbin0 -> 979 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowstoolbox.pngbin0 -> 616 bytes-rw-r--r--default_images/res/commandimagelist/lc_assignlayout.pngbin0 -> 4055 bytes-rw-r--r--default_images/res/commandimagelist/lc_autocontrolfocus.pngbin0 -> 1022 bytes-rw-r--r--default_images/res/commandimagelist/lc_autofilter.pngbin0 -> 1321 bytes-rw-r--r--default_images/res/commandimagelist/lc_autoformat.pngbin0 -> 1362 bytes-rw-r--r--default_images/res/commandimagelist/lc_autosum.pngbin0 -> 921 bytes-rw-r--r--default_images/res/commandimagelist/lc_avmediaplayer.pngbin0 -> 773 bytes-rw-r--r--default_images/res/commandimagelist/lc_backcolor.pngbin0 -> 1205 bytes-rw-r--r--default_images/res/commandimagelist/lc_backgroundcolor.pngbin0 -> 1126 bytes-rw-r--r--default_images/res/commandimagelist/lc_backgroundpatterncontroller.pngbin0 -> 1126 bytes-rw-r--r--default_images/res/commandimagelist/lc_backward.pngbin0 -> 564 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.block-arc.pngbin0 -> 1146 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.can.pngbin0 -> 1177 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.circle-pie.pngbin0 -> 1178 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.circle.pngbin0 -> 1329 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.cross.pngbin0 -> 714 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.cube.pngbin0 -> 878 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.diamond.pngbin0 -> 1030 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.ellipse.pngbin0 -> 1165 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.frame.pngbin0 -> 709 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.hexagon.pngbin0 -> 839 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.isosceles-triangle.pngbin0 -> 774 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.octagon.pngbin0 -> 880 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.paper.pngbin0 -> 758 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.parallelogram.pngbin0 -> 831 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.pentagon.pngbin0 -> 811 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.pngbin0 -> 1030 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.quadrat.pngbin0 -> 566 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.rectangle.pngbin0 -> 507 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.right-triangle.pngbin0 -> 729 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.ring.pngbin0 -> 1845 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.round-quadrat.pngbin0 -> 782 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.round-rectangle.pngbin0 -> 711 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.trapezoid.pngbin0 -> 736 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicstepinto.pngbin0 -> 1173 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicstepout.pngbin0 -> 1167 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicstepover.pngbin0 -> 1215 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicstop.pngbin0 -> 885 bytes-rw-r--r--default_images/res/commandimagelist/lc_beamer.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/lc_beforeobject.pngbin0 -> 942 bytes-rw-r--r--default_images/res/commandimagelist/lc_behindobject.pngbin0 -> 1077 bytes-rw-r--r--default_images/res/commandimagelist/lc_bezier_unfilled.pngbin0 -> 917 bytes-rw-r--r--default_images/res/commandimagelist/lc_bezierappend.pngbin0 -> 733 bytes-rw-r--r--default_images/res/commandimagelist/lc_bezierclose.pngbin0 -> 585 bytes-rw-r--r--default_images/res/commandimagelist/lc_bezierconvert.pngbin0 -> 996 bytes-rw-r--r--default_images/res/commandimagelist/lc_beziercutline.pngbin0 -> 1620 bytes-rw-r--r--default_images/res/commandimagelist/lc_bezierdelete.pngbin0 -> 734 bytes-rw-r--r--default_images/res/commandimagelist/lc_bezieredge.pngbin0 -> 490 bytes-rw-r--r--default_images/res/commandimagelist/lc_beziereliminatepoints.pngbin0 -> 816 bytes-rw-r--r--default_images/res/commandimagelist/lc_bezierfill.pngbin0 -> 1176 bytes-rw-r--r--default_images/res/commandimagelist/lc_bezierinsert.pngbin0 -> 814 bytes-rw-r--r--default_images/res/commandimagelist/lc_beziermove.pngbin0 -> 834 bytes-rw-r--r--default_images/res/commandimagelist/lc_beziersmooth.pngbin0 -> 621 bytes-rw-r--r--default_images/res/commandimagelist/lc_beziersymmetric.pngbin0 -> 730 bytes-rw-r--r--default_images/res/commandimagelist/lc_bighandles.pngbin0 -> 450 bytes-rw-r--r--default_images/res/commandimagelist/lc_bold.pngbin0 -> 650 bytes-rw-r--r--default_images/res/commandimagelist/lc_borderdialog.pngbin0 -> 339 bytes-rw-r--r--default_images/res/commandimagelist/lc_bringtofront.pngbin0 -> 632 bytes-rw-r--r--default_images/res/commandimagelist/lc_browsebackward.pngbin0 -> 1042 bytes-rw-r--r--default_images/res/commandimagelist/lc_browseforward.pngbin0 -> 1039 bytes-rw-r--r--default_images/res/commandimagelist/lc_browseview.pngbin0 -> 1493 bytes-rw-r--r--default_images/res/commandimagelist/lc_bullet.pngbin0 -> 1739 bytes-rw-r--r--default_images/res/commandimagelist/lc_bulletsandnumberingdialog.pngbin0 -> 934 bytes-rw-r--r--default_images/res/commandimagelist/lc_calloutshapes.cloud-callout.pngbin0 -> 1593 bytes-rw-r--r--default_images/res/commandimagelist/lc_calloutshapes.line-callout-1.pngbin0 -> 743 bytes-rw-r--r--default_images/res/commandimagelist/lc_calloutshapes.line-callout-2.pngbin0 -> 715 bytes-rw-r--r--default_images/res/commandimagelist/lc_calloutshapes.line-callout-3.pngbin0 -> 605 bytes-rw-r--r--default_images/res/commandimagelist/lc_calloutshapes.pngbin0 -> 1102 bytes-rw-r--r--default_images/res/commandimagelist/lc_calloutshapes.rectangular-callout.pngbin0 -> 774 bytes-rw-r--r--default_images/res/commandimagelist/lc_calloutshapes.round-callout.pngbin0 -> 1350 bytes-rw-r--r--default_images/res/commandimagelist/lc_calloutshapes.round-rectangular-callout.pngbin0 -> 1102 bytes-rw-r--r--default_images/res/commandimagelist/lc_cancel.pngbin0 -> 1119 bytes-rw-r--r--default_images/res/commandimagelist/lc_cellvertbottom.pngbin0 -> 851 bytes-rw-r--r--default_images/res/commandimagelist/lc_cellvertcenter.pngbin0 -> 973 bytes-rw-r--r--default_images/res/commandimagelist/lc_cellverttop.pngbin0 -> 861 bytes-rw-r--r--default_images/res/commandimagelist/lc_centerpara.pngbin0 -> 493 bytes-rw-r--r--default_images/res/commandimagelist/lc_chainframes.pngbin0 -> 877 bytes-rw-r--r--default_images/res/commandimagelist/lc_changebezier.pngbin0 -> 1292 bytes-rw-r--r--default_images/res/commandimagelist/lc_changepolygon.pngbin0 -> 1354 bytes-rw-r--r--default_images/res/commandimagelist/lc_charfontname.pngbin0 -> 1355 bytes-rw-r--r--default_images/res/commandimagelist/lc_checkbox.pngbin0 -> 871 bytes-rw-r--r--default_images/res/commandimagelist/lc_choosecontrols.pngbin0 -> 1334 bytes-rw-r--r--default_images/res/commandimagelist/lc_choosedesign.pngbin0 -> 1199 bytes-rw-r--r--default_images/res/commandimagelist/lc_choosemacro.pngbin0 -> 1981 bytes-rw-r--r--default_images/res/commandimagelist/lc_choosepolygon.pngbin0 -> 625 bytes-rw-r--r--default_images/res/commandimagelist/lc_circle.pngbin0 -> 1329 bytes-rw-r--r--default_images/res/commandimagelist/lc_circle_unfilled.pngbin0 -> 1315 bytes-rw-r--r--default_images/res/commandimagelist/lc_circlearc.pngbin0 -> 1105 bytes-rw-r--r--default_images/res/commandimagelist/lc_circlecut.pngbin0 -> 1329 bytes-rw-r--r--default_images/res/commandimagelist/lc_circlecut_unfilled.pngbin0 -> 1365 bytes-rw-r--r--default_images/res/commandimagelist/lc_circlepie.pngbin0 -> 1178 bytes-rw-r--r--default_images/res/commandimagelist/lc_circlepie_unfilled.pngbin0 -> 1190 bytes-rw-r--r--default_images/res/commandimagelist/lc_clickchangerotation.pngbin0 -> 1690 bytes-rw-r--r--default_images/res/commandimagelist/lc_closedoc.pngbin0 -> 1097 bytes-rw-r--r--default_images/res/commandimagelist/lc_closedocs.pngbin0 -> 582 bytes-rw-r--r--default_images/res/commandimagelist/lc_closemasterview.pngbin0 -> 1194 bytes-rw-r--r--default_images/res/commandimagelist/lc_closewin.pngbin0 -> 1097 bytes-rw-r--r--default_images/res/commandimagelist/lc_color.pngbin0 -> 1019 bytes-rw-r--r--default_images/res/commandimagelist/lc_colorsettings.pngbin0 -> 1115 bytes-rw-r--r--default_images/res/commandimagelist/lc_colorview.pngbin0 -> 678 bytes-rw-r--r--default_images/res/commandimagelist/lc_combobox.pngbin0 -> 1175 bytes-rw-r--r--default_images/res/commandimagelist/lc_commontaskbarvisible.pngbin0 -> 1017 bytes-rw-r--r--default_images/res/commandimagelist/lc_compilebasic.pngbin0 -> 1071 bytes-rw-r--r--default_images/res/commandimagelist/lc_cone.pngbin0 -> 925 bytes-rw-r--r--default_images/res/commandimagelist/lc_config.pngbin0 -> 1334 bytes-rw-r--r--default_images/res/commandimagelist/lc_connector.pngbin0 -> 652 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorarrowend.pngbin0 -> 828 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorarrows.pngbin0 -> 843 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorarrowstart.pngbin0 -> 826 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorcircleend.pngbin0 -> 823 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorcircles.pngbin0 -> 773 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorcirclestart.pngbin0 -> 820 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorcurve.pngbin0 -> 801 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorcurvearrowend.pngbin0 -> 956 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorcurvearrows.pngbin0 -> 976 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorcurvearrowstart.pngbin0 -> 979 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorcurvecircleend.pngbin0 -> 934 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorcurvecircles.pngbin0 -> 903 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorcurvecirclestart.pngbin0 -> 967 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorline.pngbin0 -> 728 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorlinearrowend.pngbin0 -> 838 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorlinearrows.pngbin0 -> 875 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorlinearrowstart.pngbin0 -> 872 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorlinecircleend.pngbin0 -> 891 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorlinecircles.pngbin0 -> 819 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorlinecirclestart.pngbin0 -> 890 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorlines.pngbin0 -> 796 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorlinesarrowend.pngbin0 -> 901 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorlinesarrows.pngbin0 -> 952 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorlinesarrowstart.pngbin0 -> 906 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorlinescircleend.pngbin0 -> 870 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorlinescircles.pngbin0 -> 818 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorlinescirclestart.pngbin0 -> 894 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectortoolbox.pngbin0 -> 773 bytes-rw-r--r--default_images/res/commandimagelist/lc_contourdialog.pngbin0 -> 1043 bytes-rw-r--r--default_images/res/commandimagelist/lc_controlcodes.pngbin0 -> 731 bytes-rw-r--r--default_images/res/commandimagelist/lc_controlproperties.pngbin0 -> 1095 bytes-rw-r--r--default_images/res/commandimagelist/lc_convertinto3d.pngbin0 -> 1189 bytes-rw-r--r--default_images/res/commandimagelist/lc_convertinto3dlathe.pngbin0 -> 1225 bytes-rw-r--r--default_images/res/commandimagelist/lc_convertinto3dlathefast.pngbin0 -> 1325 bytes-rw-r--r--default_images/res/commandimagelist/lc_copy.pngbin0 -> 855 bytes-rw-r--r--default_images/res/commandimagelist/lc_countall.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/lc_crookrotate.pngbin0 -> 1191 bytes-rw-r--r--default_images/res/commandimagelist/lc_crookslant.pngbin0 -> 1381 bytes-rw-r--r--default_images/res/commandimagelist/lc_crop.pngbin0 -> 1946 bytes-rw-r--r--default_images/res/commandimagelist/lc_cube.pngbin0 -> 944 bytes-rw-r--r--default_images/res/commandimagelist/lc_currencyfield.pngbin0 -> 1219 bytes-rw-r--r--default_images/res/commandimagelist/lc_customanimation.pngbin0 -> 1348 bytes-rw-r--r--default_images/res/commandimagelist/lc_cut.pngbin0 -> 1623 bytes-rw-r--r--default_images/res/commandimagelist/lc_cylinder.pngbin0 -> 1167 bytes-rw-r--r--default_images/res/commandimagelist/lc_cyramid.pngbin0 -> 1051 bytes-rw-r--r--default_images/res/commandimagelist/lc_datadatapilotrun.pngbin0 -> 1156 bytes-rw-r--r--default_images/res/commandimagelist/lc_datafilterautofilter.pngbin0 -> 1321 bytes-rw-r--r--default_images/res/commandimagelist/lc_datafilterspecialfilter.pngbin0 -> 836 bytes-rw-r--r--default_images/res/commandimagelist/lc_datafilterstandardfilter.pngbin0 -> 809 bytes-rw-r--r--default_images/res/commandimagelist/lc_dataimport.pngbin0 -> 631 bytes-rw-r--r--default_images/res/commandimagelist/lc_dataincolumns.pngbin0 -> 502 bytes-rw-r--r--default_images/res/commandimagelist/lc_datainrows.pngbin0 -> 588 bytes-rw-r--r--default_images/res/commandimagelist/lc_datefield.pngbin0 -> 818 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbaddrelation.pngbin0 -> 944 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbchangedesignmode.pngbin0 -> 1266 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbclearquery.pngbin0 -> 1343 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbdistinctvalues.pngbin0 -> 1076 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbdtableedit.pngbin0 -> 923 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbformdelete.pngbin0 -> 1182 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbformedit.pngbin0 -> 1135 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbformopen.pngbin0 -> 1056 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbformrename.pngbin0 -> 824 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbindexdesign.pngbin0 -> 1169 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbnewform.pngbin0 -> 1146 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbnewformautopilot.pngbin0 -> 1468 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbnewquery.pngbin0 -> 1322 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbnewqueryautopilot.pngbin0 -> 1662 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbnewquerysql.pngbin0 -> 1136 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbnewreport.pngbin0 -> 1257 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbnewreportautopilot.pngbin0 -> 1581 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbnewtable.pngbin0 -> 983 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbnewtableautopilot.pngbin0 -> 1401 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbnewview.pngbin0 -> 1220 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbnewviewsql.pngbin0 -> 1282 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbquerydelete.pngbin0 -> 999 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbqueryedit.pngbin0 -> 1256 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbqueryopen.pngbin0 -> 1332 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbqueryrename.pngbin0 -> 609 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbreportdelete.pngbin0 -> 1277 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbreportedit.pngbin0 -> 1177 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbreportopen.pngbin0 -> 1189 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbreportrename.pngbin0 -> 891 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbsortingandgrouping.pngbin0 -> 798 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbtabledelete.pngbin0 -> 999 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbtableedit.pngbin0 -> 923 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbtableopen.pngbin0 -> 1024 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbtablerename.pngbin0 -> 609 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbviewaliases.pngbin0 -> 651 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbviewfunctions.pngbin0 -> 743 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbviewtablenames.pngbin0 -> 668 bytes-rw-r--r--default_images/res/commandimagelist/lc_decrementindent.pngbin0 -> 840 bytes-rw-r--r--default_images/res/commandimagelist/lc_decrementlevel.pngbin0 -> 866 bytes-rw-r--r--default_images/res/commandimagelist/lc_decrementsublevels.pngbin0 -> 1079 bytes-rw-r--r--default_images/res/commandimagelist/lc_defaultbullet.pngbin0 -> 544 bytes-rw-r--r--default_images/res/commandimagelist/lc_defaultnumbering.pngbin0 -> 584 bytes-rw-r--r--default_images/res/commandimagelist/lc_definename.pngbin0 -> 621 bytes-rw-r--r--default_images/res/commandimagelist/lc_defineprintarea.pngbin0 -> 1108 bytes-rw-r--r--default_images/res/commandimagelist/lc_delete.pngbin0 -> 999 bytes-rwxr-xr-xdefault_images/res/commandimagelist/lc_deleteallannotation.pngbin0 -> 4560 bytes-rwxr-xr-xdefault_images/res/commandimagelist/lc_deleteannotation.pngbin0 -> 4526 bytes-rw-r--r--default_images/res/commandimagelist/lc_deletecolumns.pngbin0 -> 748 bytes-rw-r--r--default_images/res/commandimagelist/lc_deletemasterpage.pngbin0 -> 1268 bytes-rw-r--r--default_images/res/commandimagelist/lc_deleteprintarea.pngbin0 -> 1075 bytes-rw-r--r--default_images/res/commandimagelist/lc_deleterecord.pngbin0 -> 1239 bytes-rw-r--r--default_images/res/commandimagelist/lc_deleterows.pngbin0 -> 565 bytes-rw-r--r--default_images/res/commandimagelist/lc_designerdialog.pngbin0 -> 970 bytes-rw-r--r--default_images/res/commandimagelist/lc_dia.pngbin0 -> 1171 bytes-rw-r--r--default_images/res/commandimagelist/lc_diaauto.pngbin0 -> 1171 bytes-rw-r--r--default_images/res/commandimagelist/lc_diaeffect.pngbin0 -> 1171 bytes-rw-r--r--default_images/res/commandimagelist/lc_diagramdata.pngbin0 -> 558 bytes-rw-r--r--default_images/res/commandimagelist/lc_diagramtype.pngbin0 -> 1069 bytes-rw-r--r--default_images/res/commandimagelist/lc_diaspeed.pngbin0 -> 1171 bytes-rw-r--r--default_images/res/commandimagelist/lc_diatime.pngbin0 -> 1171 bytes-rw-r--r--default_images/res/commandimagelist/lc_distributecolumns.pngbin0 -> 893 bytes-rw-r--r--default_images/res/commandimagelist/lc_distributerows.pngbin0 -> 610 bytes-rw-r--r--default_images/res/commandimagelist/lc_doubleclicktextedit.pngbin0 -> 1272 bytes-rw-r--r--default_images/res/commandimagelist/lc_downsearch.pngbin0 -> 4270 bytes-rw-r--r--default_images/res/commandimagelist/lc_draw.pngbin0 -> 1603 bytes-rw-r--r--default_images/res/commandimagelist/lc_drawcaption.pngbin0 -> 1403 bytes-rw-r--r--default_images/res/commandimagelist/lc_drawchart.pngbin0 -> 887 bytes-rw-r--r--default_images/res/commandimagelist/lc_drawselect.pngbin0 -> 806 bytes-rw-r--r--default_images/res/commandimagelist/lc_drawtext.pngbin0 -> 682 bytes-rw-r--r--default_images/res/commandimagelist/lc_dsbdocumentdatasource.pngbin0 -> 1786 bytes-rw-r--r--default_images/res/commandimagelist/lc_dsbeditdoc.pngbin0 -> 1094 bytes-rw-r--r--default_images/res/commandimagelist/lc_dsbformletter.pngbin0 -> 1062 bytes-rw-r--r--default_images/res/commandimagelist/lc_dsbinsertcolumns.pngbin0 -> 778 bytes-rw-r--r--default_images/res/commandimagelist/lc_dsbinsertcontent.pngbin0 -> 787 bytes-rw-r--r--default_images/res/commandimagelist/lc_dsbrowserexplorer.pngbin0 -> 1004 bytes-rw-r--r--default_images/res/commandimagelist/lc_duplicatepage.pngbin0 -> 1389 bytes-rw-r--r--default_images/res/commandimagelist/lc_edit.pngbin0 -> 895 bytes-rw-r--r--default_images/res/commandimagelist/lc_editdoc.pngbin0 -> 1094 bytes-rw-r--r--default_images/res/commandimagelist/lc_editframeset.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/lc_editglossary.pngbin0 -> 1169 bytes-rw-r--r--default_images/res/commandimagelist/lc_editheaderandfooter.pngbin0 -> 677 bytes-rw-r--r--default_images/res/commandimagelist/lc_editprintarea.pngbin0 -> 1013 bytes-rw-r--r--default_images/res/commandimagelist/lc_ellipse.pngbin0 -> 1165 bytes-rw-r--r--default_images/res/commandimagelist/lc_ellipse_unfilled.pngbin0 -> 1196 bytes-rw-r--r--default_images/res/commandimagelist/lc_ellipsecut.pngbin0 -> 1122 bytes-rw-r--r--default_images/res/commandimagelist/lc_ellipsecut_unfilled.pngbin0 -> 1160 bytes-rw-r--r--default_images/res/commandimagelist/lc_ellipsetoolbox.pngbin0 -> 1165 bytes-rw-r--r--default_images/res/commandimagelist/lc_entergroup.pngbin0 -> 1017 bytes-rw-r--r--default_images/res/commandimagelist/lc_entirecolumn.pngbin0 -> 1120 bytes-rw-r--r--default_images/res/commandimagelist/lc_entirerow.pngbin0 -> 925 bytes-rw-r--r--default_images/res/commandimagelist/lc_euroconverter.pngbin0 -> 1024 bytes-rw-r--r--default_images/res/commandimagelist/lc_executereport.pngbin0 -> 1068 bytes-rw-r--r--default_images/res/commandimagelist/lc_expandpage.pngbin0 -> 683 bytes-rw-r--r--default_images/res/commandimagelist/lc_exportdialog.pngbin0 -> 886 bytes-rw-r--r--default_images/res/commandimagelist/lc_exportdirecttopdf.pngbin0 -> 841 bytes-rw-r--r--default_images/res/commandimagelist/lc_exportto.pngbin0 -> 1131 bytes-rw-r--r--default_images/res/commandimagelist/lc_extendedhelp.pngbin0 -> 2077 bytes-rw-r--r--default_images/res/commandimagelist/lc_extrusion3dcolor.pngbin0 -> 762 bytes-rw-r--r--default_images/res/commandimagelist/lc_extrusiondepthfloater.pngbin0 -> 1246 bytes-rw-r--r--default_images/res/commandimagelist/lc_extrusiondirectionfloater.pngbin0 -> 1255 bytes-rw-r--r--default_images/res/commandimagelist/lc_extrusionlightingfloater.pngbin0 -> 710 bytes-rw-r--r--default_images/res/commandimagelist/lc_extrusionsurfacefloater.pngbin0 -> 2093 bytes-rw-r--r--default_images/res/commandimagelist/lc_extrusiontiltdown.pngbin0 -> 1633 bytes-rw-r--r--default_images/res/commandimagelist/lc_extrusiontiltleft.pngbin0 -> 1724 bytes-rw-r--r--default_images/res/commandimagelist/lc_extrusiontiltright.pngbin0 -> 1763 bytes-rw-r--r--default_images/res/commandimagelist/lc_extrusiontiltup.pngbin0 -> 1633 bytes-rw-r--r--default_images/res/commandimagelist/lc_extrusiontoggle.pngbin0 -> 1290 bytes-rw-r--r--default_images/res/commandimagelist/lc_fieldnames.pngbin0 -> 735 bytes-rw-r--r--default_images/res/commandimagelist/lc_fields.pngbin0 -> 735 bytes-rw-r--r--default_images/res/commandimagelist/lc_filecontrol.pngbin0 -> 1037 bytes-rw-r--r--default_images/res/commandimagelist/lc_filedocument.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/lc_fillshadow.pngbin0 -> 547 bytes-rw-r--r--default_images/res/commandimagelist/lc_fillstyle.pngbin0 -> 1133 bytes-rw-r--r--default_images/res/commandimagelist/lc_filtercrit.pngbin0 -> 809 bytes-rw-r--r--default_images/res/commandimagelist/lc_firstpage.pngbin0 -> 1103 bytes-rw-r--r--default_images/res/commandimagelist/lc_firstrecord.pngbin0 -> 810 bytes-rw-r--r--default_images/res/commandimagelist/lc_fliphorizontal.pngbin0 -> 844 bytes-rw-r--r--default_images/res/commandimagelist/lc_flipvertical.pngbin0 -> 902 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-alternate-process.pngbin0 -> 782 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-card.pngbin0 -> 631 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-collate.pngbin0 -> 978 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-connector.pngbin0 -> 1329 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-data.pngbin0 -> 831 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-decision.pngbin0 -> 1030 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-delay.pngbin0 -> 1069 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-direct-access-storage.pngbin0 -> 1110 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-display.pngbin0 -> 879 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-document.pngbin0 -> 1063 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-extract.pngbin0 -> 774 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-internal-storage.pngbin0 -> 663 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-magnetic-disk.pngbin0 -> 1177 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-manual-input.pngbin0 -> 665 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-manual-operation.pngbin0 -> 736 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-merge.pngbin0 -> 814 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-multidocument.pngbin0 -> 1013 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-off-page-connector.pngbin0 -> 782 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-or.pngbin0 -> 1442 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-predefined-process.pngbin0 -> 694 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-preparation.pngbin0 -> 839 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-process.pngbin0 -> 566 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-punched-tape.pngbin0 -> 1474 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-sequential-access.pngbin0 -> 1244 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-sort.pngbin0 -> 1013 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-stored-data.pngbin0 -> 914 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-summing-junction.pngbin0 -> 1682 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-terminator.pngbin0 -> 699 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.pngbin0 -> 663 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontcolor.pngbin0 -> 1019 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontdialog.pngbin0 -> 1421 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontheight.pngbin0 -> 1547 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontwork.pngbin0 -> 834 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkalignmentfloater.pngbin0 -> 493 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkcharacterspacingfloater.pngbin0 -> 1220 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkgalleryfloater.pngbin0 -> 875 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworksameletterheights.pngbin0 -> 751 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-arch-down-curve.pngbin0 -> 576 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-arch-down-pour.pngbin0 -> 555 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-arch-left-curve.pngbin0 -> 573 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-arch-left-pour.pngbin0 -> 577 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-arch-right-curve.pngbin0 -> 580 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-arch-right-pour.pngbin0 -> 563 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-arch-up-curve.pngbin0 -> 569 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-arch-up-pour.pngbin0 -> 550 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-chevron-down.pngbin0 -> 413 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-chevron-up.pngbin0 -> 389 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-circle-curve.pngbin0 -> 701 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-circle-pour.pngbin0 -> 687 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-curve-down.pngbin0 -> 488 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-curve-up.pngbin0 -> 491 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-fade-down.pngbin0 -> 375 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-fade-left.pngbin0 -> 365 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-fade-right.pngbin0 -> 355 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-fade-up-and-left.pngbin0 -> 409 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-fade-up-and-right.pngbin0 -> 382 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-fade-up.pngbin0 -> 369 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-inflate.pngbin0 -> 357 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-open-circle-curve.pngbin0 -> 727 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-open-circle-pour.pngbin0 -> 717 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-plain-text.pngbin0 -> 300 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-slant-down.pngbin0 -> 377 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-slant-up.pngbin0 -> 376 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-stop.pngbin0 -> 353 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-triangle-down.pngbin0 -> 409 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-triangle-up.pngbin0 -> 388 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-wave.pngbin0 -> 518 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.pngbin0 -> 834 bytes-rw-r--r--default_images/res/commandimagelist/lc_formatarea.pngbin0 -> 1133 bytes-rw-r--r--default_images/res/commandimagelist/lc_formatgroup.pngbin0 -> 771 bytes-rw-r--r--default_images/res/commandimagelist/lc_formatline.pngbin0 -> 849 bytes-rw-r--r--default_images/res/commandimagelist/lc_formatpaintbrush.pngbin0 -> 1687 bytes-rw-r--r--default_images/res/commandimagelist/lc_formattedfield.pngbin0 -> 870 bytes-rw-r--r--default_images/res/commandimagelist/lc_formatungroup.pngbin0 -> 690 bytes-rw-r--r--default_images/res/commandimagelist/lc_formdesigntools.pngbin0 -> 1039 bytes-rw-r--r--default_images/res/commandimagelist/lc_formelcursor.pngbin0 -> 677 bytes-rw-r--r--default_images/res/commandimagelist/lc_formfilter.pngbin0 -> 961 bytes-rw-r--r--default_images/res/commandimagelist/lc_formfiltered.pngbin0 -> 1041 bytes-rw-r--r--default_images/res/commandimagelist/lc_formfilterexecute.pngbin0 -> 809 bytes-rw-r--r--default_images/res/commandimagelist/lc_formfilternavigator.pngbin0 -> 1444 bytes-rw-r--r--default_images/res/commandimagelist/lc_formproperties.pngbin0 -> 993 bytes-rw-r--r--default_images/res/commandimagelist/lc_forward.pngbin0 -> 574 bytes-rw-r--r--default_images/res/commandimagelist/lc_framedialog.pngbin0 -> 894 bytes-rw-r--r--default_images/res/commandimagelist/lc_framelinecolor.pngbin0 -> 446 bytes-rw-r--r--default_images/res/commandimagelist/lc_freeline.pngbin0 -> 1236 bytes-rw-r--r--default_images/res/commandimagelist/lc_freeline_unfilled.pngbin0 -> 1115 bytes-rw-r--r--default_images/res/commandimagelist/lc_fullscreen.pngbin0 -> 736 bytes-rw-r--r--default_images/res/commandimagelist/lc_gallery.pngbin0 -> 1058 bytes-rw-r--r--default_images/res/commandimagelist/lc_getactivetask.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/lc_glueeditmode.pngbin0 -> 1186 bytes-rw-r--r--default_images/res/commandimagelist/lc_glueescapedirectionbottom.pngbin0 -> 807 bytes-rw-r--r--default_images/res/commandimagelist/lc_glueescapedirectionleft.pngbin0 -> 808 bytes-rw-r--r--default_images/res/commandimagelist/lc_glueescapedirectionright.pngbin0 -> 824 bytes-rw-r--r--default_images/res/commandimagelist/lc_glueescapedirectiontop.pngbin0 -> 836 bytes-rw-r--r--default_images/res/commandimagelist/lc_gluehorzaligncenter.pngbin0 -> 851 bytes-rw-r--r--default_images/res/commandimagelist/lc_gluehorzalignleft.pngbin0 -> 863 bytes-rw-r--r--default_images/res/commandimagelist/lc_gluehorzalignright.pngbin0 -> 886 bytes-rw-r--r--default_images/res/commandimagelist/lc_glueinsertpoint.pngbin0 -> 945 bytes-rw-r--r--default_images/res/commandimagelist/lc_gluepercent.pngbin0 -> 1035 bytes-rw-r--r--default_images/res/commandimagelist/lc_gluevertalignbottom.pngbin0 -> 900 bytes-rw-r--r--default_images/res/commandimagelist/lc_gluevertaligncenter.pngbin0 -> 818 bytes-rw-r--r--default_images/res/commandimagelist/lc_gluevertaligntop.pngbin0 -> 897 bytes-rw-r--r--default_images/res/commandimagelist/lc_goalseekdialog.pngbin0 -> 1271 bytes-rw-r--r--default_images/res/commandimagelist/lc_gotoend.pngbin0 -> 964 bytes-rw-r--r--default_images/res/commandimagelist/lc_gotoendofdoc.pngbin0 -> 1057 bytes-rw-r--r--default_images/res/commandimagelist/lc_gotostartofdoc.pngbin0 -> 1103 bytes-rw-r--r--default_images/res/commandimagelist/lc_gotostartoftable.pngbin0 -> 943 bytes-rw-r--r--default_images/res/commandimagelist/lc_grafattrcrop.pngbin0 -> 1946 bytes-rw-r--r--default_images/res/commandimagelist/lc_grafblue.pngbin0 -> 843 bytes-rw-r--r--default_images/res/commandimagelist/lc_grafcontrast.pngbin0 -> 1202 bytes-rw-r--r--default_images/res/commandimagelist/lc_grafgamma.pngbin0 -> 1387 bytes-rw-r--r--default_images/res/commandimagelist/lc_grafgreen.pngbin0 -> 847 bytes-rw-r--r--default_images/res/commandimagelist/lc_grafinvert.pngbin0 -> 744 bytes-rw-r--r--default_images/res/commandimagelist/lc_grafluminance.pngbin0 -> 1339 bytes-rw-r--r--default_images/res/commandimagelist/lc_grafmode.pngbin0 -> 1131 bytes-rw-r--r--default_images/res/commandimagelist/lc_grafred.pngbin0 -> 828 bytes-rw-r--r--default_images/res/commandimagelist/lc_graftransparence.pngbin0 -> 895 bytes-rw-r--r--default_images/res/commandimagelist/lc_graphic.pngbin0 -> 1102 bytes-rw-r--r--default_images/res/commandimagelist/lc_graphicfilterinvert.pngbin0 -> 744 bytes-rw-r--r--default_images/res/commandimagelist/lc_graphicfiltermosaic.pngbin0 -> 382 bytes-rw-r--r--default_images/res/commandimagelist/lc_graphicfilterpopart.pngbin0 -> 439 bytes-rw-r--r--default_images/res/commandimagelist/lc_graphicfilterposter.pngbin0 -> 1359 bytes-rw-r--r--default_images/res/commandimagelist/lc_graphicfilterrelief.pngbin0 -> 1113 bytes-rw-r--r--default_images/res/commandimagelist/lc_graphicfilterremovenoise.pngbin0 -> 875 bytes-rw-r--r--default_images/res/commandimagelist/lc_graphicfiltersepia.pngbin0 -> 1331 bytes-rw-r--r--default_images/res/commandimagelist/lc_graphicfiltersharpen.pngbin0 -> 701 bytes-rw-r--r--default_images/res/commandimagelist/lc_graphicfiltersmooth.pngbin0 -> 792 bytes-rw-r--r--default_images/res/commandimagelist/lc_graphicfiltersobel.pngbin0 -> 588 bytes-rw-r--r--default_images/res/commandimagelist/lc_graphicfiltersolarize.pngbin0 -> 1053 bytes-rw-r--r--default_images/res/commandimagelist/lc_graphicfiltertoolbox.pngbin0 -> 1005 bytes-rw-r--r--default_images/res/commandimagelist/lc_greatestheight.pngbin0 -> 945 bytes-rw-r--r--default_images/res/commandimagelist/lc_greatestwidth.pngbin0 -> 790 bytes-rw-r--r--default_images/res/commandimagelist/lc_grid.pngbin0 -> 558 bytes-rw-r--r--default_images/res/commandimagelist/lc_griduse.pngbin0 -> 711 bytes-rw-r--r--default_images/res/commandimagelist/lc_gridvisible.pngbin0 -> 398 bytes-rw-r--r--default_images/res/commandimagelist/lc_group.pngbin0 -> 631 bytes-rw-r--r--default_images/res/commandimagelist/lc_groupbox.pngbin0 -> 891 bytes-rw-r--r--default_images/res/commandimagelist/lc_grow.pngbin0 -> 1456 bytes-rw-r--r--default_images/res/commandimagelist/lc_halfsphere.pngbin0 -> 1570 bytes-rw-r--r--default_images/res/commandimagelist/lc_handlesdraft.pngbin0 -> 497 bytes-rw-r--r--default_images/res/commandimagelist/lc_help.pngbin0 -> 1446 bytes-rw-r--r--default_images/res/commandimagelist/lc_helpannotate.pngbin0 -> 923 bytes-rw-r--r--default_images/res/commandimagelist/lc_helpbookmark.pngbin0 -> 718 bytes-rw-r--r--default_images/res/commandimagelist/lc_helpdownload.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/lc_helperdialog.pngbin0 -> 1828 bytes-rw-r--r--default_images/res/commandimagelist/lc_helpindex.pngbin0 -> 1828 bytes-rw-r--r--default_images/res/commandimagelist/lc_helplinesmove.pngbin0 -> 758 bytes-rw-r--r--default_images/res/commandimagelist/lc_helplinesuse.pngbin0 -> 793 bytes-rw-r--r--default_images/res/commandimagelist/lc_helplinesvisible.pngbin0 -> 504 bytes-rw-r--r--default_images/res/commandimagelist/lc_helpmenu.pngbin0 -> 1623 bytes-rw-r--r--default_images/res/commandimagelist/lc_helpsearch.pngbin0 -> 1005 bytes-rw-r--r--default_images/res/commandimagelist/lc_helpzoomin.pngbin0 -> 1425 bytes-rw-r--r--default_images/res/commandimagelist/lc_helpzoomout.pngbin0 -> 1382 bytes-rw-r--r--default_images/res/commandimagelist/lc_hfixedline.pngbin0 -> 508 bytes-rw-r--r--default_images/res/commandimagelist/lc_hideslide.pngbin0 -> 871 bytes-rw-r--r--default_images/res/commandimagelist/lc_hscrollbar.pngbin0 -> 948 bytes-rw-r--r--default_images/res/commandimagelist/lc_hyperlinkdialog.pngbin0 -> 2569 bytes-rw-r--r--default_images/res/commandimagelist/lc_hyphenate.pngbin0 -> 837 bytes-rw-r--r--default_images/res/commandimagelist/lc_hyphenation.pngbin0 -> 837 bytes-rw-r--r--default_images/res/commandimagelist/lc_imagebutton.pngbin0 -> 945 bytes-rw-r--r--default_images/res/commandimagelist/lc_imagecontrol.pngbin0 -> 940 bytes-rw-r--r--default_images/res/commandimagelist/lc_imagemapdialog.pngbin0 -> 1206 bytes-rwxr-xr-xdefault_images/res/commandimagelist/lc_importdialog.pngbin0 -> 816 bytes-rw-r--r--default_images/res/commandimagelist/lc_importfromfile.pngbin0 -> 1290 bytes-rw-r--r--default_images/res/commandimagelist/lc_incrementindent.pngbin0 -> 843 bytes-rw-r--r--default_images/res/commandimagelist/lc_incrementlevel.pngbin0 -> 892 bytes-rw-r--r--default_images/res/commandimagelist/lc_incrementsublevels.pngbin0 -> 1133 bytes-rw-r--r--default_images/res/commandimagelist/lc_inscellsctrl.pngbin0 -> 841 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertannotation.pngbin0 -> 4286 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertauthorfield.pngbin0 -> 1319 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertavmedia.pngbin0 -> 1001 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertbookmark.pngbin0 -> 1328 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertcaptiondialog.pngbin0 -> 675 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertcellsdown.pngbin0 -> 1026 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertcellsright.pngbin0 -> 962 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertcolumns.pngbin0 -> 901 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertctrl.pngbin0 -> 495 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertcurrencyfield.pngbin0 -> 1219 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertdatefield.pngbin0 -> 818 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertdoc.pngbin0 -> 1244 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertdraw.pngbin0 -> 1103 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertedit.pngbin0 -> 895 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertendnote.pngbin0 -> 1218 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertfield.pngbin0 -> 778 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertfieldctrl.pngbin0 -> 778 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertfilecontrol.pngbin0 -> 1037 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertfixedtext.pngbin0 -> 635 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertfootnote.pngbin0 -> 1266 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertformattedfield.pngbin0 -> 870 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertformula.pngbin0 -> 1116 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertframe.pngbin0 -> 624 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertframeinteract.pngbin0 -> 624 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertframeinteractnocolumns.pngbin0 -> 624 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertgraphic.pngbin0 -> 1261 bytes-rw-r--r--default_images/res/commandimagelist/lc_inserthyperlink.pngbin0 -> 1553 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertimagecontrol.pngbin0 -> 940 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertindexesentry.pngbin0 -> 799 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertlistbox.pngbin0 -> 976 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertmasterpage.pngbin0 -> 1007 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertmath.pngbin0 -> 814 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertneutralparagraph.pngbin0 -> 519 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertnumericfield.pngbin0 -> 664 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertobjctrl.pngbin0 -> 994 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertobject.pngbin0 -> 994 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertobjectchart.pngbin0 -> 887 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertobjectdialog.pngbin0 -> 994 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertobjectfloatingframe.pngbin0 -> 525 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertobjectstarmath.pngbin0 -> 814 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertpage.pngbin0 -> 4241 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertpagecountfield.pngbin0 -> 1263 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertpagenumberfield.pngbin0 -> 996 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertpatternfield.pngbin0 -> 832 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertplugin.pngbin0 -> 1337 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertpushbutton.pngbin0 -> 688 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertreferencefield.pngbin0 -> 962 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertrows.pngbin0 -> 745 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertsection.pngbin0 -> 675 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertsound.pngbin0 -> 1024 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertspreadsheet.pngbin0 -> 558 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertsymbol.pngbin0 -> 1739 bytes-rw-r--r--default_images/res/commandimagelist/lc_inserttable.pngbin0 -> 558 bytes-rw-r--r--default_images/res/commandimagelist/lc_inserttextframe.pngbin0 -> 624 bytes-rw-r--r--default_images/res/commandimagelist/lc_inserttimefield.pngbin0 -> 1983 bytes-rw-r--r--default_images/res/commandimagelist/lc_inserttitlefield.pngbin0 -> 702 bytes-rw-r--r--default_images/res/commandimagelist/lc_inserttoolbox.pngbin0 -> 1290 bytes-rw-r--r--default_images/res/commandimagelist/lc_inserttopicfield.pngbin0 -> 749 bytes-rw-r--r--default_images/res/commandimagelist/lc_inserttreecontrol.pngbin0 -> 589 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertvideo.pngbin0 -> 949 bytes-rw-r--r--default_images/res/commandimagelist/lc_insobjctrl.pngbin0 -> 994 bytes-rw-r--r--default_images/res/commandimagelist/lc_interactivegradient.pngbin0 -> 1655 bytes-rw-r--r--default_images/res/commandimagelist/lc_interactivetransparence.pngbin0 -> 1161 bytes-rw-r--r--default_images/res/commandimagelist/lc_internetonline.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/lc_italic.pngbin0 -> 570 bytes-rw-r--r--default_images/res/commandimagelist/lc_justifypara.pngbin0 -> 479 bytes-rw-r--r--default_images/res/commandimagelist/lc_label.pngbin0 -> 635 bytes-rw-r--r--default_images/res/commandimagelist/lc_lastpage.pngbin0 -> 1057 bytes-rw-r--r--default_images/res/commandimagelist/lc_lastrecord.pngbin0 -> 810 bytes-rw-r--r--default_images/res/commandimagelist/lc_leaveallgroups.pngbin0 -> 1187 bytes-rw-r--r--default_images/res/commandimagelist/lc_leavegroup.pngbin0 -> 1024 bytes-rw-r--r--default_images/res/commandimagelist/lc_leftpara.pngbin0 -> 487 bytes-rw-r--r--default_images/res/commandimagelist/lc_line.pngbin0 -> 792 bytes-rw-r--r--default_images/res/commandimagelist/lc_line_diagonal.pngbin0 -> 633 bytes-rw-r--r--default_images/res/commandimagelist/lc_linearrowcircle.pngbin0 -> 774 bytes-rw-r--r--default_images/res/commandimagelist/lc_linearrowend.pngbin0 -> 616 bytes-rw-r--r--default_images/res/commandimagelist/lc_linearrows.pngbin0 -> 723 bytes-rw-r--r--default_images/res/commandimagelist/lc_linearrowsquare.pngbin0 -> 644 bytes-rw-r--r--default_images/res/commandimagelist/lc_linearrowstart.pngbin0 -> 602 bytes-rw-r--r--default_images/res/commandimagelist/lc_linecirclearrow.pngbin0 -> 761 bytes-rw-r--r--default_images/res/commandimagelist/lc_lineendstyle.pngbin0 -> 888 bytes-rw-r--r--default_images/res/commandimagelist/lc_linesquarearrow.pngbin0 -> 647 bytes-rw-r--r--default_images/res/commandimagelist/lc_linestyle.pngbin0 -> 339 bytes-rw-r--r--default_images/res/commandimagelist/lc_linetoolbox.pngbin0 -> 1115 bytes-rw-r--r--default_images/res/commandimagelist/lc_linewidth.pngbin0 -> 1133 bytes-rw-r--r--default_images/res/commandimagelist/lc_listbox.pngbin0 -> 976 bytes-rw-r--r--default_images/res/commandimagelist/lc_loadbasic.pngbin0 -> 779 bytes-rw-r--r--default_images/res/commandimagelist/lc_macrorecorder.pngbin0 -> 1264 bytes-rw-r--r--default_images/res/commandimagelist/lc_macrorecordingfloat.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/lc_mailwindow.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/lc_managebreakpoints.pngbin0 -> 1386 bytes-rw-r--r--default_images/res/commandimagelist/lc_managelanguage.pngbin0 -> 1828 bytes-rw-r--r--default_images/res/commandimagelist/lc_marks.pngbin0 -> 532 bytes-rw-r--r--default_images/res/commandimagelist/lc_matchgroup.pngbin0 -> 800 bytes-rw-r--r--default_images/res/commandimagelist/lc_measureline.pngbin0 -> 818 bytes-rw-r--r--default_images/res/commandimagelist/lc_mergecells.pngbin0 -> 591 bytes-rw-r--r--default_images/res/commandimagelist/lc_mergedialog.pngbin0 -> 1062 bytes-rw-r--r--default_images/res/commandimagelist/lc_mirror.pngbin0 -> 1909 bytes-rw-r--r--default_images/res/commandimagelist/lc_modifyframe.pngbin0 -> 1163 bytes-rw-r--r--default_images/res/commandimagelist/lc_modifypage.pngbin0 -> 768 bytes-rw-r--r--default_images/res/commandimagelist/lc_moduledialog.pngbin0 -> 1196 bytes-rw-r--r--default_images/res/commandimagelist/lc_morecontrols.pngbin0 -> 841 bytes-rw-r--r--default_images/res/commandimagelist/lc_movedown.pngbin0 -> 921 bytes-rw-r--r--default_images/res/commandimagelist/lc_movedownsubitems.pngbin0 -> 1150 bytes-rw-r--r--default_images/res/commandimagelist/lc_moveup.pngbin0 -> 923 bytes-rw-r--r--default_images/res/commandimagelist/lc_moveupsubitems.pngbin0 -> 1181 bytes-rw-r--r--default_images/res/commandimagelist/lc_navigationbar.pngbin0 -> 927 bytes-rw-r--r--default_images/res/commandimagelist/lc_navigator.pngbin0 -> 1692 bytes-rw-r--r--default_images/res/commandimagelist/lc_newarrangement.pngbin0 -> 1173 bytes-rw-r--r--default_images/res/commandimagelist/lc_newdoc.pngbin0 -> 666 bytes-rw-r--r--default_images/res/commandimagelist/lc_newrecord.pngbin0 -> 1001 bytes-rwxr-xr-xdefault_images/res/commandimagelist/lc_nextannotation.pngbin0 -> 4477 bytes-rw-r--r--default_images/res/commandimagelist/lc_nextpage.pngbin0 -> 1078 bytes-rw-r--r--default_images/res/commandimagelist/lc_nextrecord.pngbin0 -> 734 bytes-rw-r--r--default_images/res/commandimagelist/lc_no.pngbin0 -> 1479 bytes-rw-r--r--default_images/res/commandimagelist/lc_numberformatcurrency.pngbin0 -> 1219 bytes-rw-r--r--default_images/res/commandimagelist/lc_numberformatdate.pngbin0 -> 818 bytes-rw-r--r--default_images/res/commandimagelist/lc_numberformatdecdecimals.pngbin0 -> 1078 bytes-rw-r--r--default_images/res/commandimagelist/lc_numberformatdecimal.pngbin0 -> 671 bytes-rw-r--r--default_images/res/commandimagelist/lc_numberformatincdecimals.pngbin0 -> 937 bytes-rw-r--r--default_images/res/commandimagelist/lc_numberformatpercent.pngbin0 -> 744 bytes-rw-r--r--default_images/res/commandimagelist/lc_numberformatscientific.pngbin0 -> 662 bytes-rw-r--r--default_images/res/commandimagelist/lc_numberformatstandard.pngbin0 -> 1063 bytes-rw-r--r--default_images/res/commandimagelist/lc_numberingstart.pngbin0 -> 1130 bytes-rw-r--r--default_images/res/commandimagelist/lc_numericfield.pngbin0 -> 664 bytes-rw-r--r--default_images/res/commandimagelist/lc_objectalign.pngbin0 -> 829 bytes-rw-r--r--default_images/res/commandimagelist/lc_objectalignleft.pngbin0 -> 829 bytes-rw-r--r--default_images/res/commandimagelist/lc_objectalignright.pngbin0 -> 848 bytes-rw-r--r--default_images/res/commandimagelist/lc_objectcatalog.pngbin0 -> 1261 bytes-rw-r--r--default_images/res/commandimagelist/lc_objectposition.pngbin0 -> 625 bytes-rw-r--r--default_images/res/commandimagelist/lc_objects3dtoolbox.pngbin0 -> 944 bytes-rw-r--r--default_images/res/commandimagelist/lc_ok.pngbin0 -> 1015 bytes-rw-r--r--default_images/res/commandimagelist/lc_open.pngbin0 -> 1188 bytes-rw-r--r--default_images/res/commandimagelist/lc_openreadonly.pngbin0 -> 1319 bytes-rw-r--r--default_images/res/commandimagelist/lc_openurl.pngbin0 -> 1553 bytes-rw-r--r--default_images/res/commandimagelist/lc_optimizetable.pngbin0 -> 876 bytes-rw-r--r--default_images/res/commandimagelist/lc_ordercrit.pngbin0 -> 629 bytes-rw-r--r--default_images/res/commandimagelist/lc_outlinebullet.pngbin0 -> 934 bytes-rw-r--r--default_images/res/commandimagelist/lc_outlinecollapse.pngbin0 -> 790 bytes-rw-r--r--default_images/res/commandimagelist/lc_outlinecollapseall.pngbin0 -> 796 bytes-rw-r--r--default_images/res/commandimagelist/lc_outlinedown.pngbin0 -> 921 bytes-rw-r--r--default_images/res/commandimagelist/lc_outlineexpand.pngbin0 -> 776 bytes-rw-r--r--default_images/res/commandimagelist/lc_outlineexpandall.pngbin0 -> 767 bytes-rw-r--r--default_images/res/commandimagelist/lc_outlinefont.pngbin0 -> 1096 bytes-rw-r--r--default_images/res/commandimagelist/lc_outlineformat.pngbin0 -> 1421 bytes-rw-r--r--default_images/res/commandimagelist/lc_outlineleft.pngbin0 -> 892 bytes-rw-r--r--default_images/res/commandimagelist/lc_outlineright.pngbin0 -> 866 bytes-rw-r--r--default_images/res/commandimagelist/lc_outlineup.pngbin0 -> 923 bytes-rw-r--r--default_images/res/commandimagelist/lc_overline.pngbin0 -> 470 bytes-rw-r--r--default_images/res/commandimagelist/lc_pagedown.pngbin0 -> 1078 bytes-rw-r--r--default_images/res/commandimagelist/lc_pageup.pngbin0 -> 1103 bytes-rw-r--r--default_images/res/commandimagelist/lc_paragraphdialog.pngbin0 -> 965 bytes-rw-r--r--default_images/res/commandimagelist/lc_paralefttoright.pngbin0 -> 932 bytes-rw-r--r--default_images/res/commandimagelist/lc_pararighttoleft.pngbin0 -> 940 bytes-rw-r--r--default_images/res/commandimagelist/lc_paraspacedecrease.pngbin0 -> 842 bytes-rw-r--r--default_images/res/commandimagelist/lc_paraspaceincrease.pngbin0 -> 852 bytes-rw-r--r--default_images/res/commandimagelist/lc_paste.pngbin0 -> 1220 bytes-rw-r--r--default_images/res/commandimagelist/lc_patternfield.pngbin0 -> 832 bytes-rw-r--r--default_images/res/commandimagelist/lc_pickthrough.pngbin0 -> 1425 bytes-rw-r--r--default_images/res/commandimagelist/lc_pie.pngbin0 -> 1025 bytes-rw-r--r--default_images/res/commandimagelist/lc_pie_unfilled.pngbin0 -> 1078 bytes-rw-r--r--default_images/res/commandimagelist/lc_playmacro.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/lc_pluginsactive.pngbin0 -> 1337 bytes-rw-r--r--default_images/res/commandimagelist/lc_polygon.pngbin0 -> 1104 bytes-rw-r--r--default_images/res/commandimagelist/lc_polygon_diagonal.pngbin0 -> 601 bytes-rw-r--r--default_images/res/commandimagelist/lc_polygon_diagonal_unfilled.pngbin0 -> 534 bytes-rw-r--r--default_images/res/commandimagelist/lc_polygon_unfilled.pngbin0 -> 1036 bytes-rw-r--r--default_images/res/commandimagelist/lc_presentation.pngbin0 -> 961 bytes-rw-r--r--default_images/res/commandimagelist/lc_presentationlayout.pngbin0 -> 1249 bytes-rw-r--r--default_images/res/commandimagelist/lc_preview.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/lc_previewprintoptions.pngbin0 -> 1061 bytes-rw-r--r--default_images/res/commandimagelist/lc_previewzoom.pngbin0 -> 1348 bytes-rwxr-xr-xdefault_images/res/commandimagelist/lc_previousannotation.pngbin0 -> 4492 bytes-rw-r--r--default_images/res/commandimagelist/lc_previouspage.pngbin0 -> 1103 bytes-rw-r--r--default_images/res/commandimagelist/lc_prevrecord.pngbin0 -> 720 bytes-rw-r--r--default_images/res/commandimagelist/lc_print.pngbin0 -> 875 bytes-rw-r--r--default_images/res/commandimagelist/lc_printdefault.pngbin0 -> 875 bytes-rw-r--r--default_images/res/commandimagelist/lc_printersetup.pngbin0 -> 1061 bytes-rw-r--r--default_images/res/commandimagelist/lc_printlayout.pngbin0 -> 1150 bytes-rw-r--r--default_images/res/commandimagelist/lc_printpagepreview.pngbin0 -> 901 bytes-rw-r--r--default_images/res/commandimagelist/lc_printpreview.pngbin0 -> 1086 bytes-rw-r--r--default_images/res/commandimagelist/lc_progressbar.pngbin0 -> 578 bytes-rw-r--r--default_images/res/commandimagelist/lc_pushbutton.pngbin0 -> 688 bytes-rw-r--r--default_images/res/commandimagelist/lc_quickedit.pngbin0 -> 1021 bytes-rw-r--r--default_images/res/commandimagelist/lc_quit.pngbin0 -> 1106 bytes-rw-r--r--default_images/res/commandimagelist/lc_radiobutton.pngbin0 -> 1040 bytes-rw-r--r--default_images/res/commandimagelist/lc_recsave.pngbin0 -> 1002 bytes-rw-r--r--default_images/res/commandimagelist/lc_recsearch.pngbin0 -> 1005 bytes-rw-r--r--default_images/res/commandimagelist/lc_rect.pngbin0 -> 507 bytes-rw-r--r--default_images/res/commandimagelist/lc_rect_rounded.pngbin0 -> 711 bytes-rw-r--r--default_images/res/commandimagelist/lc_rect_rounded_unfilled.pngbin0 -> 761 bytes-rw-r--r--default_images/res/commandimagelist/lc_rect_unfilled.pngbin0 -> 449 bytes-rw-r--r--default_images/res/commandimagelist/lc_rectangletoolbox.pngbin0 -> 507 bytes-rw-r--r--default_images/res/commandimagelist/lc_recundo.pngbin0 -> 1876 bytes-rw-r--r--default_images/res/commandimagelist/lc_redo.pngbin0 -> 1549 bytes-rw-r--r--default_images/res/commandimagelist/lc_refresh.pngbin0 -> 1603 bytes-rw-r--r--default_images/res/commandimagelist/lc_refreshformcontrol.pngbin0 -> 1698 bytes-rw-r--r--default_images/res/commandimagelist/lc_rehearsetimings.pngbin0 -> 1486 bytes-rw-r--r--default_images/res/commandimagelist/lc_reload.pngbin0 -> 1603 bytes-rw-r--r--default_images/res/commandimagelist/lc_removebullets.pngbin0 -> 485 bytes-rw-r--r--default_images/res/commandimagelist/lc_removefilter.pngbin0 -> 1084 bytes-rw-r--r--default_images/res/commandimagelist/lc_removefiltersort.pngbin0 -> 1084 bytes-rw-r--r--default_images/res/commandimagelist/lc_renamemasterpage.pngbin0 -> 936 bytes-rw-r--r--default_images/res/commandimagelist/lc_repeat.pngbin0 -> 1624 bytes-rw-r--r--default_images/res/commandimagelist/lc_reportnavigator.pngbin0 -> 1548 bytes-rw-r--r--default_images/res/commandimagelist/lc_reverseorder.pngbin0 -> 1240 bytes-rw-r--r--default_images/res/commandimagelist/lc_rightpara.pngbin0 -> 486 bytes-rw-r--r--default_images/res/commandimagelist/lc_rulerrows.pngbin0 -> 1724 bytes-rw-r--r--default_images/res/commandimagelist/lc_rulerrowsvertical.pngbin0 -> 1763 bytes-rw-r--r--default_images/res/commandimagelist/lc_runbasic.pngbin0 -> 992 bytes-rw-r--r--default_images/res/commandimagelist/lc_save.pngbin0 -> 776 bytes-rw-r--r--default_images/res/commandimagelist/lc_saveas.pngbin0 -> 846 bytes-rw-r--r--default_images/res/commandimagelist/lc_saveastemplate.pngbin0 -> 995 bytes-rw-r--r--default_images/res/commandimagelist/lc_savebasicas.pngbin0 -> 906 bytes-rw-r--r--default_images/res/commandimagelist/lc_sbabrwinsert.pngbin0 -> 778 bytes-rw-r--r--default_images/res/commandimagelist/lc_sbaexecutesql.pngbin0 -> 1190 bytes-rw-r--r--default_images/res/commandimagelist/lc_sbanativesql.pngbin0 -> 1007 bytes-rw-r--r--default_images/res/commandimagelist/lc_scaletext.pngbin0 -> 1431 bytes-rw-r--r--default_images/res/commandimagelist/lc_scrollbar.pngbin0 -> 1008 bytes-rw-r--r--default_images/res/commandimagelist/lc_searchdialog.pngbin0 -> 1005 bytes-rwxr-xr-xdefault_images/res/commandimagelist/lc_sectionalignbottom.pngbin0 -> 770 bytes-rwxr-xr-xdefault_images/res/commandimagelist/lc_sectionalignleft.pngbin0 -> 874 bytes-rwxr-xr-xdefault_images/res/commandimagelist/lc_sectionalignright.pngbin0 -> 874 bytes-rwxr-xr-xdefault_images/res/commandimagelist/lc_sectionaligntop.pngbin0 -> 770 bytes-rw-r--r--default_images/res/commandimagelist/lc_sectionshrink.pngbin0 -> 827 bytes-rw-r--r--default_images/res/commandimagelist/lc_sectionshrinkbottom.pngbin0 -> 625 bytes-rw-r--r--default_images/res/commandimagelist/lc_sectionshrinktop.pngbin0 -> 659 bytes-rw-r--r--default_images/res/commandimagelist/lc_selectall.pngbin0 -> 815 bytes-rw-r--r--default_images/res/commandimagelist/lc_selectmode.pngbin0 -> 806 bytes-rw-r--r--default_images/res/commandimagelist/lc_selectobject.pngbin0 -> 806 bytes-rw-r--r--default_images/res/commandimagelist/lc_selecttable.pngbin0 -> 902 bytes-rw-r--r--default_images/res/commandimagelist/lc_sendfax.pngbin0 -> 1116 bytes-rw-r--r--default_images/res/commandimagelist/lc_sendmail.pngbin0 -> 789 bytes-rw-r--r--default_images/res/commandimagelist/lc_sendtoback.pngbin0 -> 616 bytes-rw-r--r--default_images/res/commandimagelist/lc_setborderstyle.pngbin0 -> 459 bytes-rw-r--r--default_images/res/commandimagelist/lc_setdocumentproperties.pngbin0 -> 981 bytes-rw-r--r--default_images/res/commandimagelist/lc_setobjecttobackground.pngbin0 -> 828 bytes-rw-r--r--default_images/res/commandimagelist/lc_setobjecttoforeground.pngbin0 -> 816 bytes-rw-r--r--default_images/res/commandimagelist/lc_setoptimalcolumnwidth.pngbin0 -> 685 bytes-rw-r--r--default_images/res/commandimagelist/lc_setoptimalcolumnwidthdirect.pngbin0 -> 685 bytes-rw-r--r--default_images/res/commandimagelist/lc_setoptimalrowheight.pngbin0 -> 576 bytes-rw-r--r--default_images/res/commandimagelist/lc_shadowcursor.pngbin0 -> 931 bytes-rw-r--r--default_images/res/commandimagelist/lc_shadowed.pngbin0 -> 835 bytes-rw-r--r--default_images/res/commandimagelist/lc_shear.pngbin0 -> 617 bytes-rw-r--r--default_images/res/commandimagelist/lc_shell3d.pngbin0 -> 1424 bytes-rwxr-xr-xdefault_images/res/commandimagelist/lc_showannotation.pngbin0 -> 4154 bytes-rw-r--r--default_images/res/commandimagelist/lc_showbookview.pngbin0 -> 707 bytes-rw-r--r--default_images/res/commandimagelist/lc_showbrowser.pngbin0 -> 1095 bytes-rw-r--r--default_images/res/commandimagelist/lc_showdatanavigator.pngbin0 -> 932 bytes-rw-r--r--default_images/res/commandimagelist/lc_showfmexplorer.pngbin0 -> 1474 bytes-rw-r--r--default_images/res/commandimagelist/lc_showmultiplepages.pngbin0 -> 559 bytes-rw-r--r--default_images/res/commandimagelist/lc_showpropbrowser.pngbin0 -> 1095 bytes-rw-r--r--default_images/res/commandimagelist/lc_showslide.pngbin0 -> 898 bytes-rw-r--r--default_images/res/commandimagelist/lc_showtwopages.pngbin0 -> 613 bytes-rw-r--r--default_images/res/commandimagelist/lc_shrink.pngbin0 -> 1316 bytes-rw-r--r--default_images/res/commandimagelist/lc_smallestheight.pngbin0 -> 868 bytes-rw-r--r--default_images/res/commandimagelist/lc_smallestwidth.pngbin0 -> 800 bytes-rw-r--r--default_images/res/commandimagelist/lc_snapborder.pngbin0 -> 1026 bytes-rw-r--r--default_images/res/commandimagelist/lc_snapframe.pngbin0 -> 778 bytes-rw-r--r--default_images/res/commandimagelist/lc_snappoints.pngbin0 -> 767 bytes-rw-r--r--default_images/res/commandimagelist/lc_solidcreate.pngbin0 -> 1061 bytes-rw-r--r--default_images/res/commandimagelist/lc_sortascending.pngbin0 -> 968 bytes-rw-r--r--default_images/res/commandimagelist/lc_sortdescending.pngbin0 -> 951 bytes-rw-r--r--default_images/res/commandimagelist/lc_sortdown.pngbin0 -> 951 bytes-rw-r--r--default_images/res/commandimagelist/lc_sortup.pngbin0 -> 968 bytes-rw-r--r--default_images/res/commandimagelist/lc_sourceview.pngbin0 -> 1063 bytes-rw-r--r--default_images/res/commandimagelist/lc_spacepara1.pngbin0 -> 479 bytes-rw-r--r--default_images/res/commandimagelist/lc_spacepara15.pngbin0 -> 447 bytes-rw-r--r--default_images/res/commandimagelist/lc_spacepara2.pngbin0 -> 417 bytes-rw-r--r--default_images/res/commandimagelist/lc_spelldialog.pngbin0 -> 1159 bytes-rw-r--r--default_images/res/commandimagelist/lc_spelling.pngbin0 -> 1159 bytes-rw-r--r--default_images/res/commandimagelist/lc_spellingandgrammardialog.pngbin0 -> 1159 bytes-rw-r--r--default_images/res/commandimagelist/lc_spellonline.pngbin0 -> 754 bytes-rw-r--r--default_images/res/commandimagelist/lc_sphere.pngbin0 -> 1816 bytes-rw-r--r--default_images/res/commandimagelist/lc_spinbutton.pngbin0 -> 978 bytes-rw-r--r--default_images/res/commandimagelist/lc_splitcell.pngbin0 -> 595 bytes-rw-r--r--default_images/res/commandimagelist/lc_splithorizontal.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/lc_splitparenthorizontal.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/lc_splitparentvertical.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lc_splitvertical.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/lc_square.pngbin0 -> 566 bytes-rw-r--r--default_images/res/commandimagelist/lc_square_rounded.pngbin0 -> 782 bytes-rw-r--r--default_images/res/commandimagelist/lc_square_rounded_unfilled.pngbin0 -> 784 bytes-rw-r--r--default_images/res/commandimagelist/lc_square_unfilled.pngbin0 -> 488 bytes-rw-r--r--default_images/res/commandimagelist/lc_starchartdialog.pngbin0 -> 887 bytes-rw-r--r--default_images/res/commandimagelist/lc_starshapes.bang.pngbin0 -> 1450 bytes-rw-r--r--default_images/res/commandimagelist/lc_starshapes.concave-star6.pngbin0 -> 1233 bytes-rw-r--r--default_images/res/commandimagelist/lc_starshapes.doorplate.pngbin0 -> 1079 bytes-rw-r--r--default_images/res/commandimagelist/lc_starshapes.horizontal-scroll.pngbin0 -> 968 bytes-rw-r--r--default_images/res/commandimagelist/lc_starshapes.pngbin0 -> 1182 bytes-rw-r--r--default_images/res/commandimagelist/lc_starshapes.signet.pngbin0 -> 1459 bytes-rw-r--r--default_images/res/commandimagelist/lc_starshapes.star12.pngbin0 -> 1466 bytes-rw-r--r--default_images/res/commandimagelist/lc_starshapes.star24.pngbin0 -> 1739 bytes-rw-r--r--default_images/res/commandimagelist/lc_starshapes.star4.pngbin0 -> 981 bytes-rw-r--r--default_images/res/commandimagelist/lc_starshapes.star5.pngbin0 -> 1182 bytes-rw-r--r--default_images/res/commandimagelist/lc_starshapes.star6.pngbin0 -> 1068 bytes-rw-r--r--default_images/res/commandimagelist/lc_starshapes.star8.pngbin0 -> 1266 bytes-rw-r--r--default_images/res/commandimagelist/lc_starshapes.vertical-scroll.pngbin0 -> 961 bytes-rw-r--r--default_images/res/commandimagelist/lc_strikeout.pngbin0 -> 706 bytes-rw-r--r--default_images/res/commandimagelist/lc_styleapply.pngbin0 -> 1133 bytes-rw-r--r--default_images/res/commandimagelist/lc_stylenewbyexample.pngbin0 -> 1004 bytes-rw-r--r--default_images/res/commandimagelist/lc_styleupdatebyexample.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/lc_subscript.pngbin0 -> 1653 bytes-rw-r--r--default_images/res/commandimagelist/lc_superscript.pngbin0 -> 1633 bytes-rw-r--r--default_images/res/commandimagelist/lc_switchcontroldesignmode.pngbin0 -> 1059 bytes-rw-r--r--default_images/res/commandimagelist/lc_switchxformsdesignmode.pngbin0 -> 1059 bytes-rw-r--r--default_images/res/commandimagelist/lc_symbolcatalogue.pngbin0 -> 921 bytes-rw-r--r--default_images/res/commandimagelist/lc_symbolshapes.brace-pair.pngbin0 -> 1211 bytes-rw-r--r--default_images/res/commandimagelist/lc_symbolshapes.bracket-pair.pngbin0 -> 965 bytes-rw-r--r--default_images/res/commandimagelist/lc_symbolshapes.cloud.pngbin0 -> 1350 bytes-rw-r--r--default_images/res/commandimagelist/lc_symbolshapes.diamond-bevel.pngbin0 -> 1417 bytes-rw-r--r--default_images/res/commandimagelist/lc_symbolshapes.flower.pngbin0 -> 1986 bytes-rw-r--r--default_images/res/commandimagelist/lc_symbolshapes.forbidden.pngbin0 -> 2002 bytes-rw-r--r--default_images/res/commandimagelist/lc_symbolshapes.heart.pngbin0 -> 1701 bytes-rw-r--r--default_images/res/commandimagelist/lc_symbolshapes.left-brace.pngbin0 -> 860 bytes-rw-r--r--default_images/res/commandimagelist/lc_symbolshapes.left-bracket.pngbin0 -> 687 bytes-rw-r--r--default_images/res/commandimagelist/lc_symbolshapes.lightning.pngbin0 -> 1148 bytes-rw-r--r--default_images/res/commandimagelist/lc_symbolshapes.moon.pngbin0 -> 1387 bytes-rw-r--r--default_images/res/commandimagelist/lc_symbolshapes.octagon-bevel.pngbin0 -> 1325 bytes-rw-r--r--default_images/res/commandimagelist/lc_symbolshapes.pngbin0 -> 1805 bytes-rw-r--r--default_images/res/commandimagelist/lc_symbolshapes.puzzle.pngbin0 -> 1335 bytes-rw-r--r--default_images/res/commandimagelist/lc_symbolshapes.quad-bevel.pngbin0 -> 976 bytes-rw-r--r--default_images/res/commandimagelist/lc_symbolshapes.right-brace.pngbin0 -> 854 bytes-rw-r--r--default_images/res/commandimagelist/lc_symbolshapes.right-bracket.pngbin0 -> 686 bytes-rw-r--r--default_images/res/commandimagelist/lc_symbolshapes.smiley.pngbin0 -> 1805 bytes-rw-r--r--default_images/res/commandimagelist/lc_symbolshapes.sun.pngbin0 -> 1328 bytes-rw-r--r--default_images/res/commandimagelist/lc_tabdialog.pngbin0 -> 1345 bytes-rw-r--r--default_images/res/commandimagelist/lc_tabledesign.pngbin0 -> 1058 bytes-rw-r--r--default_images/res/commandimagelist/lc_tabledialog.pngbin0 -> 942 bytes-rw-r--r--default_images/res/commandimagelist/lc_tablemodefix.pngbin0 -> 629 bytes-rw-r--r--default_images/res/commandimagelist/lc_tablemodefixprop.pngbin0 -> 740 bytes-rw-r--r--default_images/res/commandimagelist/lc_tablemodevariable.pngbin0 -> 706 bytes-rw-r--r--default_images/res/commandimagelist/lc_tablesort.pngbin0 -> 629 bytes-rw-r--r--default_images/res/commandimagelist/lc_testmode.pngbin0 -> 1059 bytes-rw-r--r--default_images/res/commandimagelist/lc_text.pngbin0 -> 682 bytes-rw-r--r--default_images/res/commandimagelist/lc_text_marquee.pngbin0 -> 1052 bytes-rw-r--r--default_images/res/commandimagelist/lc_textdirectionlefttoright.pngbin0 -> 781 bytes-rw-r--r--default_images/res/commandimagelist/lc_textdirectiontoptobottom.pngbin0 -> 699 bytes-rw-r--r--default_images/res/commandimagelist/lc_textfittosizetool.pngbin0 -> 1115 bytes-rw-r--r--default_images/res/commandimagelist/lc_texttoolbox.pngbin0 -> 682 bytes-rw-r--r--default_images/res/commandimagelist/lc_thesaurus.pngbin0 -> 1407 bytes-rw-r--r--default_images/res/commandimagelist/lc_thesaurusdialog.pngbin0 -> 1407 bytes-rw-r--r--default_images/res/commandimagelist/lc_timefield.pngbin0 -> 1983 bytes-rw-r--r--default_images/res/commandimagelist/lc_toggleanchortype.pngbin0 -> 1049 bytes-rw-r--r--default_images/res/commandimagelist/lc_toggleaxisdescr.pngbin0 -> 499 bytes-rw-r--r--default_images/res/commandimagelist/lc_toggleaxistitle.pngbin0 -> 843 bytes-rw-r--r--default_images/res/commandimagelist/lc_togglebreakpoint.pngbin0 -> 1419 bytes-rw-r--r--default_images/res/commandimagelist/lc_togglegridhorizontal.pngbin0 -> 525 bytes-rw-r--r--default_images/res/commandimagelist/lc_togglegridvertical.pngbin0 -> 580 bytes-rw-r--r--default_images/res/commandimagelist/lc_togglelegend.pngbin0 -> 872 bytes-rw-r--r--default_images/res/commandimagelist/lc_togglemergecells.pngbin0 -> 591 bytes-rw-r--r--default_images/res/commandimagelist/lc_toggleobjectbeziermode.pngbin0 -> 692 bytes-rw-r--r--default_images/res/commandimagelist/lc_toggleobjectrotatemode.pngbin0 -> 1572 bytes-rw-r--r--default_images/res/commandimagelist/lc_toggletitle.pngbin0 -> 692 bytes-rw-r--r--default_images/res/commandimagelist/lc_toolsmacroedit.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/lc_toolsoptions.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/lc_torus.pngbin0 -> 1520 bytes-rw-r--r--default_images/res/commandimagelist/lc_transformdialog.pngbin0 -> 1454 bytes-rw-r--r--default_images/res/commandimagelist/lc_underline.pngbin0 -> 570 bytes-rw-r--r--default_images/res/commandimagelist/lc_underlinedouble.pngbin0 -> 560 bytes-rw-r--r--default_images/res/commandimagelist/lc_undo.pngbin0 -> 1569 bytes-rw-r--r--default_images/res/commandimagelist/lc_ungroup.pngbin0 -> 634 bytes-rw-r--r--default_images/res/commandimagelist/lc_unhainframes.pngbin0 -> 1267 bytes-rw-r--r--default_images/res/commandimagelist/lc_upsearch.pngbin0 -> 4288 bytes-rw-r--r--default_images/res/commandimagelist/lc_urlbutton.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/lc_usewizards.pngbin0 -> 1266 bytes-rw-r--r--default_images/res/commandimagelist/lc_verticalcaption.pngbin0 -> 1401 bytes-rw-r--r--default_images/res/commandimagelist/lc_verticaltext.pngbin0 -> 611 bytes-rw-r--r--default_images/res/commandimagelist/lc_verticaltextfittosizetool.pngbin0 -> 1260 bytes-rw-r--r--default_images/res/commandimagelist/lc_vfixedline.pngbin0 -> 597 bytes-rw-r--r--default_images/res/commandimagelist/lc_view100.pngbin0 -> 1160 bytes-rw-r--r--default_images/res/commandimagelist/lc_viewdatasourcebrowser.pngbin0 -> 1514 bytes-rw-r--r--default_images/res/commandimagelist/lc_viewformasgrid.pngbin0 -> 795 bytes-rw-r--r--default_images/res/commandimagelist/lc_vscrollbar.pngbin0 -> 1008 bytes-rw-r--r--default_images/res/commandimagelist/lc_window3d.pngbin0 -> 355 bytes-rw-r--r--default_images/res/commandimagelist/lc_wrapcontour.pngbin0 -> 681 bytes-rw-r--r--default_images/res/commandimagelist/lc_wrapideal.pngbin0 -> 577 bytes-rw-r--r--default_images/res/commandimagelist/lc_wrapleft.pngbin0 -> 492 bytes-rw-r--r--default_images/res/commandimagelist/lc_wrapoff.pngbin0 -> 478 bytes-rw-r--r--default_images/res/commandimagelist/lc_wrapon.pngbin0 -> 539 bytes-rw-r--r--default_images/res/commandimagelist/lc_wrapright.pngbin0 -> 518 bytes-rw-r--r--default_images/res/commandimagelist/lc_wrapthrough.pngbin0 -> 518 bytes-rw-r--r--default_images/res/commandimagelist/lc_xlinecolor.pngbin0 -> 1133 bytes-rw-r--r--default_images/res/commandimagelist/lc_xlinestyle.pngbin0 -> 1133 bytes-rw-r--r--default_images/res/commandimagelist/lc_yes.pngbin0 -> 1443 bytes-rw-r--r--default_images/res/commandimagelist/lc_zoom.pngbin0 -> 1348 bytes-rw-r--r--default_images/res/commandimagelist/lc_zoom100percent.pngbin0 -> 1160 bytes-rw-r--r--default_images/res/commandimagelist/lc_zoomin.pngbin0 -> 1425 bytes-rw-r--r--default_images/res/commandimagelist/lc_zoomminus.pngbin0 -> 1382 bytes-rw-r--r--default_images/res/commandimagelist/lc_zoomnext.pngbin0 -> 1845 bytes-rw-r--r--default_images/res/commandimagelist/lc_zoomobjects.pngbin0 -> 1126 bytes-rw-r--r--default_images/res/commandimagelist/lc_zoomoptimal.pngbin0 -> 1101 bytes-rw-r--r--default_images/res/commandimagelist/lc_zoomout.pngbin0 -> 1382 bytes-rw-r--r--default_images/res/commandimagelist/lc_zoompage.pngbin0 -> 1086 bytes-rw-r--r--default_images/res/commandimagelist/lc_zoompagewidth.pngbin0 -> 1183 bytes-rw-r--r--default_images/res/commandimagelist/lc_zoompanning.pngbin0 -> 1791 bytes-rw-r--r--default_images/res/commandimagelist/lc_zoomplus.pngbin0 -> 1425 bytes-rw-r--r--default_images/res/commandimagelist/lc_zoomprevious.pngbin0 -> 1659 bytes-rw-r--r--default_images/res/commandimagelist/lc_zoomtoolbox.pngbin0 -> 1348 bytes-rw-r--r--default_images/res/commandimagelist/lch_absoluterecord.pngbin0 -> 191 bytes-rw-r--r--default_images/res/commandimagelist/lch_actionmode.pngbin0 -> 233 bytes-rw-r--r--default_images/res/commandimagelist/lch_addbookmark.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_adddatefield.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/lch_adddirect.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/lch_addfield.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/lch_addons.pngbin0 -> 180 bytes-rw-r--r--default_images/res/commandimagelist/lch_addprintarea.pngbin0 -> 188 bytes-rw-r--r--default_images/res/commandimagelist/lch_addtable.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/lch_addwatch.pngbin0 -> 171 bytes-rw-r--r--default_images/res/commandimagelist/lch_adjust.pngbin0 -> 177 bytes-rw-r--r--default_images/res/commandimagelist/lch_advancedmode.pngbin0 -> 177 bytes-rw-r--r--default_images/res/commandimagelist/lch_alignblock.pngbin0 -> 315 bytes-rw-r--r--default_images/res/commandimagelist/lch_alignbottom.pngbin0 -> 148 bytes-rw-r--r--default_images/res/commandimagelist/lch_aligncenter.pngbin0 -> 170 bytes-rw-r--r--default_images/res/commandimagelist/lch_aligndown.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/lch_alignhorizontalcenter.pngbin0 -> 319 bytes-rw-r--r--default_images/res/commandimagelist/lch_alignleft.pngbin0 -> 317 bytes-rw-r--r--default_images/res/commandimagelist/lch_alignmiddle.pngbin0 -> 177 bytes-rw-r--r--default_images/res/commandimagelist/lch_alignright.pngbin0 -> 317 bytes-rw-r--r--default_images/res/commandimagelist/lch_aligntop.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/lch_alignup.pngbin0 -> 157 bytes-rw-r--r--default_images/res/commandimagelist/lch_alignvcenter.pngbin0 -> 164 bytes-rw-r--r--default_images/res/commandimagelist/lch_alignverticalcenter.pngbin0 -> 164 bytes-rw-r--r--default_images/res/commandimagelist/lch_animationeffects.pngbin0 -> 204 bytes-rw-r--r--default_images/res/commandimagelist/lch_animationmode.pngbin0 -> 242 bytes-rw-r--r--default_images/res/commandimagelist/lch_animationobjects.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/lch_arc.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.chevron.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.circular-arrow.pngbin0 -> 190 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.corner-right-arrow.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.down-arrow-callout.pngbin0 -> 153 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.down-arrow.pngbin0 -> 159 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.left-arrow-callout.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.left-arrow.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.left-right-arrow-callout.pngbin0 -> 185 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.left-right-arrow.pngbin0 -> 167 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.notched-right-arrow.pngbin0 -> 154 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.pentagon-right.pngbin0 -> 148 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.pngbin0 -> 167 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.quad-arrow-callout.pngbin0 -> 208 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.quad-arrow.pngbin0 -> 190 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.right-arrow-callout.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.right-arrow.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.s-sharped-arrow.pngbin0 -> 198 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.split-arrow.pngbin0 -> 181 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.split-round-arrow.pngbin0 -> 193 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.striped-right-arrow.pngbin0 -> 166 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.up-arrow-callout.pngbin0 -> 150 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.up-arrow.pngbin0 -> 154 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.up-down-arrow-callout.pngbin0 -> 167 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.up-down-arrow.pngbin0 -> 165 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.up-right-arrow-callout.pngbin0 -> 191 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.up-right-arrow.pngbin0 -> 176 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.up-right-down-arrow.pngbin0 -> 180 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowstoolbox.pngbin0 -> 116 bytes-rw-r--r--default_images/res/commandimagelist/lch_assignlayout.pngbin0 -> 3651 bytes-rw-r--r--default_images/res/commandimagelist/lch_autocontrolfocus.pngbin0 -> 148 bytes-rw-r--r--default_images/res/commandimagelist/lch_autofilter.pngbin0 -> 210 bytes-rw-r--r--default_images/res/commandimagelist/lch_autoformat.pngbin0 -> 236 bytes-rw-r--r--default_images/res/commandimagelist/lch_autosum.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/lch_avmediaplayer.pngbin0 -> 157 bytes-rw-r--r--default_images/res/commandimagelist/lch_backcolor.pngbin0 -> 216 bytes-rw-r--r--default_images/res/commandimagelist/lch_backgroundcolor.pngbin0 -> 228 bytes-rw-r--r--default_images/res/commandimagelist/lch_backgroundpatterncontroller.pngbin0 -> 228 bytes-rw-r--r--default_images/res/commandimagelist/lch_backward.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.block-arc.pngbin0 -> 183 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.can.pngbin0 -> 166 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.circle-pie.pngbin0 -> 180 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.circle.pngbin0 -> 176 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.cross.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.cube.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.diamond.pngbin0 -> 165 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.ellipse.pngbin0 -> 165 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.frame.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.hexagon.pngbin0 -> 168 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.isosceles-triangle.pngbin0 -> 168 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.octagon.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.paper.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.parallelogram.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.pentagon.pngbin0 -> 179 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.pngbin0 -> 165 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.quadrat.pngbin0 -> 107 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.rectangle.pngbin0 -> 107 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.right-triangle.pngbin0 -> 158 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.ring.pngbin0 -> 203 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.round-quadrat.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.round-rectangle.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.trapezoid.pngbin0 -> 163 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicstepinto.pngbin0 -> 175 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicstepout.pngbin0 -> 184 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicstepover.pngbin0 -> 182 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicstop.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/lch_beamer.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_beforeobject.pngbin0 -> 151 bytes-rw-r--r--default_images/res/commandimagelist/lch_behindobject.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_bezier_unfilled.pngbin0 -> 158 bytes-rw-r--r--default_images/res/commandimagelist/lch_bezierappend.pngbin0 -> 170 bytes-rw-r--r--default_images/res/commandimagelist/lch_bezierclose.pngbin0 -> 172 bytes-rw-r--r--default_images/res/commandimagelist/lch_bezierconvert.pngbin0 -> 154 bytes-rw-r--r--default_images/res/commandimagelist/lch_beziercutline.pngbin0 -> 228 bytes-rw-r--r--default_images/res/commandimagelist/lch_bezierdelete.pngbin0 -> 209 bytes-rw-r--r--default_images/res/commandimagelist/lch_bezieredge.pngbin0 -> 148 bytes-rw-r--r--default_images/res/commandimagelist/lch_beziereliminatepoints.pngbin0 -> 192 bytes-rw-r--r--default_images/res/commandimagelist/lch_bezierfill.pngbin0 -> 169 bytes-rw-r--r--default_images/res/commandimagelist/lch_bezierinsert.pngbin0 -> 198 bytes-rw-r--r--default_images/res/commandimagelist/lch_beziermove.pngbin0 -> 179 bytes-rw-r--r--default_images/res/commandimagelist/lch_beziersmooth.pngbin0 -> 164 bytes-rw-r--r--default_images/res/commandimagelist/lch_beziersymmetric.pngbin0 -> 195 bytes-rw-r--r--default_images/res/commandimagelist/lch_bighandles.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/lch_bold.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/lch_borderdialog.pngbin0 -> 106 bytes-rw-r--r--default_images/res/commandimagelist/lch_bringtofront.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/lch_browsebackward.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/lch_browseforward.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/lch_browseview.pngbin0 -> 281 bytes-rw-r--r--default_images/res/commandimagelist/lch_bullet.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/lch_bulletsandnumberingdialog.pngbin0 -> 163 bytes-rw-r--r--default_images/res/commandimagelist/lch_calloutshapes.cloud-callout.pngbin0 -> 219 bytes-rw-r--r--default_images/res/commandimagelist/lch_calloutshapes.line-callout-1.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/lch_calloutshapes.line-callout-2.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/lch_calloutshapes.line-callout-3.pngbin0 -> 117 bytes-rw-r--r--default_images/res/commandimagelist/lch_calloutshapes.pngbin0 -> 475 bytes-rw-r--r--default_images/res/commandimagelist/lch_calloutshapes.rectangular-callout.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/lch_calloutshapes.round-callout.pngbin0 -> 175 bytes-rw-r--r--default_images/res/commandimagelist/lch_calloutshapes.round-rectangular-callout.pngbin0 -> 475 bytes-rw-r--r--default_images/res/commandimagelist/lch_cellvertbottom.pngbin0 -> 148 bytes-rw-r--r--default_images/res/commandimagelist/lch_cellvertcenter.pngbin0 -> 164 bytes-rw-r--r--default_images/res/commandimagelist/lch_cellverttop.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/lch_centerpara.pngbin0 -> 319 bytes-rw-r--r--default_images/res/commandimagelist/lch_chainframes.pngbin0 -> 153 bytes-rw-r--r--default_images/res/commandimagelist/lch_changebezier.pngbin0 -> 457 bytes-rw-r--r--default_images/res/commandimagelist/lch_changepolygon.pngbin0 -> 203 bytes-rw-r--r--default_images/res/commandimagelist/lch_charfontname.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_checkbox.pngbin0 -> 165 bytes-rw-r--r--default_images/res/commandimagelist/lch_choosecontrols.pngbin0 -> 211 bytes-rw-r--r--default_images/res/commandimagelist/lch_choosedesign.pngbin0 -> 238 bytes-rw-r--r--default_images/res/commandimagelist/lch_choosemacro.pngbin0 -> 172 bytes-rw-r--r--default_images/res/commandimagelist/lch_choosepolygon.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/lch_circle.pngbin0 -> 176 bytes-rw-r--r--default_images/res/commandimagelist/lch_circle_unfilled.pngbin0 -> 157 bytes-rw-r--r--default_images/res/commandimagelist/lch_circlearc.pngbin0 -> 159 bytes-rw-r--r--default_images/res/commandimagelist/lch_circlecut.pngbin0 -> 184 bytes-rw-r--r--default_images/res/commandimagelist/lch_circlecut_unfilled.pngbin0 -> 176 bytes-rw-r--r--default_images/res/commandimagelist/lch_circlepie.pngbin0 -> 180 bytes-rw-r--r--default_images/res/commandimagelist/lch_circlepie_unfilled.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/lch_clickchangerotation.pngbin0 -> 232 bytes-rw-r--r--default_images/res/commandimagelist/lch_closedoc.pngbin0 -> 192 bytes-rw-r--r--default_images/res/commandimagelist/lch_closedocs.pngbin0 -> 119 bytes-rw-r--r--default_images/res/commandimagelist/lch_closemasterview.pngbin0 -> 188 bytes-rw-r--r--default_images/res/commandimagelist/lch_closewin.pngbin0 -> 192 bytes-rw-r--r--default_images/res/commandimagelist/lch_color.pngbin0 -> 181 bytes-rw-r--r--default_images/res/commandimagelist/lch_colorsettings.pngbin0 -> 189 bytes-rw-r--r--default_images/res/commandimagelist/lch_colorview.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/lch_combobox.pngbin0 -> 164 bytes-rw-r--r--default_images/res/commandimagelist/lch_commontaskbarvisible.pngbin0 -> 170 bytes-rw-r--r--default_images/res/commandimagelist/lch_compilebasic.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/lch_cone.pngbin0 -> 188 bytes-rw-r--r--default_images/res/commandimagelist/lch_config.pngbin0 -> 211 bytes-rw-r--r--default_images/res/commandimagelist/lch_connector.pngbin0 -> 115 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorarrowend.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorarrows.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorarrowstart.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorcircleend.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorcircles.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorcirclestart.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorcurve.pngbin0 -> 150 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorcurvearrowend.pngbin0 -> 163 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorcurvearrows.pngbin0 -> 164 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorcurvearrowstart.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorcurvecircleend.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorcurvecircles.pngbin0 -> 167 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorcurvecirclestart.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorline.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorlinearrowend.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorlinearrows.pngbin0 -> 158 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorlinearrowstart.pngbin0 -> 153 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorlinecircleend.pngbin0 -> 150 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorlinecircles.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorlinecirclestart.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorlines.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorlinesarrowend.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorlinesarrows.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorlinesarrowstart.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorlinescircleend.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorlinescircles.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorlinescirclestart.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectortoolbox.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/lch_contourdialog.pngbin0 -> 207 bytes-rw-r--r--default_images/res/commandimagelist/lch_controlcodes.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/lch_controlproperties.pngbin0 -> 207 bytes-rw-r--r--default_images/res/commandimagelist/lch_convertinto3d.pngbin0 -> 182 bytes-rw-r--r--default_images/res/commandimagelist/lch_convertinto3dlathe.pngbin0 -> 197 bytes-rw-r--r--default_images/res/commandimagelist/lch_convertinto3dlathefast.pngbin0 -> 192 bytes-rw-r--r--default_images/res/commandimagelist/lch_copy.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/lch_countall.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_crookrotate.pngbin0 -> 199 bytes-rw-r--r--default_images/res/commandimagelist/lch_crookslant.pngbin0 -> 209 bytes-rw-r--r--default_images/res/commandimagelist/lch_crop.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_cube.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/lch_currencyfield.pngbin0 -> 183 bytes-rw-r--r--default_images/res/commandimagelist/lch_customanimation.pngbin0 -> 228 bytes-rw-r--r--default_images/res/commandimagelist/lch_cut.pngbin0 -> 208 bytes-rw-r--r--default_images/res/commandimagelist/lch_cylinder.pngbin0 -> 175 bytes-rw-r--r--default_images/res/commandimagelist/lch_cyramid.pngbin0 -> 177 bytes-rw-r--r--default_images/res/commandimagelist/lch_datadatapilotrun.pngbin0 -> 186 bytes-rw-r--r--default_images/res/commandimagelist/lch_datafilterautofilter.pngbin0 -> 210 bytes-rw-r--r--default_images/res/commandimagelist/lch_datafilterspecialfilter.pngbin0 -> 166 bytes-rw-r--r--default_images/res/commandimagelist/lch_datafilterstandardfilter.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/lch_dataimport.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/lch_dataincolumns.pngbin0 -> 114 bytes-rw-r--r--default_images/res/commandimagelist/lch_datainrows.pngbin0 -> 111 bytes-rw-r--r--default_images/res/commandimagelist/lch_datefield.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbaddrelation.pngbin0 -> 207 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbchangedesignmode.pngbin0 -> 217 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbclearquery.pngbin0 -> 230 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbdistinctvalues.pngbin0 -> 175 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbformdelete.pngbin0 -> 204 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbformedit.pngbin0 -> 221 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbformopen.pngbin0 -> 216 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbformrename.pngbin0 -> 184 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbindexdesign.pngbin0 -> 199 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbnewform.pngbin0 -> 228 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbnewformautopilot.pngbin0 -> 284 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbnewquery.pngbin0 -> 214 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbnewqueryautopilot.pngbin0 -> 272 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbnewquerysql.pngbin0 -> 168 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbnewreport.pngbin0 -> 192 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbnewreportautopilot.pngbin0 -> 248 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbnewtable.pngbin0 -> 171 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbnewtableautopilot.pngbin0 -> 252 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbnewview.pngbin0 -> 205 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbnewviewsql.pngbin0 -> 220 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbquerydelete.pngbin0 -> 212 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbqueryedit.pngbin0 -> 241 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbqueryopen.pngbin0 -> 203 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbqueryrename.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbreportdelete.pngbin0 -> 205 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbreportedit.pngbin0 -> 212 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbreportopen.pngbin0 -> 187 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbreportrename.pngbin0 -> 167 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbsortingandgrouping.pngbin0 -> 108 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbtabledelete.pngbin0 -> 212 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbtableedit.pngbin0 -> 198 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbtableopen.pngbin0 -> 177 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbtablerename.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbviewaliases.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbviewfunctions.pngbin0 -> 151 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbviewtablenames.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/lch_decrementindent.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/lch_decrementlevel.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/lch_decrementsublevels.pngbin0 -> 169 bytes-rw-r--r--default_images/res/commandimagelist/lch_defaultbullet.pngbin0 -> 105 bytes-rw-r--r--default_images/res/commandimagelist/lch_defaultnumbering.pngbin0 -> 125 bytes-rw-r--r--default_images/res/commandimagelist/lch_definename.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/lch_defineprintarea.pngbin0 -> 225 bytes-rw-r--r--default_images/res/commandimagelist/lch_delete.pngbin0 -> 165 bytes-rwxr-xr-xdefault_images/res/commandimagelist/lch_deleteallannotation.pngbin0 -> 3740 bytes-rwxr-xr-xdefault_images/res/commandimagelist/lch_deleteannotation.pngbin0 -> 3744 bytes-rw-r--r--default_images/res/commandimagelist/lch_deletecolumns.pngbin0 -> 111 bytes-rw-r--r--default_images/res/commandimagelist/lch_deletemasterpage.pngbin0 -> 231 bytes-rw-r--r--default_images/res/commandimagelist/lch_deleteprintarea.pngbin0 -> 247 bytes-rw-r--r--default_images/res/commandimagelist/lch_deleterecord.pngbin0 -> 186 bytes-rw-r--r--default_images/res/commandimagelist/lch_deleterows.pngbin0 -> 113 bytes-rw-r--r--default_images/res/commandimagelist/lch_designerdialog.pngbin0 -> 176 bytes-rw-r--r--default_images/res/commandimagelist/lch_dia.pngbin0 -> 190 bytes-rw-r--r--default_images/res/commandimagelist/lch_diaauto.pngbin0 -> 190 bytes-rw-r--r--default_images/res/commandimagelist/lch_diaeffect.pngbin0 -> 190 bytes-rw-r--r--default_images/res/commandimagelist/lch_diagramdata.pngbin0 -> 313 bytes-rw-r--r--default_images/res/commandimagelist/lch_diagramtype.pngbin0 -> 165 bytes-rw-r--r--default_images/res/commandimagelist/lch_diaspeed.pngbin0 -> 190 bytes-rw-r--r--default_images/res/commandimagelist/lch_diatime.pngbin0 -> 190 bytes-rw-r--r--default_images/res/commandimagelist/lch_distributecolumns.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/lch_distributerows.pngbin0 -> 150 bytes-rw-r--r--default_images/res/commandimagelist/lch_doubleclicktextedit.pngbin0 -> 188 bytes-rw-r--r--default_images/res/commandimagelist/lch_downsearch.pngbin0 -> 3686 bytes-rw-r--r--default_images/res/commandimagelist/lch_draw.pngbin0 -> 190 bytes-rw-r--r--default_images/res/commandimagelist/lch_drawcaption.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/lch_drawchart.pngbin0 -> 114 bytes-rw-r--r--default_images/res/commandimagelist/lch_drawselect.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/lch_drawtext.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/lch_dsbdocumentdatasource.pngbin0 -> 215 bytes-rw-r--r--default_images/res/commandimagelist/lch_dsbeditdoc.pngbin0 -> 197 bytes-rw-r--r--default_images/res/commandimagelist/lch_dsbformletter.pngbin0 -> 197 bytes-rw-r--r--default_images/res/commandimagelist/lch_dsbinsertcolumns.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/lch_dsbinsertcontent.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/lch_dsbrowserexplorer.pngbin0 -> 153 bytes-rw-r--r--default_images/res/commandimagelist/lch_duplicatepage.pngbin0 -> 192 bytes-rw-r--r--default_images/res/commandimagelist/lch_edit.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/lch_editdoc.pngbin0 -> 197 bytes-rw-r--r--default_images/res/commandimagelist/lch_editframeset.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_editglossary.pngbin0 -> 211 bytes-rw-r--r--default_images/res/commandimagelist/lch_editheaderandfooter.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/lch_editprintarea.pngbin0 -> 236 bytes-rw-r--r--default_images/res/commandimagelist/lch_ellipse.pngbin0 -> 165 bytes-rw-r--r--default_images/res/commandimagelist/lch_ellipse_unfilled.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/lch_ellipsecut.pngbin0 -> 171 bytes-rw-r--r--default_images/res/commandimagelist/lch_ellipsecut_unfilled.pngbin0 -> 154 bytes-rw-r--r--default_images/res/commandimagelist/lch_ellipsetoolbox.pngbin0 -> 165 bytes-rw-r--r--default_images/res/commandimagelist/lch_entergroup.pngbin0 -> 176 bytes-rw-r--r--default_images/res/commandimagelist/lch_entirecolumn.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/lch_entirerow.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/lch_euroconverter.pngbin0 -> 184 bytes-rw-r--r--default_images/res/commandimagelist/lch_executereport.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/lch_expandpage.pngbin0 -> 178 bytes-rw-r--r--default_images/res/commandimagelist/lch_exportdialog.pngbin0 -> 189 bytes-rw-r--r--default_images/res/commandimagelist/lch_exportdirecttopdf.pngbin0 -> 169 bytes-rw-r--r--default_images/res/commandimagelist/lch_exportto.pngbin0 -> 171 bytes-rw-r--r--default_images/res/commandimagelist/lch_extendedhelp.pngbin0 -> 186 bytes-rw-r--r--default_images/res/commandimagelist/lch_extrusion3dcolor.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_extrusiondepthfloater.pngbin0 -> 198 bytes-rw-r--r--default_images/res/commandimagelist/lch_extrusiondirectionfloater.pngbin0 -> 193 bytes-rw-r--r--default_images/res/commandimagelist/lch_extrusionlightingfloater.pngbin0 -> 226 bytes-rw-r--r--default_images/res/commandimagelist/lch_extrusionsurfacefloater.pngbin0 -> 231 bytes-rw-r--r--default_images/res/commandimagelist/lch_extrusiontiltdown.pngbin0 -> 209 bytes-rw-r--r--default_images/res/commandimagelist/lch_extrusiontiltleft.pngbin0 -> 210 bytes-rw-r--r--default_images/res/commandimagelist/lch_extrusiontiltright.pngbin0 -> 211 bytes-rw-r--r--default_images/res/commandimagelist/lch_extrusiontiltup.pngbin0 -> 208 bytes-rw-r--r--default_images/res/commandimagelist/lch_extrusiontoggle.pngbin0 -> 182 bytes-rw-r--r--default_images/res/commandimagelist/lch_fieldnames.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/lch_fields.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/lch_filecontrol.pngbin0 -> 158 bytes-rw-r--r--default_images/res/commandimagelist/lch_filedocument.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_fillshadow.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/lch_fillstyle.pngbin0 -> 227 bytes-rw-r--r--default_images/res/commandimagelist/lch_filtercrit.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/lch_firstpage.pngbin0 -> 186 bytes-rw-r--r--default_images/res/commandimagelist/lch_firstrecord.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/lch_fliphorizontal.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/lch_flipvertical.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-alternate-process.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-card.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-collate.pngbin0 -> 173 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-connector.pngbin0 -> 176 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-data.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-decision.pngbin0 -> 165 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-delay.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-direct-access-storage.pngbin0 -> 164 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-display.pngbin0 -> 168 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-document.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-extract.pngbin0 -> 168 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-internal-storage.pngbin0 -> 113 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-magnetic-disk.pngbin0 -> 166 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-manual-input.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-manual-operation.pngbin0 -> 163 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-merge.pngbin0 -> 170 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-multidocument.pngbin0 -> 182 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-off-page-connector.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-or.pngbin0 -> 188 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-predefined-process.pngbin0 -> 115 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-preparation.pngbin0 -> 168 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-process.pngbin0 -> 107 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-punched-tape.pngbin0 -> 195 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-sequential-access.pngbin0 -> 187 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-sort.pngbin0 -> 169 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-stored-data.pngbin0 -> 148 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-summing-junction.pngbin0 -> 200 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-terminator.pngbin0 -> 150 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.pngbin0 -> 113 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontcolor.pngbin0 -> 181 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontdialog.pngbin0 -> 200 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontheight.pngbin0 -> 181 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontwork.pngbin0 -> 183 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkalignmentfloater.pngbin0 -> 319 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkcharacterspacingfloater.pngbin0 -> 197 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkgalleryfloater.pngbin0 -> 174 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworksameletterheights.pngbin0 -> 508 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-arch-down-curve.pngbin0 -> 158 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-arch-down-pour.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-arch-left-curve.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-arch-left-pour.pngbin0 -> 157 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-arch-right-curve.pngbin0 -> 158 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-arch-right-pour.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-arch-up-curve.pngbin0 -> 153 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-arch-up-pour.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-chevron-down.pngbin0 -> 151 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-chevron-up.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-circle-curve.pngbin0 -> 181 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-circle-pour.pngbin0 -> 169 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-curve-down.pngbin0 -> 171 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-curve-up.pngbin0 -> 172 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-fade-down.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-fade-left.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-fade-right.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-fade-up-and-left.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-fade-up-and-right.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-fade-up.pngbin0 -> 151 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-inflate.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-open-circle-curve.pngbin0 -> 188 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-open-circle-pour.pngbin0 -> 181 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-plain-text.pngbin0 -> 102 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-slant-down.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-slant-up.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-stop.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-triangle-down.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-triangle-up.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-wave.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.pngbin0 -> 183 bytes-rw-r--r--default_images/res/commandimagelist/lch_formatarea.pngbin0 -> 227 bytes-rw-r--r--default_images/res/commandimagelist/lch_formatgroup.pngbin0 -> 137 bytes-rw-r--r--default_images/res/commandimagelist/lch_formatline.pngbin0 -> 189 bytes-rw-r--r--default_images/res/commandimagelist/lch_formatpaintbrush.pngbin0 -> 217 bytes-rw-r--r--default_images/res/commandimagelist/lch_formattedfield.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/lch_formatungroup.pngbin0 -> 195 bytes-rw-r--r--default_images/res/commandimagelist/lch_formdesigntools.pngbin0 -> 190 bytes-rw-r--r--default_images/res/commandimagelist/lch_formelcursor.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/lch_formfilter.pngbin0 -> 178 bytes-rw-r--r--default_images/res/commandimagelist/lch_formfiltered.pngbin0 -> 179 bytes-rw-r--r--default_images/res/commandimagelist/lch_formfilterexecute.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/lch_formfilternavigator.pngbin0 -> 214 bytes-rw-r--r--default_images/res/commandimagelist/lch_formproperties.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/lch_forward.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/lch_framedialog.pngbin0 -> 171 bytes-rw-r--r--default_images/res/commandimagelist/lch_framelinecolor.pngbin0 -> 102 bytes-rw-r--r--default_images/res/commandimagelist/lch_freeline.pngbin0 -> 499 bytes-rw-r--r--default_images/res/commandimagelist/lch_freeline_unfilled.pngbin0 -> 499 bytes-rw-r--r--default_images/res/commandimagelist/lch_fullscreen.pngbin0 -> 194 bytes-rw-r--r--default_images/res/commandimagelist/lch_gallery.pngbin0 -> 163 bytes-rw-r--r--default_images/res/commandimagelist/lch_getactivetask.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_glueeditmode.pngbin0 -> 181 bytes-rw-r--r--default_images/res/commandimagelist/lch_glueescapedirectionbottom.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/lch_glueescapedirectionleft.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/lch_glueescapedirectionright.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/lch_glueescapedirectiontop.pngbin0 -> 159 bytes-rw-r--r--default_images/res/commandimagelist/lch_gluehorzaligncenter.pngbin0 -> 157 bytes-rw-r--r--default_images/res/commandimagelist/lch_gluehorzalignleft.pngbin0 -> 166 bytes-rw-r--r--default_images/res/commandimagelist/lch_gluehorzalignright.pngbin0 -> 166 bytes-rw-r--r--default_images/res/commandimagelist/lch_glueinsertpoint.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/lch_gluepercent.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/lch_gluevertalignbottom.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/lch_gluevertaligncenter.pngbin0 -> 150 bytes-rw-r--r--default_images/res/commandimagelist/lch_gluevertaligntop.pngbin0 -> 163 bytes-rw-r--r--default_images/res/commandimagelist/lch_goalseekdialog.pngbin0 -> 176 bytes-rw-r--r--default_images/res/commandimagelist/lch_gotoend.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/lch_gotoendofdoc.pngbin0 -> 185 bytes-rw-r--r--default_images/res/commandimagelist/lch_gotostartofdoc.pngbin0 -> 186 bytes-rw-r--r--default_images/res/commandimagelist/lch_gotostartoftable.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/lch_grafattrcrop.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_grafblue.pngbin0 -> 179 bytes-rw-r--r--default_images/res/commandimagelist/lch_grafcontrast.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/lch_grafgamma.pngbin0 -> 194 bytes-rw-r--r--default_images/res/commandimagelist/lch_grafgreen.pngbin0 -> 179 bytes-rw-r--r--default_images/res/commandimagelist/lch_grafinvert.pngbin0 -> 114 bytes-rw-r--r--default_images/res/commandimagelist/lch_grafluminance.pngbin0 -> 179 bytes-rw-r--r--default_images/res/commandimagelist/lch_grafmode.pngbin0 -> 214 bytes-rw-r--r--default_images/res/commandimagelist/lch_grafred.pngbin0 -> 179 bytes-rw-r--r--default_images/res/commandimagelist/lch_graftransparence.pngbin0 -> 163 bytes-rw-r--r--default_images/res/commandimagelist/lch_graphic.pngbin0 -> 445 bytes-rw-r--r--default_images/res/commandimagelist/lch_graphicfilterinvert.pngbin0 -> 114 bytes-rw-r--r--default_images/res/commandimagelist/lch_graphicfiltermosaic.pngbin0 -> 151 bytes-rw-r--r--default_images/res/commandimagelist/lch_graphicfilterpopart.pngbin0 -> 189 bytes-rw-r--r--default_images/res/commandimagelist/lch_graphicfilterposter.pngbin0 -> 184 bytes-rw-r--r--default_images/res/commandimagelist/lch_graphicfilterrelief.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/lch_graphicfilterremovenoise.pngbin0 -> 232 bytes-rw-r--r--default_images/res/commandimagelist/lch_graphicfiltersepia.pngbin0 -> 169 bytes-rw-r--r--default_images/res/commandimagelist/lch_graphicfiltersharpen.pngbin0 -> 164 bytes-rw-r--r--default_images/res/commandimagelist/lch_graphicfiltersmooth.pngbin0 -> 171 bytes-rw-r--r--default_images/res/commandimagelist/lch_graphicfiltersobel.pngbin0 -> 171 bytes-rw-r--r--default_images/res/commandimagelist/lch_graphicfiltersolarize.pngbin0 -> 174 bytes-rw-r--r--default_images/res/commandimagelist/lch_graphicfiltertoolbox.pngbin0 -> 204 bytes-rw-r--r--default_images/res/commandimagelist/lch_greatestheight.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/lch_greatestwidth.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/lch_grid.pngbin0 -> 313 bytes-rw-r--r--default_images/res/commandimagelist/lch_griduse.pngbin0 -> 165 bytes-rw-r--r--default_images/res/commandimagelist/lch_gridvisible.pngbin0 -> 330 bytes-rw-r--r--default_images/res/commandimagelist/lch_group.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/lch_groupbox.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/lch_grow.pngbin0 -> 199 bytes-rw-r--r--default_images/res/commandimagelist/lch_halfsphere.pngbin0 -> 181 bytes-rw-r--r--default_images/res/commandimagelist/lch_handlesdraft.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/lch_helpannotate.pngbin0 -> 166 bytes-rw-r--r--default_images/res/commandimagelist/lch_helpbookmark.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/lch_helpdownload.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_helperdialog.pngbin0 -> 204 bytes-rw-r--r--default_images/res/commandimagelist/lch_helpindex.pngbin0 -> 204 bytes-rw-r--r--default_images/res/commandimagelist/lch_helplinesmove.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/lch_helplinesuse.pngbin0 -> 158 bytes-rw-r--r--default_images/res/commandimagelist/lch_helplinesvisible.pngbin0 -> 101 bytes-rw-r--r--default_images/res/commandimagelist/lch_helpmenu.pngbin0 -> 208 bytes-rw-r--r--default_images/res/commandimagelist/lch_helpsearch.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/lch_helpzoomin.pngbin0 -> 183 bytes-rw-r--r--default_images/res/commandimagelist/lch_helpzoomout.pngbin0 -> 181 bytes-rw-r--r--default_images/res/commandimagelist/lch_hfixedline.pngbin0 -> 110 bytes-rw-r--r--default_images/res/commandimagelist/lch_hideslide.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/lch_hscrollbar.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/lch_hyperlinkdialog.pngbin0 -> 314 bytes-rw-r--r--default_images/res/commandimagelist/lch_hyphenate.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/lch_hyphenation.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/lch_imagebutton.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/lch_imagecontrol.pngbin0 -> 180 bytes-rw-r--r--default_images/res/commandimagelist/lch_imagemapdialog.pngbin0 -> 184 bytes-rwxr-xr-xdefault_images/res/commandimagelist/lch_importdialog.pngbin0 -> 427 bytes-rw-r--r--default_images/res/commandimagelist/lch_importfromfile.pngbin0 -> 209 bytes-rw-r--r--default_images/res/commandimagelist/lch_incrementindent.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/lch_incrementlevel.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/lch_incrementsublevels.pngbin0 -> 166 bytes-rw-r--r--default_images/res/commandimagelist/lch_inscellsctrl.pngbin0 -> 157 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertannotation.pngbin0 -> 166 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertauthorfield.pngbin0 -> 209 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertavmedia.pngbin0 -> 210 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertbookmark.pngbin0 -> 186 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertcaptiondialog.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertcellsdown.pngbin0 -> 168 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertcellsright.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertcolumns.pngbin0 -> 119 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertctrl.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertcurrencyfield.pngbin0 -> 183 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertdatefield.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertdoc.pngbin0 -> 181 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertdraw.pngbin0 -> 204 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertedit.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertendnote.pngbin0 -> 182 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertfield.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertfieldctrl.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertfilecontrol.pngbin0 -> 158 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertfixedtext.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertfootnote.pngbin0 -> 184 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertformattedfield.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertformula.pngbin0 -> 197 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertframe.pngbin0 -> 109 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertframeinteract.pngbin0 -> 109 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertframeinteractnocolumns.pngbin0 -> 109 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertgraphic.pngbin0 -> 167 bytes-rw-r--r--default_images/res/commandimagelist/lch_inserthyperlink.pngbin0 -> 248 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertimagecontrol.pngbin0 -> 180 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertindexesentry.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertlistbox.pngbin0 -> 151 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertmasterpage.pngbin0 -> 199 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertmath.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertneutralparagraph.pngbin0 -> 114 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertnumericfield.pngbin0 -> 151 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertobjctrl.pngbin0 -> 181 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertobject.pngbin0 -> 181 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertobjectchart.pngbin0 -> 114 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertobjectdialog.pngbin0 -> 181 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertobjectfloatingframe.pngbin0 -> 154 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertobjectstarmath.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertpage.pngbin0 -> 3703 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertpagecountfield.pngbin0 -> 148 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertpagenumberfield.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertpatternfield.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertplugin.pngbin0 -> 181 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertpushbutton.pngbin0 -> 116 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertreferencefield.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertrows.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertsection.pngbin0 -> 116 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertsound.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertspreadsheet.pngbin0 -> 313 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertsymbol.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/lch_inserttable.pngbin0 -> 313 bytes-rw-r--r--default_images/res/commandimagelist/lch_inserttextframe.pngbin0 -> 109 bytes-rw-r--r--default_images/res/commandimagelist/lch_inserttimefield.pngbin0 -> 207 bytes-rw-r--r--default_images/res/commandimagelist/lch_inserttitlefield.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/lch_inserttoolbox.pngbin0 -> 209 bytes-rw-r--r--default_images/res/commandimagelist/lch_inserttopicfield.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/lch_inserttreecontrol.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertvideo.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/lch_insobjctrl.pngbin0 -> 181 bytes-rw-r--r--default_images/res/commandimagelist/lch_interactivegradient.pngbin0 -> 214 bytes-rw-r--r--default_images/res/commandimagelist/lch_interactivetransparence.pngbin0 -> 236 bytes-rw-r--r--default_images/res/commandimagelist/lch_internetonline.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_italic.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/lch_justifypara.pngbin0 -> 315 bytes-rw-r--r--default_images/res/commandimagelist/lch_label.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/lch_lastpage.pngbin0 -> 185 bytes-rw-r--r--default_images/res/commandimagelist/lch_lastrecord.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/lch_leaveallgroups.pngbin0 -> 182 bytes-rw-r--r--default_images/res/commandimagelist/lch_leavegroup.pngbin0 -> 179 bytes-rw-r--r--default_images/res/commandimagelist/lch_leftpara.pngbin0 -> 317 bytes-rw-r--r--default_images/res/commandimagelist/lch_line.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/lch_line_diagonal.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/lch_linearrowcircle.pngbin0 -> 125 bytes-rw-r--r--default_images/res/commandimagelist/lch_linearrowend.pngbin0 -> 116 bytes-rw-r--r--default_images/res/commandimagelist/lch_linearrows.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/lch_linearrowsquare.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/lch_linearrowstart.pngbin0 -> 116 bytes-rw-r--r--default_images/res/commandimagelist/lch_linecirclearrow.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/lch_lineendstyle.pngbin0 -> 150 bytes-rw-r--r--default_images/res/commandimagelist/lch_linesquarearrow.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/lch_linestyle.pngbin0 -> 106 bytes-rw-r--r--default_images/res/commandimagelist/lch_linetoolbox.pngbin0 -> 499 bytes-rw-r--r--default_images/res/commandimagelist/lch_linewidth.pngbin0 -> 227 bytes-rw-r--r--default_images/res/commandimagelist/lch_listbox.pngbin0 -> 151 bytes-rw-r--r--default_images/res/commandimagelist/lch_loadbasic.pngbin0 -> 1110 bytes-rw-r--r--default_images/res/commandimagelist/lch_macrorecorder.pngbin0 -> 219 bytes-rw-r--r--default_images/res/commandimagelist/lch_macrorecordingfloat.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_mailwindow.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_managebreakpoints.pngbin0 -> 206 bytes-rw-r--r--default_images/res/commandimagelist/lch_managelanguage.pngbin0 -> 269 bytes-rw-r--r--default_images/res/commandimagelist/lch_marks.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/lch_matchgroup.pngbin0 -> 151 bytes-rw-r--r--default_images/res/commandimagelist/lch_measureline.pngbin0 -> 117 bytes-rw-r--r--default_images/res/commandimagelist/lch_mergecells.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/lch_mergedialog.pngbin0 -> 197 bytes-rw-r--r--default_images/res/commandimagelist/lch_mirror.pngbin0 -> 234 bytes-rw-r--r--default_images/res/commandimagelist/lch_modifyframe.pngbin0 -> 201 bytes-rw-r--r--default_images/res/commandimagelist/lch_modifypage.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/lch_moduledialog.pngbin0 -> 185 bytes-rw-r--r--default_images/res/commandimagelist/lch_morecontrols.pngbin0 -> 193 bytes-rw-r--r--default_images/res/commandimagelist/lch_movedown.pngbin0 -> 125 bytes-rw-r--r--default_images/res/commandimagelist/lch_movedownsubitems.pngbin0 -> 177 bytes-rw-r--r--default_images/res/commandimagelist/lch_moveup.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/lch_moveupsubitems.pngbin0 -> 172 bytes-rw-r--r--default_images/res/commandimagelist/lch_navigationbar.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/lch_navigator.pngbin0 -> 233 bytes-rw-r--r--default_images/res/commandimagelist/lch_newarrangement.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/lch_newdoc.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/lch_newrecord.pngbin0 -> 172 bytes-rwxr-xr-xdefault_images/res/commandimagelist/lch_nextannotation.pngbin0 -> 3700 bytes-rw-r--r--default_images/res/commandimagelist/lch_nextpage.pngbin0 -> 194 bytes-rw-r--r--default_images/res/commandimagelist/lch_nextrecord.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/lch_numberformatcurrency.pngbin0 -> 183 bytes-rw-r--r--default_images/res/commandimagelist/lch_numberformatdate.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/lch_numberformatdecdecimals.pngbin0 -> 205 bytes-rw-r--r--default_images/res/commandimagelist/lch_numberformatdecimal.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/lch_numberformatincdecimals.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_numberformatpercent.pngbin0 -> 159 bytes-rw-r--r--default_images/res/commandimagelist/lch_numberformatscientific.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/lch_numberformatstandard.pngbin0 -> 173 bytes-rw-r--r--default_images/res/commandimagelist/lch_numberingstart.pngbin0 -> 174 bytes-rw-r--r--default_images/res/commandimagelist/lch_numericfield.pngbin0 -> 151 bytes-rw-r--r--default_images/res/commandimagelist/lch_objectalign.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/lch_objectalignleft.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/lch_objectalignright.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/lch_objectcatalog.pngbin0 -> 167 bytes-rw-r--r--default_images/res/commandimagelist/lch_objectposition.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/lch_objects3dtoolbox.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/lch_open.pngbin0 -> 175 bytes-rw-r--r--default_images/res/commandimagelist/lch_openreadonly.pngbin0 -> 230 bytes-rw-r--r--default_images/res/commandimagelist/lch_openurl.pngbin0 -> 248 bytes-rw-r--r--default_images/res/commandimagelist/lch_optimizetable.pngbin0 -> 180 bytes-rw-r--r--default_images/res/commandimagelist/lch_ordercrit.pngbin0 -> 176 bytes-rw-r--r--default_images/res/commandimagelist/lch_outlinebullet.pngbin0 -> 163 bytes-rw-r--r--default_images/res/commandimagelist/lch_outlinecollapse.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/lch_outlinecollapseall.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/lch_outlinedown.pngbin0 -> 125 bytes-rw-r--r--default_images/res/commandimagelist/lch_outlineexpand.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/lch_outlineexpandall.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/lch_outlinefont.pngbin0 -> 182 bytes-rw-r--r--default_images/res/commandimagelist/lch_outlineformat.pngbin0 -> 200 bytes-rw-r--r--default_images/res/commandimagelist/lch_outlineleft.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/lch_outlineright.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/lch_outlineup.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/lch_overline.pngbin0 -> 296 bytes-rw-r--r--default_images/res/commandimagelist/lch_pagedown.pngbin0 -> 194 bytes-rw-r--r--default_images/res/commandimagelist/lch_pageup.pngbin0 -> 197 bytes-rw-r--r--default_images/res/commandimagelist/lch_paragraphdialog.pngbin0 -> 168 bytes-rw-r--r--default_images/res/commandimagelist/lch_paralefttoright.pngbin0 -> 153 bytes-rw-r--r--default_images/res/commandimagelist/lch_pararighttoleft.pngbin0 -> 154 bytes-rw-r--r--default_images/res/commandimagelist/lch_paraspacedecrease.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/lch_paraspaceincrease.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/lch_paste.pngbin0 -> 204 bytes-rw-r--r--default_images/res/commandimagelist/lch_patternfield.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/lch_pickthrough.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/lch_pie.pngbin0 -> 172 bytes-rw-r--r--default_images/res/commandimagelist/lch_pie_unfilled.pngbin0 -> 148 bytes-rw-r--r--default_images/res/commandimagelist/lch_playmacro.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_pluginsactive.pngbin0 -> 181 bytes-rw-r--r--default_images/res/commandimagelist/lch_polygon.pngbin0 -> 190 bytes-rw-r--r--default_images/res/commandimagelist/lch_polygon_diagonal.pngbin0 -> 116 bytes-rw-r--r--default_images/res/commandimagelist/lch_polygon_diagonal_unfilled.pngbin0 -> 100 bytes-rw-r--r--default_images/res/commandimagelist/lch_polygon_unfilled.pngbin0 -> 177 bytes-rw-r--r--default_images/res/commandimagelist/lch_presentation.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/lch_presentationlayout.pngbin0 -> 190 bytes-rw-r--r--default_images/res/commandimagelist/lch_preview.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/lch_previewprintoptions.pngbin0 -> 191 bytes-rw-r--r--default_images/res/commandimagelist/lch_previewzoom.pngbin0 -> 177 bytes-rwxr-xr-xdefault_images/res/commandimagelist/lch_previousannotation.pngbin0 -> 3700 bytes-rw-r--r--default_images/res/commandimagelist/lch_previouspage.pngbin0 -> 197 bytes-rw-r--r--default_images/res/commandimagelist/lch_prevrecord.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/lch_print.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/lch_printdefault.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/lch_printersetup.pngbin0 -> 191 bytes-rw-r--r--default_images/res/commandimagelist/lch_printlayout.pngbin0 -> 215 bytes-rw-r--r--default_images/res/commandimagelist/lch_printpagepreview.pngbin0 -> 182 bytes-rw-r--r--default_images/res/commandimagelist/lch_printpreview.pngbin0 -> 163 bytes-rw-r--r--default_images/res/commandimagelist/lch_progressbar.pngbin0 -> 114 bytes-rw-r--r--default_images/res/commandimagelist/lch_pushbutton.pngbin0 -> 116 bytes-rw-r--r--default_images/res/commandimagelist/lch_quickedit.pngbin0 -> 148 bytes-rw-r--r--default_images/res/commandimagelist/lch_quit.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/lch_radiobutton.pngbin0 -> 176 bytes-rw-r--r--default_images/res/commandimagelist/lch_recsave.pngbin0 -> 166 bytes-rw-r--r--default_images/res/commandimagelist/lch_recsearch.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/lch_rect.pngbin0 -> 107 bytes-rw-r--r--default_images/res/commandimagelist/lch_rect_rounded.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/lch_rect_rounded_unfilled.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/lch_rect_unfilled.pngbin0 -> 311 bytes-rw-r--r--default_images/res/commandimagelist/lch_rectangletoolbox.pngbin0 -> 107 bytes-rw-r--r--default_images/res/commandimagelist/lch_recundo.pngbin0 -> 209 bytes-rw-r--r--default_images/res/commandimagelist/lch_redo.pngbin0 -> 178 bytes-rw-r--r--default_images/res/commandimagelist/lch_refresh.pngbin0 -> 190 bytes-rw-r--r--default_images/res/commandimagelist/lch_refreshformcontrol.pngbin0 -> 247 bytes-rw-r--r--default_images/res/commandimagelist/lch_rehearsetimings.pngbin0 -> 204 bytes-rw-r--r--default_images/res/commandimagelist/lch_reload.pngbin0 -> 190 bytes-rw-r--r--default_images/res/commandimagelist/lch_removebullets.pngbin0 -> 297 bytes-rw-r--r--default_images/res/commandimagelist/lch_removefilter.pngbin0 -> 190 bytes-rw-r--r--default_images/res/commandimagelist/lch_removefiltersort.pngbin0 -> 190 bytes-rw-r--r--default_images/res/commandimagelist/lch_renamemasterpage.pngbin0 -> 191 bytes-rw-r--r--default_images/res/commandimagelist/lch_repeat.pngbin0 -> 210 bytes-rw-r--r--default_images/res/commandimagelist/lch_reportnavigator.pngbin0 -> 230 bytes-rw-r--r--default_images/res/commandimagelist/lch_reverseorder.pngbin0 -> 188 bytes-rw-r--r--default_images/res/commandimagelist/lch_rightpara.pngbin0 -> 317 bytes-rw-r--r--default_images/res/commandimagelist/lch_rulerrows.pngbin0 -> 210 bytes-rw-r--r--default_images/res/commandimagelist/lch_rulerrowsvertical.pngbin0 -> 211 bytes-rw-r--r--default_images/res/commandimagelist/lch_runbasic.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/lch_save.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/lch_saveas.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/lch_saveastemplate.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/lch_savebasicas.pngbin0 -> 168 bytes-rw-r--r--default_images/res/commandimagelist/lch_sbabrwinsert.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/lch_sbaexecutesql.pngbin0 -> 216 bytes-rw-r--r--default_images/res/commandimagelist/lch_sbanativesql.pngbin0 -> 177 bytes-rw-r--r--default_images/res/commandimagelist/lch_scaletext.pngbin0 -> 219 bytes-rw-r--r--default_images/res/commandimagelist/lch_scrollbar.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/lch_searchdialog.pngbin0 -> 155 bytes-rwxr-xr-xdefault_images/res/commandimagelist/lch_sectionalignbottom.pngbin0 -> 165 bytes-rwxr-xr-xdefault_images/res/commandimagelist/lch_sectionalignleft.pngbin0 -> 156 bytes-rwxr-xr-xdefault_images/res/commandimagelist/lch_sectionalignright.pngbin0 -> 150 bytes-rwxr-xr-xdefault_images/res/commandimagelist/lch_sectionaligntop.pngbin0 -> 167 bytes-rw-r--r--default_images/res/commandimagelist/lch_sectionshrink.pngbin0 -> 158 bytes-rw-r--r--default_images/res/commandimagelist/lch_sectionshrinkbottom.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/lch_sectionshrinktop.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/lch_selectall.pngbin0 -> 153 bytes-rw-r--r--default_images/res/commandimagelist/lch_selectmode.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/lch_selectobject.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/lch_selecttable.pngbin0 -> 108 bytes-rw-r--r--default_images/res/commandimagelist/lch_sendfax.pngbin0 -> 197 bytes-rw-r--r--default_images/res/commandimagelist/lch_sendmail.pngbin0 -> 201 bytes-rw-r--r--default_images/res/commandimagelist/lch_sendtoback.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/lch_setborderstyle.pngbin0 -> 314 bytes-rw-r--r--default_images/res/commandimagelist/lch_setdocumentproperties.pngbin0 -> 174 bytes-rw-r--r--default_images/res/commandimagelist/lch_setobjecttobackground.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/lch_setobjecttoforeground.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/lch_setoptimalcolumnwidth.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/lch_setoptimalcolumnwidthdirect.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/lch_setoptimalrowheight.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/lch_shadowcursor.pngbin0 -> 165 bytes-rw-r--r--default_images/res/commandimagelist/lch_shadowed.pngbin0 -> 176 bytes-rw-r--r--default_images/res/commandimagelist/lch_shear.pngbin0 -> 177 bytes-rw-r--r--default_images/res/commandimagelist/lch_shell3d.pngbin0 -> 199 bytes-rwxr-xr-xdefault_images/res/commandimagelist/lch_showannotation.pngbin0 -> 3628 bytes-rw-r--r--default_images/res/commandimagelist/lch_showbookview.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/lch_showbrowser.pngbin0 -> 207 bytes-rw-r--r--default_images/res/commandimagelist/lch_showdatanavigator.pngbin0 -> 148 bytes-rw-r--r--default_images/res/commandimagelist/lch_showfmexplorer.pngbin0 -> 242 bytes-rw-r--r--default_images/res/commandimagelist/lch_showmultiplepages.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/lch_showpropbrowser.pngbin0 -> 207 bytes-rw-r--r--default_images/res/commandimagelist/lch_showslide.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/lch_showtwopages.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/lch_shrink.pngbin0 -> 182 bytes-rw-r--r--default_images/res/commandimagelist/lch_smallestheight.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/lch_smallestwidth.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/lch_snapborder.pngbin0 -> 165 bytes-rw-r--r--default_images/res/commandimagelist/lch_snapframe.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/lch_snappoints.pngbin0 -> 184 bytes-rw-r--r--default_images/res/commandimagelist/lch_solidcreate.pngbin0 -> 169 bytes-rw-r--r--default_images/res/commandimagelist/lch_sortascending.pngbin0 -> 199 bytes-rw-r--r--default_images/res/commandimagelist/lch_sortdescending.pngbin0 -> 212 bytes-rw-r--r--default_images/res/commandimagelist/lch_sortdown.pngbin0 -> 212 bytes-rw-r--r--default_images/res/commandimagelist/lch_sortup.pngbin0 -> 199 bytes-rw-r--r--default_images/res/commandimagelist/lch_sourceview.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/lch_spacepara1.pngbin0 -> 315 bytes-rw-r--r--default_images/res/commandimagelist/lch_spacepara15.pngbin0 -> 315 bytes-rw-r--r--default_images/res/commandimagelist/lch_spacepara2.pngbin0 -> 316 bytes-rw-r--r--default_images/res/commandimagelist/lch_spelldialog.pngbin0 -> 196 bytes-rw-r--r--default_images/res/commandimagelist/lch_spelling.pngbin0 -> 196 bytes-rw-r--r--default_images/res/commandimagelist/lch_spellingandgrammardialog.pngbin0 -> 196 bytes-rw-r--r--default_images/res/commandimagelist/lch_spellonline.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/lch_sphere.pngbin0 -> 210 bytes-rw-r--r--default_images/res/commandimagelist/lch_spinbutton.pngbin0 -> 116 bytes-rw-r--r--default_images/res/commandimagelist/lch_splitcell.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/lch_splithorizontal.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_splitparenthorizontal.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_splitparentvertical.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_splitvertical.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_square.pngbin0 -> 107 bytes-rw-r--r--default_images/res/commandimagelist/lch_square_rounded.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/lch_square_rounded_unfilled.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/lch_square_unfilled.pngbin0 -> 313 bytes-rw-r--r--default_images/res/commandimagelist/lch_starchartdialog.pngbin0 -> 114 bytes-rw-r--r--default_images/res/commandimagelist/lch_starshapes.bang.pngbin0 -> 241 bytes-rw-r--r--default_images/res/commandimagelist/lch_starshapes.concave-star6.pngbin0 -> 201 bytes-rw-r--r--default_images/res/commandimagelist/lch_starshapes.doorplate.pngbin0 -> 148 bytes-rw-r--r--default_images/res/commandimagelist/lch_starshapes.horizontal-scroll.pngbin0 -> 175 bytes-rw-r--r--default_images/res/commandimagelist/lch_starshapes.pngbin0 -> 211 bytes-rw-r--r--default_images/res/commandimagelist/lch_starshapes.signet.pngbin0 -> 220 bytes-rw-r--r--default_images/res/commandimagelist/lch_starshapes.star12.pngbin0 -> 243 bytes-rw-r--r--default_images/res/commandimagelist/lch_starshapes.star24.pngbin0 -> 237 bytes-rw-r--r--default_images/res/commandimagelist/lch_starshapes.star4.pngbin0 -> 188 bytes-rw-r--r--default_images/res/commandimagelist/lch_starshapes.star5.pngbin0 -> 211 bytes-rw-r--r--default_images/res/commandimagelist/lch_starshapes.star6.pngbin0 -> 180 bytes-rw-r--r--default_images/res/commandimagelist/lch_starshapes.star8.pngbin0 -> 204 bytes-rw-r--r--default_images/res/commandimagelist/lch_starshapes.vertical-scroll.pngbin0 -> 171 bytes-rw-r--r--default_images/res/commandimagelist/lch_strikeout.pngbin0 -> 166 bytes-rw-r--r--default_images/res/commandimagelist/lch_styleapply.pngbin0 -> 227 bytes-rw-r--r--default_images/res/commandimagelist/lch_stylenewbyexample.pngbin0 -> 184 bytes-rw-r--r--default_images/res/commandimagelist/lch_styleupdatebyexample.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_subscript.pngbin0 -> 224 bytes-rw-r--r--default_images/res/commandimagelist/lch_superscript.pngbin0 -> 226 bytes-rw-r--r--default_images/res/commandimagelist/lch_switchcontroldesignmode.pngbin0 -> 213 bytes-rw-r--r--default_images/res/commandimagelist/lch_switchxformsdesignmode.pngbin0 -> 213 bytes-rw-r--r--default_images/res/commandimagelist/lch_symbolcatalogue.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/lch_symbolshapes.brace-pair.pngbin0 -> 175 bytes-rw-r--r--default_images/res/commandimagelist/lch_symbolshapes.bracket-pair.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/lch_symbolshapes.cloud.pngbin0 -> 211 bytes-rw-r--r--default_images/res/commandimagelist/lch_symbolshapes.diamond-bevel.pngbin0 -> 184 bytes-rw-r--r--default_images/res/commandimagelist/lch_symbolshapes.flower.pngbin0 -> 210 bytes-rw-r--r--default_images/res/commandimagelist/lch_symbolshapes.forbidden.pngbin0 -> 216 bytes-rw-r--r--default_images/res/commandimagelist/lch_symbolshapes.heart.pngbin0 -> 204 bytes-rw-r--r--default_images/res/commandimagelist/lch_symbolshapes.left-brace.pngbin0 -> 150 bytes-rw-r--r--default_images/res/commandimagelist/lch_symbolshapes.left-bracket.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/lch_symbolshapes.lightning.pngbin0 -> 187 bytes-rw-r--r--default_images/res/commandimagelist/lch_symbolshapes.moon.pngbin0 -> 185 bytes-rw-r--r--default_images/res/commandimagelist/lch_symbolshapes.octagon-bevel.pngbin0 -> 204 bytes-rw-r--r--default_images/res/commandimagelist/lch_symbolshapes.pngbin0 -> 207 bytes-rw-r--r--default_images/res/commandimagelist/lch_symbolshapes.puzzle.pngbin0 -> 207 bytes-rw-r--r--default_images/res/commandimagelist/lch_symbolshapes.quad-bevel.pngbin0 -> 163 bytes-rw-r--r--default_images/res/commandimagelist/lch_symbolshapes.right-brace.pngbin0 -> 150 bytes-rw-r--r--default_images/res/commandimagelist/lch_symbolshapes.right-bracket.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/lch_symbolshapes.smiley.pngbin0 -> 207 bytes-rw-r--r--default_images/res/commandimagelist/lch_symbolshapes.sun.pngbin0 -> 233 bytes-rw-r--r--default_images/res/commandimagelist/lch_tabdialog.pngbin0 -> 198 bytes-rw-r--r--default_images/res/commandimagelist/lch_tabledesign.pngbin0 -> 201 bytes-rw-r--r--default_images/res/commandimagelist/lch_tabledialog.pngbin0 -> 169 bytes-rw-r--r--default_images/res/commandimagelist/lch_tablemodefix.pngbin0 -> 116 bytes-rw-r--r--default_images/res/commandimagelist/lch_tablemodefixprop.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/lch_tablemodevariable.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/lch_tablesort.pngbin0 -> 176 bytes-rw-r--r--default_images/res/commandimagelist/lch_testmode.pngbin0 -> 213 bytes-rw-r--r--default_images/res/commandimagelist/lch_text.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/lch_text_marquee.pngbin0 -> 154 bytes-rw-r--r--default_images/res/commandimagelist/lch_textdirectionlefttoright.pngbin0 -> 173 bytes-rw-r--r--default_images/res/commandimagelist/lch_textdirectiontoptobottom.pngbin0 -> 167 bytes-rw-r--r--default_images/res/commandimagelist/lch_textfittosizetool.pngbin0 -> 163 bytes-rw-r--r--default_images/res/commandimagelist/lch_texttoolbox.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/lch_thesaurus.pngbin0 -> 167 bytes-rw-r--r--default_images/res/commandimagelist/lch_thesaurusdialog.pngbin0 -> 167 bytes-rw-r--r--default_images/res/commandimagelist/lch_timefield.pngbin0 -> 207 bytes-rw-r--r--default_images/res/commandimagelist/lch_toggleanchortype.pngbin0 -> 189 bytes-rw-r--r--default_images/res/commandimagelist/lch_toggleaxisdescr.pngbin0 -> 111 bytes-rw-r--r--default_images/res/commandimagelist/lch_toggleaxistitle.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/lch_togglebreakpoint.pngbin0 -> 219 bytes-rw-r--r--default_images/res/commandimagelist/lch_togglegridhorizontal.pngbin0 -> 114 bytes-rw-r--r--default_images/res/commandimagelist/lch_togglegridvertical.pngbin0 -> 111 bytes-rw-r--r--default_images/res/commandimagelist/lch_togglelegend.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/lch_togglemergecells.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/lch_toggleobjectbeziermode.pngbin0 -> 178 bytes-rw-r--r--default_images/res/commandimagelist/lch_toggleobjectrotatemode.pngbin0 -> 177 bytes-rw-r--r--default_images/res/commandimagelist/lch_toggletitle.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/lch_toolsmacroedit.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_toolsoptions.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_torus.pngbin0 -> 197 bytes-rw-r--r--default_images/res/commandimagelist/lch_transformdialog.pngbin0 -> 177 bytes-rw-r--r--default_images/res/commandimagelist/lch_underline.pngbin0 -> 177 bytes-rw-r--r--default_images/res/commandimagelist/lch_underlinedouble.pngbin0 -> 178 bytes-rw-r--r--default_images/res/commandimagelist/lch_undo.pngbin0 -> 179 bytes-rw-r--r--default_images/res/commandimagelist/lch_ungroup.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/lch_unhainframes.pngbin0 -> 221 bytes-rw-r--r--default_images/res/commandimagelist/lch_upsearch.pngbin0 -> 3672 bytes-rw-r--r--default_images/res/commandimagelist/lch_urlbutton.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_usewizards.pngbin0 -> 225 bytes-rw-r--r--default_images/res/commandimagelist/lch_verticalcaption.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/lch_verticaltext.pngbin0 -> 119 bytes-rw-r--r--default_images/res/commandimagelist/lch_verticaltextfittosizetool.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/lch_vfixedline.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/lch_view100.pngbin0 -> 174 bytes-rw-r--r--default_images/res/commandimagelist/lch_viewdatasourcebrowser.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/lch_viewformasgrid.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/lch_vscrollbar.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/lch_window3d.pngbin0 -> 178 bytes-rw-r--r--default_images/res/commandimagelist/lch_wrapcontour.pngbin0 -> 157 bytes-rw-r--r--default_images/res/commandimagelist/lch_wrapideal.pngbin0 -> 151 bytes-rw-r--r--default_images/res/commandimagelist/lch_wrapleft.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/lch_wrapoff.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/lch_wrapon.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/lch_wrapright.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/lch_wrapthrough.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/lch_xlinecolor.pngbin0 -> 227 bytes-rw-r--r--default_images/res/commandimagelist/lch_xlinestyle.pngbin0 -> 227 bytes-rw-r--r--default_images/res/commandimagelist/lch_zoom.pngbin0 -> 177 bytes-rw-r--r--default_images/res/commandimagelist/lch_zoom100percent.pngbin0 -> 174 bytes-rw-r--r--default_images/res/commandimagelist/lch_zoomin.pngbin0 -> 183 bytes-rw-r--r--default_images/res/commandimagelist/lch_zoomminus.pngbin0 -> 181 bytes-rw-r--r--default_images/res/commandimagelist/lch_zoomnext.pngbin0 -> 204 bytes-rw-r--r--default_images/res/commandimagelist/lch_zoomobjects.pngbin0 -> 203 bytes-rw-r--r--default_images/res/commandimagelist/lch_zoomoptimal.pngbin0 -> 194 bytes-rw-r--r--default_images/res/commandimagelist/lch_zoomout.pngbin0 -> 181 bytes-rw-r--r--default_images/res/commandimagelist/lch_zoompage.pngbin0 -> 163 bytes-rw-r--r--default_images/res/commandimagelist/lch_zoompagewidth.pngbin0 -> 201 bytes-rw-r--r--default_images/res/commandimagelist/lch_zoompanning.pngbin0 -> 233 bytes-rw-r--r--default_images/res/commandimagelist/lch_zoomplus.pngbin0 -> 183 bytes-rw-r--r--default_images/res/commandimagelist/lch_zoomprevious.pngbin0 -> 196 bytes-rw-r--r--default_images/res/commandimagelist/lch_zoomtoolbox.pngbin0 -> 177 bytes-rw-r--r--default_images/res/commandimagelist/nl/lc_bold.pngbin0 -> 471 bytes-rw-r--r--default_images/res/commandimagelist/nl/lc_italic.pngbin0 -> 531 bytes-rw-r--r--default_images/res/commandimagelist/nl/lc_underline.pngbin0 -> 542 bytes-rw-r--r--default_images/res/commandimagelist/nl/lc_underlinedouble.pngbin0 -> 542 bytes-rw-r--r--default_images/res/commandimagelist/nl/lch_bold.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/nl/lch_italic.pngbin0 -> 489 bytes-rw-r--r--default_images/res/commandimagelist/nl/lch_underline.pngbin0 -> 186 bytes-rw-r--r--default_images/res/commandimagelist/nl/lch_underlinedouble.pngbin0 -> 189 bytes-rw-r--r--default_images/res/commandimagelist/nl/sc_bold.pngbin0 -> 326 bytes-rw-r--r--default_images/res/commandimagelist/nl/sc_italic.pngbin0 -> 368 bytes-rw-r--r--default_images/res/commandimagelist/nl/sc_underline.pngbin0 -> 397 bytes-rw-r--r--default_images/res/commandimagelist/nl/sc_underlinedouble.pngbin0 -> 400 bytes-rw-r--r--default_images/res/commandimagelist/nl/sch_bold.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/nl/sch_italic.pngbin0 -> 339 bytes-rw-r--r--default_images/res/commandimagelist/nl/sch_underline.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/nl/sch_underlinedouble.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/pl/lc_bold.pngbin0 -> 516 bytes-rw-r--r--default_images/res/commandimagelist/pl/lc_italic.pngbin0 -> 574 bytes-rw-r--r--default_images/res/commandimagelist/pl/lc_underline.pngbin0 -> 419 bytes-rw-r--r--default_images/res/commandimagelist/pl/lc_underlinedouble.pngbin0 -> 516 bytes-rw-r--r--default_images/res/commandimagelist/pl/lch_bold.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/pl/lch_italic.pngbin0 -> 494 bytes-rw-r--r--default_images/res/commandimagelist/pl/lch_underline.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/pl/lch_underlinedouble.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/pl/sc_bold.pngbin0 -> 366 bytes-rw-r--r--default_images/res/commandimagelist/pl/sc_italic.pngbin0 -> 398 bytes-rw-r--r--default_images/res/commandimagelist/pl/sc_underline.pngbin0 -> 333 bytes-rw-r--r--default_images/res/commandimagelist/pl/sc_underlinedouble.pngbin0 -> 408 bytes-rw-r--r--default_images/res/commandimagelist/pl/sch_bold.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/pl/sch_italic.pngbin0 -> 346 bytes-rw-r--r--default_images/res/commandimagelist/pl/sch_underline.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/pl/sch_underlinedouble.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/pt-BR/lc_bold.pngbin0 -> 396 bytes-rw-r--r--default_images/res/commandimagelist/pt-BR/lc_italic.pngbin0 -> 440 bytes-rw-r--r--default_images/res/commandimagelist/pt-BR/lc_underline.pngbin0 -> 521 bytes-rw-r--r--default_images/res/commandimagelist/pt-BR/lc_underlinedouble.pngbin0 -> 531 bytes-rw-r--r--default_images/res/commandimagelist/pt-BR/lch_bold.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/pt-BR/lch_italic.pngbin0 -> 425 bytes-rw-r--r--default_images/res/commandimagelist/pt-BR/lch_underline.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/pt-BR/lch_underlinedouble.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/pt-BR/sc_bold.pngbin0 -> 296 bytes-rw-r--r--default_images/res/commandimagelist/pt-BR/sc_italic.pngbin0 -> 304 bytes-rw-r--r--default_images/res/commandimagelist/pt-BR/sc_underline.pngbin0 -> 386 bytes-rw-r--r--default_images/res/commandimagelist/pt-BR/sc_underlinedouble.pngbin0 -> 394 bytes-rw-r--r--default_images/res/commandimagelist/pt-BR/sch_bold.pngbin0 -> 105 bytes-rw-r--r--default_images/res/commandimagelist/pt-BR/sch_italic.pngbin0 -> 289 bytes-rw-r--r--default_images/res/commandimagelist/pt-BR/sch_underline.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/pt-BR/sch_underlinedouble.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/pt/lc_bold.pngbin0 -> 396 bytes-rw-r--r--default_images/res/commandimagelist/pt/lc_italic.pngbin0 -> 440 bytes-rw-r--r--default_images/res/commandimagelist/pt/lc_underline.pngbin0 -> 521 bytes-rw-r--r--default_images/res/commandimagelist/pt/lc_underlinedouble.pngbin0 -> 531 bytes-rw-r--r--default_images/res/commandimagelist/pt/lch_bold.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/pt/lch_italic.pngbin0 -> 425 bytes-rw-r--r--default_images/res/commandimagelist/pt/lch_underline.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/pt/lch_underlinedouble.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/pt/sc_bold.pngbin0 -> 296 bytes-rw-r--r--default_images/res/commandimagelist/pt/sc_italic.pngbin0 -> 304 bytes-rw-r--r--default_images/res/commandimagelist/pt/sc_underline.pngbin0 -> 386 bytes-rw-r--r--default_images/res/commandimagelist/pt/sc_underlinedouble.pngbin0 -> 394 bytes-rw-r--r--default_images/res/commandimagelist/pt/sch_bold.pngbin0 -> 105 bytes-rw-r--r--default_images/res/commandimagelist/pt/sch_italic.pngbin0 -> 289 bytes-rw-r--r--default_images/res/commandimagelist/pt/sch_underline.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/pt/sch_underlinedouble.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/ru/lc_bold.pngbin0 -> 443 bytes-rw-r--r--default_images/res/commandimagelist/ru/lc_italic.pngbin0 -> 465 bytes-rw-r--r--default_images/res/commandimagelist/ru/lc_underline.pngbin0 -> 344 bytes-rw-r--r--default_images/res/commandimagelist/ru/lc_underlinedouble.pngbin0 -> 345 bytes-rw-r--r--default_images/res/commandimagelist/ru/lch_bold.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/ru/lch_italic.pngbin0 -> 344 bytes-rw-r--r--default_images/res/commandimagelist/ru/lch_underline.pngbin0 -> 112 bytes-rw-r--r--default_images/res/commandimagelist/ru/lch_underlinedouble.pngbin0 -> 113 bytes-rw-r--r--default_images/res/commandimagelist/ru/sc_bold.pngbin0 -> 278 bytes-rw-r--r--default_images/res/commandimagelist/ru/sc_italic.pngbin0 -> 291 bytes-rw-r--r--default_images/res/commandimagelist/ru/sc_underline.pngbin0 -> 261 bytes-rw-r--r--default_images/res/commandimagelist/ru/sc_underlinedouble.pngbin0 -> 265 bytes-rw-r--r--default_images/res/commandimagelist/ru/sch_bold.pngbin0 -> 116 bytes-rw-r--r--default_images/res/commandimagelist/ru/sch_italic.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/ru/sch_underline.pngbin0 -> 106 bytes-rw-r--r--default_images/res/commandimagelist/ru/sch_underlinedouble.pngbin0 -> 104 bytes-rw-r--r--default_images/res/commandimagelist/sc_absoluterecord.pngbin0 -> 895 bytes-rw-r--r--default_images/res/commandimagelist/sc_actionmode.pngbin0 -> 863 bytes-rw-r--r--default_images/res/commandimagelist/sc_addbookmark.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/sc_adddatefield.pngbin0 -> 626 bytes-rw-r--r--default_images/res/commandimagelist/sc_adddirect.pngbin0 -> 525 bytes-rw-r--r--default_images/res/commandimagelist/sc_addfield.pngbin0 -> 503 bytes-rw-r--r--default_images/res/commandimagelist/sc_addons.pngbin0 -> 557 bytes-rw-r--r--default_images/res/commandimagelist/sc_addprintarea.pngbin0 -> 542 bytes-rw-r--r--default_images/res/commandimagelist/sc_addtable.pngbin0 -> 576 bytes-rw-r--r--default_images/res/commandimagelist/sc_addwatch.pngbin0 -> 595 bytes-rw-r--r--default_images/res/commandimagelist/sc_adjust.pngbin0 -> 761 bytes-rw-r--r--default_images/res/commandimagelist/sc_advancedmode.pngbin0 -> 910 bytes-rw-r--r--default_images/res/commandimagelist/sc_alignblock.pngbin0 -> 314 bytes-rw-r--r--default_images/res/commandimagelist/sc_alignbottom.pngbin0 -> 630 bytes-rw-r--r--default_images/res/commandimagelist/sc_aligncenter.pngbin0 -> 750 bytes-rw-r--r--default_images/res/commandimagelist/sc_aligndown.pngbin0 -> 553 bytes-rw-r--r--default_images/res/commandimagelist/sc_alignhorizontalcenter.pngbin0 -> 324 bytes-rw-r--r--default_images/res/commandimagelist/sc_alignleft.pngbin0 -> 320 bytes-rw-r--r--default_images/res/commandimagelist/sc_alignmiddle.pngbin0 -> 737 bytes-rw-r--r--default_images/res/commandimagelist/sc_alignright.pngbin0 -> 322 bytes-rw-r--r--default_images/res/commandimagelist/sc_aligntop.pngbin0 -> 645 bytes-rw-r--r--default_images/res/commandimagelist/sc_alignup.pngbin0 -> 545 bytes-rw-r--r--default_images/res/commandimagelist/sc_alignvcenter.pngbin0 -> 673 bytes-rw-r--r--default_images/res/commandimagelist/sc_alignverticalcenter.pngbin0 -> 673 bytes-rw-r--r--default_images/res/commandimagelist/sc_animationeffects.pngbin0 -> 704 bytes-rw-r--r--default_images/res/commandimagelist/sc_animationmode.pngbin0 -> 757 bytes-rw-r--r--default_images/res/commandimagelist/sc_animationobjects.pngbin0 -> 524 bytes-rw-r--r--default_images/res/commandimagelist/sc_apply.pngbin0 -> 928 bytes-rw-r--r--default_images/res/commandimagelist/sc_arc.pngbin0 -> 716 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.chevron.pngbin0 -> 558 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.circular-arrow.pngbin0 -> 768 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.corner-right-arrow.pngbin0 -> 496 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.down-arrow-callout.pngbin0 -> 576 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.down-arrow.pngbin0 -> 581 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.left-arrow-callout.pngbin0 -> 586 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.left-arrow.pngbin0 -> 517 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.left-right-arrow-callout.pngbin0 -> 674 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.left-right-arrow.pngbin0 -> 522 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.notched-right-arrow.pngbin0 -> 566 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.pentagon-right.pngbin0 -> 525 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.pngbin0 -> 522 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.quad-arrow-callout.pngbin0 -> 717 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.quad-arrow.pngbin0 -> 678 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.right-arrow-callout.pngbin0 -> 596 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.right-arrow.pngbin0 -> 538 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.s-sharped-arrow.pngbin0 -> 741 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.split-arrow.pngbin0 -> 650 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.split-round-arrow.pngbin0 -> 769 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.striped-right-arrow.pngbin0 -> 530 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.up-arrow-callout.pngbin0 -> 549 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.up-arrow.pngbin0 -> 582 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.up-down-arrow-callout.pngbin0 -> 662 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.up-down-arrow.pngbin0 -> 661 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.up-right-arrow-callout.pngbin0 -> 673 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.up-right-arrow.pngbin0 -> 589 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.up-right-down-arrow.pngbin0 -> 649 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowstoolbox.pngbin0 -> 539 bytes-rw-r--r--default_images/res/commandimagelist/sc_assignlayout.pngbin0 -> 3890 bytes-rw-r--r--default_images/res/commandimagelist/sc_autocontrolfocus.pngbin0 -> 660 bytes-rw-r--r--default_images/res/commandimagelist/sc_autofilter.pngbin0 -> 711 bytes-rw-r--r--default_images/res/commandimagelist/sc_autoformat.pngbin0 -> 753 bytes-rw-r--r--default_images/res/commandimagelist/sc_autosum.pngbin0 -> 563 bytes-rw-r--r--default_images/res/commandimagelist/sc_avmediaplayer.pngbin0 -> 396 bytes-rw-r--r--default_images/res/commandimagelist/sc_backcolor.pngbin0 -> 616 bytes-rw-r--r--default_images/res/commandimagelist/sc_backgroundcolor.pngbin0 -> 789 bytes-rw-r--r--default_images/res/commandimagelist/sc_backgroundpatterncontroller.pngbin0 -> 789 bytes-rw-r--r--default_images/res/commandimagelist/sc_backward.pngbin0 -> 464 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.block-arc.pngbin0 -> 710 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.can.pngbin0 -> 839 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.circle-pie.pngbin0 -> 765 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.circle.pngbin0 -> 855 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.cross.pngbin0 -> 569 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.cube.pngbin0 -> 628 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.diamond.pngbin0 -> 671 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.ellipse.pngbin0 -> 756 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.frame.pngbin0 -> 506 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.hexagon.pngbin0 -> 552 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.isosceles-triangle.pngbin0 -> 518 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.octagon.pngbin0 -> 615 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.paper.pngbin0 -> 547 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.parallelogram.pngbin0 -> 565 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.pentagon.pngbin0 -> 623 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.pngbin0 -> 671 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.quadrat.pngbin0 -> 431 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.rectangle.pngbin0 -> 378 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.right-triangle.pngbin0 -> 522 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.ring.pngbin0 -> 1044 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.round-quadrat.pngbin0 -> 624 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.round-rectangle.pngbin0 -> 539 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.trapezoid.pngbin0 -> 585 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicstepinto.pngbin0 -> 662 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicstepout.pngbin0 -> 718 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicstepover.pngbin0 -> 698 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicstop.pngbin0 -> 592 bytes-rw-r--r--default_images/res/commandimagelist/sc_beamer.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/sc_beforeobject.pngbin0 -> 636 bytes-rw-r--r--default_images/res/commandimagelist/sc_behindobject.pngbin0 -> 733 bytes-rw-r--r--default_images/res/commandimagelist/sc_bezier_unfilled.pngbin0 -> 674 bytes-rw-r--r--default_images/res/commandimagelist/sc_bezierappend.pngbin0 -> 521 bytes-rw-r--r--default_images/res/commandimagelist/sc_bezierclose.pngbin0 -> 420 bytes-rw-r--r--default_images/res/commandimagelist/sc_bezierconvert.pngbin0 -> 766 bytes-rw-r--r--default_images/res/commandimagelist/sc_beziercutline.pngbin0 -> 882 bytes-rw-r--r--default_images/res/commandimagelist/sc_bezierdelete.pngbin0 -> 533 bytes-rw-r--r--default_images/res/commandimagelist/sc_bezieredge.pngbin0 -> 332 bytes-rw-r--r--default_images/res/commandimagelist/sc_beziereliminatepoints.pngbin0 -> 503 bytes-rw-r--r--default_images/res/commandimagelist/sc_bezierfill.pngbin0 -> 748 bytes-rw-r--r--default_images/res/commandimagelist/sc_bezierinsert.pngbin0 -> 523 bytes-rw-r--r--default_images/res/commandimagelist/sc_beziermove.pngbin0 -> 580 bytes-rw-r--r--default_images/res/commandimagelist/sc_beziersmooth.pngbin0 -> 405 bytes-rw-r--r--default_images/res/commandimagelist/sc_beziersymmetric.pngbin0 -> 446 bytes-rw-r--r--default_images/res/commandimagelist/sc_bighandles.pngbin0 -> 439 bytes-rw-r--r--default_images/res/commandimagelist/sc_bmpmask.pngbin0 -> 594 bytes-rw-r--r--default_images/res/commandimagelist/sc_bmpmask_h.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/sc_bold.pngbin0 -> 473 bytes-rw-r--r--default_images/res/commandimagelist/sc_borderdialog.pngbin0 -> 268 bytes-rw-r--r--default_images/res/commandimagelist/sc_bringtofront.pngbin0 -> 509 bytes-rw-r--r--default_images/res/commandimagelist/sc_browsebackward.pngbin0 -> 526 bytes-rw-r--r--default_images/res/commandimagelist/sc_browseforward.pngbin0 -> 537 bytes-rw-r--r--default_images/res/commandimagelist/sc_browseview.pngbin0 -> 825 bytes-rw-r--r--default_images/res/commandimagelist/sc_bullet.pngbin0 -> 794 bytes-rw-r--r--default_images/res/commandimagelist/sc_bulletsandnumberingdialog.pngbin0 -> 654 bytes-rw-r--r--default_images/res/commandimagelist/sc_calloutshapes.cloud-callout.pngbin0 -> 863 bytes-rw-r--r--default_images/res/commandimagelist/sc_calloutshapes.line-callout-1.pngbin0 -> 543 bytes-rw-r--r--default_images/res/commandimagelist/sc_calloutshapes.line-callout-2.pngbin0 -> 569 bytes-rw-r--r--default_images/res/commandimagelist/sc_calloutshapes.line-callout-3.pngbin0 -> 513 bytes-rw-r--r--default_images/res/commandimagelist/sc_calloutshapes.pngbin0 -> 701 bytes-rw-r--r--default_images/res/commandimagelist/sc_calloutshapes.rectangular-callout.pngbin0 -> 528 bytes-rw-r--r--default_images/res/commandimagelist/sc_calloutshapes.round-callout.pngbin0 -> 842 bytes-rw-r--r--default_images/res/commandimagelist/sc_calloutshapes.round-rectangular-callout.pngbin0 -> 701 bytes-rw-r--r--default_images/res/commandimagelist/sc_cancel.pngbin0 -> 510 bytes-rw-r--r--default_images/res/commandimagelist/sc_cellvertbottom.pngbin0 -> 630 bytes-rw-r--r--default_images/res/commandimagelist/sc_cellvertcenter.pngbin0 -> 673 bytes-rw-r--r--default_images/res/commandimagelist/sc_cellverttop.pngbin0 -> 645 bytes-rw-r--r--default_images/res/commandimagelist/sc_centerpara.pngbin0 -> 324 bytes-rw-r--r--default_images/res/commandimagelist/sc_chainframes.pngbin0 -> 532 bytes-rw-r--r--default_images/res/commandimagelist/sc_changebezier.pngbin0 -> 779 bytes-rw-r--r--default_images/res/commandimagelist/sc_changecasetolower.pngbin0 -> 555 bytes-rw-r--r--default_images/res/commandimagelist/sc_changecasetoupper.pngbin0 -> 550 bytes-rw-r--r--default_images/res/commandimagelist/sc_changedatabasefield.pngbin0 -> 1007 bytes-rw-r--r--default_images/res/commandimagelist/sc_changepolygon.pngbin0 -> 844 bytes-rw-r--r--default_images/res/commandimagelist/sc_charfontname.pngbin0 -> 814 bytes-rw-r--r--default_images/res/commandimagelist/sc_checkbox.pngbin0 -> 620 bytes-rw-r--r--default_images/res/commandimagelist/sc_choosecontrols.pngbin0 -> 676 bytes-rw-r--r--default_images/res/commandimagelist/sc_choosedesign.pngbin0 -> 899 bytes-rw-r--r--default_images/res/commandimagelist/sc_choosemacro.pngbin0 -> 652 bytes-rw-r--r--default_images/res/commandimagelist/sc_choosepolygon.pngbin0 -> 477 bytes-rw-r--r--default_images/res/commandimagelist/sc_circle.pngbin0 -> 855 bytes-rw-r--r--default_images/res/commandimagelist/sc_circle_unfilled.pngbin0 -> 885 bytes-rw-r--r--default_images/res/commandimagelist/sc_circlearc.pngbin0 -> 737 bytes-rw-r--r--default_images/res/commandimagelist/sc_circlecut.pngbin0 -> 831 bytes-rw-r--r--default_images/res/commandimagelist/sc_circlecut_unfilled.pngbin0 -> 884 bytes-rw-r--r--default_images/res/commandimagelist/sc_circlepie.pngbin0 -> 765 bytes-rw-r--r--default_images/res/commandimagelist/sc_circlepie_unfilled.pngbin0 -> 842 bytes-rw-r--r--default_images/res/commandimagelist/sc_clickchangerotation.pngbin0 -> 922 bytes-rw-r--r--default_images/res/commandimagelist/sc_closedoc.pngbin0 -> 784 bytes-rw-r--r--default_images/res/commandimagelist/sc_closedocs.pngbin0 -> 401 bytes-rw-r--r--default_images/res/commandimagelist/sc_closemasterview.pngbin0 -> 743 bytes-rw-r--r--default_images/res/commandimagelist/sc_closewin.pngbin0 -> 784 bytes-rw-r--r--default_images/res/commandimagelist/sc_color.pngbin0 -> 585 bytes-rw-r--r--default_images/res/commandimagelist/sc_colorsettings.pngbin0 -> 698 bytes-rw-r--r--default_images/res/commandimagelist/sc_colorview.pngbin0 -> 505 bytes-rw-r--r--default_images/res/commandimagelist/sc_combobox.pngbin0 -> 765 bytes-rw-r--r--default_images/res/commandimagelist/sc_commontaskbarvisible.pngbin0 -> 673 bytes-rw-r--r--default_images/res/commandimagelist/sc_compilebasic.pngbin0 -> 736 bytes-rw-r--r--default_images/res/commandimagelist/sc_cone.pngbin0 -> 593 bytes-rw-r--r--default_images/res/commandimagelist/sc_config.pngbin0 -> 800 bytes-rw-r--r--default_images/res/commandimagelist/sc_connector.pngbin0 -> 635 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorarrowend.pngbin0 -> 695 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorarrows.pngbin0 -> 733 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorarrowstart.pngbin0 -> 748 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorcircleend.pngbin0 -> 724 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorcircles.pngbin0 -> 702 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorcirclestart.pngbin0 -> 723 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorcurve.pngbin0 -> 680 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorcurvearrowend.pngbin0 -> 756 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorcurvearrows.pngbin0 -> 799 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorcurvearrowstart.pngbin0 -> 760 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorcurvecircleend.pngbin0 -> 722 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorcurvecircles.pngbin0 -> 679 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorcurvecirclestart.pngbin0 -> 771 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorline.pngbin0 -> 594 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorlinearrowend.pngbin0 -> 660 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorlinearrows.pngbin0 -> 647 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorlinearrowstart.pngbin0 -> 686 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorlinecircleend.pngbin0 -> 666 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorlinecircles.pngbin0 -> 679 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorlinecirclestart.pngbin0 -> 696 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorlines.pngbin0 -> 614 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorlinesarrowend.pngbin0 -> 699 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorlinesarrows.pngbin0 -> 698 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorlinesarrowstart.pngbin0 -> 733 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorlinescircleend.pngbin0 -> 682 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorlinescircles.pngbin0 -> 646 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorlinescirclestart.pngbin0 -> 701 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectortoolbox.pngbin0 -> 702 bytes-rw-r--r--default_images/res/commandimagelist/sc_contourdialog.pngbin0 -> 589 bytes-rw-r--r--default_images/res/commandimagelist/sc_controlcodes.pngbin0 -> 489 bytes-rw-r--r--default_images/res/commandimagelist/sc_controlproperties.pngbin0 -> 760 bytes-rw-r--r--default_images/res/commandimagelist/sc_convertinto3d.pngbin0 -> 749 bytes-rw-r--r--default_images/res/commandimagelist/sc_convertinto3dlathe.pngbin0 -> 712 bytes-rw-r--r--default_images/res/commandimagelist/sc_convertinto3dlathefast.pngbin0 -> 702 bytes-rw-r--r--default_images/res/commandimagelist/sc_copy.pngbin0 -> 600 bytes-rw-r--r--default_images/res/commandimagelist/sc_countall.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/sc_crookrotate.pngbin0 -> 688 bytes-rw-r--r--default_images/res/commandimagelist/sc_crookslant.pngbin0 -> 706 bytes-rw-r--r--default_images/res/commandimagelist/sc_crop.pngbin0 -> 1068 bytes-rw-r--r--default_images/res/commandimagelist/sc_cube.pngbin0 -> 631 bytes-rw-r--r--default_images/res/commandimagelist/sc_currencyfield.pngbin0 -> 727 bytes-rw-r--r--default_images/res/commandimagelist/sc_customanimation.pngbin0 -> 820 bytes-rw-r--r--default_images/res/commandimagelist/sc_cut.pngbin0 -> 802 bytes-rw-r--r--default_images/res/commandimagelist/sc_cylinder.pngbin0 -> 736 bytes-rw-r--r--default_images/res/commandimagelist/sc_cyramid.pngbin0 -> 640 bytes-rw-r--r--default_images/res/commandimagelist/sc_datadatapilotrun.pngbin0 -> 784 bytes-rw-r--r--default_images/res/commandimagelist/sc_datafilterautofilter.pngbin0 -> 711 bytes-rw-r--r--default_images/res/commandimagelist/sc_datafilterspecialfilter.pngbin0 -> 492 bytes-rw-r--r--default_images/res/commandimagelist/sc_datafilterstandardfilter.pngbin0 -> 460 bytes-rw-r--r--default_images/res/commandimagelist/sc_dataimport.pngbin0 -> 483 bytes-rw-r--r--default_images/res/commandimagelist/sc_dataincolumns.pngbin0 -> 366 bytes-rw-r--r--default_images/res/commandimagelist/sc_datainrows.pngbin0 -> 437 bytes-rw-r--r--default_images/res/commandimagelist/sc_datefield.pngbin0 -> 626 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbaddrelation.pngbin0 -> 739 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbchangedesignmode.pngbin0 -> 803 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbclearquery.pngbin0 -> 883 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbdistinctvalues.pngbin0 -> 612 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbdtableedit.pngbin0 -> 683 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbformdelete.pngbin0 -> 768 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbformedit.pngbin0 -> 742 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbformopen.pngbin0 -> 628 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbformrename.pngbin0 -> 599 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbindexdesign.pngbin0 -> 696 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbnewform.pngbin0 -> 757 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbnewformautopilot.pngbin0 -> 852 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbnewquery.pngbin0 -> 903 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbnewqueryautopilot.pngbin0 -> 983 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbnewquerysql.pngbin0 -> 679 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbnewreport.pngbin0 -> 818 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbnewreportautopilot.pngbin0 -> 853 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbnewtable.pngbin0 -> 688 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbnewtableautopilot.pngbin0 -> 798 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbnewview.pngbin0 -> 767 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbnewviewsql.pngbin0 -> 850 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbquerydelete.pngbin0 -> 716 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbqueryedit.pngbin0 -> 805 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbqueryopen.pngbin0 -> 713 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbqueryrename.pngbin0 -> 473 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbreportdelete.pngbin0 -> 816 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbreportedit.pngbin0 -> 802 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbreportopen.pngbin0 -> 718 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbreportrename.pngbin0 -> 638 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbsortingandgrouping.pngbin0 -> 546 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbtabledelete.pngbin0 -> 716 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbtableedit.pngbin0 -> 683 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbtableopen.pngbin0 -> 617 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbtablerename.pngbin0 -> 473 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbviewaliases.pngbin0 -> 499 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbviewfunctions.pngbin0 -> 543 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbviewtablenames.pngbin0 -> 506 bytes-rw-r--r--default_images/res/commandimagelist/sc_decrementindent.pngbin0 -> 538 bytes-rw-r--r--default_images/res/commandimagelist/sc_decrementlevel.pngbin0 -> 482 bytes-rw-r--r--default_images/res/commandimagelist/sc_decrementsublevels.pngbin0 -> 619 bytes-rw-r--r--default_images/res/commandimagelist/sc_defaultbullet.pngbin0 -> 447 bytes-rw-r--r--default_images/res/commandimagelist/sc_defaultnumbering.pngbin0 -> 379 bytes-rw-r--r--default_images/res/commandimagelist/sc_definename.pngbin0 -> 422 bytes-rw-r--r--default_images/res/commandimagelist/sc_defineprintarea.pngbin0 -> 713 bytes-rw-r--r--default_images/res/commandimagelist/sc_delete.pngbin0 -> 510 bytes-rwxr-xr-xdefault_images/res/commandimagelist/sc_deleteallannotation.pngbin0 -> 4117 bytes-rwxr-xr-xdefault_images/res/commandimagelist/sc_deleteannotation.pngbin0 -> 4042 bytes-rw-r--r--default_images/res/commandimagelist/sc_deletecolumns.pngbin0 -> 486 bytes-rw-r--r--default_images/res/commandimagelist/sc_deletemasterpage.pngbin0 -> 802 bytes-rw-r--r--default_images/res/commandimagelist/sc_deleteprintarea.pngbin0 -> 694 bytes-rw-r--r--default_images/res/commandimagelist/sc_deleterecord.pngbin0 -> 682 bytes-rw-r--r--default_images/res/commandimagelist/sc_deleterows.pngbin0 -> 380 bytes-rw-r--r--default_images/res/commandimagelist/sc_designerdialog.pngbin0 -> 671 bytes-rw-r--r--default_images/res/commandimagelist/sc_dia.pngbin0 -> 735 bytes-rw-r--r--default_images/res/commandimagelist/sc_diaauto.pngbin0 -> 735 bytes-rw-r--r--default_images/res/commandimagelist/sc_diaeffect.pngbin0 -> 735 bytes-rw-r--r--default_images/res/commandimagelist/sc_diagramdata.pngbin0 -> 404 bytes-rw-r--r--default_images/res/commandimagelist/sc_diagramtype.pngbin0 -> 701 bytes-rw-r--r--default_images/res/commandimagelist/sc_diaspeed.pngbin0 -> 735 bytes-rw-r--r--default_images/res/commandimagelist/sc_diatime.pngbin0 -> 735 bytes-rw-r--r--default_images/res/commandimagelist/sc_distributecolumns.pngbin0 -> 603 bytes-rw-r--r--default_images/res/commandimagelist/sc_distributerows.pngbin0 -> 424 bytes-rw-r--r--default_images/res/commandimagelist/sc_doubleclicktextedit.pngbin0 -> 721 bytes-rw-r--r--default_images/res/commandimagelist/sc_downsearch.pngbin0 -> 3927 bytes-rw-r--r--default_images/res/commandimagelist/sc_draw.pngbin0 -> 909 bytes-rw-r--r--default_images/res/commandimagelist/sc_drawcaption.pngbin0 -> 862 bytes-rw-r--r--default_images/res/commandimagelist/sc_drawchart.pngbin0 -> 529 bytes-rw-r--r--default_images/res/commandimagelist/sc_drawselect.pngbin0 -> 568 bytes-rw-r--r--default_images/res/commandimagelist/sc_drawtext.pngbin0 -> 509 bytes-rw-r--r--default_images/res/commandimagelist/sc_dsbdocumentdatasource.pngbin0 -> 1066 bytes-rw-r--r--default_images/res/commandimagelist/sc_dsbeditdoc.pngbin0 -> 760 bytes-rw-r--r--default_images/res/commandimagelist/sc_dsbformletter.pngbin0 -> 695 bytes-rw-r--r--default_images/res/commandimagelist/sc_dsbinsertcolumns.pngbin0 -> 484 bytes-rw-r--r--default_images/res/commandimagelist/sc_dsbinsertcontent.pngbin0 -> 485 bytes-rw-r--r--default_images/res/commandimagelist/sc_dsbrowserexplorer.pngbin0 -> 731 bytes-rw-r--r--default_images/res/commandimagelist/sc_duplicatepage.pngbin0 -> 760 bytes-rw-r--r--default_images/res/commandimagelist/sc_edit.pngbin0 -> 547 bytes-rw-r--r--default_images/res/commandimagelist/sc_editdoc.pngbin0 -> 760 bytes-rw-r--r--default_images/res/commandimagelist/sc_editframeset.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/sc_editglossary.pngbin0 -> 650 bytes-rw-r--r--default_images/res/commandimagelist/sc_editheaderandfooter.pngbin0 -> 556 bytes-rw-r--r--default_images/res/commandimagelist/sc_editprintarea.pngbin0 -> 673 bytes-rw-r--r--default_images/res/commandimagelist/sc_ellipse.pngbin0 -> 756 bytes-rw-r--r--default_images/res/commandimagelist/sc_ellipse_unfilled.pngbin0 -> 802 bytes-rw-r--r--default_images/res/commandimagelist/sc_ellipsecut.pngbin0 -> 722 bytes-rw-r--r--default_images/res/commandimagelist/sc_ellipsecut_unfilled.pngbin0 -> 819 bytes-rw-r--r--default_images/res/commandimagelist/sc_ellipsetoolbox.pngbin0 -> 756 bytes-rw-r--r--default_images/res/commandimagelist/sc_entergroup.pngbin0 -> 698 bytes-rw-r--r--default_images/res/commandimagelist/sc_entirecolumn.pngbin0 -> 703 bytes-rw-r--r--default_images/res/commandimagelist/sc_entirerow.pngbin0 -> 615 bytes-rw-r--r--default_images/res/commandimagelist/sc_euroconverter.pngbin0 -> 560 bytes-rw-r--r--default_images/res/commandimagelist/sc_executereport.pngbin0 -> 760 bytes-rw-r--r--default_images/res/commandimagelist/sc_expandpage.pngbin0 -> 421 bytes-rw-r--r--default_images/res/commandimagelist/sc_exportdialog.pngbin0 -> 647 bytes-rw-r--r--default_images/res/commandimagelist/sc_exportdirecttopdf.pngbin0 -> 606 bytes-rw-r--r--default_images/res/commandimagelist/sc_exportto.pngbin0 -> 758 bytes-rw-r--r--default_images/res/commandimagelist/sc_extendedhelp.pngbin0 -> 937 bytes-rw-r--r--default_images/res/commandimagelist/sc_extrusion3dcolor.pngbin0 -> 570 bytes-rw-r--r--default_images/res/commandimagelist/sc_extrusiondepthfloater.pngbin0 -> 795 bytes-rw-r--r--default_images/res/commandimagelist/sc_extrusiondirectionfloater.pngbin0 -> 786 bytes-rw-r--r--default_images/res/commandimagelist/sc_extrusionlightingfloater.pngbin0 -> 474 bytes-rw-r--r--default_images/res/commandimagelist/sc_extrusionsurfacefloater.pngbin0 -> 919 bytes-rw-r--r--default_images/res/commandimagelist/sc_extrusiontiltdown.pngbin0 -> 933 bytes-rw-r--r--default_images/res/commandimagelist/sc_extrusiontiltleft.pngbin0 -> 980 bytes-rw-r--r--default_images/res/commandimagelist/sc_extrusiontiltright.pngbin0 -> 1018 bytes-rw-r--r--default_images/res/commandimagelist/sc_extrusiontiltup.pngbin0 -> 952 bytes-rw-r--r--default_images/res/commandimagelist/sc_extrusiontoggle.pngbin0 -> 771 bytes-rw-r--r--default_images/res/commandimagelist/sc_fieldnames.pngbin0 -> 488 bytes-rw-r--r--default_images/res/commandimagelist/sc_fields.pngbin0 -> 488 bytes-rw-r--r--default_images/res/commandimagelist/sc_filecontrol.pngbin0 -> 761 bytes-rw-r--r--default_images/res/commandimagelist/sc_filedocument.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/sc_fillshadow.pngbin0 -> 404 bytes-rw-r--r--default_images/res/commandimagelist/sc_fillstyle.pngbin0 -> 831 bytes-rw-r--r--default_images/res/commandimagelist/sc_filtercrit.pngbin0 -> 460 bytes-rw-r--r--default_images/res/commandimagelist/sc_firstpage.pngbin0 -> 794 bytes-rw-r--r--default_images/res/commandimagelist/sc_firstrecord.pngbin0 -> 530 bytes-rw-r--r--default_images/res/commandimagelist/sc_fliphorizontal.pngbin0 -> 611 bytes-rw-r--r--default_images/res/commandimagelist/sc_flipvertical.pngbin0 -> 654 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-alternate-process.pngbin0 -> 624 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-card.pngbin0 -> 490 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-collate.pngbin0 -> 641 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-connector.pngbin0 -> 855 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-data.pngbin0 -> 565 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-decision.pngbin0 -> 671 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-delay.pngbin0 -> 732 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-direct-access-storage.pngbin0 -> 816 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-display.pngbin0 -> 607 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-document.pngbin0 -> 682 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-extract.pngbin0 -> 518 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-internal-storage.pngbin0 -> 466 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-magnetic-disk.pngbin0 -> 839 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-manual-input.pngbin0 -> 487 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-manual-operation.pngbin0 -> 585 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-merge.pngbin0 -> 557 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-multidocument.pngbin0 -> 660 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-off-page-connector.pngbin0 -> 530 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-or.pngbin0 -> 932 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-predefined-process.pngbin0 -> 506 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-preparation.pngbin0 -> 552 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-process.pngbin0 -> 431 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-punched-tape.pngbin0 -> 864 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-sequential-access.pngbin0 -> 865 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-sort.pngbin0 -> 678 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-stored-data.pngbin0 -> 706 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-summing-junction.pngbin0 -> 1018 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-terminator.pngbin0 -> 488 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.pngbin0 -> 466 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontcolor.pngbin0 -> 585 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontdialog.pngbin0 -> 762 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontheight.pngbin0 -> 938 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontwork.pngbin0 -> 514 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkalignmentfloater.pngbin0 -> 324 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkcharacterspacingfloater.pngbin0 -> 780 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkgalleryfloater.pngbin0 -> 611 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworksameletterheights.pngbin0 -> 470 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-arch-down-curve.pngbin0 -> 323 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-arch-down-pour.pngbin0 -> 320 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-arch-left-curve.pngbin0 -> 325 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-arch-left-pour.pngbin0 -> 328 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-arch-right-curve.pngbin0 -> 333 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-arch-right-pour.pngbin0 -> 334 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-arch-up-curve.pngbin0 -> 322 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-arch-up-pour.pngbin0 -> 323 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-chevron-down.pngbin0 -> 330 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-chevron-up.pngbin0 -> 316 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-circle-curve.pngbin0 -> 347 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-circle-pour.pngbin0 -> 356 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-curve-down.pngbin0 -> 366 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-curve-up.pngbin0 -> 363 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-fade-down.pngbin0 -> 289 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-fade-left.pngbin0 -> 288 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-fade-right.pngbin0 -> 284 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-fade-up-and-left.pngbin0 -> 318 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-fade-up-and-right.pngbin0 -> 308 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-fade-up.pngbin0 -> 292 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-inflate.pngbin0 -> 280 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-open-circle-curve.pngbin0 -> 349 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-open-circle-pour.pngbin0 -> 357 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-plain-text.pngbin0 -> 247 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-slant-down.pngbin0 -> 300 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-slant-up.pngbin0 -> 294 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-stop.pngbin0 -> 280 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-triangle-down.pngbin0 -> 307 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-triangle-up.pngbin0 -> 310 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-wave.pngbin0 -> 335 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.pngbin0 -> 514 bytes-rw-r--r--default_images/res/commandimagelist/sc_formatarea.pngbin0 -> 831 bytes-rw-r--r--default_images/res/commandimagelist/sc_formatgroup.pngbin0 -> 568 bytes-rw-r--r--default_images/res/commandimagelist/sc_formatline.pngbin0 -> 509 bytes-rw-r--r--default_images/res/commandimagelist/sc_formatpaintbrush.pngbin0 -> 852 bytes-rw-r--r--default_images/res/commandimagelist/sc_formattedfield.pngbin0 -> 519 bytes-rw-r--r--default_images/res/commandimagelist/sc_formatungroup.pngbin0 -> 532 bytes-rw-r--r--default_images/res/commandimagelist/sc_formdesigntools.pngbin0 -> 662 bytes-rw-r--r--default_images/res/commandimagelist/sc_formelcursor.pngbin0 -> 462 bytes-rw-r--r--default_images/res/commandimagelist/sc_formfilter.pngbin0 -> 541 bytes-rw-r--r--default_images/res/commandimagelist/sc_formfiltered.pngbin0 -> 588 bytes-rw-r--r--default_images/res/commandimagelist/sc_formfilterexecute.pngbin0 -> 460 bytes-rw-r--r--default_images/res/commandimagelist/sc_formfilternavigator.pngbin0 -> 772 bytes-rw-r--r--default_images/res/commandimagelist/sc_formproperties.pngbin0 -> 688 bytes-rw-r--r--default_images/res/commandimagelist/sc_forward.pngbin0 -> 455 bytes-rw-r--r--default_images/res/commandimagelist/sc_framedialog.pngbin0 -> 665 bytes-rw-r--r--default_images/res/commandimagelist/sc_framelinecolor.pngbin0 -> 315 bytes-rw-r--r--default_images/res/commandimagelist/sc_freeline.pngbin0 -> 781 bytes-rw-r--r--default_images/res/commandimagelist/sc_freeline_unfilled.pngbin0 -> 795 bytes-rw-r--r--default_images/res/commandimagelist/sc_fullscreen.pngbin0 -> 494 bytes-rw-r--r--default_images/res/commandimagelist/sc_gallery.pngbin0 -> 649 bytes-rw-r--r--default_images/res/commandimagelist/sc_getactivetask.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/sc_glueeditmode.pngbin0 -> 586 bytes-rw-r--r--default_images/res/commandimagelist/sc_glueescapedirectionbottom.pngbin0 -> 573 bytes-rw-r--r--default_images/res/commandimagelist/sc_glueescapedirectionleft.pngbin0 -> 569 bytes-rw-r--r--default_images/res/commandimagelist/sc_glueescapedirectionright.pngbin0 -> 574 bytes-rw-r--r--default_images/res/commandimagelist/sc_glueescapedirectiontop.pngbin0 -> 575 bytes-rw-r--r--default_images/res/commandimagelist/sc_gluehorzaligncenter.pngbin0 -> 587 bytes-rw-r--r--default_images/res/commandimagelist/sc_gluehorzalignleft.pngbin0 -> 618 bytes-rw-r--r--default_images/res/commandimagelist/sc_gluehorzalignright.pngbin0 -> 636 bytes-rw-r--r--default_images/res/commandimagelist/sc_glueinsertpoint.pngbin0 -> 645 bytes-rw-r--r--default_images/res/commandimagelist/sc_gluepercent.pngbin0 -> 688 bytes-rw-r--r--default_images/res/commandimagelist/sc_gluevertalignbottom.pngbin0 -> 632 bytes-rw-r--r--default_images/res/commandimagelist/sc_gluevertaligncenter.pngbin0 -> 596 bytes-rw-r--r--default_images/res/commandimagelist/sc_gluevertaligntop.pngbin0 -> 644 bytes-rw-r--r--default_images/res/commandimagelist/sc_goalseekdialog.pngbin0 -> 646 bytes-rw-r--r--default_images/res/commandimagelist/sc_gotoend.pngbin0 -> 601 bytes-rw-r--r--default_images/res/commandimagelist/sc_gotoendofdoc.pngbin0 -> 739 bytes-rw-r--r--default_images/res/commandimagelist/sc_gotostartofdoc.pngbin0 -> 794 bytes-rw-r--r--default_images/res/commandimagelist/sc_gotostartoftable.pngbin0 -> 600 bytes-rw-r--r--default_images/res/commandimagelist/sc_grafattrcrop.pngbin0 -> 1068 bytes-rw-r--r--default_images/res/commandimagelist/sc_grafblue.pngbin0 -> 615 bytes-rw-r--r--default_images/res/commandimagelist/sc_grafcontrast.pngbin0 -> 737 bytes-rw-r--r--default_images/res/commandimagelist/sc_grafgamma.pngbin0 -> 836 bytes-rw-r--r--default_images/res/commandimagelist/sc_grafgreen.pngbin0 -> 615 bytes-rw-r--r--default_images/res/commandimagelist/sc_grafinvert.pngbin0 -> 542 bytes-rw-r--r--default_images/res/commandimagelist/sc_grafluminance.pngbin0 -> 787 bytes-rw-r--r--default_images/res/commandimagelist/sc_grafmode.pngbin0 -> 674 bytes-rw-r--r--default_images/res/commandimagelist/sc_grafred.pngbin0 -> 612 bytes-rw-r--r--default_images/res/commandimagelist/sc_graftransparence.pngbin0 -> 659 bytes-rw-r--r--default_images/res/commandimagelist/sc_graphic.pngbin0 -> 710 bytes-rw-r--r--default_images/res/commandimagelist/sc_graphicfilterinvert.pngbin0 -> 542 bytes-rw-r--r--default_images/res/commandimagelist/sc_graphicfiltermosaic.pngbin0 -> 320 bytes-rw-r--r--default_images/res/commandimagelist/sc_graphicfilterpopart.pngbin0 -> 350 bytes-rw-r--r--default_images/res/commandimagelist/sc_graphicfilterposter.pngbin0 -> 689 bytes-rw-r--r--default_images/res/commandimagelist/sc_graphicfilterrelief.pngbin0 -> 835 bytes-rw-r--r--default_images/res/commandimagelist/sc_graphicfilterremovenoise.pngbin0 -> 558 bytes-rw-r--r--default_images/res/commandimagelist/sc_graphicfiltersepia.pngbin0 -> 682 bytes-rw-r--r--default_images/res/commandimagelist/sc_graphicfiltersharpen.pngbin0 -> 507 bytes-rw-r--r--default_images/res/commandimagelist/sc_graphicfiltersmooth.pngbin0 -> 621 bytes-rw-r--r--default_images/res/commandimagelist/sc_graphicfiltersobel.pngbin0 -> 379 bytes-rw-r--r--default_images/res/commandimagelist/sc_graphicfiltersolarize.pngbin0 -> 749 bytes-rw-r--r--default_images/res/commandimagelist/sc_graphicfiltertoolbox.pngbin0 -> 649 bytes-rw-r--r--default_images/res/commandimagelist/sc_greatestheight.pngbin0 -> 722 bytes-rw-r--r--default_images/res/commandimagelist/sc_greatestwidth.pngbin0 -> 632 bytes-rw-r--r--default_images/res/commandimagelist/sc_grid.pngbin0 -> 404 bytes-rw-r--r--default_images/res/commandimagelist/sc_griduse.pngbin0 -> 432 bytes-rw-r--r--default_images/res/commandimagelist/sc_gridvisible.pngbin0 -> 283 bytes-rw-r--r--default_images/res/commandimagelist/sc_group.pngbin0 -> 483 bytes-rw-r--r--default_images/res/commandimagelist/sc_groupbox.pngbin0 -> 650 bytes-rw-r--r--default_images/res/commandimagelist/sc_grow.pngbin0 -> 870 bytes-rw-r--r--default_images/res/commandimagelist/sc_halfsphere.pngbin0 -> 857 bytes-rw-r--r--default_images/res/commandimagelist/sc_handlesdraft.pngbin0 -> 359 bytes-rw-r--r--default_images/res/commandimagelist/sc_help.pngbin0 -> 801 bytes-rw-r--r--default_images/res/commandimagelist/sc_helpannotate.pngbin0 -> 625 bytes-rw-r--r--default_images/res/commandimagelist/sc_helpbookmark.pngbin0 -> 569 bytes-rw-r--r--default_images/res/commandimagelist/sc_helpdownload.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/sc_helperdialog.pngbin0 -> 998 bytes-rw-r--r--default_images/res/commandimagelist/sc_helpindex.pngbin0 -> 998 bytes-rw-r--r--default_images/res/commandimagelist/sc_helplinesmove.pngbin0 -> 428 bytes-rw-r--r--default_images/res/commandimagelist/sc_helplinesuse.pngbin0 -> 481 bytes-rw-r--r--default_images/res/commandimagelist/sc_helplinesvisible.pngbin0 -> 347 bytes-rw-r--r--default_images/res/commandimagelist/sc_helpmenu.pngbin0 -> 802 bytes-rw-r--r--default_images/res/commandimagelist/sc_helpsearch.pngbin0 -> 680 bytes-rw-r--r--default_images/res/commandimagelist/sc_helpzoomin.pngbin0 -> 763 bytes-rw-r--r--default_images/res/commandimagelist/sc_helpzoomout.pngbin0 -> 737 bytes-rw-r--r--default_images/res/commandimagelist/sc_hfixedline.pngbin0 -> 337 bytes-rw-r--r--default_images/res/commandimagelist/sc_hideslide.pngbin0 -> 606 bytes-rw-r--r--default_images/res/commandimagelist/sc_hscrollbar.pngbin0 -> 593 bytes-rw-r--r--default_images/res/commandimagelist/sc_hyperlinkdialog.pngbin0 -> 1184 bytes-rw-r--r--default_images/res/commandimagelist/sc_hyphenate.pngbin0 -> 525 bytes-rw-r--r--default_images/res/commandimagelist/sc_hyphenation.pngbin0 -> 525 bytes-rw-r--r--default_images/res/commandimagelist/sc_imagebutton.pngbin0 -> 742 bytes-rw-r--r--default_images/res/commandimagelist/sc_imagecontrol.pngbin0 -> 649 bytes-rw-r--r--default_images/res/commandimagelist/sc_imagemapdialog.pngbin0 -> 701 bytes-rwxr-xr-xdefault_images/res/commandimagelist/sc_importdialog.pngbin0 -> 592 bytes-rw-r--r--default_images/res/commandimagelist/sc_importfromfile.pngbin0 -> 760 bytes-rw-r--r--default_images/res/commandimagelist/sc_incrementindent.pngbin0 -> 538 bytes-rw-r--r--default_images/res/commandimagelist/sc_incrementlevel.pngbin0 -> 488 bytes-rw-r--r--default_images/res/commandimagelist/sc_incrementsublevels.pngbin0 -> 626 bytes-rw-r--r--default_images/res/commandimagelist/sc_inscellsctrl.pngbin0 -> 622 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertannotation.pngbin0 -> 3987 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertauthorfield.pngbin0 -> 846 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertavmedia.pngbin0 -> 548 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertbookmark.pngbin0 -> 651 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertcaptiondialog.pngbin0 -> 504 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertcellsdown.pngbin0 -> 747 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertcellsright.pngbin0 -> 689 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertcolumns.pngbin0 -> 586 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertctrl.pngbin0 -> 393 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertcurrencyfield.pngbin0 -> 727 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertdatefield.pngbin0 -> 626 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertdoc.pngbin0 -> 801 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertdraw.pngbin0 -> 742 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertedit.pngbin0 -> 547 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertendnote.pngbin0 -> 706 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertfield.pngbin0 -> 484 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertfieldctrl.pngbin0 -> 484 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertfilecontrol.pngbin0 -> 761 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertfixedtext.pngbin0 -> 425 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertfootnote.pngbin0 -> 735 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertformattedfield.pngbin0 -> 519 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertformula.pngbin0 -> 651 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertframe.pngbin0 -> 466 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertframeinteract.pngbin0 -> 466 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertframeinteractnocolumns.pngbin0 -> 466 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertgraphic.pngbin0 -> 768 bytes-rw-r--r--default_images/res/commandimagelist/sc_inserthyperlink.pngbin0 -> 802 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertimagecontrol.pngbin0 -> 649 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertindexesentry.pngbin0 -> 461 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertlistbox.pngbin0 -> 728 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertmasterpage.pngbin0 -> 643 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertmath.pngbin0 -> 511 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertneutralparagraph.pngbin0 -> 343 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertnumericfield.pngbin0 -> 435 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertobjctrl.pngbin0 -> 636 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertobject.pngbin0 -> 636 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertobjectchart.pngbin0 -> 529 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertobjectdialog.pngbin0 -> 636 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertobjectfloatingframe.pngbin0 -> 429 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertobjectstarmath.pngbin0 -> 511 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertpage.pngbin0 -> 3991 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertpagecountfield.pngbin0 -> 825 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertpagenumberfield.pngbin0 -> 699 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertpatternfield.pngbin0 -> 492 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertplugin.pngbin0 -> 705 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertpushbutton.pngbin0 -> 577 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertreferencefield.pngbin0 -> 540 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertrows.pngbin0 -> 502 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertsection.pngbin0 -> 515 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertsound.pngbin0 -> 519 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertspreadsheet.pngbin0 -> 404 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertsymbol.pngbin0 -> 794 bytes-rw-r--r--default_images/res/commandimagelist/sc_inserttable.pngbin0 -> 404 bytes-rw-r--r--default_images/res/commandimagelist/sc_inserttextframe.pngbin0 -> 466 bytes-rw-r--r--default_images/res/commandimagelist/sc_inserttimefield.pngbin0 -> 830 bytes-rw-r--r--default_images/res/commandimagelist/sc_inserttitlefield.pngbin0 -> 538 bytes-rw-r--r--default_images/res/commandimagelist/sc_inserttoolbox.pngbin0 -> 760 bytes-rw-r--r--default_images/res/commandimagelist/sc_inserttopicfield.pngbin0 -> 627 bytes-rw-r--r--default_images/res/commandimagelist/sc_inserttreecontrol.pngbin0 -> 426 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertvideo.pngbin0 -> 524 bytes-rw-r--r--default_images/res/commandimagelist/sc_insobjctrl.pngbin0 -> 636 bytes-rw-r--r--default_images/res/commandimagelist/sc_interactivegradient.pngbin0 -> 795 bytes-rw-r--r--default_images/res/commandimagelist/sc_interactivetransparence.pngbin0 -> 621 bytes-rw-r--r--default_images/res/commandimagelist/sc_internetonline.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/sc_italic.pngbin0 -> 412 bytes-rw-r--r--default_images/res/commandimagelist/sc_justifypara.pngbin0 -> 314 bytes-rw-r--r--default_images/res/commandimagelist/sc_label.pngbin0 -> 425 bytes-rw-r--r--default_images/res/commandimagelist/sc_lastpage.pngbin0 -> 739 bytes-rw-r--r--default_images/res/commandimagelist/sc_lastrecord.pngbin0 -> 530 bytes-rw-r--r--default_images/res/commandimagelist/sc_leaveallgroups.pngbin0 -> 756 bytes-rw-r--r--default_images/res/commandimagelist/sc_leavegroup.pngbin0 -> 678 bytes-rw-r--r--default_images/res/commandimagelist/sc_leftpara.pngbin0 -> 320 bytes-rw-r--r--default_images/res/commandimagelist/sc_line.pngbin0 -> 633 bytes-rw-r--r--default_images/res/commandimagelist/sc_line_diagonal.pngbin0 -> 679 bytes-rw-r--r--default_images/res/commandimagelist/sc_linearrowcircle.pngbin0 -> 632 bytes-rw-r--r--default_images/res/commandimagelist/sc_linearrowend.pngbin0 -> 539 bytes-rw-r--r--default_images/res/commandimagelist/sc_linearrows.pngbin0 -> 589 bytes-rw-r--r--default_images/res/commandimagelist/sc_linearrowsquare.pngbin0 -> 553 bytes-rw-r--r--default_images/res/commandimagelist/sc_linearrowstart.pngbin0 -> 542 bytes-rw-r--r--default_images/res/commandimagelist/sc_linecirclearrow.pngbin0 -> 646 bytes-rw-r--r--default_images/res/commandimagelist/sc_lineendstyle.pngbin0 -> 682 bytes-rw-r--r--default_images/res/commandimagelist/sc_linesquarearrow.pngbin0 -> 585 bytes-rw-r--r--default_images/res/commandimagelist/sc_linestyle.pngbin0 -> 268 bytes-rw-r--r--default_images/res/commandimagelist/sc_linetoolbox.pngbin0 -> 795 bytes-rw-r--r--default_images/res/commandimagelist/sc_linewidth.pngbin0 -> 509 bytes-rw-r--r--default_images/res/commandimagelist/sc_listbox.pngbin0 -> 728 bytes-rw-r--r--default_images/res/commandimagelist/sc_loadbasic.pngbin0 -> 595 bytes-rw-r--r--default_images/res/commandimagelist/sc_macrorecorder.pngbin0 -> 760 bytes-rw-r--r--default_images/res/commandimagelist/sc_macrorecordingfloat.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/sc_mailwindow.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/sc_managebreakpoints.pngbin0 -> 784 bytes-rw-r--r--default_images/res/commandimagelist/sc_managelanguage.pngbin0 -> 873 bytes-rw-r--r--default_images/res/commandimagelist/sc_marks.pngbin0 -> 381 bytes-rw-r--r--default_images/res/commandimagelist/sc_matchgroup.pngbin0 -> 503 bytes-rw-r--r--default_images/res/commandimagelist/sc_measureline.pngbin0 -> 667 bytes-rw-r--r--default_images/res/commandimagelist/sc_mergecells.pngbin0 -> 412 bytes-rw-r--r--default_images/res/commandimagelist/sc_mergedialog.pngbin0 -> 695 bytes-rw-r--r--default_images/res/commandimagelist/sc_mirror.pngbin0 -> 935 bytes-rw-r--r--default_images/res/commandimagelist/sc_modifyframe.pngbin0 -> 712 bytes-rw-r--r--default_images/res/commandimagelist/sc_modifypage.pngbin0 -> 572 bytes-rw-r--r--default_images/res/commandimagelist/sc_moduledialog.pngbin0 -> 631 bytes-rw-r--r--default_images/res/commandimagelist/sc_morecontrols.pngbin0 -> 566 bytes-rw-r--r--default_images/res/commandimagelist/sc_movedown.pngbin0 -> 489 bytes-rw-r--r--default_images/res/commandimagelist/sc_movedownsubitems.pngbin0 -> 649 bytes-rw-r--r--default_images/res/commandimagelist/sc_moveup.pngbin0 -> 501 bytes-rw-r--r--default_images/res/commandimagelist/sc_moveupsubitems.pngbin0 -> 661 bytes-rw-r--r--default_images/res/commandimagelist/sc_navigationbar.pngbin0 -> 735 bytes-rw-r--r--default_images/res/commandimagelist/sc_navigator.pngbin0 -> 1014 bytes-rw-r--r--default_images/res/commandimagelist/sc_newarrangement.pngbin0 -> 564 bytes-rw-r--r--default_images/res/commandimagelist/sc_newdoc.pngbin0 -> 525 bytes-rw-r--r--default_images/res/commandimagelist/sc_newrecord.pngbin0 -> 662 bytes-rwxr-xr-xdefault_images/res/commandimagelist/sc_nextannotation.pngbin0 -> 4045 bytes-rw-r--r--default_images/res/commandimagelist/sc_nextpage.pngbin0 -> 747 bytes-rw-r--r--default_images/res/commandimagelist/sc_nextrecord.pngbin0 -> 474 bytes-rw-r--r--default_images/res/commandimagelist/sc_no.pngbin0 -> 958 bytes-rw-r--r--default_images/res/commandimagelist/sc_numberformatcurrency.pngbin0 -> 727 bytes-rw-r--r--default_images/res/commandimagelist/sc_numberformatdate.pngbin0 -> 626 bytes-rw-r--r--default_images/res/commandimagelist/sc_numberformatdecdecimals.pngbin0 -> 728 bytes-rw-r--r--default_images/res/commandimagelist/sc_numberformatdecimal.pngbin0 -> 485 bytes-rw-r--r--default_images/res/commandimagelist/sc_numberformatincdecimals.pngbin0 -> 588 bytes-rw-r--r--default_images/res/commandimagelist/sc_numberformatpercent.pngbin0 -> 567 bytes-rw-r--r--default_images/res/commandimagelist/sc_numberformatscientific.pngbin0 -> 435 bytes-rw-r--r--default_images/res/commandimagelist/sc_numberformatstandard.pngbin0 -> 685 bytes-rw-r--r--default_images/res/commandimagelist/sc_numberingstart.pngbin0 -> 721 bytes-rw-r--r--default_images/res/commandimagelist/sc_numericfield.pngbin0 -> 435 bytes-rw-r--r--default_images/res/commandimagelist/sc_objectalign.pngbin0 -> 621 bytes-rw-r--r--default_images/res/commandimagelist/sc_objectalignleft.pngbin0 -> 621 bytes-rw-r--r--default_images/res/commandimagelist/sc_objectalignright.pngbin0 -> 628 bytes-rw-r--r--default_images/res/commandimagelist/sc_objectcatalog.pngbin0 -> 768 bytes-rw-r--r--default_images/res/commandimagelist/sc_objectposition.pngbin0 -> 477 bytes-rw-r--r--default_images/res/commandimagelist/sc_objects3dtoolbox.pngbin0 -> 631 bytes-rw-r--r--default_images/res/commandimagelist/sc_ok.pngbin0 -> 596 bytes-rw-r--r--default_images/res/commandimagelist/sc_open.pngbin0 -> 711 bytes-rw-r--r--default_images/res/commandimagelist/sc_open_h.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/sc_openreadonly.pngbin0 -> 809 bytes-rw-r--r--default_images/res/commandimagelist/sc_openurl.pngbin0 -> 802 bytes-rw-r--r--default_images/res/commandimagelist/sc_optimizetable.pngbin0 -> 599 bytes-rw-r--r--default_images/res/commandimagelist/sc_ordercrit.pngbin0 -> 442 bytes-rw-r--r--default_images/res/commandimagelist/sc_outlinebullet.pngbin0 -> 654 bytes-rw-r--r--default_images/res/commandimagelist/sc_outlinecollapse.pngbin0 -> 541 bytes-rw-r--r--default_images/res/commandimagelist/sc_outlinecollapseall.pngbin0 -> 557 bytes-rw-r--r--default_images/res/commandimagelist/sc_outlinedown.pngbin0 -> 489 bytes-rw-r--r--default_images/res/commandimagelist/sc_outlineexpand.pngbin0 -> 545 bytes-rw-r--r--default_images/res/commandimagelist/sc_outlineexpandall.pngbin0 -> 550 bytes-rw-r--r--default_images/res/commandimagelist/sc_outlinefont.pngbin0 -> 640 bytes-rw-r--r--default_images/res/commandimagelist/sc_outlineformat.pngbin0 -> 762 bytes-rw-r--r--default_images/res/commandimagelist/sc_outlineleft.pngbin0 -> 488 bytes-rw-r--r--default_images/res/commandimagelist/sc_outlineright.pngbin0 -> 482 bytes-rw-r--r--default_images/res/commandimagelist/sc_outlineup.pngbin0 -> 501 bytes-rw-r--r--default_images/res/commandimagelist/sc_overline.pngbin0 -> 347 bytes-rw-r--r--default_images/res/commandimagelist/sc_pagedown.pngbin0 -> 747 bytes-rw-r--r--default_images/res/commandimagelist/sc_pageup.pngbin0 -> 757 bytes-rw-r--r--default_images/res/commandimagelist/sc_paragraphdialog.pngbin0 -> 647 bytes-rw-r--r--default_images/res/commandimagelist/sc_paralefttoright.pngbin0 -> 620 bytes-rw-r--r--default_images/res/commandimagelist/sc_pararighttoleft.pngbin0 -> 622 bytes-rw-r--r--default_images/res/commandimagelist/sc_paraspacedecrease.pngbin0 -> 503 bytes-rw-r--r--default_images/res/commandimagelist/sc_paraspaceincrease.pngbin0 -> 510 bytes-rw-r--r--default_images/res/commandimagelist/sc_paste.pngbin0 -> 793 bytes-rw-r--r--default_images/res/commandimagelist/sc_patternfield.pngbin0 -> 492 bytes-rw-r--r--default_images/res/commandimagelist/sc_pickthrough.pngbin0 -> 745 bytes-rw-r--r--default_images/res/commandimagelist/sc_pie.pngbin0 -> 695 bytes-rw-r--r--default_images/res/commandimagelist/sc_pie_unfilled.pngbin0 -> 780 bytes-rw-r--r--default_images/res/commandimagelist/sc_playmacro.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/sc_pluginsactive.pngbin0 -> 705 bytes-rw-r--r--default_images/res/commandimagelist/sc_polygon.pngbin0 -> 677 bytes-rw-r--r--default_images/res/commandimagelist/sc_polygon_diagonal.pngbin0 -> 465 bytes-rw-r--r--default_images/res/commandimagelist/sc_polygon_diagonal_unfilled.pngbin0 -> 514 bytes-rw-r--r--default_images/res/commandimagelist/sc_polygon_unfilled.pngbin0 -> 790 bytes-rw-r--r--default_images/res/commandimagelist/sc_position.pngbin0 -> 173 bytes-rw-r--r--default_images/res/commandimagelist/sc_presentation.pngbin0 -> 676 bytes-rw-r--r--default_images/res/commandimagelist/sc_presentationlayout.pngbin0 -> 754 bytes-rw-r--r--default_images/res/commandimagelist/sc_preview.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/sc_previewprintoptions.pngbin0 -> 726 bytes-rw-r--r--default_images/res/commandimagelist/sc_previewzoom.pngbin0 -> 761 bytes-rwxr-xr-xdefault_images/res/commandimagelist/sc_previousannotation.pngbin0 -> 4037 bytes-rw-r--r--default_images/res/commandimagelist/sc_previouspage.pngbin0 -> 757 bytes-rw-r--r--default_images/res/commandimagelist/sc_prevrecord.pngbin0 -> 467 bytes-rw-r--r--default_images/res/commandimagelist/sc_print.pngbin0 -> 577 bytes-rw-r--r--default_images/res/commandimagelist/sc_printdefault.pngbin0 -> 577 bytes-rw-r--r--default_images/res/commandimagelist/sc_printersetup.pngbin0 -> 726 bytes-rw-r--r--default_images/res/commandimagelist/sc_printlayout.pngbin0 -> 638 bytes-rw-r--r--default_images/res/commandimagelist/sc_printpagepreview.pngbin0 -> 595 bytes-rw-r--r--default_images/res/commandimagelist/sc_printpreview.pngbin0 -> 801 bytes-rw-r--r--default_images/res/commandimagelist/sc_progressbar.pngbin0 -> 414 bytes-rw-r--r--default_images/res/commandimagelist/sc_pushbutton.pngbin0 -> 577 bytes-rw-r--r--default_images/res/commandimagelist/sc_quickedit.pngbin0 -> 618 bytes-rw-r--r--default_images/res/commandimagelist/sc_quit.pngbin0 -> 647 bytes-rw-r--r--default_images/res/commandimagelist/sc_radiobutton.pngbin0 -> 619 bytes-rw-r--r--default_images/res/commandimagelist/sc_recsave.pngbin0 -> 688 bytes-rw-r--r--default_images/res/commandimagelist/sc_recsearch.pngbin0 -> 680 bytes-rw-r--r--default_images/res/commandimagelist/sc_rect.pngbin0 -> 378 bytes-rw-r--r--default_images/res/commandimagelist/sc_rect_rounded.pngbin0 -> 539 bytes-rw-r--r--default_images/res/commandimagelist/sc_rect_rounded_unfilled.pngbin0 -> 541 bytes-rw-r--r--default_images/res/commandimagelist/sc_rect_unfilled.pngbin0 -> 406 bytes-rw-r--r--default_images/res/commandimagelist/sc_rectangletoolbox.pngbin0 -> 378 bytes-rw-r--r--default_images/res/commandimagelist/sc_recundo.pngbin0 -> 1038 bytes-rw-r--r--default_images/res/commandimagelist/sc_redo.pngbin0 -> 894 bytes-rw-r--r--default_images/res/commandimagelist/sc_refresh.pngbin0 -> 909 bytes-rw-r--r--default_images/res/commandimagelist/sc_refreshformcontrol.pngbin0 -> 866 bytes-rw-r--r--default_images/res/commandimagelist/sc_rehearsetimings.pngbin0 -> 927 bytes-rw-r--r--default_images/res/commandimagelist/sc_reload.pngbin0 -> 909 bytes-rw-r--r--default_images/res/commandimagelist/sc_removebullets.pngbin0 -> 326 bytes-rw-r--r--default_images/res/commandimagelist/sc_removefilter.pngbin0 -> 603 bytes-rw-r--r--default_images/res/commandimagelist/sc_removefiltersort.pngbin0 -> 603 bytes-rw-r--r--default_images/res/commandimagelist/sc_renamemasterpage.pngbin0 -> 630 bytes-rw-r--r--default_images/res/commandimagelist/sc_repeat.pngbin0 -> 907 bytes-rw-r--r--default_images/res/commandimagelist/sc_reportnavigator.pngbin0 -> 919 bytes-rw-r--r--default_images/res/commandimagelist/sc_reverseorder.pngbin0 -> 803 bytes-rw-r--r--default_images/res/commandimagelist/sc_rightpara.pngbin0 -> 322 bytes-rw-r--r--default_images/res/commandimagelist/sc_rulerrows.pngbin0 -> 980 bytes-rw-r--r--default_images/res/commandimagelist/sc_rulerrowsvertical.pngbin0 -> 1018 bytes-rw-r--r--default_images/res/commandimagelist/sc_runbasic.pngbin0 -> 713 bytes-rw-r--r--default_images/res/commandimagelist/sc_save.pngbin0 -> 535 bytes-rw-r--r--default_images/res/commandimagelist/sc_saveas.pngbin0 -> 585 bytes-rw-r--r--default_images/res/commandimagelist/sc_saveastemplate.pngbin0 -> 715 bytes-rw-r--r--default_images/res/commandimagelist/sc_savebasicas.pngbin0 -> 676 bytes-rw-r--r--default_images/res/commandimagelist/sc_sbabrwinsert.pngbin0 -> 484 bytes-rw-r--r--default_images/res/commandimagelist/sc_sbaexecutesql.pngbin0 -> 816 bytes-rw-r--r--default_images/res/commandimagelist/sc_sbanativesql.pngbin0 -> 645 bytes-rw-r--r--default_images/res/commandimagelist/sc_scaletext.pngbin0 -> 821 bytes-rw-r--r--default_images/res/commandimagelist/sc_scrollbar.pngbin0 -> 592 bytes-rw-r--r--default_images/res/commandimagelist/sc_searchdialog.pngbin0 -> 680 bytes-rwxr-xr-xdefault_images/res/commandimagelist/sc_sectionalignbottom.pngbin0 -> 581 bytes-rwxr-xr-xdefault_images/res/commandimagelist/sc_sectionalignleft.pngbin0 -> 652 bytes-rwxr-xr-xdefault_images/res/commandimagelist/sc_sectionalignright.pngbin0 -> 655 bytes-rwxr-xr-xdefault_images/res/commandimagelist/sc_sectionaligntop.pngbin0 -> 584 bytes-rw-r--r--default_images/res/commandimagelist/sc_sectionshrink.pngbin0 -> 612 bytes-rw-r--r--default_images/res/commandimagelist/sc_sectionshrinkbottom.pngbin0 -> 492 bytes-rw-r--r--default_images/res/commandimagelist/sc_sectionshrinktop.pngbin0 -> 491 bytes-rw-r--r--default_images/res/commandimagelist/sc_selectall.pngbin0 -> 595 bytes-rw-r--r--default_images/res/commandimagelist/sc_selectmode.pngbin0 -> 568 bytes-rw-r--r--default_images/res/commandimagelist/sc_selectobject.pngbin0 -> 568 bytes-rw-r--r--default_images/res/commandimagelist/sc_selecttable.pngbin0 -> 644 bytes-rw-r--r--default_images/res/commandimagelist/sc_sendfax.pngbin0 -> 730 bytes-rw-r--r--default_images/res/commandimagelist/sc_sendmail.pngbin0 -> 552 bytes-rw-r--r--default_images/res/commandimagelist/sc_sendtoback.pngbin0 -> 499 bytes-rw-r--r--default_images/res/commandimagelist/sc_setborderstyle.pngbin0 -> 356 bytes-rw-r--r--default_images/res/commandimagelist/sc_setdocumentproperties.pngbin0 -> 702 bytes-rw-r--r--default_images/res/commandimagelist/sc_setobjecttobackground.pngbin0 -> 596 bytes-rw-r--r--default_images/res/commandimagelist/sc_setobjecttoforeground.pngbin0 -> 602 bytes-rw-r--r--default_images/res/commandimagelist/sc_setoptimalcolumnwidth.pngbin0 -> 480 bytes-rw-r--r--default_images/res/commandimagelist/sc_setoptimalcolumnwidthdirect.pngbin0 -> 480 bytes-rw-r--r--default_images/res/commandimagelist/sc_setoptimalrowheight.pngbin0 -> 399 bytes-rw-r--r--default_images/res/commandimagelist/sc_shadowcursor.pngbin0 -> 595 bytes-rw-r--r--default_images/res/commandimagelist/sc_shadowed.pngbin0 -> 595 bytes-rw-r--r--default_images/res/commandimagelist/sc_shear.pngbin0 -> 461 bytes-rw-r--r--default_images/res/commandimagelist/sc_shell3d.pngbin0 -> 872 bytes-rwxr-xr-xdefault_images/res/commandimagelist/sc_showannotation.pngbin0 -> 3879 bytes-rw-r--r--default_images/res/commandimagelist/sc_showbookview.pngbin0 -> 524 bytes-rw-r--r--default_images/res/commandimagelist/sc_showbrowser.pngbin0 -> 760 bytes-rw-r--r--default_images/res/commandimagelist/sc_showdatanavigator.pngbin0 -> 636 bytes-rw-r--r--default_images/res/commandimagelist/sc_showfmexplorer.pngbin0 -> 876 bytes-rw-r--r--default_images/res/commandimagelist/sc_showmultiplepages.pngbin0 -> 412 bytes-rw-r--r--default_images/res/commandimagelist/sc_showpropbrowser.pngbin0 -> 760 bytes-rw-r--r--default_images/res/commandimagelist/sc_showslide.pngbin0 -> 610 bytes-rw-r--r--default_images/res/commandimagelist/sc_showtwopages.pngbin0 -> 453 bytes-rw-r--r--default_images/res/commandimagelist/sc_shrink.pngbin0 -> 771 bytes-rw-r--r--default_images/res/commandimagelist/sc_size.pngbin0 -> 176 bytes-rw-r--r--default_images/res/commandimagelist/sc_smallestheight.pngbin0 -> 686 bytes-rw-r--r--default_images/res/commandimagelist/sc_smallestwidth.pngbin0 -> 635 bytes-rw-r--r--default_images/res/commandimagelist/sc_snapborder.pngbin0 -> 659 bytes-rw-r--r--default_images/res/commandimagelist/sc_snapframe.pngbin0 -> 505 bytes-rw-r--r--default_images/res/commandimagelist/sc_snappoints.pngbin0 -> 499 bytes-rw-r--r--default_images/res/commandimagelist/sc_solidcreate.pngbin0 -> 575 bytes-rw-r--r--default_images/res/commandimagelist/sc_sortascending.pngbin0 -> 659 bytes-rw-r--r--default_images/res/commandimagelist/sc_sortdescending.pngbin0 -> 673 bytes-rw-r--r--default_images/res/commandimagelist/sc_sortdown.pngbin0 -> 673 bytes-rw-r--r--default_images/res/commandimagelist/sc_sortup.pngbin0 -> 659 bytes-rw-r--r--default_images/res/commandimagelist/sc_sourceview.pngbin0 -> 590 bytes-rw-r--r--default_images/res/commandimagelist/sc_spacepara1.pngbin0 -> 314 bytes-rw-r--r--default_images/res/commandimagelist/sc_spacepara15.pngbin0 -> 312 bytes-rw-r--r--default_images/res/commandimagelist/sc_spacepara2.pngbin0 -> 304 bytes-rw-r--r--default_images/res/commandimagelist/sc_spelldialog.pngbin0 -> 605 bytes-rw-r--r--default_images/res/commandimagelist/sc_spelling.pngbin0 -> 605 bytes-rw-r--r--default_images/res/commandimagelist/sc_spellingandgrammardialog.pngbin0 -> 605 bytes-rw-r--r--default_images/res/commandimagelist/sc_spellonline.pngbin0 -> 505 bytes-rw-r--r--default_images/res/commandimagelist/sc_sphere.pngbin0 -> 936 bytes-rw-r--r--default_images/res/commandimagelist/sc_spinbutton.pngbin0 -> 549 bytes-rw-r--r--default_images/res/commandimagelist/sc_splitcell.pngbin0 -> 418 bytes-rw-r--r--default_images/res/commandimagelist/sc_splithorizontal.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/sc_splitparenthorizontal.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/sc_splitparentvertical.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/sc_splitvertical.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/sc_square.pngbin0 -> 431 bytes-rw-r--r--default_images/res/commandimagelist/sc_square_rounded.pngbin0 -> 624 bytes-rw-r--r--default_images/res/commandimagelist/sc_square_rounded_unfilled.pngbin0 -> 600 bytes-rw-r--r--default_images/res/commandimagelist/sc_square_unfilled.pngbin0 -> 450 bytes-rw-r--r--default_images/res/commandimagelist/sc_starchartdialog.pngbin0 -> 529 bytes-rw-r--r--default_images/res/commandimagelist/sc_starshapes.bang.pngbin0 -> 752 bytes-rw-r--r--default_images/res/commandimagelist/sc_starshapes.concave-star6.pngbin0 -> 780 bytes-rw-r--r--default_images/res/commandimagelist/sc_starshapes.doorplate.pngbin0 -> 680 bytes-rw-r--r--default_images/res/commandimagelist/sc_starshapes.horizontal-scroll.pngbin0 -> 582 bytes-rw-r--r--default_images/res/commandimagelist/sc_starshapes.pngbin0 -> 612 bytes-rw-r--r--default_images/res/commandimagelist/sc_starshapes.signet.pngbin0 -> 775 bytes-rw-r--r--default_images/res/commandimagelist/sc_starshapes.star12.pngbin0 -> 817 bytes-rw-r--r--default_images/res/commandimagelist/sc_starshapes.star24.pngbin0 -> 946 bytes-rw-r--r--default_images/res/commandimagelist/sc_starshapes.star4.pngbin0 -> 587 bytes-rw-r--r--default_images/res/commandimagelist/sc_starshapes.star5.pngbin0 -> 612 bytes-rw-r--r--default_images/res/commandimagelist/sc_starshapes.star6.pngbin0 -> 741 bytes-rw-r--r--default_images/res/commandimagelist/sc_starshapes.star8.pngbin0 -> 720 bytes-rw-r--r--default_images/res/commandimagelist/sc_starshapes.vertical-scroll.pngbin0 -> 572 bytes-rw-r--r--default_images/res/commandimagelist/sc_strikeout.pngbin0 -> 459 bytes-rw-r--r--default_images/res/commandimagelist/sc_styleapply.pngbin0 -> 831 bytes-rw-r--r--default_images/res/commandimagelist/sc_stylenewbyexample.pngbin0 -> 613 bytes-rw-r--r--default_images/res/commandimagelist/sc_styleupdatebyexample.pngbin0 -> 734 bytes-rw-r--r--default_images/res/commandimagelist/sc_stylewatercanmode.pngbin0 -> 831 bytes-rw-r--r--default_images/res/commandimagelist/sc_subscript.pngbin0 -> 927 bytes-rw-r--r--default_images/res/commandimagelist/sc_superscript.pngbin0 -> 914 bytes-rw-r--r--default_images/res/commandimagelist/sc_switchcontroldesignmode.pngbin0 -> 698 bytes-rw-r--r--default_images/res/commandimagelist/sc_switchxformsdesignmode.pngbin0 -> 698 bytes-rw-r--r--default_images/res/commandimagelist/sc_symbolcatalogue.pngbin0 -> 563 bytes-rw-r--r--default_images/res/commandimagelist/sc_symbolshapes.brace-pair.pngbin0 -> 756 bytes-rw-r--r--default_images/res/commandimagelist/sc_symbolshapes.bracket-pair.pngbin0 -> 667 bytes-rw-r--r--default_images/res/commandimagelist/sc_symbolshapes.cloud.pngbin0 -> 847 bytes-rw-r--r--default_images/res/commandimagelist/sc_symbolshapes.diamond-bevel.pngbin0 -> 660 bytes-rw-r--r--default_images/res/commandimagelist/sc_symbolshapes.flower.pngbin0 -> 921 bytes-rw-r--r--default_images/res/commandimagelist/sc_symbolshapes.forbidden.pngbin0 -> 1077 bytes-rw-r--r--default_images/res/commandimagelist/sc_symbolshapes.heart.pngbin0 -> 945 bytes-rw-r--r--default_images/res/commandimagelist/sc_symbolshapes.left-brace.pngbin0 -> 587 bytes-rw-r--r--default_images/res/commandimagelist/sc_symbolshapes.left-bracket.pngbin0 -> 514 bytes-rw-r--r--default_images/res/commandimagelist/sc_symbolshapes.lightning.pngbin0 -> 669 bytes-rw-r--r--default_images/res/commandimagelist/sc_symbolshapes.moon.pngbin0 -> 814 bytes-rw-r--r--default_images/res/commandimagelist/sc_symbolshapes.octagon-bevel.pngbin0 -> 765 bytes-rw-r--r--default_images/res/commandimagelist/sc_symbolshapes.pngbin0 -> 1086 bytes-rw-r--r--default_images/res/commandimagelist/sc_symbolshapes.puzzle.pngbin0 -> 830 bytes-rw-r--r--default_images/res/commandimagelist/sc_symbolshapes.quad-bevel.pngbin0 -> 585 bytes-rw-r--r--default_images/res/commandimagelist/sc_symbolshapes.right-brace.pngbin0 -> 586 bytes-rw-r--r--default_images/res/commandimagelist/sc_symbolshapes.right-bracket.pngbin0 -> 522 bytes-rw-r--r--default_images/res/commandimagelist/sc_symbolshapes.smiley.pngbin0 -> 1086 bytes-rw-r--r--default_images/res/commandimagelist/sc_symbolshapes.sun.pngbin0 -> 651 bytes-rw-r--r--default_images/res/commandimagelist/sc_tabdialog.pngbin0 -> 785 bytes-rw-r--r--default_images/res/commandimagelist/sc_tabledesign.pngbin0 -> 660 bytes-rw-r--r--default_images/res/commandimagelist/sc_tabledialog.pngbin0 -> 640 bytes-rw-r--r--default_images/res/commandimagelist/sc_tablemodefix.pngbin0 -> 411 bytes-rw-r--r--default_images/res/commandimagelist/sc_tablemodefixprop.pngbin0 -> 456 bytes-rw-r--r--default_images/res/commandimagelist/sc_tablemodevariable.pngbin0 -> 408 bytes-rw-r--r--default_images/res/commandimagelist/sc_tablesort.pngbin0 -> 442 bytes-rw-r--r--default_images/res/commandimagelist/sc_testmode.pngbin0 -> 698 bytes-rw-r--r--default_images/res/commandimagelist/sc_text.pngbin0 -> 509 bytes-rw-r--r--default_images/res/commandimagelist/sc_text_marquee.pngbin0 -> 602 bytes-rw-r--r--default_images/res/commandimagelist/sc_textdirectionlefttoright.pngbin0 -> 532 bytes-rw-r--r--default_images/res/commandimagelist/sc_textdirectiontoptobottom.pngbin0 -> 520 bytes-rw-r--r--default_images/res/commandimagelist/sc_textfittosizetool.pngbin0 -> 752 bytes-rw-r--r--default_images/res/commandimagelist/sc_texttoolbox.pngbin0 -> 509 bytes-rw-r--r--default_images/res/commandimagelist/sc_thesaurus.pngbin0 -> 822 bytes-rw-r--r--default_images/res/commandimagelist/sc_thesaurusdialog.pngbin0 -> 822 bytes-rw-r--r--default_images/res/commandimagelist/sc_timefield.pngbin0 -> 830 bytes-rw-r--r--default_images/res/commandimagelist/sc_toggleanchortype.pngbin0 -> 642 bytes-rw-r--r--default_images/res/commandimagelist/sc_toggleaxisdescr.pngbin0 -> 375 bytes-rw-r--r--default_images/res/commandimagelist/sc_toggleaxistitle.pngbin0 -> 534 bytes-rw-r--r--default_images/res/commandimagelist/sc_togglebreakpoint.pngbin0 -> 774 bytes-rw-r--r--default_images/res/commandimagelist/sc_togglegridhorizontal.pngbin0 -> 433 bytes-rw-r--r--default_images/res/commandimagelist/sc_togglegridvertical.pngbin0 -> 502 bytes-rw-r--r--default_images/res/commandimagelist/sc_togglelegend.pngbin0 -> 572 bytes-rw-r--r--default_images/res/commandimagelist/sc_togglemergecells.pngbin0 -> 412 bytes-rw-r--r--default_images/res/commandimagelist/sc_toggleobjectbeziermode.pngbin0 -> 477 bytes-rw-r--r--default_images/res/commandimagelist/sc_toggleobjectrotatemode.pngbin0 -> 910 bytes-rw-r--r--default_images/res/commandimagelist/sc_toggletitle.pngbin0 -> 503 bytes-rw-r--r--default_images/res/commandimagelist/sc_toolsmacroedit.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/sc_toolsoptions.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/sc_torus.pngbin0 -> 737 bytes-rw-r--r--default_images/res/commandimagelist/sc_transformdialog.pngbin0 -> 809 bytes-rw-r--r--default_images/res/commandimagelist/sc_underline.pngbin0 -> 408 bytes-rw-r--r--default_images/res/commandimagelist/sc_underlinedouble.pngbin0 -> 425 bytes-rw-r--r--default_images/res/commandimagelist/sc_undo.pngbin0 -> 888 bytes-rw-r--r--default_images/res/commandimagelist/sc_ungroup.pngbin0 -> 483 bytes-rw-r--r--default_images/res/commandimagelist/sc_unhainframes.pngbin0 -> 700 bytes-rw-r--r--default_images/res/commandimagelist/sc_upsearch.pngbin0 -> 583 bytes-rw-r--r--default_images/res/commandimagelist/sc_urlbutton.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/sc_usewizards.pngbin0 -> 662 bytes-rw-r--r--default_images/res/commandimagelist/sc_verticalcaption.pngbin0 -> 882 bytes-rw-r--r--default_images/res/commandimagelist/sc_verticaltext.pngbin0 -> 470 bytes-rw-r--r--default_images/res/commandimagelist/sc_verticaltextfittosizetool.pngbin0 -> 841 bytes-rw-r--r--default_images/res/commandimagelist/sc_vfixedline.pngbin0 -> 394 bytes-rw-r--r--default_images/res/commandimagelist/sc_view100.pngbin0 -> 817 bytes-rw-r--r--default_images/res/commandimagelist/sc_viewdatasourcebrowser.pngbin0 -> 998 bytes-rw-r--r--default_images/res/commandimagelist/sc_viewformasgrid.pngbin0 -> 580 bytes-rw-r--r--default_images/res/commandimagelist/sc_vscrollbar.pngbin0 -> 592 bytes-rw-r--r--default_images/res/commandimagelist/sc_window3d.pngbin0 -> 271 bytes-rw-r--r--default_images/res/commandimagelist/sc_wrapcontour.pngbin0 -> 333 bytes-rw-r--r--default_images/res/commandimagelist/sc_wrapideal.pngbin0 -> 493 bytes-rw-r--r--default_images/res/commandimagelist/sc_wrapleft.pngbin0 -> 311 bytes-rw-r--r--default_images/res/commandimagelist/sc_wrapoff.pngbin0 -> 304 bytes-rw-r--r--default_images/res/commandimagelist/sc_wrapon.pngbin0 -> 340 bytes-rw-r--r--default_images/res/commandimagelist/sc_wrapright.pngbin0 -> 318 bytes-rw-r--r--default_images/res/commandimagelist/sc_wrapthrough.pngbin0 -> 359 bytes-rw-r--r--default_images/res/commandimagelist/sc_xlinecolor.pngbin0 -> 509 bytes-rw-r--r--default_images/res/commandimagelist/sc_xlinestyle.pngbin0 -> 509 bytes-rw-r--r--default_images/res/commandimagelist/sc_yes.pngbin0 -> 948 bytes-rw-r--r--default_images/res/commandimagelist/sc_zoom.pngbin0 -> 761 bytes-rw-r--r--default_images/res/commandimagelist/sc_zoom100percent.pngbin0 -> 817 bytes-rw-r--r--default_images/res/commandimagelist/sc_zoomin.pngbin0 -> 763 bytes-rw-r--r--default_images/res/commandimagelist/sc_zoomminus.pngbin0 -> 737 bytes-rw-r--r--default_images/res/commandimagelist/sc_zoomnext.pngbin0 -> 984 bytes-rw-r--r--default_images/res/commandimagelist/sc_zoomobjects.pngbin0 -> 795 bytes-rw-r--r--default_images/res/commandimagelist/sc_zoomoptimal.pngbin0 -> 784 bytes-rw-r--r--default_images/res/commandimagelist/sc_zoomout.pngbin0 -> 737 bytes-rw-r--r--default_images/res/commandimagelist/sc_zoompage.pngbin0 -> 801 bytes-rw-r--r--default_images/res/commandimagelist/sc_zoompagewidth.pngbin0 -> 852 bytes-rw-r--r--default_images/res/commandimagelist/sc_zoompanning.pngbin0 -> 924 bytes-rw-r--r--default_images/res/commandimagelist/sc_zoomplus.pngbin0 -> 763 bytes-rw-r--r--default_images/res/commandimagelist/sc_zoomprevious.pngbin0 -> 952 bytes-rw-r--r--default_images/res/commandimagelist/sc_zoomtoolbox.pngbin0 -> 761 bytes-rw-r--r--default_images/res/commandimagelist/sch_absoluterecord.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/sch_actionmode.pngbin0 -> 174 bytes-rw-r--r--default_images/res/commandimagelist/sch_addbookmark.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_adddatefield.pngbin0 -> 119 bytes-rw-r--r--default_images/res/commandimagelist/sch_adddirect.pngbin0 -> 109 bytes-rw-r--r--default_images/res/commandimagelist/sch_addfield.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_addons.pngbin0 -> 148 bytes-rw-r--r--default_images/res/commandimagelist/sch_addprintarea.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/sch_addtable.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/sch_addwatch.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/sch_adjust.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_advancedmode.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_alignblock.pngbin0 -> 266 bytes-rw-r--r--default_images/res/commandimagelist/sch_alignbottom.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/sch_aligncenter.pngbin0 -> 154 bytes-rw-r--r--default_images/res/commandimagelist/sch_aligndown.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/sch_alignhorizontalcenter.pngbin0 -> 269 bytes-rw-r--r--default_images/res/commandimagelist/sch_alignleft.pngbin0 -> 268 bytes-rw-r--r--default_images/res/commandimagelist/sch_alignmiddle.pngbin0 -> 154 bytes-rw-r--r--default_images/res/commandimagelist/sch_alignright.pngbin0 -> 268 bytes-rw-r--r--default_images/res/commandimagelist/sch_aligntop.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/sch_alignup.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/sch_alignvcenter.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/sch_alignverticalcenter.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/sch_animationeffects.pngbin0 -> 170 bytes-rw-r--r--default_images/res/commandimagelist/sch_animationmode.pngbin0 -> 178 bytes-rw-r--r--default_images/res/commandimagelist/sch_animationobjects.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/sch_arc.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.chevron.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.circular-arrow.pngbin0 -> 169 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.corner-right-arrow.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.down-arrow-callout.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.down-arrow.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.left-arrow-callout.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.left-arrow.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.left-right-arrow-callout.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.left-right-arrow.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.notched-right-arrow.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.pentagon-right.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.quad-arrow-callout.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.quad-arrow.pngbin0 -> 148 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.right-arrow-callout.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.right-arrow.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.s-sharped-arrow.pngbin0 -> 163 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.split-arrow.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.split-round-arrow.pngbin0 -> 163 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.striped-right-arrow.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.up-arrow-callout.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.up-arrow.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.up-down-arrow-callout.pngbin0 -> 151 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.up-down-arrow.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.up-right-arrow-callout.pngbin0 -> 165 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.up-right-arrow.pngbin0 -> 150 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.up-right-down-arrow.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowstoolbox.pngbin0 -> 101 bytes-rw-r--r--default_images/res/commandimagelist/sch_assignlayout.pngbin0 -> 3632 bytes-rw-r--r--default_images/res/commandimagelist/sch_autocontrolfocus.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_autofilter.pngbin0 -> 173 bytes-rw-r--r--default_images/res/commandimagelist/sch_autoformat.pngbin0 -> 193 bytes-rw-r--r--default_images/res/commandimagelist/sch_autosum.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/sch_avmediaplayer.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/sch_backcolor.pngbin0 -> 181 bytes-rw-r--r--default_images/res/commandimagelist/sch_backgroundcolor.pngbin0 -> 167 bytes-rw-r--r--default_images/res/commandimagelist/sch_backgroundpatterncontroller.pngbin0 -> 167 bytes-rw-r--r--default_images/res/commandimagelist/sch_backward.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.block-arc.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.can.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.circle-pie.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.circle.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.cross.pngbin0 -> 108 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.cube.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.diamond.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.ellipse.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.frame.pngbin0 -> 107 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.hexagon.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.isosceles-triangle.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.octagon.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.paper.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.parallelogram.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.pentagon.pngbin0 -> 150 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.quadrat.pngbin0 -> 262 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.rectangle.pngbin0 -> 259 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.right-triangle.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.ring.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.round-quadrat.pngbin0 -> 107 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.round-rectangle.pngbin0 -> 107 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.trapezoid.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicstepinto.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicstepout.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicstepover.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicstop.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/sch_beamer.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_beforeobject.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/sch_behindobject.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_bezier_unfilled.pngbin0 -> 125 bytes-rw-r--r--default_images/res/commandimagelist/sch_bezierappend.pngbin0 -> 148 bytes-rw-r--r--default_images/res/commandimagelist/sch_bezierclose.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sch_bezierconvert.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/sch_beziercutline.pngbin0 -> 192 bytes-rw-r--r--default_images/res/commandimagelist/sch_bezierdelete.pngbin0 -> 170 bytes-rw-r--r--default_images/res/commandimagelist/sch_bezieredge.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/sch_beziereliminatepoints.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/sch_bezierfill.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_bezierinsert.pngbin0 -> 157 bytes-rw-r--r--default_images/res/commandimagelist/sch_beziermove.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/sch_beziersmooth.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/sch_beziersymmetric.pngbin0 -> 148 bytes-rw-r--r--default_images/res/commandimagelist/sch_bighandles.pngbin0 -> 125 bytes-rw-r--r--default_images/res/commandimagelist/sch_bold.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/sch_borderdialog.pngbin0 -> 252 bytes-rw-r--r--default_images/res/commandimagelist/sch_bringtofront.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_browsebackward.pngbin0 -> 310 bytes-rw-r--r--default_images/res/commandimagelist/sch_browseforward.pngbin0 -> 320 bytes-rw-r--r--default_images/res/commandimagelist/sch_browseview.pngbin0 -> 186 bytes-rw-r--r--default_images/res/commandimagelist/sch_bullet.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/sch_bulletsandnumberingdialog.pngbin0 -> 137 bytes-rw-r--r--default_images/res/commandimagelist/sch_calloutshapes.cloud-callout.pngbin0 -> 159 bytes-rw-r--r--default_images/res/commandimagelist/sch_calloutshapes.line-callout-1.pngbin0 -> 125 bytes-rw-r--r--default_images/res/commandimagelist/sch_calloutshapes.line-callout-2.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/sch_calloutshapes.line-callout-3.pngbin0 -> 104 bytes-rw-r--r--default_images/res/commandimagelist/sch_calloutshapes.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/sch_calloutshapes.rectangular-callout.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_calloutshapes.round-callout.pngbin0 -> 148 bytes-rw-r--r--default_images/res/commandimagelist/sch_calloutshapes.round-rectangular-callout.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/sch_cellvertbottom.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/sch_cellvertcenter.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/sch_cellverttop.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/sch_centerpara.pngbin0 -> 269 bytes-rw-r--r--default_images/res/commandimagelist/sch_chainframes.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/sch_changebezier.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/sch_changecasetolower.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/sch_changecasetoupper.pngbin0 -> 148 bytes-rw-r--r--default_images/res/commandimagelist/sch_changedatabasefield.pngbin0 -> 176 bytes-rw-r--r--default_images/res/commandimagelist/sch_changepolygon.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/sch_charfontname.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/sch_checkbox.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_choosecontrols.pngbin0 -> 158 bytes-rw-r--r--default_images/res/commandimagelist/sch_choosedesign.pngbin0 -> 175 bytes-rw-r--r--default_images/res/commandimagelist/sch_choosemacro.pngbin0 -> 137 bytes-rw-r--r--default_images/res/commandimagelist/sch_choosepolygon.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_circle.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/sch_circle_unfilled.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/sch_circlearc.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_circlecut.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/sch_circlecut_unfilled.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_circlepie.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/sch_circlepie_unfilled.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/sch_clickchangerotation.pngbin0 -> 175 bytes-rw-r--r--default_images/res/commandimagelist/sch_closedoc.pngbin0 -> 157 bytes-rw-r--r--default_images/res/commandimagelist/sch_closedocs.pngbin0 -> 108 bytes-rw-r--r--default_images/res/commandimagelist/sch_closemasterview.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/sch_closewin.pngbin0 -> 157 bytes-rw-r--r--default_images/res/commandimagelist/sch_color.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/sch_colorsettings.pngbin0 -> 166 bytes-rw-r--r--default_images/res/commandimagelist/sch_colorview.pngbin0 -> 260 bytes-rw-r--r--default_images/res/commandimagelist/sch_combobox.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/sch_commontaskbarvisible.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/sch_compilebasic.pngbin0 -> 173 bytes-rw-r--r--default_images/res/commandimagelist/sch_cone.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/sch_config.pngbin0 -> 158 bytes-rw-r--r--default_images/res/commandimagelist/sch_connector.pngbin0 -> 110 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorarrowend.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorarrows.pngbin0 -> 117 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorarrowstart.pngbin0 -> 116 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorcircleend.pngbin0 -> 110 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorcircles.pngbin0 -> 113 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorcirclestart.pngbin0 -> 112 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorcurve.pngbin0 -> 117 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorcurvearrowend.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorcurvearrows.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorcurvearrowstart.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorcurvecircleend.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorcurvecircles.pngbin0 -> 119 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorcurvecirclestart.pngbin0 -> 119 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorline.pngbin0 -> 116 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorlinearrowend.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorlinearrows.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorlinearrowstart.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorlinecircleend.pngbin0 -> 112 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorlinecircles.pngbin0 -> 112 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorlinecirclestart.pngbin0 -> 113 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorlines.pngbin0 -> 114 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorlinesarrowend.pngbin0 -> 125 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorlinesarrows.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorlinesarrowstart.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorlinescircleend.pngbin0 -> 117 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorlinescircles.pngbin0 -> 117 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorlinescirclestart.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectortoolbox.pngbin0 -> 113 bytes-rw-r--r--default_images/res/commandimagelist/sch_contourdialog.pngbin0 -> 166 bytes-rw-r--r--default_images/res/commandimagelist/sch_controlcodes.pngbin0 -> 107 bytes-rw-r--r--default_images/res/commandimagelist/sch_controlproperties.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/sch_convertinto3d.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/sch_convertinto3dlathe.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/sch_convertinto3dlathefast.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/sch_copy.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/sch_countall.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_crookrotate.pngbin0 -> 151 bytes-rw-r--r--default_images/res/commandimagelist/sch_crookslant.pngbin0 -> 167 bytes-rw-r--r--default_images/res/commandimagelist/sch_crop.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/sch_cube.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/sch_currencyfield.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/sch_customanimation.pngbin0 -> 170 bytes-rw-r--r--default_images/res/commandimagelist/sch_cut.pngbin0 -> 167 bytes-rw-r--r--default_images/res/commandimagelist/sch_cylinder.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/sch_cyramid.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/sch_datadatapilotrun.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/sch_datafilterautofilter.pngbin0 -> 173 bytes-rw-r--r--default_images/res/commandimagelist/sch_datafilterspecialfilter.pngbin0 -> 137 bytes-rw-r--r--default_images/res/commandimagelist/sch_datafilterstandardfilter.pngbin0 -> 117 bytes-rw-r--r--default_images/res/commandimagelist/sch_dataimport.pngbin0 -> 109 bytes-rw-r--r--default_images/res/commandimagelist/sch_dataincolumns.pngbin0 -> 107 bytes-rw-r--r--default_images/res/commandimagelist/sch_datainrows.pngbin0 -> 263 bytes-rw-r--r--default_images/res/commandimagelist/sch_datefield.pngbin0 -> 119 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbaddrelation.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbchangedesignmode.pngbin0 -> 164 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbclearquery.pngbin0 -> 185 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbdistinctvalues.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbformdelete.pngbin0 -> 173 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbformedit.pngbin0 -> 167 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbformopen.pngbin0 -> 148 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbformrename.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbindexdesign.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbnewform.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbnewformautopilot.pngbin0 -> 189 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbnewquery.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbnewqueryautopilot.pngbin0 -> 199 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbnewquerysql.pngbin0 -> 137 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbnewreport.pngbin0 -> 157 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbnewreportautopilot.pngbin0 -> 196 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbnewtable.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbnewtableautopilot.pngbin0 -> 184 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbnewview.pngbin0 -> 159 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbnewviewsql.pngbin0 -> 175 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbquerydelete.pngbin0 -> 169 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbqueryedit.pngbin0 -> 182 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbqueryopen.pngbin0 -> 167 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbqueryrename.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbreportdelete.pngbin0 -> 167 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbreportedit.pngbin0 -> 180 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbreportopen.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbreportrename.pngbin0 -> 148 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbsortingandgrouping.pngbin0 -> 260 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbtabledelete.pngbin0 -> 169 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbtableedit.pngbin0 -> 172 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbtableopen.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbtablerename.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbviewaliases.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbviewfunctions.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbviewtablenames.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/sch_decrementindent.pngbin0 -> 119 bytes-rw-r--r--default_images/res/commandimagelist/sch_decrementlevel.pngbin0 -> 111 bytes-rw-r--r--default_images/res/commandimagelist/sch_decrementsublevels.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_defaultbullet.pngbin0 -> 259 bytes-rw-r--r--default_images/res/commandimagelist/sch_defaultnumbering.pngbin0 -> 109 bytes-rw-r--r--default_images/res/commandimagelist/sch_definename.pngbin0 -> 111 bytes-rw-r--r--default_images/res/commandimagelist/sch_defineprintarea.pngbin0 -> 153 bytes-rw-r--r--default_images/res/commandimagelist/sch_delete.pngbin0 -> 140 bytes-rwxr-xr-xdefault_images/res/commandimagelist/sch_deleteallannotation.pngbin0 -> 3677 bytes-rwxr-xr-xdefault_images/res/commandimagelist/sch_deleteannotation.pngbin0 -> 3663 bytes-rw-r--r--default_images/res/commandimagelist/sch_deletecolumns.pngbin0 -> 103 bytes-rw-r--r--default_images/res/commandimagelist/sch_deletemasterpage.pngbin0 -> 174 bytes-rw-r--r--default_images/res/commandimagelist/sch_deleteprintarea.pngbin0 -> 171 bytes-rw-r--r--default_images/res/commandimagelist/sch_deleterecord.pngbin0 -> 148 bytes-rw-r--r--default_images/res/commandimagelist/sch_deleterows.pngbin0 -> 105 bytes-rw-r--r--default_images/res/commandimagelist/sch_designerdialog.pngbin0 -> 153 bytes-rw-r--r--default_images/res/commandimagelist/sch_dia.pngbin0 -> 159 bytes-rw-r--r--default_images/res/commandimagelist/sch_diaauto.pngbin0 -> 159 bytes-rw-r--r--default_images/res/commandimagelist/sch_diaeffect.pngbin0 -> 159 bytes-rw-r--r--default_images/res/commandimagelist/sch_diagramdata.pngbin0 -> 245 bytes-rw-r--r--default_images/res/commandimagelist/sch_diagramtype.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/sch_diaspeed.pngbin0 -> 159 bytes-rw-r--r--default_images/res/commandimagelist/sch_diatime.pngbin0 -> 159 bytes-rw-r--r--default_images/res/commandimagelist/sch_distributecolumns.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/sch_distributerows.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/sch_doubleclicktextedit.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/sch_downsearch.pngbin0 -> 3670 bytes-rw-r--r--default_images/res/commandimagelist/sch_draw.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/sch_drawcaption.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/sch_drawchart.pngbin0 -> 101 bytes-rw-r--r--default_images/res/commandimagelist/sch_drawselect.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_drawtext.pngbin0 -> 104 bytes-rw-r--r--default_images/res/commandimagelist/sch_dsbdocumentdatasource.pngbin0 -> 189 bytes-rw-r--r--default_images/res/commandimagelist/sch_dsbeditdoc.pngbin0 -> 174 bytes-rw-r--r--default_images/res/commandimagelist/sch_dsbformletter.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/sch_dsbinsertcolumns.pngbin0 -> 125 bytes-rw-r--r--default_images/res/commandimagelist/sch_dsbinsertcontent.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/sch_dsbrowserexplorer.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/sch_duplicatepage.pngbin0 -> 157 bytes-rw-r--r--default_images/res/commandimagelist/sch_edit.pngbin0 -> 115 bytes-rw-r--r--default_images/res/commandimagelist/sch_editdoc.pngbin0 -> 174 bytes-rw-r--r--default_images/res/commandimagelist/sch_editframeset.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_editglossary.pngbin0 -> 167 bytes-rw-r--r--default_images/res/commandimagelist/sch_editheaderandfooter.pngbin0 -> 109 bytes-rw-r--r--default_images/res/commandimagelist/sch_editprintarea.pngbin0 -> 181 bytes-rw-r--r--default_images/res/commandimagelist/sch_ellipse.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/sch_ellipse_unfilled.pngbin0 -> 119 bytes-rw-r--r--default_images/res/commandimagelist/sch_ellipsecut.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/sch_ellipsecut_unfilled.pngbin0 -> 125 bytes-rw-r--r--default_images/res/commandimagelist/sch_ellipsetoolbox.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/sch_entergroup.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/sch_entirecolumn.pngbin0 -> 262 bytes-rw-r--r--default_images/res/commandimagelist/sch_entirerow.pngbin0 -> 100 bytes-rw-r--r--default_images/res/commandimagelist/sch_euroconverter.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/sch_executereport.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/sch_expandpage.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/sch_exportdialog.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/sch_exportdirecttopdf.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/sch_exportto.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/sch_extendedhelp.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/sch_extrusion3dcolor.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_extrusiondepthfloater.pngbin0 -> 158 bytes-rw-r--r--default_images/res/commandimagelist/sch_extrusiondirectionfloater.pngbin0 -> 154 bytes-rw-r--r--default_images/res/commandimagelist/sch_extrusionlightingfloater.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/sch_extrusionsurfacefloater.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/sch_extrusiontiltdown.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/sch_extrusiontiltleft.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/sch_extrusiontiltright.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/sch_extrusiontiltup.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/sch_extrusiontoggle.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/sch_fieldnames.pngbin0 -> 117 bytes-rw-r--r--default_images/res/commandimagelist/sch_fields.pngbin0 -> 117 bytes-rw-r--r--default_images/res/commandimagelist/sch_filecontrol.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_filedocument.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_fillshadow.pngbin0 -> 111 bytes-rw-r--r--default_images/res/commandimagelist/sch_fillstyle.pngbin0 -> 171 bytes-rw-r--r--default_images/res/commandimagelist/sch_filtercrit.pngbin0 -> 117 bytes-rw-r--r--default_images/res/commandimagelist/sch_firstpage.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/sch_firstrecord.pngbin0 -> 119 bytes-rw-r--r--default_images/res/commandimagelist/sch_fliphorizontal.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_flipvertical.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-alternate-process.pngbin0 -> 107 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-card.pngbin0 -> 114 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-collate.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-connector.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-data.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-decision.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-delay.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-direct-access-storage.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-display.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-document.pngbin0 -> 301 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-extract.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-internal-storage.pngbin0 -> 101 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-magnetic-disk.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-manual-input.pngbin0 -> 119 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-manual-operation.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-merge.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-multidocument.pngbin0 -> 331 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-off-page-connector.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-or.pngbin0 -> 150 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-predefined-process.pngbin0 -> 266 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-preparation.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-process.pngbin0 -> 262 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-punched-tape.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-sequential-access.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-sort.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-stored-data.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-summing-junction.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-terminator.pngbin0 -> 114 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.pngbin0 -> 101 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontcolor.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontdialog.pngbin0 -> 166 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontheight.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontwork.pngbin0 -> 157 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkalignmentfloater.pngbin0 -> 269 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkcharacterspacingfloater.pngbin0 -> 172 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkgalleryfloater.pngbin0 -> 364 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworksameletterheights.pngbin0 -> 163 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-arch-down-curve.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-arch-down-pour.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-arch-left-curve.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-arch-left-pour.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-arch-right-curve.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-arch-right-pour.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-arch-up-curve.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-arch-up-pour.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-chevron-down.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-chevron-up.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-circle-curve.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-circle-pour.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-curve-down.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-curve-up.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-fade-down.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-fade-left.pngbin0 -> 113 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-fade-right.pngbin0 -> 119 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-fade-up-and-left.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-fade-up-and-right.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-fade-up.pngbin0 -> 125 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-inflate.pngbin0 -> 115 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-open-circle-curve.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-open-circle-pour.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-plain-text.pngbin0 -> 210 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-slant-down.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-slant-up.pngbin0 -> 116 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-stop.pngbin0 -> 111 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-triangle-down.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-triangle-up.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-wave.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.pngbin0 -> 157 bytes-rw-r--r--default_images/res/commandimagelist/sch_formatarea.pngbin0 -> 171 bytes-rw-r--r--default_images/res/commandimagelist/sch_formatgroup.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/sch_formatline.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/sch_formatpaintbrush.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/sch_formattedfield.pngbin0 -> 117 bytes-rw-r--r--default_images/res/commandimagelist/sch_formatungroup.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/sch_formdesigntools.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/sch_formelcursor.pngbin0 -> 119 bytes-rw-r--r--default_images/res/commandimagelist/sch_formfilter.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/sch_formfiltered.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/sch_formfilterexecute.pngbin0 -> 117 bytes-rw-r--r--default_images/res/commandimagelist/sch_formfilternavigator.pngbin0 -> 174 bytes-rw-r--r--default_images/res/commandimagelist/sch_formproperties.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_forward.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_framedialog.pngbin0 -> 150 bytes-rw-r--r--default_images/res/commandimagelist/sch_framelinecolor.pngbin0 -> 262 bytes-rw-r--r--default_images/res/commandimagelist/sch_freeline.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/sch_freeline_unfilled.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/sch_fullscreen.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/sch_gallery.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/sch_getactivetask.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_glueeditmode.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/sch_glueescapedirectionbottom.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/sch_glueescapedirectionleft.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/sch_glueescapedirectionright.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_glueescapedirectiontop.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/sch_gluehorzaligncenter.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/sch_gluehorzalignleft.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/sch_gluehorzalignright.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/sch_glueinsertpoint.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/sch_gluepercent.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_gluevertalignbottom.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sch_gluevertaligncenter.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/sch_gluevertaligntop.pngbin0 -> 137 bytes-rw-r--r--default_images/res/commandimagelist/sch_goalseekdialog.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/sch_gotoend.pngbin0 -> 105 bytes-rw-r--r--default_images/res/commandimagelist/sch_gotoendofdoc.pngbin0 -> 154 bytes-rw-r--r--default_images/res/commandimagelist/sch_gotostartofdoc.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/sch_gotostartoftable.pngbin0 -> 115 bytes-rw-r--r--default_images/res/commandimagelist/sch_grafattrcrop.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/sch_grafblue.pngbin0 -> 150 bytes-rw-r--r--default_images/res/commandimagelist/sch_grafcontrast.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/sch_grafgamma.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/sch_grafgreen.pngbin0 -> 150 bytes-rw-r--r--default_images/res/commandimagelist/sch_grafinvert.pngbin0 -> 103 bytes-rw-r--r--default_images/res/commandimagelist/sch_grafluminance.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/sch_grafmode.pngbin0 -> 165 bytes-rw-r--r--default_images/res/commandimagelist/sch_grafred.pngbin0 -> 151 bytes-rw-r--r--default_images/res/commandimagelist/sch_graftransparence.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/sch_graphic.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/sch_graphicfilterinvert.pngbin0 -> 103 bytes-rw-r--r--default_images/res/commandimagelist/sch_graphicfiltermosaic.pngbin0 -> 137 bytes-rw-r--r--default_images/res/commandimagelist/sch_graphicfilterpopart.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/sch_graphicfilterposter.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/sch_graphicfilterrelief.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_graphicfilterremovenoise.pngbin0 -> 180 bytes-rw-r--r--default_images/res/commandimagelist/sch_graphicfiltersepia.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_graphicfiltersharpen.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/sch_graphicfiltersmooth.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/sch_graphicfiltersobel.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/sch_graphicfiltersolarize.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/sch_graphicfiltertoolbox.pngbin0 -> 157 bytes-rw-r--r--default_images/res/commandimagelist/sch_greatestheight.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_greatestwidth.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/sch_grid.pngbin0 -> 245 bytes-rw-r--r--default_images/res/commandimagelist/sch_griduse.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_gridvisible.pngbin0 -> 249 bytes-rw-r--r--default_images/res/commandimagelist/sch_group.pngbin0 -> 109 bytes-rw-r--r--default_images/res/commandimagelist/sch_groupbox.pngbin0 -> 114 bytes-rw-r--r--default_images/res/commandimagelist/sch_grow.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/sch_halfsphere.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/sch_handlesdraft.pngbin0 -> 125 bytes-rw-r--r--default_images/res/commandimagelist/sch_helpannotate.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/sch_helpbookmark.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/sch_helpdownload.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_helperdialog.pngbin0 -> 165 bytes-rw-r--r--default_images/res/commandimagelist/sch_helpindex.pngbin0 -> 165 bytes-rw-r--r--default_images/res/commandimagelist/sch_helplinesmove.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/sch_helplinesuse.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sch_helplinesvisible.pngbin0 -> 273 bytes-rw-r--r--default_images/res/commandimagelist/sch_helpmenu.pngbin0 -> 167 bytes-rw-r--r--default_images/res/commandimagelist/sch_helpsearch.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/sch_helpzoomin.pngbin0 -> 137 bytes-rw-r--r--default_images/res/commandimagelist/sch_helpzoomout.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sch_hfixedline.pngbin0 -> 101 bytes-rw-r--r--default_images/res/commandimagelist/sch_hideslide.pngbin0 -> 109 bytes-rw-r--r--default_images/res/commandimagelist/sch_hscrollbar.pngbin0 -> 111 bytes-rw-r--r--default_images/res/commandimagelist/sch_hyperlinkdialog.pngbin0 -> 205 bytes-rw-r--r--default_images/res/commandimagelist/sch_hyphenate.pngbin0 -> 115 bytes-rw-r--r--default_images/res/commandimagelist/sch_hyphenation.pngbin0 -> 115 bytes-rw-r--r--default_images/res/commandimagelist/sch_imagebutton.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/sch_imagecontrol.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_imagemapdialog.pngbin0 -> 147 bytes-rwxr-xr-xdefault_images/res/commandimagelist/sch_importdialog.pngbin0 -> 319 bytes-rw-r--r--default_images/res/commandimagelist/sch_importfromfile.pngbin0 -> 164 bytes-rw-r--r--default_images/res/commandimagelist/sch_incrementindent.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_incrementlevel.pngbin0 -> 113 bytes-rw-r--r--default_images/res/commandimagelist/sch_incrementsublevels.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/sch_inscellsctrl.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertannotation.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertauthorfield.pngbin0 -> 164 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertavmedia.pngbin0 -> 165 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertbookmark.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertcaptiondialog.pngbin0 -> 119 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertcellsdown.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertcellsright.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertcolumns.pngbin0 -> 111 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertctrl.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertcurrencyfield.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertdatefield.pngbin0 -> 119 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertdoc.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertdraw.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertedit.pngbin0 -> 115 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertendnote.pngbin0 -> 151 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertfield.pngbin0 -> 125 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertfieldctrl.pngbin0 -> 125 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertfilecontrol.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertfixedtext.pngbin0 -> 110 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertfootnote.pngbin0 -> 153 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertformattedfield.pngbin0 -> 117 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertformula.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertframe.pngbin0 -> 101 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertframeinteract.pngbin0 -> 101 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertframeinteractnocolumns.pngbin0 -> 101 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertgraphic.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_inserthyperlink.pngbin0 -> 177 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertimagecontrol.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertindexesentry.pngbin0 -> 116 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertlistbox.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertmasterpage.pngbin0 -> 168 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertmath.pngbin0 -> 117 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertneutralparagraph.pngbin0 -> 103 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertnumericfield.pngbin0 -> 106 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertobjctrl.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertobject.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertobjectchart.pngbin0 -> 101 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertobjectdialog.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertobjectfloatingframe.pngbin0 -> 102 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertobjectstarmath.pngbin0 -> 117 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertpage.pngbin0 -> 3670 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertpagecountfield.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertpagenumberfield.pngbin0 -> 119 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertpatternfield.pngbin0 -> 108 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertplugin.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertpushbutton.pngbin0 -> 100 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertreferencefield.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertrows.pngbin0 -> 114 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertsection.pngbin0 -> 105 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertsound.pngbin0 -> 125 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertspreadsheet.pngbin0 -> 245 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertsymbol.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/sch_inserttable.pngbin0 -> 245 bytes-rw-r--r--default_images/res/commandimagelist/sch_inserttextframe.pngbin0 -> 101 bytes-rw-r--r--default_images/res/commandimagelist/sch_inserttimefield.pngbin0 -> 163 bytes-rw-r--r--default_images/res/commandimagelist/sch_inserttitlefield.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_inserttoolbox.pngbin0 -> 164 bytes-rw-r--r--default_images/res/commandimagelist/sch_inserttopicfield.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_inserttreecontrol.pngbin0 -> 116 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertvideo.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/sch_insobjctrl.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/sch_interactivegradient.pngbin0 -> 151 bytes-rw-r--r--default_images/res/commandimagelist/sch_interactivetransparence.pngbin0 -> 171 bytes-rw-r--r--default_images/res/commandimagelist/sch_internetonline.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_italic.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/sch_justifypara.pngbin0 -> 266 bytes-rw-r--r--default_images/res/commandimagelist/sch_label.pngbin0 -> 110 bytes-rw-r--r--default_images/res/commandimagelist/sch_lastpage.pngbin0 -> 154 bytes-rw-r--r--default_images/res/commandimagelist/sch_lastrecord.pngbin0 -> 115 bytes-rw-r--r--default_images/res/commandimagelist/sch_leaveallgroups.pngbin0 -> 157 bytes-rw-r--r--default_images/res/commandimagelist/sch_leavegroup.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/sch_leftpara.pngbin0 -> 268 bytes-rw-r--r--default_images/res/commandimagelist/sch_line.pngbin0 -> 110 bytes-rw-r--r--default_images/res/commandimagelist/sch_line_diagonal.pngbin0 -> 125 bytes-rw-r--r--default_images/res/commandimagelist/sch_linearrowcircle.pngbin0 -> 100 bytes-rw-r--r--default_images/res/commandimagelist/sch_linearrowend.pngbin0 -> 101 bytes-rw-r--r--default_images/res/commandimagelist/sch_linearrows.pngbin0 -> 108 bytes-rw-r--r--default_images/res/commandimagelist/sch_linearrowsquare.pngbin0 -> 291 bytes-rw-r--r--default_images/res/commandimagelist/sch_linearrowstart.pngbin0 -> 287 bytes-rw-r--r--default_images/res/commandimagelist/sch_linecirclearrow.pngbin0 -> 102 bytes-rw-r--r--default_images/res/commandimagelist/sch_lineendstyle.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/sch_linesquarearrow.pngbin0 -> 102 bytes-rw-r--r--default_images/res/commandimagelist/sch_linestyle.pngbin0 -> 252 bytes-rw-r--r--default_images/res/commandimagelist/sch_linetoolbox.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/sch_linewidth.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/sch_listbox.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/sch_loadbasic.pngbin0 -> 1047 bytes-rw-r--r--default_images/res/commandimagelist/sch_macrorecorder.pngbin0 -> 169 bytes-rw-r--r--default_images/res/commandimagelist/sch_macrorecordingfloat.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_mailwindow.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_managebreakpoints.pngbin0 -> 157 bytes-rw-r--r--default_images/res/commandimagelist/sch_managelanguage.pngbin0 -> 184 bytes-rw-r--r--default_images/res/commandimagelist/sch_marks.pngbin0 -> 105 bytes-rw-r--r--default_images/res/commandimagelist/sch_matchgroup.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/sch_measureline.pngbin0 -> 104 bytes-rw-r--r--default_images/res/commandimagelist/sch_mergecells.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_mergedialog.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/sch_mirror.pngbin0 -> 178 bytes-rw-r--r--default_images/res/commandimagelist/sch_modifyframe.pngbin0 -> 172 bytes-rw-r--r--default_images/res/commandimagelist/sch_modifypage.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_moduledialog.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/sch_morecontrols.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/sch_movedown.pngbin0 -> 115 bytes-rw-r--r--default_images/res/commandimagelist/sch_movedownsubitems.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/sch_moveup.pngbin0 -> 114 bytes-rw-r--r--default_images/res/commandimagelist/sch_moveupsubitems.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/sch_navigationbar.pngbin0 -> 107 bytes-rw-r--r--default_images/res/commandimagelist/sch_navigator.pngbin0 -> 174 bytes-rw-r--r--default_images/res/commandimagelist/sch_newarrangement.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_newdoc.pngbin0 -> 109 bytes-rw-r--r--default_images/res/commandimagelist/sch_newrecord.pngbin0 -> 140 bytes-rwxr-xr-xdefault_images/res/commandimagelist/sch_nextannotation.pngbin0 -> 3648 bytes-rw-r--r--default_images/res/commandimagelist/sch_nextpage.pngbin0 -> 158 bytes-rw-r--r--default_images/res/commandimagelist/sch_nextrecord.pngbin0 -> 108 bytes-rw-r--r--default_images/res/commandimagelist/sch_numberformatcurrency.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/sch_numberformatdate.pngbin0 -> 119 bytes-rw-r--r--default_images/res/commandimagelist/sch_numberformatdecdecimals.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/sch_numberformatdecimal.pngbin0 -> 119 bytes-rw-r--r--default_images/res/commandimagelist/sch_numberformatincdecimals.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/sch_numberformatpercent.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_numberformatscientific.pngbin0 -> 104 bytes-rw-r--r--default_images/res/commandimagelist/sch_numberformatstandard.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sch_numberingstart.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/sch_numericfield.pngbin0 -> 106 bytes-rw-r--r--default_images/res/commandimagelist/sch_objectalign.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sch_objectalignleft.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sch_objectalignright.pngbin0 -> 137 bytes-rw-r--r--default_images/res/commandimagelist/sch_objectcatalog.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_objectposition.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_objects3dtoolbox.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/sch_open.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/sch_openreadonly.pngbin0 -> 177 bytes-rw-r--r--default_images/res/commandimagelist/sch_openurl.pngbin0 -> 177 bytes-rw-r--r--default_images/res/commandimagelist/sch_optimizetable.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/sch_ordercrit.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/sch_outlinebullet.pngbin0 -> 137 bytes-rw-r--r--default_images/res/commandimagelist/sch_outlinecollapse.pngbin0 -> 112 bytes-rw-r--r--default_images/res/commandimagelist/sch_outlinecollapseall.pngbin0 -> 115 bytes-rw-r--r--default_images/res/commandimagelist/sch_outlinedown.pngbin0 -> 115 bytes-rw-r--r--default_images/res/commandimagelist/sch_outlineexpand.pngbin0 -> 110 bytes-rw-r--r--default_images/res/commandimagelist/sch_outlineexpandall.pngbin0 -> 111 bytes-rw-r--r--default_images/res/commandimagelist/sch_outlinefont.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/sch_outlineformat.pngbin0 -> 166 bytes-rw-r--r--default_images/res/commandimagelist/sch_outlineleft.pngbin0 -> 113 bytes-rw-r--r--default_images/res/commandimagelist/sch_outlineright.pngbin0 -> 111 bytes-rw-r--r--default_images/res/commandimagelist/sch_outlineup.pngbin0 -> 114 bytes-rw-r--r--default_images/res/commandimagelist/sch_overline.pngbin0 -> 177 bytes-rw-r--r--default_images/res/commandimagelist/sch_pagedown.pngbin0 -> 158 bytes-rw-r--r--default_images/res/commandimagelist/sch_pageup.pngbin0 -> 159 bytes-rw-r--r--default_images/res/commandimagelist/sch_paragraphdialog.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/sch_paralefttoright.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/sch_pararighttoleft.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/sch_paraspacedecrease.pngbin0 -> 113 bytes-rw-r--r--default_images/res/commandimagelist/sch_paraspaceincrease.pngbin0 -> 117 bytes-rw-r--r--default_images/res/commandimagelist/sch_paste.pngbin0 -> 165 bytes-rw-r--r--default_images/res/commandimagelist/sch_patternfield.pngbin0 -> 108 bytes-rw-r--r--default_images/res/commandimagelist/sch_pickthrough.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/sch_pie.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sch_pie_unfilled.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_playmacro.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_pluginsactive.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/sch_polygon.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/sch_polygon_diagonal.pngbin0 -> 102 bytes-rw-r--r--default_images/res/commandimagelist/sch_polygon_diagonal_unfilled.pngbin0 -> 264 bytes-rw-r--r--default_images/res/commandimagelist/sch_polygon_unfilled.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/sch_presentation.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/sch_presentationlayout.pngbin0 -> 150 bytes-rw-r--r--default_images/res/commandimagelist/sch_preview.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/sch_previewprintoptions.pngbin0 -> 164 bytes-rw-r--r--default_images/res/commandimagelist/sch_previewzoom.pngbin0 -> 132 bytes-rwxr-xr-xdefault_images/res/commandimagelist/sch_previousannotation.pngbin0 -> 3647 bytes-rw-r--r--default_images/res/commandimagelist/sch_previouspage.pngbin0 -> 159 bytes-rw-r--r--default_images/res/commandimagelist/sch_prevrecord.pngbin0 -> 115 bytes-rw-r--r--default_images/res/commandimagelist/sch_print.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/sch_printdefault.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/sch_printersetup.pngbin0 -> 164 bytes-rw-r--r--default_images/res/commandimagelist/sch_printlayout.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/sch_printpagepreview.pngbin0 -> 150 bytes-rw-r--r--default_images/res/commandimagelist/sch_printpreview.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/sch_progressbar.pngbin0 -> 103 bytes-rw-r--r--default_images/res/commandimagelist/sch_pushbutton.pngbin0 -> 100 bytes-rw-r--r--default_images/res/commandimagelist/sch_quickedit.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_quit.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/sch_radiobutton.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/sch_recsave.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/sch_recsearch.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/sch_rect.pngbin0 -> 259 bytes-rw-r--r--default_images/res/commandimagelist/sch_rect_rounded.pngbin0 -> 107 bytes-rw-r--r--default_images/res/commandimagelist/sch_rect_rounded_unfilled.pngbin0 -> 274 bytes-rw-r--r--default_images/res/commandimagelist/sch_rect_unfilled.pngbin0 -> 257 bytes-rw-r--r--default_images/res/commandimagelist/sch_rectangletoolbox.pngbin0 -> 259 bytes-rw-r--r--default_images/res/commandimagelist/sch_recundo.pngbin0 -> 166 bytes-rw-r--r--default_images/res/commandimagelist/sch_redo.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/sch_refresh.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/sch_refreshformcontrol.pngbin0 -> 169 bytes-rw-r--r--default_images/res/commandimagelist/sch_rehearsetimings.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/sch_reload.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/sch_removebullets.pngbin0 -> 252 bytes-rw-r--r--default_images/res/commandimagelist/sch_removefilter.pngbin0 -> 166 bytes-rw-r--r--default_images/res/commandimagelist/sch_removefiltersort.pngbin0 -> 166 bytes-rw-r--r--default_images/res/commandimagelist/sch_renamemasterpage.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/sch_repeat.pngbin0 -> 159 bytes-rw-r--r--default_images/res/commandimagelist/sch_reportnavigator.pngbin0 -> 192 bytes-rw-r--r--default_images/res/commandimagelist/sch_reverseorder.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/sch_rightpara.pngbin0 -> 268 bytes-rw-r--r--default_images/res/commandimagelist/sch_rulerrows.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/sch_rulerrowsvertical.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/sch_runbasic.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/sch_save.pngbin0 -> 117 bytes-rw-r--r--default_images/res/commandimagelist/sch_saveas.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/sch_saveastemplate.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/sch_savebasicas.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/sch_sbabrwinsert.pngbin0 -> 125 bytes-rw-r--r--default_images/res/commandimagelist/sch_sbaexecutesql.pngbin0 -> 172 bytes-rw-r--r--default_images/res/commandimagelist/sch_sbanativesql.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/sch_scaletext.pngbin0 -> 169 bytes-rw-r--r--default_images/res/commandimagelist/sch_scrollbar.pngbin0 -> 108 bytes-rw-r--r--default_images/res/commandimagelist/sch_searchdialog.pngbin0 -> 128 bytes-rwxr-xr-xdefault_images/res/commandimagelist/sch_sectionalignbottom.pngbin0 -> 135 bytes-rwxr-xr-xdefault_images/res/commandimagelist/sch_sectionalignleft.pngbin0 -> 133 bytes-rwxr-xr-xdefault_images/res/commandimagelist/sch_sectionalignright.pngbin0 -> 131 bytes-rwxr-xr-xdefault_images/res/commandimagelist/sch_sectionaligntop.pngbin0 -> 137 bytes-rw-r--r--default_images/res/commandimagelist/sch_sectionshrink.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/sch_sectionshrinkbottom.pngbin0 -> 125 bytes-rw-r--r--default_images/res/commandimagelist/sch_sectionshrinktop.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/sch_selectall.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_selectmode.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_selectobject.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_selecttable.pngbin0 -> 249 bytes-rw-r--r--default_images/res/commandimagelist/sch_sendfax.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/sch_sendmail.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/sch_sendtoback.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/sch_setborderstyle.pngbin0 -> 258 bytes-rw-r--r--default_images/res/commandimagelist/sch_setdocumentproperties.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/sch_setobjecttobackground.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/sch_setobjecttoforeground.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/sch_setoptimalcolumnwidth.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/sch_setoptimalcolumnwidthdirect.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/sch_setoptimalrowheight.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/sch_shadowcursor.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sch_shadowed.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/sch_shear.pngbin0 -> 151 bytes-rw-r--r--default_images/res/commandimagelist/sch_shell3d.pngbin0 -> 152 bytes-rwxr-xr-xdefault_images/res/commandimagelist/sch_showannotation.pngbin0 -> 3611 bytes-rw-r--r--default_images/res/commandimagelist/sch_showbookview.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/sch_showbrowser.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/sch_showdatanavigator.pngbin0 -> 116 bytes-rw-r--r--default_images/res/commandimagelist/sch_showfmexplorer.pngbin0 -> 174 bytes-rw-r--r--default_images/res/commandimagelist/sch_showmultiplepages.pngbin0 -> 116 bytes-rw-r--r--default_images/res/commandimagelist/sch_showpropbrowser.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/sch_showslide.pngbin0 -> 115 bytes-rw-r--r--default_images/res/commandimagelist/sch_showtwopages.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/sch_shrink.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/sch_smallestheight.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/sch_smallestwidth.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/sch_snapborder.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_snapframe.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_snappoints.pngbin0 -> 150 bytes-rw-r--r--default_images/res/commandimagelist/sch_solidcreate.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/sch_sortascending.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/sch_sortdescending.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/sch_sortdown.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/sch_sortup.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/sch_sourceview.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/sch_spacepara1.pngbin0 -> 266 bytes-rw-r--r--default_images/res/commandimagelist/sch_spacepara15.pngbin0 -> 266 bytes-rw-r--r--default_images/res/commandimagelist/sch_spacepara2.pngbin0 -> 266 bytes-rw-r--r--default_images/res/commandimagelist/sch_spelldialog.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/sch_spelling.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/sch_spellingandgrammardialog.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/sch_spellonline.pngbin0 -> 125 bytes-rw-r--r--default_images/res/commandimagelist/sch_sphere.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/sch_spinbutton.pngbin0 -> 110 bytes-rw-r--r--default_images/res/commandimagelist/sch_splitcell.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_splithorizontal.pngbin0 -> 221 bytes-rw-r--r--default_images/res/commandimagelist/sch_splitparenthorizontal.pngbin0 -> 221 bytes-rw-r--r--default_images/res/commandimagelist/sch_splitparentvertical.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_splitvertical.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_square.pngbin0 -> 262 bytes-rw-r--r--default_images/res/commandimagelist/sch_square_rounded.pngbin0 -> 107 bytes-rw-r--r--default_images/res/commandimagelist/sch_square_rounded_unfilled.pngbin0 -> 278 bytes-rw-r--r--default_images/res/commandimagelist/sch_square_unfilled.pngbin0 -> 259 bytes-rw-r--r--default_images/res/commandimagelist/sch_starchartdialog.pngbin0 -> 101 bytes-rw-r--r--default_images/res/commandimagelist/sch_starshapes.bang.pngbin0 -> 176 bytes-rw-r--r--default_images/res/commandimagelist/sch_starshapes.concave-star6.pngbin0 -> 154 bytes-rw-r--r--default_images/res/commandimagelist/sch_starshapes.doorplate.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/sch_starshapes.horizontal-scroll.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/sch_starshapes.pngbin0 -> 157 bytes-rw-r--r--default_images/res/commandimagelist/sch_starshapes.signet.pngbin0 -> 170 bytes-rw-r--r--default_images/res/commandimagelist/sch_starshapes.star12.pngbin0 -> 176 bytes-rw-r--r--default_images/res/commandimagelist/sch_starshapes.star24.pngbin0 -> 185 bytes-rw-r--r--default_images/res/commandimagelist/sch_starshapes.star4.pngbin0 -> 137 bytes-rw-r--r--default_images/res/commandimagelist/sch_starshapes.star5.pngbin0 -> 157 bytes-rw-r--r--default_images/res/commandimagelist/sch_starshapes.star6.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/sch_starshapes.star8.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/sch_starshapes.vertical-scroll.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_strikeout.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_styleapply.pngbin0 -> 171 bytes-rw-r--r--default_images/res/commandimagelist/sch_stylenewbyexample.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/sch_styleupdatebyexample.pngbin0 -> 150 bytes-rw-r--r--default_images/res/commandimagelist/sch_stylewatercanmode.pngbin0 -> 171 bytes-rw-r--r--default_images/res/commandimagelist/sch_subscript.pngbin0 -> 178 bytes-rw-r--r--default_images/res/commandimagelist/sch_superscript.pngbin0 -> 179 bytes-rw-r--r--default_images/res/commandimagelist/sch_switchcontroldesignmode.pngbin0 -> 167 bytes-rw-r--r--default_images/res/commandimagelist/sch_switchxformsdesignmode.pngbin0 -> 167 bytes-rw-r--r--default_images/res/commandimagelist/sch_symbolcatalogue.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/sch_symbolshapes.brace-pair.pngbin0 -> 125 bytes-rw-r--r--default_images/res/commandimagelist/sch_symbolshapes.bracket-pair.pngbin0 -> 105 bytes-rw-r--r--default_images/res/commandimagelist/sch_symbolshapes.cloud.pngbin0 -> 167 bytes-rw-r--r--default_images/res/commandimagelist/sch_symbolshapes.diamond-bevel.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/sch_symbolshapes.flower.pngbin0 -> 166 bytes-rw-r--r--default_images/res/commandimagelist/sch_symbolshapes.forbidden.pngbin0 -> 164 bytes-rw-r--r--default_images/res/commandimagelist/sch_symbolshapes.heart.pngbin0 -> 168 bytes-rw-r--r--default_images/res/commandimagelist/sch_symbolshapes.left-brace.pngbin0 -> 113 bytes-rw-r--r--default_images/res/commandimagelist/sch_symbolshapes.left-bracket.pngbin0 -> 286 bytes-rw-r--r--default_images/res/commandimagelist/sch_symbolshapes.lightning.pngbin0 -> 150 bytes-rw-r--r--default_images/res/commandimagelist/sch_symbolshapes.moon.pngbin0 -> 446 bytes-rw-r--r--default_images/res/commandimagelist/sch_symbolshapes.octagon-bevel.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/sch_symbolshapes.pngbin0 -> 168 bytes-rw-r--r--default_images/res/commandimagelist/sch_symbolshapes.puzzle.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/sch_symbolshapes.quad-bevel.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_symbolshapes.right-brace.pngbin0 -> 115 bytes-rw-r--r--default_images/res/commandimagelist/sch_symbolshapes.right-bracket.pngbin0 -> 282 bytes-rw-r--r--default_images/res/commandimagelist/sch_symbolshapes.smiley.pngbin0 -> 168 bytes-rw-r--r--default_images/res/commandimagelist/sch_symbolshapes.sun.pngbin0 -> 175 bytes-rw-r--r--default_images/res/commandimagelist/sch_tabdialog.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/sch_tabledesign.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/sch_tabledialog.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/sch_tablemodefix.pngbin0 -> 101 bytes-rw-r--r--default_images/res/commandimagelist/sch_tablemodefixprop.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/sch_tablemodevariable.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_tablesort.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/sch_testmode.pngbin0 -> 167 bytes-rw-r--r--default_images/res/commandimagelist/sch_text.pngbin0 -> 104 bytes-rw-r--r--default_images/res/commandimagelist/sch_text_marquee.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_textdirectionlefttoright.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/sch_textdirectiontoptobottom.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/sch_textfittosizetool.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sch_texttoolbox.pngbin0 -> 104 bytes-rw-r--r--default_images/res/commandimagelist/sch_thesaurus.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/sch_thesaurusdialog.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/sch_timefield.pngbin0 -> 163 bytes-rw-r--r--default_images/res/commandimagelist/sch_toggleanchortype.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/sch_toggleaxisdescr.pngbin0 -> 101 bytes-rw-r--r--default_images/res/commandimagelist/sch_toggleaxistitle.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/sch_togglebreakpoint.pngbin0 -> 167 bytes-rw-r--r--default_images/res/commandimagelist/sch_togglegridhorizontal.pngbin0 -> 264 bytes-rw-r--r--default_images/res/commandimagelist/sch_togglegridvertical.pngbin0 -> 257 bytes-rw-r--r--default_images/res/commandimagelist/sch_togglelegend.pngbin0 -> 116 bytes-rw-r--r--default_images/res/commandimagelist/sch_togglemergecells.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_toggleobjectbeziermode.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/sch_toggleobjectrotatemode.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_toggletitle.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/sch_toolsmacroedit.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_toolsoptions.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_torus.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/sch_transformdialog.pngbin0 -> 150 bytes-rw-r--r--default_images/res/commandimagelist/sch_underline.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/sch_underlinedouble.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/sch_undo.pngbin0 -> 150 bytes-rw-r--r--default_images/res/commandimagelist/sch_ungroup.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/sch_unhainframes.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/sch_upsearch.pngbin0 -> 348 bytes-rw-r--r--default_images/res/commandimagelist/sch_urlbutton.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_usewizards.pngbin0 -> 187 bytes-rw-r--r--default_images/res/commandimagelist/sch_verticalcaption.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/sch_verticaltext.pngbin0 -> 105 bytes-rw-r--r--default_images/res/commandimagelist/sch_verticaltextfittosizetool.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/sch_vfixedline.pngbin0 -> 101 bytes-rw-r--r--default_images/res/commandimagelist/sch_view100.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_viewdatasourcebrowser.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/sch_viewformasgrid.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/sch_vscrollbar.pngbin0 -> 108 bytes-rw-r--r--default_images/res/commandimagelist/sch_window3d.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/sch_wrapcontour.pngbin0 -> 125 bytes-rw-r--r--default_images/res/commandimagelist/sch_wrapideal.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sch_wrapleft.pngbin0 -> 102 bytes-rw-r--r--default_images/res/commandimagelist/sch_wrapoff.pngbin0 -> 101 bytes-rw-r--r--default_images/res/commandimagelist/sch_wrapon.pngbin0 -> 107 bytes-rw-r--r--default_images/res/commandimagelist/sch_wrapright.pngbin0 -> 104 bytes-rw-r--r--default_images/res/commandimagelist/sch_wrapthrough.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_xlinecolor.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/sch_xlinestyle.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/sch_zoom.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_zoom100percent.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_zoomin.pngbin0 -> 137 bytes-rw-r--r--default_images/res/commandimagelist/sch_zoomminus.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sch_zoomnext.pngbin0 -> 158 bytes-rw-r--r--default_images/res/commandimagelist/sch_zoomobjects.pngbin0 -> 159 bytes-rw-r--r--default_images/res/commandimagelist/sch_zoomoptimal.pngbin0 -> 259 bytes-rw-r--r--default_images/res/commandimagelist/sch_zoomout.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sch_zoompage.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/sch_zoompagewidth.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/sch_zoompanning.pngbin0 -> 176 bytes-rw-r--r--default_images/res/commandimagelist/sch_zoomplus.pngbin0 -> 137 bytes-rw-r--r--default_images/res/commandimagelist/sch_zoomprevious.pngbin0 -> 157 bytes-rw-r--r--default_images/res/commandimagelist/sch_zoomtoolbox.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sk/lc_bold.pngbin0 -> 473 bytes-rw-r--r--default_images/res/commandimagelist/sk/lc_italic.pngbin0 -> 440 bytes-rw-r--r--default_images/res/commandimagelist/sk/lc_numberformatdecimal.pngbin0 -> 671 bytes-rw-r--r--default_images/res/commandimagelist/sk/lc_underline.pngbin0 -> 424 bytes-rw-r--r--default_images/res/commandimagelist/sk/lc_underlinedouble.pngbin0 -> 424 bytes-rw-r--r--default_images/res/commandimagelist/sk/lch_bold.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/sk/lch_italic.pngbin0 -> 425 bytes-rw-r--r--default_images/res/commandimagelist/sk/lch_numberformatdecimal.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/sk/lch_underline.pngbin0 -> 177 bytes-rw-r--r--default_images/res/commandimagelist/sk/lch_underlinedouble.pngbin0 -> 178 bytes-rw-r--r--default_images/res/commandimagelist/sk/sc_bold.pngbin0 -> 328 bytes-rw-r--r--default_images/res/commandimagelist/sk/sc_italic.pngbin0 -> 304 bytes-rw-r--r--default_images/res/commandimagelist/sk/sc_numberformatdecimal.pngbin0 -> 485 bytes-rw-r--r--default_images/res/commandimagelist/sk/sc_underline.pngbin0 -> 341 bytes-rw-r--r--default_images/res/commandimagelist/sk/sc_underlinedouble.pngbin0 -> 361 bytes-rw-r--r--default_images/res/commandimagelist/sk/sch_bold.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/sk/sch_italic.pngbin0 -> 289 bytes-rw-r--r--default_images/res/commandimagelist/sk/sch_numberformatdecimal.pngbin0 -> 119 bytes-rw-r--r--default_images/res/commandimagelist/sk/sch_underline.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/sk/sch_underlinedouble.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/sl/lc_bold.pngbin0 -> 423 bytes-rw-r--r--default_images/res/commandimagelist/sl/lc_italic.pngbin0 -> 490 bytes-rw-r--r--default_images/res/commandimagelist/sl/lc_underline.pngbin0 -> 419 bytes-rw-r--r--default_images/res/commandimagelist/sl/lc_underlinedouble.pngbin0 -> 516 bytes-rw-r--r--default_images/res/commandimagelist/sl/lch_bold.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/sl/lch_italic.pngbin0 -> 164 bytes-rw-r--r--default_images/res/commandimagelist/sl/lch_underline.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/sl/lch_underlinedouble.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/sl/sc_bold.pngbin0 -> 313 bytes-rw-r--r--default_images/res/commandimagelist/sl/sc_italic.pngbin0 -> 330 bytes-rw-r--r--default_images/res/commandimagelist/sl/sc_underline.pngbin0 -> 333 bytes-rw-r--r--default_images/res/commandimagelist/sl/sc_underlinedouble.pngbin0 -> 408 bytes-rw-r--r--default_images/res/commandimagelist/sl/sch_bold.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sl/sch_italic.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/sl/sch_underline.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/sl/sch_underlinedouble.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sv/lc_bold.pngbin0 -> 452 bytes-rw-r--r--default_images/res/commandimagelist/sv/lc_italic.pngbin0 -> 846 bytes-rw-r--r--default_images/res/commandimagelist/sv/lc_underline.pngbin0 -> 570 bytes-rw-r--r--default_images/res/commandimagelist/sv/lc_underlinedouble.pngbin0 -> 560 bytes-rw-r--r--default_images/res/commandimagelist/sv/lch_bold.pngbin0 -> 285 bytes-rw-r--r--default_images/res/commandimagelist/sv/lch_italic.pngbin0 -> 494 bytes-rw-r--r--default_images/res/commandimagelist/sv/lch_underline.pngbin0 -> 177 bytes-rw-r--r--default_images/res/commandimagelist/sv/lch_underlinedouble.pngbin0 -> 178 bytes-rw-r--r--default_images/res/commandimagelist/sv/sc_bold.pngbin0 -> 354 bytes-rw-r--r--default_images/res/commandimagelist/sv/sc_italic.pngbin0 -> 573 bytes-rw-r--r--default_images/res/commandimagelist/sv/sc_underline.pngbin0 -> 408 bytes-rw-r--r--default_images/res/commandimagelist/sv/sc_underlinedouble.pngbin0 -> 425 bytes-rw-r--r--default_images/res/commandimagelist/sv/sch_bold.pngbin0 -> 226 bytes-rw-r--r--default_images/res/commandimagelist/sv/sch_italic.pngbin0 -> 346 bytes-rw-r--r--default_images/res/commandimagelist/sv/sch_underline.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/sv/sch_underlinedouble.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/tr/lc_bold.pngbin0 -> 423 bytes-rw-r--r--default_images/res/commandimagelist/tr/lc_italic.pngbin0 -> 503 bytes-rw-r--r--default_images/res/commandimagelist/tr/lc_underline.pngbin0 -> 528 bytes-rw-r--r--default_images/res/commandimagelist/tr/lc_underlinedouble.pngbin0 -> 652 bytes-rw-r--r--default_images/res/commandimagelist/tr/lch_bold.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/tr/lch_italic.pngbin0 -> 173 bytes-rw-r--r--default_images/res/commandimagelist/tr/lch_underline.pngbin0 -> 186 bytes-rw-r--r--default_images/res/commandimagelist/tr/lch_underlinedouble.pngbin0 -> 184 bytes-rw-r--r--default_images/res/commandimagelist/tr/sc_bold.pngbin0 -> 313 bytes-rw-r--r--default_images/res/commandimagelist/tr/sc_italic.pngbin0 -> 364 bytes-rw-r--r--default_images/res/commandimagelist/tr/sc_underline.pngbin0 -> 353 bytes-rw-r--r--default_images/res/commandimagelist/tr/sc_underlinedouble.pngbin0 -> 472 bytes-rw-r--r--default_images/res/commandimagelist/tr/sch_bold.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/tr/sch_italic.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/tr/sch_underline.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/tr/sch_underlinedouble.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/zh-CN/lc_bold.pngbin0 -> 473 bytes-rw-r--r--default_images/res/commandimagelist/zh-CN/lc_italic.pngbin0 -> 440 bytes-rw-r--r--default_images/res/commandimagelist/zh-CN/lc_underline.pngbin0 -> 424 bytes-rw-r--r--default_images/res/commandimagelist/zh-CN/lc_underlinedouble.pngbin0 -> 424 bytes-rw-r--r--default_images/res/commandimagelist/zh-CN/lch_bold.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/zh-CN/lch_italic.pngbin0 -> 425 bytes-rw-r--r--default_images/res/commandimagelist/zh-CN/lch_underline.pngbin0 -> 177 bytes-rw-r--r--default_images/res/commandimagelist/zh-CN/lch_underlinedouble.pngbin0 -> 178 bytes-rw-r--r--default_images/res/commandimagelist/zh-CN/sc_bold.pngbin0 -> 328 bytes-rw-r--r--default_images/res/commandimagelist/zh-CN/sc_italic.pngbin0 -> 304 bytes-rw-r--r--default_images/res/commandimagelist/zh-CN/sc_underline.pngbin0 -> 341 bytes-rw-r--r--default_images/res/commandimagelist/zh-CN/sc_underlinedouble.pngbin0 -> 361 bytes-rw-r--r--default_images/res/commandimagelist/zh-CN/sch_bold.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/zh-CN/sch_italic.pngbin0 -> 289 bytes-rw-r--r--default_images/res/commandimagelist/zh-CN/sch_underline.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/zh-CN/sch_underlinedouble.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/zh-TW/lc_bold.pngbin0 -> 473 bytes-rw-r--r--default_images/res/commandimagelist/zh-TW/lc_italic.pngbin0 -> 440 bytes-rw-r--r--default_images/res/commandimagelist/zh-TW/lc_underline.pngbin0 -> 424 bytes-rw-r--r--default_images/res/commandimagelist/zh-TW/lc_underlinedouble.pngbin0 -> 424 bytes-rw-r--r--default_images/res/commandimagelist/zh-TW/lch_bold.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/zh-TW/lch_italic.pngbin0 -> 425 bytes-rw-r--r--default_images/res/commandimagelist/zh-TW/lch_underline.pngbin0 -> 177 bytes-rw-r--r--default_images/res/commandimagelist/zh-TW/lch_underlinedouble.pngbin0 -> 178 bytes-rw-r--r--default_images/res/commandimagelist/zh-TW/sc_bold.pngbin0 -> 328 bytes-rw-r--r--default_images/res/commandimagelist/zh-TW/sc_italic.pngbin0 -> 304 bytes-rw-r--r--default_images/res/commandimagelist/zh-TW/sc_underline.pngbin0 -> 341 bytes-rw-r--r--default_images/res/commandimagelist/zh-TW/sc_underlinedouble.pngbin0 -> 361 bytes-rw-r--r--default_images/res/commandimagelist/zh-TW/sch_bold.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/zh-TW/sch_underline.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/zh-TW/sch_underlinedouble.pngbin0 -> 123 bytes-rw-r--r--default_images/res/component_16.pngbin0 -> 296 bytes-rw-r--r--default_images/res/component_16_h.pngbin0 -> 101 bytes-rw-r--r--default_images/res/cookie.pngbin0 -> 18364 bytes-rw-r--r--default_images/res/cs/lc26648.pngbin0 -> 424 bytes-rw-r--r--default_images/res/cs/sc10009.pngbin0 -> 328 bytes-rw-r--r--default_images/res/cs/sch10008.pngbin0 -> 289 bytes-rw-r--r--default_images/res/da01.pngbin0 -> 381 bytes-rw-r--r--default_images/res/da02.pngbin0 -> 381 bytes-rw-r--r--default_images/res/da03.pngbin0 -> 487 bytes-rw-r--r--default_images/res/da04.pngbin0 -> 443 bytes-rw-r--r--default_images/res/da05.pngbin0 -> 444 bytes-rw-r--r--default_images/res/da06.pngbin0 -> 498 bytes-rw-r--r--default_images/res/dah01.pngbin0 -> 257 bytes-rw-r--r--default_images/res/dah02.pngbin0 -> 257 bytes-rw-r--r--default_images/res/dah03.pngbin0 -> 111 bytes-rw-r--r--default_images/res/dah04.pngbin0 -> 104 bytes-rw-r--r--default_images/res/dah05.pngbin0 -> 105 bytes-rw-r--r--default_images/res/dah06.pngbin0 -> 127 bytes-rw-r--r--default_images/res/de/lc10008.pngbin0 -> 846 bytes-rw-r--r--default_images/res/de/lch10014.pngbin0 -> 177 bytes-rw-r--r--default_images/res/de/sc10009.pngbin0 -> 354 bytes-rw-r--r--default_images/res/de/sc10014.pngbin0 -> 408 bytes-rw-r--r--default_images/res/de/sch10014.pngbin0 -> 124 bytes-rw-r--r--default_images/res/de/sch26648.pngbin0 -> 123 bytes-rw-r--r--default_images/res/dialogfolder_16.pngbin0 -> 581 bytes-rw-r--r--default_images/res/dialogfolder_16_h.pngbin0 -> 139 bytes-rw-r--r--default_images/res/dialogfoldernot_16.pngbin0 -> 580 bytes-rw-r--r--default_images/res/dialogfoldernot_16_h.pngbin0 -> 140 bytes-rw-r--r--default_images/res/dir-clos.pngbin0 -> 420 bytes-rw-r--r--default_images/res/dir-open.pngbin0 -> 760 bytes-rw-r--r--default_images/res/empty.pngbin0 -> 124 bytes-rw-r--r--default_images/res/empty_l.pngbin0 -> 136 bytes-rw-r--r--default_images/res/es/lc10008.pngbin0 -> 531 bytes-rw-r--r--default_images/res/es/lc10009.pngbin0 -> 396 bytes-rw-r--r--default_images/res/es/lc10014.pngbin0 -> 521 bytes-rw-r--r--default_images/res/es/lc26648.pngbin0 -> 531 bytes-rw-r--r--default_images/res/es/lch10008.pngbin0 -> 489 bytes-rw-r--r--default_images/res/es/lch10009.pngbin0 -> 130 bytes-rw-r--r--default_images/res/es/lch10014.pngbin0 -> 145 bytes-rw-r--r--default_images/res/es/lch26648.pngbin0 -> 144 bytes-rw-r--r--default_images/res/es/sc10008.pngbin0 -> 368 bytes-rw-r--r--default_images/res/es/sc10009.pngbin0 -> 296 bytes-rw-r--r--default_images/res/es/sc10014.pngbin0 -> 386 bytes-rw-r--r--default_images/res/es/sc26648.pngbin0 -> 394 bytes-rw-r--r--default_images/res/es/sch10008.pngbin0 -> 339 bytes-rw-r--r--default_images/res/es/sch10009.pngbin0 -> 105 bytes-rw-r--r--default_images/res/es/sch10014.pngbin0 -> 118 bytes-rw-r--r--default_images/res/es/sch26648.pngbin0 -> 120 bytes-rw-r--r--default_images/res/extension_plus_26.pngbin0 -> 1117 bytes-rw-r--r--default_images/res/extension_plus_32.pngbin0 -> 1298 bytes-rw-r--r--default_images/res/fileopen.pngbin0 -> 401 bytes-rw-r--r--default_images/res/fileopen_hc.pngbin0 -> 108 bytes-rw-r--r--default_images/res/foldercl.pngbin0 -> 421 bytes-rw-r--r--default_images/res/foldercl_h.pngbin0 -> 104 bytes-rw-r--r--default_images/res/folderop.pngbin0 -> 520 bytes-rw-r--r--default_images/res/folderop_h.pngbin0 -> 124 bytes-rw-r--r--default_images/res/fp010.pngbin0 -> 605 bytes-rw-r--r--default_images/res/fp015.pngbin0 -> 663 bytes-rw-r--r--default_images/res/fph010.pngbin0 -> 137 bytes-rw-r--r--default_images/res/fph015.pngbin0 -> 125 bytes-rw-r--r--default_images/res/fr/lc10008.pngbin0 -> 440 bytes-rw-r--r--default_images/res/fr/lc10009.pngbin0 -> 516 bytes-rw-r--r--default_images/res/fr/lc10014.pngbin0 -> 521 bytes-rw-r--r--default_images/res/fr/lc26648.pngbin0 -> 531 bytes-rw-r--r--default_images/res/fr/lch10008.pngbin0 -> 425 bytes-rw-r--r--default_images/res/fr/lch10009.pngbin0 -> 129 bytes-rw-r--r--default_images/res/fr/lch10014.pngbin0 -> 145 bytes-rw-r--r--default_images/res/fr/lch26648.pngbin0 -> 144 bytes-rw-r--r--default_images/res/fr/sc10008.pngbin0 -> 304 bytes-rw-r--r--default_images/res/fr/sc10009.pngbin0 -> 366 bytes-rw-r--r--default_images/res/fr/sc10014.pngbin0 -> 386 bytes-rw-r--r--default_images/res/fr/sc26648.pngbin0 -> 394 bytes-rw-r--r--default_images/res/fr/sch10008.pngbin0 -> 289 bytes-rw-r--r--default_images/res/fr/sch10009.pngbin0 -> 121 bytes-rw-r--r--default_images/res/fr/sch10014.pngbin0 -> 118 bytes-rw-r--r--default_images/res/fr/sch26648.pngbin0 -> 120 bytes-rw-r--r--default_images/res/fwthcirc.pngbin0 -> 208 bytes-rw-r--r--default_images/res/fwthcirc_h.pngbin0 -> 206 bytes-rw-r--r--default_images/res/grafikde.pngbin0 -> 733 bytes-rw-r--r--default_images/res/grafikde_h.pngbin0 -> 184 bytes-rw-r--r--default_images/res/grafikei.pngbin0 -> 675 bytes-rw-r--r--default_images/res/grafikei_h.pngbin0 -> 135 bytes-rw-r--r--default_images/res/harddisk_16.pngbin0 -> 335 bytes-rw-r--r--default_images/res/harddisk_16_h.pngbin0 -> 131 bytes-rw-r--r--default_images/res/helpimg/area1.pngbin0 -> 3720 bytes-rw-r--r--default_images/res/helpimg/area2.pngbin0 -> 3700 bytes-rw-r--r--default_images/res/helpimg/bg/calcein.pngbin0 -> 538 bytes-rw-r--r--default_images/res/helpimg/bg/feldalle.pngbin0 -> 1752 bytes-rw-r--r--default_images/res/helpimg/bg/feldbrei.pngbin0 -> 455 bytes-rw-r--r--default_images/res/helpimg/bg/feldcolo.pngbin0 -> 833 bytes-rw-r--r--default_images/res/helpimg/bg/names_as_addressing.pngbin0 -> 5852 bytes-rw-r--r--default_images/res/helpimg/bg/objbitmp.pngbin0 -> 3523 bytes-rw-r--r--default_images/res/helpimg/bg/prinzoom.pngbin0 -> 1395 bytes-rw-r--r--default_images/res/helpimg/bg/rechenlt.pngbin0 -> 585 bytes-rw-r--r--default_images/res/helpimg/bg/sheettabs.pngbin0 -> 2103 bytes-rw-r--r--default_images/res/helpimg/bg/swh00055.pngbin0 -> 595 bytes-rw-r--r--default_images/res/helpimg/bg/swh00056.pngbin0 -> 519 bytes-rw-r--r--default_images/res/helpimg/bg/swh00117.pngbin0 -> 1109 bytes-rw-r--r--default_images/res/helpimg/bg/zellvor.pngbin0 -> 634 bytes-rw-r--r--default_images/res/helpimg/border_ca_1.pngbin0 -> 740 bytes-rw-r--r--default_images/res/helpimg/border_ca_2.pngbin0 -> 665 bytes-rw-r--r--default_images/res/helpimg/border_ca_3.pngbin0 -> 701 bytes-rw-r--r--default_images/res/helpimg/border_ca_4.pngbin0 -> 605 bytes-rw-r--r--default_images/res/helpimg/border_ca_5.pngbin0 -> 200 bytes-rw-r--r--default_images/res/helpimg/border_ca_6.pngbin0 -> 503 bytes-rw-r--r--default_images/res/helpimg/border_ca_7.pngbin0 -> 507 bytes-rw-r--r--default_images/res/helpimg/border_ca_8.pngbin0 -> 546 bytes-rw-r--r--default_images/res/helpimg/border_ca_9.pngbin0 -> 679 bytes-rw-r--r--default_images/res/helpimg/border_ca_gray.pngbin0 -> 525 bytes-rw-r--r--default_images/res/helpimg/border_ca_white.pngbin0 -> 518 bytes-rw-r--r--default_images/res/helpimg/border_wr_1.pngbin0 -> 765 bytes-rw-r--r--default_images/res/helpimg/border_wr_2.pngbin0 -> 799 bytes-rw-r--r--default_images/res/helpimg/border_wr_3.pngbin0 -> 856 bytes-rw-r--r--default_images/res/helpimg/border_wr_4.pngbin0 -> 858 bytes-rw-r--r--default_images/res/helpimg/border_wr_5.pngbin0 -> 869 bytes-rw-r--r--default_images/res/helpimg/border_wr_6.pngbin0 -> 370 bytes-rw-r--r--default_images/res/helpimg/border_wr_7.pngbin0 -> 372 bytes-rw-r--r--default_images/res/helpimg/border_wr_8.pngbin0 -> 368 bytes-rw-r--r--default_images/res/helpimg/border_wr_9.pngbin0 -> 319 bytes-rw-r--r--default_images/res/helpimg/calcein.pngbin0 -> 538 bytes-rw-r--r--default_images/res/helpimg/calcnav.pngbin0 -> 656 bytes-rw-r--r--default_images/res/helpimg/copydata.pngbin0 -> 167 bytes-rw-r--r--default_images/res/helpimg/cs/calcein.pngbin0 -> 538 bytes-rw-r--r--default_images/res/helpimg/cs/feldalle.pngbin0 -> 752 bytes-rw-r--r--default_images/res/helpimg/cs/feldbrei.pngbin0 -> 458 bytes-rw-r--r--default_images/res/helpimg/cs/feldcolo.pngbin0 -> 575 bytes-rw-r--r--default_images/res/helpimg/cs/names_as_addressing.pngbin0 -> 1920 bytes-rw-r--r--default_images/res/helpimg/cs/rechenlt.pngbin0 -> 1006 bytes-rw-r--r--default_images/res/helpimg/cs/sheettabs.pngbin0 -> 1397 bytes-rw-r--r--default_images/res/helpimg/cs/swh00055.pngbin0 -> 650 bytes-rw-r--r--default_images/res/helpimg/cs/swh00056.pngbin0 -> 518 bytes-rw-r--r--default_images/res/helpimg/cs/swh00117.pngbin0 -> 723 bytes-rw-r--r--default_images/res/helpimg/cs/zellvor.pngbin0 -> 585 bytes-rw-r--r--default_images/res/helpimg/da/calcein.pngbin0 -> 538 bytes-rw-r--r--default_images/res/helpimg/da/feldalle.pngbin0 -> 763 bytes-rw-r--r--default_images/res/helpimg/da/feldbrei.pngbin0 -> 458 bytes-rw-r--r--default_images/res/helpimg/da/feldcolo.pngbin0 -> 534 bytes-rw-r--r--default_images/res/helpimg/da/names_as_addressing.pngbin0 -> 1907 bytes-rw-r--r--default_images/res/helpimg/da/rechenlt.pngbin0 -> 567 bytes-rw-r--r--default_images/res/helpimg/da/sheettabs.pngbin0 -> 1404 bytes-rw-r--r--default_images/res/helpimg/da/swh00055.pngbin0 -> 593 bytes-rw-r--r--default_images/res/helpimg/da/swh00056.pngbin0 -> 519 bytes-rw-r--r--default_images/res/helpimg/da/swh00117.pngbin0 -> 689 bytes-rw-r--r--default_images/res/helpimg/da/zellvor.pngbin0 -> 577 bytes-rw-r--r--default_images/res/helpimg/de/calcein.pngbin0 -> 538 bytes-rw-r--r--default_images/res/helpimg/de/feldalle.pngbin0 -> 1090 bytes-rw-r--r--default_images/res/helpimg/de/feldbrei.pngbin0 -> 440 bytes-rw-r--r--default_images/res/helpimg/de/feldcolo.pngbin0 -> 722 bytes-rw-r--r--default_images/res/helpimg/de/names_as_addressing.pngbin0 -> 1914 bytes-rw-r--r--default_images/res/helpimg/de/objbitmp.pngbin0 -> 4618 bytes-rw-r--r--default_images/res/helpimg/de/prinzoom.pngbin0 -> 1571 bytes-rw-r--r--default_images/res/helpimg/de/rechenlt.pngbin0 -> 531 bytes-rw-r--r--default_images/res/helpimg/de/sheettabs.pngbin0 -> 1446 bytes-rw-r--r--default_images/res/helpimg/de/swh00055.pngbin0 -> 591 bytes-rw-r--r--default_images/res/helpimg/de/swh00056.pngbin0 -> 518 bytes-rw-r--r--default_images/res/helpimg/de/swh00117.pngbin0 -> 910 bytes-rw-r--r--default_images/res/helpimg/de/zellvor.pngbin0 -> 738 bytes-rw-r--r--default_images/res/helpimg/diatrans.pngbin0 -> 98 bytes-rw-r--r--default_images/res/helpimg/dircurscent.pngbin0 -> 151 bytes-rw-r--r--default_images/res/helpimg/dircursleft.pngbin0 -> 130 bytes-rw-r--r--default_images/res/helpimg/dircursright.pngbin0 -> 126 bytes-rw-r--r--default_images/res/helpimg/ein.pngbin0 -> 124 bytes-rw-r--r--default_images/res/helpimg/en-GB/calcein.pngbin0 -> 538 bytes-rw-r--r--default_images/res/helpimg/en-GB/feldalle.pngbin0 -> 346 bytes-rw-r--r--default_images/res/helpimg/en-GB/feldbrei.pngbin0 -> 440 bytes-rw-r--r--default_images/res/helpimg/en-GB/feldcolo.pngbin0 -> 557 bytes-rw-r--r--default_images/res/helpimg/en-GB/names_as_addressing.pngbin0 -> 2959 bytes-rw-r--r--default_images/res/helpimg/en-GB/rechenlt.pngbin0 -> 585 bytes-rw-r--r--default_images/res/helpimg/en-GB/sheettabs.pngbin0 -> 1414 bytes-rw-r--r--default_images/res/helpimg/en-GB/swh00055.pngbin0 -> 596 bytes-rw-r--r--default_images/res/helpimg/en-GB/swh00056.pngbin0 -> 518 bytes-rw-r--r--default_images/res/helpimg/en-GB/swh00117.pngbin0 -> 891 bytes-rw-r--r--default_images/res/helpimg/en-GB/zellvor.pngbin0 -> 572 bytes-rw-r--r--default_images/res/helpimg/es/calcein.pngbin0 -> 538 bytes-rw-r--r--default_images/res/helpimg/es/feldalle.pngbin0 -> 1221 bytes-rw-r--r--default_images/res/helpimg/es/feldbrei.pngbin0 -> 440 bytes-rw-r--r--default_images/res/helpimg/es/feldcolo.pngbin0 -> 645 bytes-rw-r--r--default_images/res/helpimg/es/names_as_addressing.pngbin0 -> 3180 bytes-rw-r--r--default_images/res/helpimg/es/objbitmp.pngbin0 -> 2540 bytes-rw-r--r--default_images/res/helpimg/es/prinzoom.pngbin0 -> 1476 bytes-rw-r--r--default_images/res/helpimg/es/rechenlt.pngbin0 -> 950 bytes-rw-r--r--default_images/res/helpimg/es/sheettabs.pngbin0 -> 1868 bytes-rw-r--r--default_images/res/helpimg/es/swh00055.pngbin0 -> 592 bytes-rw-r--r--default_images/res/helpimg/es/swh00056.pngbin0 -> 518 bytes-rw-r--r--default_images/res/helpimg/es/swh00117.pngbin0 -> 829 bytes-rw-r--r--default_images/res/helpimg/es/zellvor.pngbin0 -> 761 bytes-rw-r--r--default_images/res/helpimg/et/calcein.pngbin0 -> 538 bytes-rwxr-xr-xdefault_images/res/helpimg/et/feldalle.pngbin0 -> 1024 bytes-rw-r--r--default_images/res/helpimg/et/feldbrei.pngbin0 -> 457 bytes-rwxr-xr-xdefault_images/res/helpimg/et/feldcolo.pngbin0 -> 639 bytes-rwxr-xr-xdefault_images/res/helpimg/et/names_as_addressing.pngbin0 -> 3251 bytes-rw-r--r--default_images/res/helpimg/et/rechenlt.pngbin0 -> 1006 bytes-rwxr-xr-xdefault_images/res/helpimg/et/sheettabs.pngbin0 -> 1809 bytes-rw-r--r--default_images/res/helpimg/et/swh00055.pngbin0 -> 650 bytes-rw-r--r--default_images/res/helpimg/et/swh00056.pngbin0 -> 518 bytes-rwxr-xr-xdefault_images/res/helpimg/et/swh00117.pngbin0 -> 835 bytes-rwxr-xr-xdefault_images/res/helpimg/et/zellvor.pngbin0 -> 695 bytes-rw-r--r--default_images/res/helpimg/feldalle.pngbin0 -> 747 bytes-rw-r--r--default_images/res/helpimg/feldbrei.pngbin0 -> 440 bytes-rw-r--r--default_images/res/helpimg/feldcolo.pngbin0 -> 556 bytes-rw-r--r--default_images/res/helpimg/feldurch.pngbin0 -> 486 bytes-rw-r--r--default_images/res/helpimg/formschn.pngbin0 -> 601 bytes-rw-r--r--default_images/res/helpimg/formsubt.pngbin0 -> 606 bytes-rw-r--r--default_images/res/helpimg/formvers.pngbin0 -> 739 bytes-rw-r--r--default_images/res/helpimg/fr/calcein.pngbin0 -> 538 bytes-rw-r--r--default_images/res/helpimg/fr/feldalle.pngbin0 -> 1108 bytes-rw-r--r--default_images/res/helpimg/fr/feldbrei.pngbin0 -> 521 bytes-rw-r--r--default_images/res/helpimg/fr/feldcolo.pngbin0 -> 605 bytes-rw-r--r--default_images/res/helpimg/fr/names_as_addressing.pngbin0 -> 2991 bytes-rw-r--r--default_images/res/helpimg/fr/objbitmp.pngbin0 -> 2315 bytes-rw-r--r--default_images/res/helpimg/fr/prinzoom.pngbin0 -> 1395 bytes-rw-r--r--default_images/res/helpimg/fr/rechenlt.pngbin0 -> 876 bytes-rw-r--r--default_images/res/helpimg/fr/sheettabs.pngbin0 -> 1869 bytes-rw-r--r--default_images/res/helpimg/fr/swh00055.pngbin0 -> 592 bytes-rw-r--r--default_images/res/helpimg/fr/swh00056.pngbin0 -> 519 bytes-rw-r--r--default_images/res/helpimg/fr/swh00117.pngbin0 -> 826 bytes-rw-r--r--default_images/res/helpimg/fr/zellvor.pngbin0 -> 679 bytes-rw-r--r--default_images/res/helpimg/hand01.pngbin0 -> 143 bytes-rw-r--r--default_images/res/helpimg/hsizebar.pngbin0 -> 95 bytes-rw-r--r--default_images/res/helpimg/hu/calcein.pngbin0 -> 543 bytes-rw-r--r--default_images/res/helpimg/hu/feldalle.pngbin0 -> 820 bytes-rw-r--r--default_images/res/helpimg/hu/feldbrei.pngbin0 -> 453 bytes-rw-r--r--default_images/res/helpimg/hu/feldcolo.pngbin0 -> 571 bytes-rw-r--r--default_images/res/helpimg/hu/names_as_addressing.pngbin0 -> 1802 bytes-rw-r--r--default_images/res/helpimg/hu/rechenlt.pngbin0 -> 643 bytes-rw-r--r--default_images/res/helpimg/hu/sheettabs.pngbin0 -> 2168 bytes-rw-r--r--default_images/res/helpimg/hu/swh00055.pngbin0 -> 593 bytes-rw-r--r--default_images/res/helpimg/hu/swh00056.pngbin0 -> 518 bytes-rw-r--r--default_images/res/helpimg/hu/swh00117.pngbin0 -> 709 bytes-rw-r--r--default_images/res/helpimg/hu/zellvor.pngbin0 -> 644 bytes-rw-r--r--default_images/res/helpimg/it/calcein.pngbin0 -> 538 bytes-rw-r--r--default_images/res/helpimg/it/feldalle.pngbin0 -> 1724 bytes-rw-r--r--default_images/res/helpimg/it/feldbrei.pngbin0 -> 603 bytes-rw-r--r--default_images/res/helpimg/it/feldcolo.pngbin0 -> 760 bytes-rw-r--r--default_images/res/helpimg/it/names_as_addressing.pngbin0 -> 3177 bytes-rw-r--r--default_images/res/helpimg/it/objbitmp.pngbin0 -> 3209 bytes-rw-r--r--default_images/res/helpimg/it/prinzoom.pngbin0 -> 1395 bytes-rw-r--r--default_images/res/helpimg/it/rechenlt.pngbin0 -> 917 bytes-rw-r--r--default_images/res/helpimg/it/sheettabs.pngbin0 -> 1955 bytes-rw-r--r--default_images/res/helpimg/it/swh00055.pngbin0 -> 593 bytes-rw-r--r--default_images/res/helpimg/it/swh00056.pngbin0 -> 518 bytes-rw-r--r--default_images/res/helpimg/it/swh00117.pngbin0 -> 1032 bytes-rw-r--r--default_images/res/helpimg/it/zellvor.pngbin0 -> 844 bytes-rw-r--r--default_images/res/helpimg/ja/calcein.pngbin0 -> 527 bytes-rw-r--r--default_images/res/helpimg/ja/feldalle.pngbin0 -> 767 bytes-rw-r--r--default_images/res/helpimg/ja/feldbrei.pngbin0 -> 445 bytes-rw-r--r--default_images/res/helpimg/ja/feldcolo.pngbin0 -> 528 bytes-rw-r--r--default_images/res/helpimg/ja/names_as_addressing.pngbin0 -> 1749 bytes-rw-r--r--default_images/res/helpimg/ja/objbitmp.pngbin0 -> 4218 bytes-rw-r--r--default_images/res/helpimg/ja/prinzoom.pngbin0 -> 1273 bytes-rw-r--r--default_images/res/helpimg/ja/rechenlt.pngbin0 -> 607 bytes-rw-r--r--default_images/res/helpimg/ja/sheettabs.pngbin0 -> 1420 bytes-rw-r--r--default_images/res/helpimg/ja/swh00055.pngbin0 -> 646 bytes-rw-r--r--default_images/res/helpimg/ja/swh00056.pngbin0 -> 510 bytes-rw-r--r--default_images/res/helpimg/ja/swh00117.pngbin0 -> 679 bytes-rw-r--r--default_images/res/helpimg/ja/zellvor.pngbin0 -> 575 bytes-rw-r--r--default_images/res/helpimg/km/calcein.pngbin0 -> 538 bytes-rw-r--r--default_images/res/helpimg/km/feldalle.pngbin0 -> 748 bytes-rw-r--r--default_images/res/helpimg/km/feldbrei.pngbin0 -> 441 bytes-rw-r--r--default_images/res/helpimg/km/feldcolo.pngbin0 -> 557 bytes-rw-r--r--default_images/res/helpimg/km/names_as_addressing.pngbin0 -> 2137 bytes-rw-r--r--default_images/res/helpimg/km/rechenlt.pngbin0 -> 607 bytes-rw-r--r--default_images/res/helpimg/km/sheettabs.pngbin0 -> 1431 bytes-rw-r--r--default_images/res/helpimg/km/swh00055.pngbin0 -> 592 bytes-rw-r--r--default_images/res/helpimg/km/swh00056.pngbin0 -> 518 bytes-rw-r--r--default_images/res/helpimg/km/swh00117.pngbin0 -> 714 bytes-rw-r--r--default_images/res/helpimg/km/zellvor.pngbin0 -> 614 bytes-rw-r--r--default_images/res/helpimg/ko/calcein.pngbin0 -> 543 bytes-rw-r--r--default_images/res/helpimg/ko/feldalle.pngbin0 -> 784 bytes-rw-r--r--default_images/res/helpimg/ko/feldbrei.pngbin0 -> 457 bytes-rw-r--r--default_images/res/helpimg/ko/feldcolo.pngbin0 -> 587 bytes-rw-r--r--default_images/res/helpimg/ko/names_as_addressing.pngbin0 -> 2143 bytes-rw-r--r--default_images/res/helpimg/ko/objbitmp.pngbin0 -> 3775 bytes-rw-r--r--default_images/res/helpimg/ko/prinzoom.pngbin0 -> 1171 bytes-rw-r--r--default_images/res/helpimg/ko/rechenlt.pngbin0 -> 583 bytes-rw-r--r--default_images/res/helpimg/ko/sheettabs.pngbin0 -> 1433 bytes-rw-r--r--default_images/res/helpimg/ko/swh00055.pngbin0 -> 619 bytes-rw-r--r--default_images/res/helpimg/ko/swh00056.pngbin0 -> 529 bytes-rw-r--r--default_images/res/helpimg/ko/swh00117.pngbin0 -> 739 bytes-rw-r--r--default_images/res/helpimg/ko/zellvor.pngbin0 -> 571 bytes-rw-r--r--default_images/res/helpimg/kombi1.pngbin0 -> 1595 bytes-rwxr-xr-xdefault_images/res/helpimg/left.pngbin0 -> 442 bytes-rwxr-xr-xdefault_images/res/helpimg/left2.pngbin0 -> 446 bytes-rw-r--r--default_images/res/helpimg/linkdata.pngbin0 -> 167 bytes-rw-r--r--default_images/res/helpimg/linleft.pngbin0 -> 155 bytes-rw-r--r--default_images/res/helpimg/linright.pngbin0 -> 146 bytes-rw-r--r--default_images/res/helpimg/movedata.pngbin0 -> 153 bytes-rw-r--r--default_images/res/helpimg/names_as_addressing.pngbin0 -> 2959 bytes-rw-r--r--default_images/res/helpimg/note.pngbin0 -> 1504 bytes-rwxr-xr-xdefault_images/res/helpimg/note_small.pngbin0 -> 615 bytes-rwxr-xr-xdefault_images/res/helpimg/pl/calcein.pngbin0 -> 543 bytes-rwxr-xr-xdefault_images/res/helpimg/pl/feldalle.pngbin0 -> 983 bytes-rwxr-xr-xdefault_images/res/helpimg/pl/feldbrei.pngbin0 -> 485 bytes-rwxr-xr-xdefault_images/res/helpimg/pl/feldcolo.pngbin0 -> 597 bytes-rwxr-xr-xdefault_images/res/helpimg/pl/names_as_addressing.pngbin0 -> 2243 bytes-rwxr-xr-xdefault_images/res/helpimg/pl/objbitmp.pngbin0 -> 3325 bytes-rwxr-xr-xdefault_images/res/helpimg/pl/prinzoom.pngbin0 -> 1585 bytes-rwxr-xr-xdefault_images/res/helpimg/pl/rechenlt.pngbin0 -> 654 bytes-rwxr-xr-xdefault_images/res/helpimg/pl/sheettabs.pngbin0 -> 1439 bytes-rwxr-xr-xdefault_images/res/helpimg/pl/swh00055.pngbin0 -> 592 bytes-rwxr-xr-xdefault_images/res/helpimg/pl/swh00056.pngbin0 -> 518 bytes-rwxr-xr-xdefault_images/res/helpimg/pl/swh00117.pngbin0 -> 819 bytes-rwxr-xr-xdefault_images/res/helpimg/pl/zellvor.pngbin0 -> 599 bytes-rw-r--r--default_images/res/helpimg/pt-BR/calcein.pngbin0 -> 538 bytes-rw-r--r--default_images/res/helpimg/pt-BR/feldalle.pngbin0 -> 483 bytes-rw-r--r--default_images/res/helpimg/pt-BR/feldbrei.pngbin0 -> 222 bytes-rw-r--r--default_images/res/helpimg/pt-BR/feldcolo.pngbin0 -> 461 bytes-rw-r--r--default_images/res/helpimg/pt-BR/names_as_addressing.pngbin0 -> 1567 bytes-rw-r--r--default_images/res/helpimg/pt-BR/prinzoom.pngbin0 -> 1486 bytes-rw-r--r--default_images/res/helpimg/pt-BR/rechenlt.pngbin0 -> 603 bytes-rw-r--r--default_images/res/helpimg/pt-BR/sheettabs.pngbin0 -> 1405 bytes-rw-r--r--default_images/res/helpimg/pt-BR/swh00055.pngbin0 -> 595 bytes-rw-r--r--default_images/res/helpimg/pt-BR/swh00056.pngbin0 -> 519 bytes-rw-r--r--default_images/res/helpimg/pt-BR/swh00117.pngbin0 -> 811 bytes-rw-r--r--default_images/res/helpimg/pt-BR/zellvor.pngbin0 -> 482 bytes-rw-r--r--default_images/res/helpimg/pt/calcein.pngbin0 -> 538 bytes-rw-r--r--default_images/res/helpimg/pt/feldalle.pngbin0 -> 483 bytes-rw-r--r--default_images/res/helpimg/pt/feldbrei.pngbin0 -> 222 bytes-rw-r--r--default_images/res/helpimg/pt/feldcolo.pngbin0 -> 461 bytes-rw-r--r--default_images/res/helpimg/pt/names_as_addressing.pngbin0 -> 1567 bytes-rw-r--r--default_images/res/helpimg/pt/prinzoom.pngbin0 -> 1486 bytes-rw-r--r--default_images/res/helpimg/pt/rechenlt.pngbin0 -> 603 bytes-rw-r--r--default_images/res/helpimg/pt/sheettabs.pngbin0 -> 1405 bytes-rw-r--r--default_images/res/helpimg/pt/swh00055.pngbin0 -> 595 bytes-rw-r--r--default_images/res/helpimg/pt/swh00056.pngbin0 -> 519 bytes-rw-r--r--default_images/res/helpimg/pt/swh00117.pngbin0 -> 811 bytes-rw-r--r--default_images/res/helpimg/pt/zellvor.pngbin0 -> 482 bytes-rw-r--r--default_images/res/helpimg/rechenlt.pngbin0 -> 585 bytes-rw-r--r--default_images/res/helpimg/refhand.pngbin0 -> 127 bytes-rwxr-xr-xdefault_images/res/helpimg/right.pngbin0 -> 433 bytes-rwxr-xr-xdefault_images/res/helpimg/right2.pngbin0 -> 449 bytes-rw-r--r--default_images/res/helpimg/rotieren.pngbin0 -> 647 bytes-rw-r--r--default_images/res/helpimg/sheettabs.pngbin0 -> 1415 bytes-rwxr-xr-xdefault_images/res/helpimg/sistop.pngbin0 -> 157 bytes-rw-r--r--default_images/res/helpimg/sk/calcein.pngbin0 -> 538 bytes-rw-r--r--default_images/res/helpimg/sk/feldalle.pngbin0 -> 765 bytes-rw-r--r--default_images/res/helpimg/sk/feldbrei.pngbin0 -> 457 bytes-rw-r--r--default_images/res/helpimg/sk/feldcolo.pngbin0 -> 574 bytes-rw-r--r--default_images/res/helpimg/sk/names_as_addressing.pngbin0 -> 1929 bytes-rw-r--r--default_images/res/helpimg/sk/rechenlt.pngbin0 -> 1006 bytes-rw-r--r--default_images/res/helpimg/sk/sheettabs.pngbin0 -> 1397 bytes-rw-r--r--default_images/res/helpimg/sk/swh00055.pngbin0 -> 650 bytes-rw-r--r--default_images/res/helpimg/sk/swh00056.pngbin0 -> 518 bytes-rw-r--r--default_images/res/helpimg/sk/swh00117.pngbin0 -> 720 bytes-rw-r--r--default_images/res/helpimg/sk/zellvor.pngbin0 -> 616 bytes-rw-r--r--default_images/res/helpimg/sl/calcein.pngbin0 -> 538 bytes-rw-r--r--default_images/res/helpimg/sl/feldalle.pngbin0 -> 709 bytes-rw-r--r--default_images/res/helpimg/sl/feldbrei.pngbin0 -> 454 bytes-rw-r--r--default_images/res/helpimg/sl/feldcolo.pngbin0 -> 548 bytes-rw-r--r--default_images/res/helpimg/sl/names_as_addressing.pngbin0 -> 1923 bytes-rw-r--r--default_images/res/helpimg/sl/rechenlt.pngbin0 -> 597 bytes-rw-r--r--default_images/res/helpimg/sl/sheettabs.pngbin0 -> 2022 bytes-rw-r--r--default_images/res/helpimg/sl/swh00055.pngbin0 -> 592 bytes-rw-r--r--default_images/res/helpimg/sl/swh00056.pngbin0 -> 519 bytes-rw-r--r--default_images/res/helpimg/sl/swh00117.pngbin0 -> 711 bytes-rw-r--r--default_images/res/helpimg/sl/zellvor.pngbin0 -> 564 bytes-rw-r--r--default_images/res/helpimg/smzb1.pngbin0 -> 985 bytes-rw-r--r--default_images/res/helpimg/smzb10.pngbin0 -> 1249 bytes-rw-r--r--default_images/res/helpimg/smzb2.pngbin0 -> 647 bytes-rw-r--r--default_images/res/helpimg/smzb3.pngbin0 -> 1104 bytes-rw-r--r--default_images/res/helpimg/smzb4.pngbin0 -> 1759 bytes-rw-r--r--default_images/res/helpimg/smzb5.pngbin0 -> 3068 bytes-rw-r--r--default_images/res/helpimg/smzb6.pngbin0 -> 2386 bytes-rw-r--r--default_images/res/helpimg/smzb7.pngbin0 -> 1075 bytes-rw-r--r--default_images/res/helpimg/smzb8.pngbin0 -> 1303 bytes-rw-r--r--default_images/res/helpimg/smzb9.pngbin0 -> 1555 bytes-rw-r--r--default_images/res/helpimg/sv/calcein.pngbin0 -> 538 bytes-rw-r--r--default_images/res/helpimg/sv/feldalle.pngbin0 -> 764 bytes-rw-r--r--default_images/res/helpimg/sv/feldbrei.pngbin0 -> 440 bytes-rw-r--r--default_images/res/helpimg/sv/feldcolo.pngbin0 -> 552 bytes-rw-r--r--default_images/res/helpimg/sv/names_as_addressing.pngbin0 -> 1873 bytes-rw-r--r--default_images/res/helpimg/sv/objbitmp.pngbin0 -> 3111 bytes-rw-r--r--default_images/res/helpimg/sv/prinzoom.pngbin0 -> 1473 bytes-rw-r--r--default_images/res/helpimg/sv/rechenlt.pngbin0 -> 558 bytes-rw-r--r--default_images/res/helpimg/sv/sheettabs.pngbin0 -> 1407 bytes-rw-r--r--default_images/res/helpimg/sv/swh00055.pngbin0 -> 592 bytes-rw-r--r--default_images/res/helpimg/sv/swh00056.pngbin0 -> 518 bytes-rw-r--r--default_images/res/helpimg/sv/swh00117.pngbin0 -> 692 bytes-rw-r--r--default_images/res/helpimg/sv/zellvor.pngbin0 -> 575 bytes-rw-r--r--default_images/res/helpimg/swh00055.pngbin0 -> 595 bytes-rw-r--r--default_images/res/helpimg/swh00056.pngbin0 -> 518 bytes-rw-r--r--default_images/res/helpimg/swh00117.pngbin0 -> 692 bytes-rwxr-xr-xdefault_images/res/helpimg/swh00177.pngbin0 -> 101 bytes-rwxr-xr-xdefault_images/res/helpimg/swh00178.pngbin0 -> 115 bytes-rwxr-xr-xdefault_images/res/helpimg/swh00179.pngbin0 -> 109 bytes-rwxr-xr-xdefault_images/res/helpimg/swh00180.pngbin0 -> 102 bytes-rw-r--r--default_images/res/helpimg/tip.pngbin0 -> 1761 bytes-rwxr-xr-xdefault_images/res/helpimg/tip_small.pngbin0 -> 711 bytes-rw-r--r--default_images/res/helpimg/tr/calcein.pngbin0 -> 538 bytes-rw-r--r--default_images/res/helpimg/tr/feldalle.pngbin0 -> 775 bytes-rw-r--r--default_images/res/helpimg/tr/feldbrei.pngbin0 -> 379 bytes-rw-r--r--default_images/res/helpimg/tr/feldcolo.pngbin0 -> 388 bytes-rw-r--r--default_images/res/helpimg/tr/names_as_addressing.pngbin0 -> 4229 bytes-rw-r--r--default_images/res/helpimg/tr/objbitmp.pngbin0 -> 4109 bytes-rw-r--r--default_images/res/helpimg/tr/prinzoom.pngbin0 -> 1809 bytes-rw-r--r--default_images/res/helpimg/tr/rechenlt.pngbin0 -> 1911 bytes-rw-r--r--default_images/res/helpimg/tr/sheettabs.pngbin0 -> 1515 bytes-rw-r--r--default_images/res/helpimg/tr/swh00055.pngbin0 -> 596 bytes-rw-r--r--default_images/res/helpimg/tr/swh00056.pngbin0 -> 518 bytes-rw-r--r--default_images/res/helpimg/tr/swh00117.pngbin0 -> 561 bytes-rw-r--r--default_images/res/helpimg/tr/zellvor.pngbin0 -> 393 bytes-rw-r--r--default_images/res/helpimg/ueberblenden.pngbin0 -> 1069 bytes-rw-r--r--default_images/res/helpimg/warning.pngbin0 -> 784 bytes-rwxr-xr-xdefault_images/res/helpimg/warning_small.pngbin0 -> 395 bytes-rw-r--r--default_images/res/helpimg/what-if.pngbin0 -> 10107 bytes-rw-r--r--default_images/res/helpimg/zellvor.pngbin0 -> 571 bytes-rw-r--r--default_images/res/helpimg/zh-CN/calcein.pngbin0 -> 535 bytes-rw-r--r--default_images/res/helpimg/zh-CN/feldalle.pngbin0 -> 794 bytes-rw-r--r--default_images/res/helpimg/zh-CN/feldbrei.pngbin0 -> 469 bytes-rw-r--r--default_images/res/helpimg/zh-CN/feldcolo.pngbin0 -> 574 bytes-rw-r--r--default_images/res/helpimg/zh-CN/names_as_addressing.pngbin0 -> 1837 bytes-rw-r--r--default_images/res/helpimg/zh-CN/objbitmp.pngbin0 -> 3739 bytes-rw-r--r--default_images/res/helpimg/zh-CN/prinzoom.pngbin0 -> 1445 bytes-rw-r--r--default_images/res/helpimg/zh-CN/rechenlt.pngbin0 -> 592 bytes-rw-r--r--default_images/res/helpimg/zh-CN/sheettabs.pngbin0 -> 1591 bytes-rw-r--r--default_images/res/helpimg/zh-CN/swh00055.pngbin0 -> 637 bytes-rw-r--r--default_images/res/helpimg/zh-CN/swh00056.pngbin0 -> 519 bytes-rw-r--r--default_images/res/helpimg/zh-CN/swh00117.pngbin0 -> 748 bytes-rw-r--r--default_images/res/helpimg/zh-CN/zellvor.pngbin0 -> 598 bytes-rw-r--r--default_images/res/helpimg/zh-TW/calcein.pngbin0 -> 540 bytes-rw-r--r--default_images/res/helpimg/zh-TW/feldalle.pngbin0 -> 832 bytes-rw-r--r--default_images/res/helpimg/zh-TW/feldbrei.pngbin0 -> 482 bytes-rw-r--r--default_images/res/helpimg/zh-TW/feldcolo.pngbin0 -> 574 bytes-rw-r--r--default_images/res/helpimg/zh-TW/names_as_addressing.pngbin0 -> 1889 bytes-rw-r--r--default_images/res/helpimg/zh-TW/objbitmp.pngbin0 -> 3096 bytes-rw-r--r--default_images/res/helpimg/zh-TW/prinzoom.pngbin0 -> 1395 bytes-rw-r--r--default_images/res/helpimg/zh-TW/rechenlt.pngbin0 -> 600 bytes-rw-r--r--default_images/res/helpimg/zh-TW/sheettabs.pngbin0 -> 1474 bytes-rw-r--r--default_images/res/helpimg/zh-TW/swh00055.pngbin0 -> 657 bytes-rw-r--r--default_images/res/helpimg/zh-TW/swh00056.pngbin0 -> 520 bytes-rw-r--r--default_images/res/helpimg/zh-TW/swh00117.pngbin0 -> 750 bytes-rw-r--r--default_images/res/helpimg/zh-TW/zellvor.pngbin0 -> 599 bytes-rw-r--r--default_images/res/hidedependency_16.pngbin0 -> 328 bytes-rw-r--r--default_images/res/hldocntp.pngbin0 -> 1297 bytes-rw-r--r--default_images/res/hldocntp_h.pngbin0 -> 198 bytes-rw-r--r--default_images/res/hldoctp.pngbin0 -> 1766 bytes-rw-r--r--default_images/res/hldoctp_h.pngbin0 -> 221 bytes-rw-r--r--default_images/res/hlinettp.pngbin0 -> 1742 bytes-rw-r--r--default_images/res/hlinettp_h.pngbin0 -> 333 bytes-rw-r--r--default_images/res/hlmailtp.pngbin0 -> 1841 bytes-rw-r--r--default_images/res/hlmailtp_h.pngbin0 -> 219 bytes-rw-r--r--default_images/res/hu/lc10008.pngbin0 -> 549 bytes-rw-r--r--default_images/res/hu/lc10009.pngbin0 -> 340 bytes-rw-r--r--default_images/res/hu/lc10014.pngbin0 -> 528 bytes-rw-r--r--default_images/res/hu/lc26648.pngbin0 -> 652 bytes-rw-r--r--default_images/res/hu/lch10008.pngbin0 -> 182 bytes-rw-r--r--default_images/res/hu/lch10009.pngbin0 -> 285 bytes-rw-r--r--default_images/res/hu/lch10014.pngbin0 -> 186 bytes-rw-r--r--default_images/res/hu/lch26648.pngbin0 -> 184 bytes-rw-r--r--default_images/res/hu/sc10008.pngbin0 -> 373 bytes-rw-r--r--default_images/res/hu/sc10009.pngbin0 -> 258 bytes-rw-r--r--default_images/res/hu/sc10014.pngbin0 -> 353 bytes-rw-r--r--default_images/res/hu/sc26648.pngbin0 -> 472 bytes-rw-r--r--default_images/res/hu/sch10008.pngbin0 -> 141 bytes-rw-r--r--default_images/res/hu/sch10009.pngbin0 -> 226 bytes-rw-r--r--default_images/res/hu/sch10014.pngbin0 -> 140 bytes-rw-r--r--default_images/res/hu/sch26648.pngbin0 -> 140 bytes-rw-r--r--default_images/res/im30820.pngbin0 -> 653 bytes-rw-r--r--default_images/res/im30821.pngbin0 -> 631 bytes-rw-r--r--default_images/res/im30822.pngbin0 -> 548 bytes-rw-r--r--default_images/res/im30823.pngbin0 -> 467 bytes-rw-r--r--default_images/res/im30826.pngbin0 -> 432 bytes-rw-r--r--default_images/res/im30827.pngbin0 -> 645 bytes-rw-r--r--default_images/res/im30838.pngbin0 -> 608 bytes-rw-r--r--default_images/res/im30839.pngbin0 -> 615 bytes-rw-r--r--default_images/res/im30840.pngbin0 -> 403 bytes-rw-r--r--default_images/res/im30841.pngbin0 -> 426 bytes-rw-r--r--default_images/res/imh30820.pngbin0 -> 149 bytes-rw-r--r--default_images/res/imh30821.pngbin0 -> 144 bytes-rw-r--r--default_images/res/imh30822.pngbin0 -> 328 bytes-rw-r--r--default_images/res/imh30823.pngbin0 -> 1035 bytes-rw-r--r--default_images/res/imh30826.pngbin0 -> 138 bytes-rw-r--r--default_images/res/imh30827.pngbin0 -> 141 bytes-rw-r--r--default_images/res/imh30838.pngbin0 -> 131 bytes-rw-r--r--default_images/res/imh30839.pngbin0 -> 110 bytes-rw-r--r--default_images/res/imh30840.pngbin0 -> 117 bytes-rw-r--r--default_images/res/imh30841.pngbin0 -> 116 bytes-rw-r--r--default_images/res/info.pngbin0 -> 1642 bytes-rw-r--r--default_images/res/info_16.pngbin0 -> 801 bytes-rw-r--r--default_images/res/it/lc10008.pngbin0 -> 531 bytes-rw-r--r--default_images/res/it/lc10009.pngbin0 -> 516 bytes-rw-r--r--default_images/res/it/lc10014.pngbin0 -> 521 bytes-rw-r--r--default_images/res/it/lc26648.pngbin0 -> 531 bytes-rw-r--r--default_images/res/it/lch10008.pngbin0 -> 489 bytes-rw-r--r--default_images/res/it/lch26648.pngbin0 -> 144 bytes-rw-r--r--default_images/res/it/sc10008.pngbin0 -> 368 bytes-rw-r--r--default_images/res/it/sc10009.pngbin0 -> 366 bytes-rw-r--r--default_images/res/it/sc10014.pngbin0 -> 386 bytes-rw-r--r--default_images/res/it/sch10009.pngbin0 -> 121 bytes-rw-r--r--default_images/res/javacomponent_16.pngbin0 -> 525 bytes-rw-r--r--default_images/res/javacomponent_16_h.pngbin0 -> 165 bytes-rw-r--r--default_images/res/javalibrary_16.pngbin0 -> 910 bytes-rw-r--r--default_images/res/javalibrary_16_h.pngbin0 -> 166 bytes-rw-r--r--default_images/res/ko/lc10712.pngbin0 -> 368 bytes-rw-r--r--default_images/res/ko/lc10713.pngbin0 -> 355 bytes-rw-r--r--default_images/res/ko/lch10712.pngbin0 -> 153 bytes-rw-r--r--default_images/res/ko/lch10713.pngbin0 -> 147 bytes-rw-r--r--default_images/res/ko/sc10712.pngbin0 -> 281 bytes-rw-r--r--default_images/res/ko/sc10713.pngbin0 -> 307 bytes-rw-r--r--default_images/res/ko/sch10712.pngbin0 -> 118 bytes-rw-r--r--default_images/res/ko/sch10713.pngbin0 -> 124 bytes-rw-r--r--default_images/res/lc05504.pngbin0 -> 875 bytes-rw-r--r--default_images/res/lc05505.pngbin0 -> 776 bytes-rw-r--r--default_images/res/lc05508.pngbin0 -> 1603 bytes-rw-r--r--default_images/res/lc05509.pngbin0 -> 875 bytes-rw-r--r--default_images/res/lc05539.pngbin0 -> 970 bytes-rw-r--r--default_images/res/lc05596.pngbin0 -> 1553 bytes-rw-r--r--default_images/res/lc05646.pngbin0 -> 276 bytes-rw-r--r--default_images/res/lc05647.pngbin0 -> 276 bytes-rw-r--r--default_images/res/lc05648.pngbin0 -> 276 bytes-rw-r--r--default_images/res/lc05649.pngbin0 -> 276 bytes-rw-r--r--default_images/res/lc05650.pngbin0 -> 161 bytes-rw-r--r--default_images/res/lc05651.pngbin0 -> 1163 bytes-rw-r--r--default_images/res/lc05678.pngbin0 -> 2569 bytes-rw-r--r--default_images/res/lc05700.pngbin0 -> 1549 bytes-rw-r--r--default_images/res/lc05701.pngbin0 -> 1569 bytes-rw-r--r--default_images/res/lc05710.pngbin0 -> 1623 bytes-rw-r--r--default_images/res/lc05711.pngbin0 -> 855 bytes-rw-r--r--default_images/res/lc05961.pngbin0 -> 1005 bytes-rw-r--r--default_images/res/lc06300.pngbin0 -> 1039 bytes-rw-r--r--default_images/res/lc06301.pngbin0 -> 1042 bytes-rw-r--r--default_images/res/lc06302.pngbin0 -> 885 bytes-rw-r--r--default_images/res/lc06303.pngbin0 -> 1132 bytes-rw-r--r--default_images/res/lc06304.pngbin0 -> 276 bytes-rw-r--r--default_images/res/lc06308.pngbin0 -> 1130 bytes-rw-r--r--default_images/res/lc06309.pngbin0 -> 276 bytes-rw-r--r--default_images/res/lc06312.pngbin0 -> 1094 bytes-rw-r--r--default_images/res/lc06331.pngbin0 -> 276 bytes-rw-r--r--default_images/res/lc06332.pngbin0 -> 764 bytes-rw-r--r--default_images/res/lc06333.pngbin0 -> 736 bytes-rw-r--r--default_images/res/lc06334.pngbin0 -> 276 bytes-rw-r--r--default_images/res/lc06335.pngbin0 -> 276 bytes-rw-r--r--default_images/res/lc06336.pngbin0 -> 276 bytes-rw-r--r--default_images/res/lc06337.pngbin0 -> 276 bytes-rw-r--r--default_images/res/lc06338.pngbin0 -> 1610 bytes-rw-r--r--default_images/res/lc06350.pngbin0 -> 1163 bytes-rw-r--r--default_images/res/lc06351.pngbin0 -> 276 bytes-rw-r--r--default_images/res/lc06352.pngbin0 -> 276 bytes-rw-r--r--default_images/res/lc06353.pngbin0 -> 276 bytes-rw-r--r--default_images/res/lc06354.pngbin0 -> 276 bytes-rw-r--r--default_images/res/lc06355.pngbin0 -> 276 bytes-rw-r--r--default_images/res/lc06356.pngbin0 -> 276 bytes-rw-r--r--default_images/res/lc06357.pngbin0 -> 276 bytes-rw-r--r--default_images/res/lc10366.pngbin0 -> 1692 bytes-rw-r--r--default_images/res/lc10711.pngbin0 -> 1084 bytes-rw-r--r--default_images/res/lc10712.pngbin0 -> 968 bytes-rw-r--r--default_images/res/lc10713.pngbin0 -> 951 bytes-rw-r--r--default_images/res/lc10715.pngbin0 -> 809 bytes-rw-r--r--default_images/res/lc10716.pngbin0 -> 1321 bytes-rw-r--r--default_images/res/lc10851.pngbin0 -> 877 bytes-rw-r--r--default_images/res/lc10853.pngbin0 -> 1005 bytes-rw-r--r--default_images/res/lc10854.pngbin0 -> 2158 bytes-rw-r--r--default_images/res/lch05504.pngbin0 -> 160 bytes-rw-r--r--default_images/res/lch05509.pngbin0 -> 160 bytes-rw-r--r--default_images/res/lch05678.pngbin0 -> 314 bytes-rw-r--r--default_images/res/lch05711.pngbin0 -> 156 bytes-rw-r--r--default_images/res/lch05961.pngbin0 -> 155 bytes-rw-r--r--default_images/res/lch06300.pngbin0 -> 143 bytes-rw-r--r--default_images/res/lch06301.pngbin0 -> 141 bytes-rw-r--r--default_images/res/lch06303.pngbin0 -> 170 bytes-rw-r--r--default_images/res/lch06308.pngbin0 -> 158 bytes-rw-r--r--default_images/res/lch10711.pngbin0 -> 190 bytes-rw-r--r--default_images/res/lch10712.pngbin0 -> 199 bytes-rw-r--r--default_images/res/lch10713.pngbin0 -> 212 bytes-rw-r--r--default_images/res/lch10715.pngbin0 -> 138 bytes-rw-r--r--default_images/res/lch10716.pngbin0 -> 210 bytes-rw-r--r--default_images/res/lch10851.pngbin0 -> 153 bytes-rw-r--r--default_images/res/lch10853.pngbin0 -> 155 bytes-rw-r--r--default_images/res/lch10854.pngbin0 -> 211 bytes-rw-r--r--default_images/res/library_16.pngbin0 -> 854 bytes-rw-r--r--default_images/res/library_16_h.pngbin0 -> 120 bytes-rw-r--r--default_images/res/lock.pngbin0 -> 385 bytes-rw-r--r--default_images/res/lock_hc.pngbin0 -> 120 bytes-rw-r--r--default_images/res/lx03123.pngbin0 -> 982 bytes-rw-r--r--default_images/res/lx03124.pngbin0 -> 315 bytes-rw-r--r--default_images/res/lx03125.pngbin0 -> 1418 bytes-rw-r--r--default_images/res/lx03126.pngbin0 -> 692 bytes-rw-r--r--default_images/res/lx03127.pngbin0 -> 919 bytes-rw-r--r--default_images/res/lx03128.pngbin0 -> 749 bytes-rw-r--r--default_images/res/lx03129.pngbin0 -> 1319 bytes-rw-r--r--default_images/res/lx03130.pngbin0 -> 1166 bytes-rw-r--r--default_images/res/lx03131.pngbin0 -> 919 bytes-rw-r--r--default_images/res/lx03132.pngbin0 -> 919 bytes-rw-r--r--default_images/res/lx03134.pngbin0 -> 315 bytes-rw-r--r--default_images/res/lx03135.pngbin0 -> 860 bytes-rw-r--r--default_images/res/lx03136.pngbin0 -> 821 bytes-rw-r--r--default_images/res/lx03137.pngbin0 -> 1418 bytes-rw-r--r--default_images/res/lx03138.pngbin0 -> 1218 bytes-rw-r--r--default_images/res/lx03139.pngbin0 -> 755 bytes-rw-r--r--default_images/res/lx03140.pngbin0 -> 1418 bytes-rw-r--r--default_images/res/lx03141.pngbin0 -> 625 bytes-rw-r--r--default_images/res/lx03142.pngbin0 -> 315 bytes-rw-r--r--default_images/res/lx03144.pngbin0 -> 1172 bytes-rw-r--r--default_images/res/lx03145.pngbin0 -> 354 bytes-rw-r--r--default_images/res/lx03150.pngbin0 -> 749 bytes-rw-r--r--default_images/res/lx03151.pngbin0 -> 322 bytes-rw-r--r--default_images/res/lx03152.pngbin0 -> 1418 bytes-rw-r--r--default_images/res/lx03153.pngbin0 -> 1418 bytes-rw-r--r--default_images/res/lx03154.pngbin0 -> 1418 bytes-rw-r--r--default_images/res/lx03155.pngbin0 -> 1418 bytes-rw-r--r--default_images/res/lx03156.pngbin0 -> 903 bytes-rw-r--r--default_images/res/lx03157.pngbin0 -> 1218 bytes-rw-r--r--default_images/res/lx03158.pngbin0 -> 1418 bytes-rw-r--r--default_images/res/lx03159.pngbin0 -> 315 bytes-rw-r--r--default_images/res/lx03160.pngbin0 -> 1315 bytes-rw-r--r--default_images/res/lx03161.pngbin0 -> 903 bytes-rw-r--r--default_images/res/lx03162.pngbin0 -> 903 bytes-rw-r--r--default_images/res/lx03163.pngbin0 -> 941 bytes-rw-r--r--default_images/res/lx03164.pngbin0 -> 409 bytes-rw-r--r--default_images/res/lx03165.pngbin0 -> 581 bytes-rw-r--r--default_images/res/lx03166.pngbin0 -> 772 bytes-rw-r--r--default_images/res/lx03167.pngbin0 -> 648 bytes-rw-r--r--default_images/res/lx03168.pngbin0 -> 315 bytes-rw-r--r--default_images/res/lx03187.pngbin0 -> 315 bytes-rw-r--r--default_images/res/lx03188.pngbin0 -> 692 bytes-rw-r--r--default_images/res/lx03189.pngbin0 -> 625 bytes-rw-r--r--default_images/res/lx03190.pngbin0 -> 315 bytes-rw-r--r--default_images/res/lx03193.pngbin0 -> 315 bytes-rw-r--r--default_images/res/lx03198.pngbin0 -> 315 bytes-rw-r--r--default_images/res/lx03201.pngbin0 -> 315 bytes-rw-r--r--default_images/res/lx03202.pngbin0 -> 315 bytes-rw-r--r--default_images/res/lx03203.pngbin0 -> 315 bytes-rw-r--r--default_images/res/lx03204.pngbin0 -> 315 bytes-rw-r--r--default_images/res/lx03205.pngbin0 -> 315 bytes-rw-r--r--default_images/res/lx03206.pngbin0 -> 315 bytes-rw-r--r--default_images/res/lx03214.pngbin0 -> 308 bytes-rw-r--r--default_images/res/lx03216.pngbin0 -> 2875 bytes-rw-r--r--default_images/res/lx03217.pngbin0 -> 1363 bytes-rw-r--r--default_images/res/lx03218.pngbin0 -> 1363 bytes-rw-r--r--default_images/res/lx03219.pngbin0 -> 1418 bytes-rw-r--r--default_images/res/lx03220.pngbin0 -> 1363 bytes-rw-r--r--default_images/res/lx03221.pngbin0 -> 1363 bytes-rw-r--r--default_images/res/lx03222.pngbin0 -> 1363 bytes-rw-r--r--default_images/res/lx03226.pngbin0 -> 909 bytes-rw-r--r--default_images/res/lx03227.pngbin0 -> 1363 bytes-rw-r--r--default_images/res/lx03228.pngbin0 -> 1307 bytes-rw-r--r--default_images/res/lx03236.pngbin0 -> 315 bytes-rw-r--r--default_images/res/lx03237.pngbin0 -> 315 bytes-rw-r--r--default_images/res/lx03239.pngbin0 -> 739 bytes-rw-r--r--default_images/res/lx03241.pngbin0 -> 749 bytes-rw-r--r--default_images/res/lx03242.pngbin0 -> 966 bytes-rw-r--r--default_images/res/lx03243.pngbin0 -> 982 bytes-rw-r--r--default_images/res/lx03244.pngbin0 -> 1166 bytes-rw-r--r--default_images/res/lx03245.pngbin0 -> 1497 bytes-rw-r--r--default_images/res/lx03246.pngbin0 -> 1548 bytes-rw-r--r--default_images/res/lx03247.pngbin0 -> 1346 bytes-rw-r--r--default_images/res/lx03248.pngbin0 -> 1110 bytes-rw-r--r--default_images/res/lx03249.pngbin0 -> 1180 bytes-rw-r--r--default_images/res/lx03250.pngbin0 -> 917 bytes-rw-r--r--default_images/res/lx03251.pngbin0 -> 1106 bytes-rw-r--r--default_images/res/lx03252.pngbin0 -> 1506 bytes-rw-r--r--default_images/res/lx03253.pngbin0 -> 1370 bytes-rw-r--r--default_images/res/lx03254.pngbin0 -> 1130 bytes-rw-r--r--default_images/res/lx03255.pngbin0 -> 1153 bytes-rw-r--r--default_images/res/lx03256.pngbin0 -> 1117 bytes-rw-r--r--default_images/res/lxh03123.pngbin0 -> 3742 bytes-rw-r--r--default_images/res/lxh03124.pngbin0 -> 170 bytes-rw-r--r--default_images/res/lxh03125.pngbin0 -> 223 bytes-rw-r--r--default_images/res/lxh03126.pngbin0 -> 3706 bytes-rw-r--r--default_images/res/lxh03127.pngbin0 -> 3780 bytes-rw-r--r--default_images/res/lxh03128.pngbin0 -> 126 bytes-rw-r--r--default_images/res/lxh03129.pngbin0 -> 3807 bytes-rw-r--r--default_images/res/lxh03130.pngbin0 -> 3798 bytes-rw-r--r--default_images/res/lxh03131.pngbin0 -> 3780 bytes-rw-r--r--default_images/res/lxh03132.pngbin0 -> 3780 bytes-rw-r--r--default_images/res/lxh03134.pngbin0 -> 170 bytes-rw-r--r--default_images/res/lxh03135.pngbin0 -> 142 bytes-rw-r--r--default_images/res/lxh03136.pngbin0 -> 142 bytes-rw-r--r--default_images/res/lxh03137.pngbin0 -> 223 bytes-rw-r--r--default_images/res/lxh03138.pngbin0 -> 202 bytes-rw-r--r--default_images/res/lxh03139.pngbin0 -> 3735 bytes-rw-r--r--default_images/res/lxh03140.pngbin0 -> 223 bytes-rw-r--r--default_images/res/lxh03141.pngbin0 -> 153 bytes-rw-r--r--default_images/res/lxh03142.pngbin0 -> 170 bytes-rw-r--r--default_images/res/lxh03144.pngbin0 -> 3822 bytes-rw-r--r--default_images/res/lxh03145.pngbin0 -> 170 bytes-rw-r--r--default_images/res/lxh03150.pngbin0 -> 126 bytes-rw-r--r--default_images/res/lxh03151.pngbin0 -> 130 bytes-rw-r--r--default_images/res/lxh03152.pngbin0 -> 223 bytes-rw-r--r--default_images/res/lxh03153.pngbin0 -> 223 bytes-rw-r--r--default_images/res/lxh03154.pngbin0 -> 223 bytes-rw-r--r--default_images/res/lxh03155.pngbin0 -> 223 bytes-rw-r--r--default_images/res/lxh03156.pngbin0 -> 3771 bytes-rw-r--r--default_images/res/lxh03157.pngbin0 -> 202 bytes-rw-r--r--default_images/res/lxh03158.pngbin0 -> 223 bytes-rw-r--r--default_images/res/lxh03159.pngbin0 -> 170 bytes-rw-r--r--default_images/res/lxh03160.pngbin0 -> 220 bytes-rw-r--r--default_images/res/lxh03161.pngbin0 -> 3771 bytes-rw-r--r--default_images/res/lxh03162.pngbin0 -> 3771 bytes-rw-r--r--default_images/res/lxh03163.pngbin0 -> 3774 bytes-rw-r--r--default_images/res/lxh03164.pngbin0 -> 164 bytes-rw-r--r--default_images/res/lxh03165.pngbin0 -> 200 bytes-rw-r--r--default_images/res/lxh03166.pngbin0 -> 285 bytes-rw-r--r--default_images/res/lxh03167.pngbin0 -> 192 bytes-rw-r--r--default_images/res/lxh03168.pngbin0 -> 170 bytes-rw-r--r--default_images/res/lxh03187.pngbin0 -> 170 bytes-rw-r--r--default_images/res/lxh03188.pngbin0 -> 3706 bytes-rw-r--r--default_images/res/lxh03189.pngbin0 -> 153 bytes-rw-r--r--default_images/res/lxh03190.pngbin0 -> 315 bytes-rw-r--r--default_images/res/lxh03193.pngbin0 -> 315 bytes-rw-r--r--default_images/res/lxh03198.pngbin0 -> 170 bytes-rw-r--r--default_images/res/lxh03201.pngbin0 -> 170 bytes-rw-r--r--default_images/res/lxh03202.pngbin0 -> 170 bytes-rw-r--r--default_images/res/lxh03203.pngbin0 -> 170 bytes-rw-r--r--default_images/res/lxh03204.pngbin0 -> 170 bytes-rw-r--r--default_images/res/lxh03205.pngbin0 -> 170 bytes-rw-r--r--default_images/res/lxh03206.pngbin0 -> 170 bytes-rw-r--r--default_images/res/lxh03214.pngbin0 -> 197 bytes-rw-r--r--default_images/res/lxh03216.pngbin0 -> 243 bytes-rw-r--r--default_images/res/lxh03217.pngbin0 -> 3892 bytes-rw-r--r--default_images/res/lxh03218.pngbin0 -> 3892 bytes-rw-r--r--default_images/res/lxh03219.pngbin0 -> 223 bytes-rw-r--r--default_images/res/lxh03220.pngbin0 -> 3892 bytes-rw-r--r--default_images/res/lxh03221.pngbin0 -> 3892 bytes-rw-r--r--default_images/res/lxh03222.pngbin0 -> 3892 bytes-rw-r--r--default_images/res/lxh03226.pngbin0 -> 3763 bytes-rw-r--r--default_images/res/lxh03227.pngbin0 -> 3892 bytes-rw-r--r--default_images/res/lxh03228.pngbin0 -> 3886 bytes-rw-r--r--default_images/res/lxh03236.pngbin0 -> 170 bytes-rw-r--r--default_images/res/lxh03237.pngbin0 -> 170 bytes-rw-r--r--default_images/res/lxh03239.pngbin0 -> 167 bytes-rw-r--r--default_images/res/lxh03241.pngbin0 -> 126 bytes-rw-r--r--default_images/res/lxh03242.pngbin0 -> 3784 bytes-rw-r--r--default_images/res/lxh03243.pngbin0 -> 3742 bytes-rw-r--r--default_images/res/lxh03244.pngbin0 -> 3798 bytes-rw-r--r--default_images/res/lxh03245.pngbin0 -> 3867 bytes-rw-r--r--default_images/res/lxh03246.pngbin0 -> 3955 bytes-rw-r--r--default_images/res/lxh03247.pngbin0 -> 3880 bytes-rw-r--r--default_images/res/lxh03248.pngbin0 -> 3816 bytes-rw-r--r--default_images/res/lxh03249.pngbin0 -> 3805 bytes-rw-r--r--default_images/res/lxh03250.pngbin0 -> 3778 bytes-rw-r--r--default_images/res/lxh03251.pngbin0 -> 3831 bytes-rw-r--r--default_images/res/lxh03252.pngbin0 -> 3945 bytes-rw-r--r--default_images/res/lxh03253.pngbin0 -> 3856 bytes-rw-r--r--default_images/res/lxh03254.pngbin0 -> 3850 bytes-rw-r--r--default_images/res/lxh03255.pngbin0 -> 3835 bytes-rw-r--r--default_images/res/lxh03256.pngbin0 -> 205 bytes-rw-r--r--default_images/res/mainapp_16.pngbin0 -> 893 bytes-rw-r--r--default_images/res/mainapp_16_8.pngbin0 -> 893 bytes-rw-r--r--default_images/res/mainapp_16_h.pngbin0 -> 3675 bytes-rw-r--r--default_images/res/mainapp_32.pngbin0 -> 2429 bytes-rw-r--r--default_images/res/mainapp_32_8.pngbin0 -> 2429 bytes-rw-r--r--default_images/res/mainapp_32_h.pngbin0 -> 3859 bytes-rw-r--r--default_images/res/mainapp_48_8.pngbin0 -> 4184 bytes-rw-r--r--default_images/res/minus.pngbin0 -> 293 bytes-rw-r--r--default_images/res/minus_sch.pngbin0 -> 220 bytes-rw-r--r--default_images/res/newdoc.pngbin0 -> 401 bytes-rw-r--r--default_images/res/newdoc_hc.pngbin0 -> 108 bytes-rw-r--r--default_images/res/odb_16_8.pngbin0 -> 574 bytes-rw-r--r--default_images/res/odb_32.pngbin0 -> 1497 bytes-rw-r--r--default_images/res/odb_32_8.pngbin0 -> 1497 bytes-rw-r--r--default_images/res/odb_32_hc.pngbin0 -> 3867 bytes-rw-r--r--default_images/res/odb_48_8.pngbin0 -> 2430 bytes-rw-r--r--default_images/res/odf_16_8.pngbin0 -> 580 bytes-rw-r--r--default_images/res/odf_32.pngbin0 -> 1346 bytes-rw-r--r--default_images/res/odf_32_8.pngbin0 -> 1346 bytes-rw-r--r--default_images/res/odf_32_hc.pngbin0 -> 3880 bytes-rw-r--r--default_images/res/odf_48_8.pngbin0 -> 2171 bytes-rw-r--r--default_images/res/odg_16_8.pngbin0 -> 572 bytes-rw-r--r--default_images/res/odg_32.pngbin0 -> 1548 bytes-rw-r--r--default_images/res/odg_32_8.pngbin0 -> 1548 bytes-rw-r--r--default_images/res/odg_32_hc.pngbin0 -> 3955 bytes-rw-r--r--default_images/res/odg_48_8.pngbin0 -> 2518 bytes-rw-r--r--default_images/res/odm_16_8.pngbin0 -> 472 bytes-rw-r--r--default_images/res/odm_32_8.pngbin0 -> 1110 bytes-rw-r--r--default_images/res/odm_48_8.pngbin0 -> 1741 bytes-rw-r--r--default_images/res/odp_16_8.pngbin0 -> 441 bytes-rw-r--r--default_images/res/odp_32.pngbin0 -> 1180 bytes-rw-r--r--default_images/res/odp_32_8.pngbin0 -> 1180 bytes-rw-r--r--default_images/res/odp_32_hc.pngbin0 -> 3805 bytes-rw-r--r--default_images/res/odp_48_8.pngbin0 -> 2125 bytes-rw-r--r--default_images/res/ods_16_8.pngbin0 -> 436 bytes-rw-r--r--default_images/res/ods_32.pngbin0 -> 917 bytes-rw-r--r--default_images/res/ods_32_8.pngbin0 -> 917 bytes-rw-r--r--default_images/res/ods_32_hc.pngbin0 -> 3778 bytes-rw-r--r--default_images/res/ods_48_8.pngbin0 -> 2079 bytes-rw-r--r--default_images/res/odt_16_8.pngbin0 -> 420 bytes-rw-r--r--default_images/res/odt_32.pngbin0 -> 1106 bytes-rw-r--r--default_images/res/odt_32_8.pngbin0 -> 1106 bytes-rw-r--r--default_images/res/odt_32_hc.pngbin0 -> 3831 bytes-rw-r--r--default_images/res/odt_48_8.pngbin0 -> 2094 bytes-rw-r--r--default_images/res/oleobj.pngbin0 -> 1287 bytes-rw-r--r--default_images/res/open_32.pngbin0 -> 1319 bytes-rw-r--r--default_images/res/otg_16_8.pngbin0 -> 554 bytes-rw-r--r--default_images/res/otg_32_8.pngbin0 -> 1506 bytes-rw-r--r--default_images/res/otg_48_8.pngbin0 -> 2482 bytes-rw-r--r--default_images/res/oth_16_8.pngbin0 -> 436 bytes-rw-r--r--default_images/res/oth_32_8.pngbin0 -> 966 bytes-rw-r--r--default_images/res/oth_48_8.pngbin0 -> 1537 bytes-rw-r--r--default_images/res/otp_16_8.pngbin0 -> 532 bytes-rw-r--r--default_images/res/otp_32_8.pngbin0 -> 1370 bytes-rw-r--r--default_images/res/otp_48_8.pngbin0 -> 2376 bytes-rw-r--r--default_images/res/ots_16_8.pngbin0 -> 538 bytes-rw-r--r--default_images/res/ots_32_8.pngbin0 -> 1130 bytes-rw-r--r--default_images/res/ots_48_8.pngbin0 -> 2400 bytes-rw-r--r--default_images/res/ott_16_8.pngbin0 -> 444 bytes-rw-r--r--default_images/res/ott_32_8.pngbin0 -> 1153 bytes-rw-r--r--default_images/res/ott_48_8.pngbin0 -> 2125 bytes-rw-r--r--default_images/res/plugin.pngbin0 -> 1771 bytes-rw-r--r--default_images/res/plus.pngbin0 -> 331 bytes-rw-r--r--default_images/res/plus_sch.pngbin0 -> 228 bytes-rw-r--r--default_images/res/printeradmin_16.pngbin0 -> 4259 bytes-rw-r--r--default_images/res/printeradmin_16_8.pngbin0 -> 4259 bytes-rw-r--r--default_images/res/printeradmin_16_h.pngbin0 -> 3671 bytes-rw-r--r--default_images/res/printeradmin_32.pngbin0 -> 5595 bytes-rw-r--r--default_images/res/printeradmin_32_8.pngbin0 -> 5595 bytes-rw-r--r--default_images/res/printeradmin_32_h.pngbin0 -> 3916 bytes-rw-r--r--default_images/res/printeradmin_48_8.pngbin0 -> 7337 bytes-rw-r--r--default_images/res/puzzlefolder_16.pngbin0 -> 695 bytes-rw-r--r--default_images/res/puzzlefolder_16_h.pngbin0 -> 155 bytes-rw-r--r--default_images/res/puzzleslice_16.pngbin0 -> 593 bytes-rw-r--r--default_images/res/puzzleslice_16_h.pngbin0 -> 149 bytes-rw-r--r--default_images/res/sc05500.pngbin0 -> 525 bytes-rw-r--r--default_images/res/sc05501.pngbin0 -> 711 bytes-rw-r--r--default_images/res/sc05502.pngbin0 -> 585 bytes-rw-r--r--default_images/res/sc05504.pngbin0 -> 577 bytes-rw-r--r--default_images/res/sc05505.pngbin0 -> 535 bytes-rw-r--r--default_images/res/sc05508.pngbin0 -> 909 bytes-rw-r--r--default_images/res/sc05509.pngbin0 -> 577 bytes-rw-r--r--default_images/res/sc05539.pngbin0 -> 671 bytes-rw-r--r--default_images/res/sc05554.pngbin0 -> 831 bytes-rw-r--r--default_images/res/sc05555.pngbin0 -> 613 bytes-rw-r--r--default_images/res/sc05556.pngbin0 -> 734 bytes-rw-r--r--default_images/res/sc05596.pngbin0 -> 802 bytes-rw-r--r--default_images/res/sc05646.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sc05647.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sc05648.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sc05649.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sc05650.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sc05651.pngbin0 -> 712 bytes-rw-r--r--default_images/res/sc05678.pngbin0 -> 1184 bytes-rw-r--r--default_images/res/sc05700.pngbin0 -> 894 bytes-rw-r--r--default_images/res/sc05701.pngbin0 -> 888 bytes-rw-r--r--default_images/res/sc05710.pngbin0 -> 802 bytes-rw-r--r--default_images/res/sc05711.pngbin0 -> 600 bytes-rw-r--r--default_images/res/sc05961.pngbin0 -> 680 bytes-rw-r--r--default_images/res/sc06300.pngbin0 -> 537 bytes-rw-r--r--default_images/res/sc06301.pngbin0 -> 526 bytes-rw-r--r--default_images/res/sc06302.pngbin0 -> 592 bytes-rw-r--r--default_images/res/sc06303.pngbin0 -> 705 bytes-rw-r--r--default_images/res/sc06304.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sc06308.pngbin0 -> 796 bytes-rw-r--r--default_images/res/sc06309.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sc06312.pngbin0 -> 760 bytes-rw-r--r--default_images/res/sc06331.pngbin0 -> 663 bytes-rw-r--r--default_images/res/sc06332.pngbin0 -> 503 bytes-rw-r--r--default_images/res/sc06333.pngbin0 -> 494 bytes-rw-r--r--default_images/res/sc06334.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sc06335.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sc06336.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sc06337.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sc06338.pngbin0 -> 1007 bytes-rw-r--r--default_images/res/sc06350.pngbin0 -> 712 bytes-rw-r--r--default_images/res/sc06351.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sc06352.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sc06353.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sc06354.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sc06355.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sc06356.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sc06357.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sc06580.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sc10223.pngbin0 -> 173 bytes-rw-r--r--default_images/res/sc10224.pngbin0 -> 176 bytes-rw-r--r--default_images/res/sc10243.pngbin0 -> 605 bytes-rw-r--r--default_images/res/sc10350.pngbin0 -> 594 bytes-rw-r--r--default_images/res/sc10366.pngbin0 -> 1014 bytes-rw-r--r--default_images/res/sc10711.pngbin0 -> 603 bytes-rw-r--r--default_images/res/sc10712.pngbin0 -> 659 bytes-rw-r--r--default_images/res/sc10713.pngbin0 -> 673 bytes-rw-r--r--default_images/res/sc10715.pngbin0 -> 460 bytes-rw-r--r--default_images/res/sc10716.pngbin0 -> 711 bytes-rw-r--r--default_images/res/sc10851.pngbin0 -> 532 bytes-rw-r--r--default_images/res/sc10853.pngbin0 -> 680 bytes-rw-r--r--default_images/res/sc10854.pngbin0 -> 813 bytes-rw-r--r--default_images/res/sc10863.pngbin0 -> 787 bytes-rw-r--r--default_images/res/sc10864.pngbin0 -> 737 bytes-rw-r--r--default_images/res/sc10865.pngbin0 -> 612 bytes-rw-r--r--default_images/res/sc10866.pngbin0 -> 615 bytes-rw-r--r--default_images/res/sc10867.pngbin0 -> 615 bytes-rw-r--r--default_images/res/sc10868.pngbin0 -> 836 bytes-rw-r--r--default_images/res/sc10869.pngbin0 -> 659 bytes-rw-r--r--default_images/res/sch05500.pngbin0 -> 109 bytes-rw-r--r--default_images/res/sch05501.pngbin0 -> 141 bytes-rw-r--r--default_images/res/sch05502.pngbin0 -> 123 bytes-rw-r--r--default_images/res/sch05504.pngbin0 -> 133 bytes-rw-r--r--default_images/res/sch05509.pngbin0 -> 133 bytes-rw-r--r--default_images/res/sch05554.pngbin0 -> 171 bytes-rw-r--r--default_images/res/sch05555.pngbin0 -> 147 bytes-rw-r--r--default_images/res/sch05556.pngbin0 -> 150 bytes-rw-r--r--default_images/res/sch05678.pngbin0 -> 205 bytes-rw-r--r--default_images/res/sch05711.pngbin0 -> 129 bytes-rw-r--r--default_images/res/sch05961.pngbin0 -> 128 bytes-rw-r--r--default_images/res/sch06300.pngbin0 -> 320 bytes-rw-r--r--default_images/res/sch06301.pngbin0 -> 310 bytes-rw-r--r--default_images/res/sch06303.pngbin0 -> 135 bytes-rw-r--r--default_images/res/sch06308.pngbin0 -> 139 bytes-rw-r--r--default_images/res/sch10243.pngbin0 -> 156 bytes-rw-r--r--default_images/res/sch10711.pngbin0 -> 166 bytes-rw-r--r--default_images/res/sch10712.pngbin0 -> 155 bytes-rw-r--r--default_images/res/sch10713.pngbin0 -> 160 bytes-rw-r--r--default_images/res/sch10715.pngbin0 -> 117 bytes-rw-r--r--default_images/res/sch10716.pngbin0 -> 173 bytes-rw-r--r--default_images/res/sch10851.pngbin0 -> 127 bytes-rw-r--r--default_images/res/sch10853.pngbin0 -> 128 bytes-rw-r--r--default_images/res/sch10854.pngbin0 -> 146 bytes-rw-r--r--default_images/res/sch10863.pngbin0 -> 139 bytes-rw-r--r--default_images/res/sch10864.pngbin0 -> 118 bytes-rw-r--r--default_images/res/sch10865.pngbin0 -> 151 bytes-rw-r--r--default_images/res/sch10866.pngbin0 -> 150 bytes-rw-r--r--default_images/res/sch10867.pngbin0 -> 150 bytes-rw-r--r--default_images/res/sch10868.pngbin0 -> 146 bytes-rw-r--r--default_images/res/sch10869.pngbin0 -> 141 bytes-rw-r--r--default_images/res/script.pngbin0 -> 664 bytes-rw-r--r--default_images/res/script_hc.pngbin0 -> 161 bytes-rw-r--r--default_images/res/selectupd_16.pngbin0 -> 382 bytes-rw-r--r--default_images/res/soliline.pngbin0 -> 153 bytes-rw-r--r--default_images/res/sx03123.pngbin0 -> 425 bytes-rw-r--r--default_images/res/sx03124.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sx03125.pngbin0 -> 725 bytes-rw-r--r--default_images/res/sx03126.pngbin0 -> 412 bytes-rw-r--r--default_images/res/sx03127.pngbin0 -> 513 bytes-rw-r--r--default_images/res/sx03128.pngbin0 -> 525 bytes-rw-r--r--default_images/res/sx03129.pngbin0 -> 555 bytes-rw-r--r--default_images/res/sx03130.pngbin0 -> 515 bytes-rw-r--r--default_images/res/sx03131.pngbin0 -> 513 bytes-rw-r--r--default_images/res/sx03132.pngbin0 -> 513 bytes-rw-r--r--default_images/res/sx03134.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sx03135.pngbin0 -> 484 bytes-rw-r--r--default_images/res/sx03136.pngbin0 -> 485 bytes-rw-r--r--default_images/res/sx03137.pngbin0 -> 725 bytes-rw-r--r--default_images/res/sx03138.pngbin0 -> 596 bytes-rw-r--r--default_images/res/sx03139.pngbin0 -> 366 bytes-rw-r--r--default_images/res/sx03140.pngbin0 -> 725 bytes-rw-r--r--default_images/res/sx03141.pngbin0 -> 401 bytes-rw-r--r--default_images/res/sx03142.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sx03144.pngbin0 -> 562 bytes-rw-r--r--default_images/res/sx03145.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sx03150.pngbin0 -> 525 bytes-rw-r--r--default_images/res/sx03151.pngbin0 -> 271 bytes-rw-r--r--default_images/res/sx03152.pngbin0 -> 725 bytes-rw-r--r--default_images/res/sx03153.pngbin0 -> 725 bytes-rw-r--r--default_images/res/sx03154.pngbin0 -> 725 bytes-rw-r--r--default_images/res/sx03155.pngbin0 -> 725 bytes-rw-r--r--default_images/res/sx03156.pngbin0 -> 392 bytes-rw-r--r--default_images/res/sx03157.pngbin0 -> 596 bytes-rw-r--r--default_images/res/sx03158.pngbin0 -> 725 bytes-rw-r--r--default_images/res/sx03159.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sx03160.pngbin0 -> 701 bytes-rw-r--r--default_images/res/sx03161.pngbin0 -> 392 bytes-rw-r--r--default_images/res/sx03162.pngbin0 -> 392 bytes-rw-r--r--default_images/res/sx03163.pngbin0 -> 413 bytes-rw-r--r--default_images/res/sx03164.pngbin0 -> 335 bytes-rw-r--r--default_images/res/sx03165.pngbin0 -> 433 bytes-rw-r--r--default_images/res/sx03166.pngbin0 -> 534 bytes-rw-r--r--default_images/res/sx03167.pngbin0 -> 392 bytes-rw-r--r--default_images/res/sx03168.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sx03187.pngbin0 -> 577 bytes-rw-r--r--default_images/res/sx03188.pngbin0 -> 412 bytes-rw-r--r--default_images/res/sx03189.pngbin0 -> 401 bytes-rw-r--r--default_images/res/sx03190.pngbin0 -> 711 bytes-rw-r--r--default_images/res/sx03193.pngbin0 -> 510 bytes-rw-r--r--default_images/res/sx03198.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sx03201.pngbin0 -> 706 bytes-rw-r--r--default_images/res/sx03202.pngbin0 -> 732 bytes-rw-r--r--default_images/res/sx03203.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sx03204.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sx03205.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sx03206.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sx03214.pngbin0 -> 252 bytes-rw-r--r--default_images/res/sx03216.pngbin0 -> 1017 bytes-rw-r--r--default_images/res/sx03217.pngbin0 -> 555 bytes-rw-r--r--default_images/res/sx03218.pngbin0 -> 555 bytes-rw-r--r--default_images/res/sx03219.pngbin0 -> 725 bytes-rw-r--r--default_images/res/sx03220.pngbin0 -> 555 bytes-rw-r--r--default_images/res/sx03221.pngbin0 -> 555 bytes-rw-r--r--default_images/res/sx03222.pngbin0 -> 555 bytes-rw-r--r--default_images/res/sx03226.pngbin0 -> 450 bytes-rw-r--r--default_images/res/sx03227.pngbin0 -> 555 bytes-rw-r--r--default_images/res/sx03228.pngbin0 -> 522 bytes-rw-r--r--default_images/res/sx03236.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sx03237.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sx03239.pngbin0 -> 510 bytes-rw-r--r--default_images/res/sx03241.pngbin0 -> 525 bytes-rw-r--r--default_images/res/sx03242.pngbin0 -> 436 bytes-rw-r--r--default_images/res/sx03243.pngbin0 -> 425 bytes-rw-r--r--default_images/res/sx03244.pngbin0 -> 515 bytes-rw-r--r--default_images/res/sx03245.pngbin0 -> 574 bytes-rw-r--r--default_images/res/sx03246.pngbin0 -> 572 bytes-rw-r--r--default_images/res/sx03247.pngbin0 -> 580 bytes-rw-r--r--default_images/res/sx03248.pngbin0 -> 472 bytes-rw-r--r--default_images/res/sx03249.pngbin0 -> 441 bytes-rw-r--r--default_images/res/sx03250.pngbin0 -> 436 bytes-rw-r--r--default_images/res/sx03251.pngbin0 -> 420 bytes-rw-r--r--default_images/res/sx03252.pngbin0 -> 554 bytes-rw-r--r--default_images/res/sx03253.pngbin0 -> 532 bytes-rw-r--r--default_images/res/sx03254.pngbin0 -> 538 bytes-rw-r--r--default_images/res/sx03255.pngbin0 -> 444 bytes-rw-r--r--default_images/res/sx03256.pngbin0 -> 557 bytes-rw-r--r--default_images/res/sx10144.pngbin0 -> 676 bytes-rw-r--r--default_images/res/sx10593.pngbin0 -> 515 bytes-rw-r--r--default_images/res/sx10594.pngbin0 -> 577 bytes-rw-r--r--default_images/res/sx10595.pngbin0 -> 619 bytes-rw-r--r--default_images/res/sx10596.pngbin0 -> 620 bytes-rw-r--r--default_images/res/sx10597.pngbin0 -> 425 bytes-rw-r--r--default_images/res/sx10598.pngbin0 -> 650 bytes-rw-r--r--default_images/res/sx10599.pngbin0 -> 547 bytes-rw-r--r--default_images/res/sx10600.pngbin0 -> 728 bytes-rw-r--r--default_images/res/sx10601.pngbin0 -> 765 bytes-rw-r--r--default_images/res/sx10602.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sx10603.pngbin0 -> 404 bytes-rw-r--r--default_images/res/sx10604.pngbin0 -> 742 bytes-rw-r--r--default_images/res/sx10605.pngbin0 -> 761 bytes-rw-r--r--default_images/res/sx10607.pngbin0 -> 735 bytes-rw-r--r--default_images/res/sx10704.pngbin0 -> 626 bytes-rw-r--r--default_images/res/sx10705.pngbin0 -> 830 bytes-rw-r--r--default_images/res/sx10706.pngbin0 -> 435 bytes-rw-r--r--default_images/res/sx10707.pngbin0 -> 727 bytes-rw-r--r--default_images/res/sx10708.pngbin0 -> 492 bytes-rw-r--r--default_images/res/sx10710.pngbin0 -> 649 bytes-rw-r--r--default_images/res/sx10715.pngbin0 -> 460 bytes-rw-r--r--default_images/res/sx10728.pngbin0 -> 519 bytes-rw-r--r--default_images/res/sx10757.pngbin0 -> 771 bytes-rw-r--r--default_images/res/sx10768.pngbin0 -> 592 bytes-rw-r--r--default_images/res/sx10769.pngbin0 -> 549 bytes-rw-r--r--default_images/res/sx16670.pngbin0 -> 794 bytes-rw-r--r--default_images/res/sx18002.pngbin0 -> 420 bytes-rw-r--r--default_images/res/sx18003.pngbin0 -> 389 bytes-rw-r--r--default_images/res/sx18013.pngbin0 -> 586 bytes-rw-r--r--default_images/res/sx18022.pngbin0 -> 571 bytes-rw-r--r--default_images/res/sx18027.pngbin0 -> 231 bytes-rw-r--r--default_images/res/sxh03123.pngbin0 -> 3679 bytes-rw-r--r--default_images/res/sxh03124.pngbin0 -> 122 bytes-rw-r--r--default_images/res/sxh03125.pngbin0 -> 153 bytes-rw-r--r--default_images/res/sxh03126.pngbin0 -> 3662 bytes-rw-r--r--default_images/res/sxh03127.pngbin0 -> 3704 bytes-rw-r--r--default_images/res/sxh03128.pngbin0 -> 109 bytes-rw-r--r--default_images/res/sxh03129.pngbin0 -> 3681 bytes-rw-r--r--default_images/res/sxh03130.pngbin0 -> 3701 bytes-rw-r--r--default_images/res/sxh03131.pngbin0 -> 3704 bytes-rw-r--r--default_images/res/sxh03132.pngbin0 -> 3704 bytes-rw-r--r--default_images/res/sxh03134.pngbin0 -> 122 bytes-rw-r--r--default_images/res/sxh03135.pngbin0 -> 121 bytes-rw-r--r--default_images/res/sxh03136.pngbin0 -> 120 bytes-rw-r--r--default_images/res/sxh03137.pngbin0 -> 153 bytes-rw-r--r--default_images/res/sxh03138.pngbin0 -> 173 bytes-rw-r--r--default_images/res/sxh03139.pngbin0 -> 3655 bytes-rw-r--r--default_images/res/sxh03140.pngbin0 -> 153 bytes-rw-r--r--default_images/res/sxh03141.pngbin0 -> 108 bytes-rw-r--r--default_images/res/sxh03142.pngbin0 -> 122 bytes-rw-r--r--default_images/res/sxh03144.pngbin0 -> 3682 bytes-rw-r--r--default_images/res/sxh03145.pngbin0 -> 122 bytes-rw-r--r--default_images/res/sxh03150.pngbin0 -> 109 bytes-rw-r--r--default_images/res/sxh03151.pngbin0 -> 103 bytes-rw-r--r--default_images/res/sxh03152.pngbin0 -> 153 bytes-rw-r--r--default_images/res/sxh03153.pngbin0 -> 153 bytes-rw-r--r--default_images/res/sxh03154.pngbin0 -> 153 bytes-rw-r--r--default_images/res/sxh03155.pngbin0 -> 153 bytes-rw-r--r--default_images/res/sxh03156.pngbin0 -> 3664 bytes-rw-r--r--default_images/res/sxh03157.pngbin0 -> 173 bytes-rw-r--r--default_images/res/sxh03158.pngbin0 -> 153 bytes-rw-r--r--default_images/res/sxh03159.pngbin0 -> 122 bytes-rw-r--r--default_images/res/sxh03160.pngbin0 -> 140 bytes-rw-r--r--default_images/res/sxh03161.pngbin0 -> 3664 bytes-rw-r--r--default_images/res/sxh03162.pngbin0 -> 3664 bytes-rw-r--r--default_images/res/sxh03163.pngbin0 -> 3660 bytes-rw-r--r--default_images/res/sxh03164.pngbin0 -> 131 bytes-rw-r--r--default_images/res/sxh03165.pngbin0 -> 161 bytes-rw-r--r--default_images/res/sxh03166.pngbin0 -> 188 bytes-rw-r--r--default_images/res/sxh03167.pngbin0 -> 154 bytes-rw-r--r--default_images/res/sxh03168.pngbin0 -> 122 bytes-rw-r--r--default_images/res/sxh03187.pngbin0 -> 122 bytes-rw-r--r--default_images/res/sxh03188.pngbin0 -> 3662 bytes-rw-r--r--default_images/res/sxh03189.pngbin0 -> 108 bytes-rw-r--r--default_images/res/sxh03190.pngbin0 -> 141 bytes-rw-r--r--default_images/res/sxh03193.pngbin0 -> 140 bytes-rw-r--r--default_images/res/sxh03198.pngbin0 -> 122 bytes-rw-r--r--default_images/res/sxh03201.pngbin0 -> 158 bytes-rw-r--r--default_images/res/sxh03202.pngbin0 -> 148 bytes-rw-r--r--default_images/res/sxh03203.pngbin0 -> 122 bytes-rw-r--r--default_images/res/sxh03204.pngbin0 -> 122 bytes-rw-r--r--default_images/res/sxh03205.pngbin0 -> 122 bytes-rw-r--r--default_images/res/sxh03206.pngbin0 -> 122 bytes-rw-r--r--default_images/res/sxh03214.pngbin0 -> 143 bytes-rw-r--r--default_images/res/sxh03216.pngbin0 -> 148 bytes-rw-r--r--default_images/res/sxh03217.pngbin0 -> 3705 bytes-rw-r--r--default_images/res/sxh03218.pngbin0 -> 3705 bytes-rw-r--r--default_images/res/sxh03219.pngbin0 -> 153 bytes-rw-r--r--default_images/res/sxh03220.pngbin0 -> 3705 bytes-rw-r--r--default_images/res/sxh03221.pngbin0 -> 3705 bytes-rw-r--r--default_images/res/sxh03222.pngbin0 -> 3705 bytes-rw-r--r--default_images/res/sxh03226.pngbin0 -> 3668 bytes-rw-r--r--default_images/res/sxh03227.pngbin0 -> 3705 bytes-rw-r--r--default_images/res/sxh03228.pngbin0 -> 3678 bytes-rw-r--r--default_images/res/sxh03236.pngbin0 -> 122 bytes-rw-r--r--default_images/res/sxh03237.pngbin0 -> 122 bytes-rw-r--r--default_images/res/sxh03239.pngbin0 -> 132 bytes-rw-r--r--default_images/res/sxh03241.pngbin0 -> 109 bytes-rw-r--r--default_images/res/sxh03242.pngbin0 -> 3648 bytes-rw-r--r--default_images/res/sxh03243.pngbin0 -> 3679 bytes-rw-r--r--default_images/res/sxh03244.pngbin0 -> 3701 bytes-rw-r--r--default_images/res/sxh03245.pngbin0 -> 3687 bytes-rw-r--r--default_images/res/sxh03246.pngbin0 -> 3706 bytes-rw-r--r--default_images/res/sxh03247.pngbin0 -> 3695 bytes-rw-r--r--default_images/res/sxh03248.pngbin0 -> 3666 bytes-rw-r--r--default_images/res/sxh03249.pngbin0 -> 3679 bytes-rw-r--r--default_images/res/sxh03250.pngbin0 -> 3666 bytes-rw-r--r--default_images/res/sxh03251.pngbin0 -> 3667 bytes-rw-r--r--default_images/res/sxh03252.pngbin0 -> 3694 bytes-rw-r--r--default_images/res/sxh03253.pngbin0 -> 3698 bytes-rw-r--r--default_images/res/sxh03254.pngbin0 -> 3709 bytes-rw-r--r--default_images/res/sxh03255.pngbin0 -> 3662 bytes-rw-r--r--default_images/res/sxh03256.pngbin0 -> 148 bytes-rw-r--r--default_images/res/sxh10144.pngbin0 -> 155 bytes-rw-r--r--default_images/res/sxh10593.pngbin0 -> 118 bytes-rw-r--r--default_images/res/sxh10594.pngbin0 -> 100 bytes-rw-r--r--default_images/res/sxh10595.pngbin0 -> 129 bytes-rw-r--r--default_images/res/sxh10596.pngbin0 -> 132 bytes-rw-r--r--default_images/res/sxh10597.pngbin0 -> 110 bytes-rw-r--r--default_images/res/sxh10598.pngbin0 -> 114 bytes-rw-r--r--default_images/res/sxh10599.pngbin0 -> 115 bytes-rw-r--r--default_images/res/sxh10600.pngbin0 -> 133 bytes-rw-r--r--default_images/res/sxh10601.pngbin0 -> 130 bytes-rw-r--r--default_images/res/sxh10602.pngbin0 -> 122 bytes-rw-r--r--default_images/res/sxh10603.pngbin0 -> 245 bytes-rw-r--r--default_images/res/sxh10604.pngbin0 -> 123 bytes-rw-r--r--default_images/res/sxh10605.pngbin0 -> 132 bytes-rw-r--r--default_images/res/sxh10607.pngbin0 -> 107 bytes-rw-r--r--default_images/res/sxh10704.pngbin0 -> 119 bytes-rw-r--r--default_images/res/sxh10705.pngbin0 -> 163 bytes-rw-r--r--default_images/res/sxh10706.pngbin0 -> 106 bytes-rw-r--r--default_images/res/sxh10707.pngbin0 -> 141 bytes-rw-r--r--default_images/res/sxh10708.pngbin0 -> 108 bytes-rw-r--r--default_images/res/sxh10710.pngbin0 -> 134 bytes-rw-r--r--default_images/res/sxh10715.pngbin0 -> 117 bytes-rw-r--r--default_images/res/sxh10728.pngbin0 -> 117 bytes-rw-r--r--default_images/res/sxh10757.pngbin0 -> 151 bytes-rw-r--r--default_images/res/sxh10768.pngbin0 -> 108 bytes-rw-r--r--default_images/res/sxh10769.pngbin0 -> 110 bytes-rw-r--r--default_images/res/sxh18002.pngbin0 -> 279 bytes-rw-r--r--default_images/res/sxh18003.pngbin0 -> 267 bytes-rw-r--r--default_images/res/sxh18013.pngbin0 -> 141 bytes-rw-r--r--default_images/res/sxh18022.pngbin0 -> 105 bytes-rw-r--r--default_images/res/sxh18027.pngbin0 -> 193 bytes-rw-r--r--default_images/res/target.pngbin0 -> 813 bytes-rw-r--r--default_images/res/target_hc.pngbin0 -> 146 bytes-rw-r--r--default_images/res/tb01.pngbin0 -> 502 bytes-rw-r--r--default_images/res/tb02.pngbin0 -> 607 bytes-rw-r--r--default_images/res/tb03.pngbin0 -> 536 bytes-rw-r--r--default_images/res/tb04.pngbin0 -> 655 bytes-rw-r--r--default_images/res/tb05.pngbin0 -> 656 bytes-rw-r--r--default_images/res/tbh01.pngbin0 -> 122 bytes-rw-r--r--default_images/res/tbh02.pngbin0 -> 140 bytes-rw-r--r--default_images/res/tbh03.pngbin0 -> 132 bytes-rw-r--r--default_images/res/tbh04.pngbin0 -> 152 bytes-rw-r--r--default_images/res/tbh05.pngbin0 -> 153 bytes-rw-r--r--default_images/res/template_32.pngbin0 -> 1180 bytes-rw-r--r--default_images/res/versionwarning.pngbin0 -> 866 bytes-rw-r--r--default_images/res/xml_16.pngbin0 -> 720 bytes-rw-r--r--default_images/res/xml_16_h.pngbin0 -> 141 bytes-rw-r--r--default_images/sc/res/date.pngbin0 -> 646 bytes-rw-r--r--default_images/sc/res/date_h.pngbin0 -> 120 bytes-rw-r--r--default_images/sc/res/dropcopy.pngbin0 -> 660 bytes-rw-r--r--default_images/sc/res/dropcopy_h.pngbin0 -> 125 bytes-rw-r--r--default_images/sc/res/droplink.pngbin0 -> 503 bytes-rw-r--r--default_images/sc/res/droplink_h.pngbin0 -> 100 bytes-rw-r--r--default_images/sc/res/dropurl.pngbin0 -> 532 bytes-rw-r--r--default_images/sc/res/dropurl_h.pngbin0 -> 127 bytes-rw-r--r--default_images/sc/res/file.pngbin0 -> 736 bytes-rw-r--r--default_images/sc/res/file_h.pngbin0 -> 126 bytes-rw-r--r--default_images/sc/res/fx.pngbin0 -> 500 bytes-rw-r--r--default_images/sc/res/imglst/apptbx/lc26047.pngbin0 -> 1116 bytes-rw-r--r--default_images/sc/res/imglst/apptbx/lc26048.pngbin0 -> 921 bytes-rw-r--r--default_images/sc/res/imglst/apptbx/lc26049.pngbin0 -> 370 bytes-rw-r--r--default_images/sc/res/imglst/apptbx/lc26050.pngbin0 -> 999 bytes-rw-r--r--default_images/sc/res/imglst/apptbx/lc26051.pngbin0 -> 786 bytes-rw-r--r--default_images/sc/res/imglst/apptbx/lch26047.pngbin0 -> 197 bytes-rw-r--r--default_images/sc/res/imglst/apptbx/lch26048.pngbin0 -> 149 bytes-rw-r--r--default_images/sc/res/imglst/apptbx/lch26049.pngbin0 -> 304 bytes-rw-r--r--default_images/sc/res/imglst/apptbx/lch26050.pngbin0 -> 165 bytes-rw-r--r--default_images/sc/res/imglst/apptbx/lch26051.pngbin0 -> 143 bytes-rw-r--r--default_images/sc/res/imglst/apptbx/sc26047.pngbin0 -> 651 bytes-rw-r--r--default_images/sc/res/imglst/apptbx/sc26048.pngbin0 -> 563 bytes-rw-r--r--default_images/sc/res/imglst/apptbx/sc26049.pngbin0 -> 288 bytes-rw-r--r--default_images/sc/res/imglst/apptbx/sc26050.pngbin0 -> 510 bytes-rw-r--r--default_images/sc/res/imglst/apptbx/sc26051.pngbin0 -> 477 bytes-rw-r--r--default_images/sc/res/imglst/apptbx/sch26047.pngbin0 -> 162 bytes-rw-r--r--default_images/sc/res/imglst/apptbx/sch26048.pngbin0 -> 128 bytes-rw-r--r--default_images/sc/res/imglst/apptbx/sch26049.pngbin0 -> 249 bytes-rw-r--r--default_images/sc/res/imglst/apptbx/sch26050.pngbin0 -> 140 bytes-rw-r--r--default_images/sc/res/imglst/apptbx/sch26051.pngbin0 -> 135 bytes-rw-r--r--default_images/sc/res/imglst/dbgui/ou01.pngbin0 -> 159 bytes-rw-r--r--default_images/sc/res/imglst/dbgui/ou010.pngbin0 -> 162 bytes-rw-r--r--default_images/sc/res/imglst/dbgui/ou011.pngbin0 -> 143 bytes-rw-r--r--default_images/sc/res/imglst/dbgui/ou012.pngbin0 -> 142 bytes-rw-r--r--default_images/sc/res/imglst/dbgui/ou02.pngbin0 -> 175 bytes-rw-r--r--default_images/sc/res/imglst/dbgui/ou03.pngbin0 -> 179 bytes-rw-r--r--default_images/sc/res/imglst/dbgui/ou04.pngbin0 -> 173 bytes-rw-r--r--default_images/sc/res/imglst/dbgui/ou05.pngbin0 -> 178 bytes-rw-r--r--default_images/sc/res/imglst/dbgui/ou06.pngbin0 -> 180 bytes-rw-r--r--default_images/sc/res/imglst/dbgui/ou07.pngbin0 -> 175 bytes-rw-r--r--default_images/sc/res/imglst/dbgui/ou08.pngbin0 -> 175 bytes-rw-r--r--default_images/sc/res/imglst/dbgui/ou09.pngbin0 -> 170 bytes-rw-r--r--default_images/sc/res/imglst/dbgui/ouh01.pngbin0 -> 159 bytes-rw-r--r--default_images/sc/res/imglst/dbgui/ouh010.pngbin0 -> 164 bytes-rw-r--r--default_images/sc/res/imglst/dbgui/ouh011.pngbin0 -> 144 bytes-rw-r--r--default_images/sc/res/imglst/dbgui/ouh012.pngbin0 -> 148 bytes-rw-r--r--default_images/sc/res/imglst/dbgui/ouh02.pngbin0 -> 174 bytes-rw-r--r--default_images/sc/res/imglst/dbgui/ouh03.pngbin0 -> 178 bytes-rw-r--r--default_images/sc/res/imglst/dbgui/ouh04.pngbin0 -> 174 bytes-rw-r--r--default_images/sc/res/imglst/dbgui/ouh05.pngbin0 -> 178 bytes-rw-r--r--default_images/sc/res/imglst/dbgui/ouh06.pngbin0 -> 179 bytes-rw-r--r--default_images/sc/res/imglst/dbgui/ouh07.pngbin0 -> 176 bytes-rw-r--r--default_images/sc/res/imglst/dbgui/ouh08.pngbin0 -> 173 bytes-rw-r--r--default_images/sc/res/imglst/dbgui/ouh09.pngbin0 -> 170 bytes-rw-r--r--default_images/sc/res/imglst/navipi/na010.pngbin0 -> 796 bytes-rw-r--r--default_images/sc/res/imglst/navipi/na011.pngbin0 -> 628 bytes-rw-r--r--default_images/sc/res/imglst/navipi/na03.pngbin0 -> 463 bytes-rw-r--r--default_images/sc/res/imglst/navipi/na05.pngbin0 -> 674 bytes-rw-r--r--default_images/sc/res/imglst/navipi/na06.pngbin0 -> 679 bytes-rw-r--r--default_images/sc/res/imglst/navipi/na07.pngbin0 -> 441 bytes-rw-r--r--default_images/sc/res/imglst/navipi/na09.pngbin0 -> 393 bytes-rw-r--r--default_images/sc/res/imglst/navipi/nah010.pngbin0 -> 139 bytes-rw-r--r--default_images/sc/res/imglst/navipi/nah011.pngbin0 -> 150 bytes-rw-r--r--default_images/sc/res/imglst/navipi/nah03.pngbin0 -> 125 bytes-rw-r--r--default_images/sc/res/imglst/navipi/nah05.pngbin0 -> 147 bytes-rw-r--r--default_images/sc/res/imglst/navipi/nah06.pngbin0 -> 149 bytes-rw-r--r--default_images/sc/res/imglst/navipi/nah07.pngbin0 -> 149 bytes-rw-r--r--default_images/sc/res/imglst/navipi/nah09.pngbin0 -> 120 bytes-rw-r--r--default_images/sc/res/imglst/navipi/nc01.pngbin0 -> 404 bytes-rw-r--r--default_images/sc/res/imglst/navipi/nc02.pngbin0 -> 422 bytes-rw-r--r--default_images/sc/res/imglst/navipi/nc03.pngbin0 -> 1007 bytes-rw-r--r--default_images/sc/res/imglst/navipi/nc04.pngbin0 -> 768 bytes-rw-r--r--default_images/sc/res/imglst/navipi/nc05.pngbin0 -> 529 bytes-rw-r--r--default_images/sc/res/imglst/navipi/nc06.pngbin0 -> 625 bytes-rw-r--r--default_images/sc/res/imglst/navipi/nc07.pngbin0 -> 503 bytes-rw-r--r--default_images/sc/res/imglst/navipi/nc08.pngbin0 -> 768 bytes-rw-r--r--default_images/sc/res/imglst/navipi/nch01.pngbin0 -> 245 bytes-rw-r--r--default_images/sc/res/imglst/navipi/nch02.pngbin0 -> 111 bytes-rw-r--r--default_images/sc/res/imglst/navipi/nch03.pngbin0 -> 176 bytes-rw-r--r--default_images/sc/res/imglst/navipi/nch04.pngbin0 -> 132 bytes-rw-r--r--default_images/sc/res/imglst/navipi/nch05.pngbin0 -> 101 bytes-rw-r--r--default_images/sc/res/imglst/navipi/nch06.pngbin0 -> 139 bytes-rw-r--r--default_images/sc/res/imglst/navipi/nch07.pngbin0 -> 100 bytes-rw-r--r--default_images/sc/res/imglst/navipi/nch08.pngbin0 -> 132 bytes-rw-r--r--default_images/sc/res/lftrgt.pngbin0 -> 1143 bytes-rw-r--r--default_images/sc/res/lftrgt_h.pngbin0 -> 364 bytes-rw-r--r--default_images/sc/res/page.pngbin0 -> 706 bytes-rw-r--r--default_images/sc/res/page_h.pngbin0 -> 120 bytes-rw-r--r--default_images/sc/res/pages.pngbin0 -> 828 bytes-rw-r--r--default_images/sc/res/pages_h.pngbin0 -> 128 bytes-rw-r--r--default_images/sc/res/popup_select_current.pngbin0 -> 454 bytes-rw-r--r--default_images/sc/res/popup_unselect_current.pngbin0 -> 348 bytes-rw-r--r--default_images/sc/res/sf01.pngbin0 -> 623 bytes-rw-r--r--default_images/sc/res/sf02.pngbin0 -> 572 bytes-rw-r--r--default_images/sc/res/sfh01.pngbin0 -> 116 bytes-rw-r--r--default_images/sc/res/sfh02.pngbin0 -> 122 bytes-rw-r--r--default_images/sc/res/table.pngbin0 -> 490 bytes-rw-r--r--default_images/sc/res/table_h.pngbin0 -> 123 bytes-rw-r--r--default_images/sc/res/text.pngbin0 -> 831 bytes-rw-r--r--default_images/sc/res/text_h.pngbin0 -> 127 bytes-rw-r--r--default_images/sc/res/time.pngbin0 -> 902 bytes-rw-r--r--default_images/sc/res/time_h.pngbin0 -> 165 bytes-rw-r--r--default_images/sc/res/topdown.pngbin0 -> 1280 bytes-rw-r--r--default_images/sc/res/topdown_h.pngbin0 -> 410 bytes-rw-r--r--default_images/sd/res/breakplayingblue_16.pngbin0 -> 637 bytes-rw-r--r--default_images/sd/res/breakplayingblue_16_h.pngbin0 -> 125 bytes-rw-r--r--default_images/sd/res/chart.pngbin0 -> 2275 bytes-rw-r--r--default_images/sd/res/chkpage0.pngbin0 -> 645 bytes-rw-r--r--default_images/sd/res/chkpage0_h.pngbin0 -> 124 bytes-rw-r--r--default_images/sd/res/chkpage1.pngbin0 -> 910 bytes-rw-r--r--default_images/sd/res/chkpage1_h.pngbin0 -> 159 bytes-rw-r--r--default_images/sd/res/click_16.pngbin0 -> 574 bytes-rw-r--r--default_images/sd/res/click_16_h.pngbin0 -> 165 bytes-rwxr-xr-xdefault_images/sd/res/comments_indicator.pngbin0 -> 186 bytes-rwxr-xr-xdefault_images/sd/res/comments_indicator_hc.pngbin0 -> 293 bytes-rw-r--r--default_images/sd/res/del1bmp.pngbin0 -> 279 bytes-rw-r--r--default_images/sd/res/del1bmp_h.pngbin0 -> 129 bytes-rw-r--r--default_images/sd/res/delall.pngbin0 -> 367 bytes-rw-r--r--default_images/sd/res/delall_h.pngbin0 -> 146 bytes-rw-r--r--default_images/sd/res/dlgass1.pngbin0 -> 9214 bytes-rw-r--r--default_images/sd/res/dlgass2.pngbin0 -> 7505 bytes-rw-r--r--default_images/sd/res/dlgass3.pngbin0 -> 5965 bytes-rw-r--r--default_images/sd/res/dlgass4.pngbin0 -> 7153 bytes-rw-r--r--default_images/sd/res/dlgass5.pngbin0 -> 6188 bytes-rw-r--r--default_images/sd/res/docclose.pngbin0 -> 239 bytes-rw-r--r--default_images/sd/res/docclose_h.pngbin0 -> 218 bytes-rw-r--r--default_images/sd/res/docopen.pngbin0 -> 245 bytes-rw-r--r--default_images/sd/res/docopen_h.pngbin0 -> 249 bytes-rw-r--r--default_images/sd/res/doctext.pngbin0 -> 223 bytes-rw-r--r--default_images/sd/res/doctext_h.pngbin0 -> 220 bytes-rw-r--r--default_images/sd/res/effect_16.pngbin0 -> 462 bytes-rw-r--r--default_images/sd/res/effect_16_h.pngbin0 -> 130 bytes-rw-r--r--default_images/sd/res/effectfade_16.pngbin0 -> 539 bytes-rw-r--r--default_images/sd/res/effectfade_16_h.pngbin0 -> 135 bytes-rw-r--r--default_images/sd/res/effectole_16.pngbin0 -> 626 bytes-rw-r--r--default_images/sd/res/effectole_16_h.pngbin0 -> 150 bytes-rw-r--r--default_images/sd/res/effectpath_16.pngbin0 -> 599 bytes-rw-r--r--default_images/sd/res/effectpath_16_h.pngbin0 -> 149 bytes-rw-r--r--default_images/sd/res/effectshape_16.pngbin0 -> 515 bytes-rw-r--r--default_images/sd/res/effectshape_16_h.pngbin0 -> 133 bytes-rw-r--r--default_images/sd/res/fade_effect_indicator.pngbin0 -> 277 bytes-rw-r--r--default_images/sd/res/fade_effect_indicator_hc.pngbin0 -> 125 bytes-rw-r--r--default_images/sd/res/foilh01.pngbin0 -> 818 bytes-rw-r--r--default_images/sd/res/foilh01_h.pngbin0 -> 141 bytes-rw-r--r--default_images/sd/res/foilh02.pngbin0 -> 822 bytes-rw-r--r--default_images/sd/res/foilh02_h.pngbin0 -> 144 bytes-rw-r--r--default_images/sd/res/foilh03.pngbin0 -> 996 bytes-rw-r--r--default_images/sd/res/foilh03_h.pngbin0 -> 183 bytes-rw-r--r--default_images/sd/res/foilh04.pngbin0 -> 866 bytes-rw-r--r--default_images/sd/res/foilh04_h.pngbin0 -> 146 bytes-rw-r--r--default_images/sd/res/foilh06.pngbin0 -> 922 bytes-rw-r--r--default_images/sd/res/foilh06_h.pngbin0 -> 151 bytes-rw-r--r--default_images/sd/res/foilh09.pngbin0 -> 923 bytes-rw-r--r--default_images/sd/res/foilh09_h.pngbin0 -> 157 bytes-rw-r--r--default_images/sd/res/foiln01.pngbin0 -> 904 bytes-rw-r--r--default_images/sd/res/foiln01_h.pngbin0 -> 182 bytes-rw-r--r--default_images/sd/res/foilnone.pngbin0 -> 1184 bytes-rw-r--r--default_images/sd/res/get1obj.pngbin0 -> 251 bytes-rw-r--r--default_images/sd/res/get1obj_h.pngbin0 -> 135 bytes-rw-r--r--default_images/sd/res/getallob.pngbin0 -> 314 bytes-rw-r--r--default_images/sd/res/getallob_h.pngbin0 -> 158 bytes-rw-r--r--default_images/sd/res/graphic.pngbin0 -> 866 bytes-rw-r--r--default_images/sd/res/graphic_h.pngbin0 -> 139 bytes-rw-r--r--default_images/sd/res/group.pngbin0 -> 630 bytes-rw-r--r--default_images/sd/res/group_h.pngbin0 -> 135 bytes-rw-r--r--default_images/sd/res/hlplhorz.pngbin0 -> 549 bytes-rw-r--r--default_images/sd/res/hlplhorz_h.pngbin0 -> 119 bytes-rw-r--r--default_images/sd/res/hlplvert.pngbin0 -> 544 bytes-rw-r--r--default_images/sd/res/hlplvert_h.pngbin0 -> 116 bytes-rw-r--r--default_images/sd/res/hlppoint.pngbin0 -> 634 bytes-rw-r--r--default_images/sd/res/hlppoint_h.pngbin0 -> 136 bytes-rw-r--r--default_images/sd/res/image.pngbin0 -> 8211 bytes-rw-r--r--default_images/sd/res/imagelst/nv010.pngbin0 -> 532 bytes-rw-r--r--default_images/sd/res/imagelst/nv02.pngbin0 -> 501 bytes-rw-r--r--default_images/sd/res/imagelst/nv03.pngbin0 -> 530 bytes-rw-r--r--default_images/sd/res/imagelst/nv04.pngbin0 -> 467 bytes-rw-r--r--default_images/sd/res/imagelst/nv05.pngbin0 -> 474 bytes-rw-r--r--default_images/sd/res/imagelst/nv06.pngbin0 -> 530 bytes-rw-r--r--default_images/sd/res/imagelst/nv08.pngbin0 -> 660 bytes-rw-r--r--default_images/sd/res/imagelst/nv09.pngbin0 -> 503 bytes-rw-r--r--default_images/sd/res/imagelst/nvh010.pngbin0 -> 127 bytes-rw-r--r--default_images/sd/res/imagelst/nvh02.pngbin0 -> 151 bytes-rw-r--r--default_images/sd/res/imagelst/nvh03.pngbin0 -> 119 bytes-rw-r--r--default_images/sd/res/imagelst/nvh04.pngbin0 -> 115 bytes-rw-r--r--default_images/sd/res/imagelst/nvh05.pngbin0 -> 108 bytes-rw-r--r--default_images/sd/res/imagelst/nvh06.pngbin0 -> 115 bytes-rw-r--r--default_images/sd/res/imagelst/nvh08.pngbin0 -> 125 bytes-rw-r--r--default_images/sd/res/imagelst/nvh09.pngbin0 -> 100 bytes-rw-r--r--default_images/sd/res/imagelst/sc27036.pngbin0 -> 779 bytes-rw-r--r--default_images/sd/res/imagelst/sf01.pngbin0 -> 597 bytes-rw-r--r--default_images/sd/res/imagelst/sf02.pngbin0 -> 638 bytes-rw-r--r--default_images/sd/res/imagelst/sfh01.pngbin0 -> 153 bytes-rw-r--r--default_images/sd/res/imagelst/sfh02.pngbin0 -> 146 bytes-rw-r--r--default_images/sd/res/layout_empty.pngbin0 -> 605 bytes-rw-r--r--default_images/sd/res/layout_empty_h.pngbin0 -> 563 bytes-rw-r--r--default_images/sd/res/layout_head01.pngbin0 -> 747 bytes-rw-r--r--default_images/sd/res/layout_head01_h.pngbin0 -> 3709 bytes-rw-r--r--default_images/sd/res/layout_head02.pngbin0 -> 839 bytes-rw-r--r--default_images/sd/res/layout_head02_h.pngbin0 -> 3710 bytes-rw-r--r--default_images/sd/res/layout_head02a.pngbin0 -> 874 bytes-rw-r--r--default_images/sd/res/layout_head02a_h.pngbin0 -> 3737 bytes-rw-r--r--default_images/sd/res/layout_head02b.pngbin0 -> 853 bytes-rw-r--r--default_images/sd/res/layout_head02b_h.pngbin0 -> 3729 bytes-rw-r--r--default_images/sd/res/layout_head03.pngbin0 -> 871 bytes-rw-r--r--default_images/sd/res/layout_head03_h.pngbin0 -> 3711 bytes-rw-r--r--default_images/sd/res/layout_head03a.pngbin0 -> 885 bytes-rw-r--r--default_images/sd/res/layout_head03a_h.pngbin0 -> 3748 bytes-rw-r--r--default_images/sd/res/layout_head03b.pngbin0 -> 912 bytes-rw-r--r--default_images/sd/res/layout_head03b_h.pngbin0 -> 361 bytes-rw-r--r--default_images/sd/res/layout_head03c.pngbin0 -> 906 bytes-rw-r--r--default_images/sd/res/layout_head03c_h.pngbin0 -> 368 bytes-rw-r--r--default_images/sd/res/layout_head04.pngbin0 -> 904 bytes-rw-r--r--default_images/sd/res/layout_head04_h.pngbin0 -> 3749 bytes-rw-r--r--default_images/sd/res/layout_head06.pngbin0 -> 904 bytes-rw-r--r--default_images/sd/res/layout_head06_h.pngbin0 -> 3759 bytes-rw-r--r--default_images/sd/res/layout_textonly.pngbin0 -> 827 bytes-rw-r--r--default_images/sd/res/layout_textonly_h.pngbin0 -> 3695 bytes-rw-r--r--default_images/sd/res/layout_vertical01.pngbin0 -> 927 bytes-rw-r--r--default_images/sd/res/layout_vertical01_h.pngbin0 -> 3719 bytes-rw-r--r--default_images/sd/res/layout_vertical02.pngbin0 -> 956 bytes-rw-r--r--default_images/sd/res/layout_vertical02_h.pngbin0 -> 3736 bytes-rw-r--r--default_images/sd/res/minus_h.pngbin0 -> 220 bytes-rw-r--r--default_images/sd/res/mspgmode.pngbin0 -> 239 bytes-rw-r--r--default_images/sd/res/mspgmode_h.pngbin0 -> 111 bytes-rw-r--r--default_images/sd/res/object.pngbin0 -> 2678 bytes-rw-r--r--default_images/sd/res/objects.pngbin0 -> 526 bytes-rw-r--r--default_images/sd/res/objects_h.pngbin0 -> 107 bytes-rw-r--r--default_images/sd/res/objekt.pngbin0 -> 302 bytes-rw-r--r--default_images/sd/res/objekt_h.pngbin0 -> 140 bytes-rw-r--r--default_images/sd/res/ole.pngbin0 -> 729 bytes-rw-r--r--default_images/sd/res/ole_h.pngbin0 -> 146 bytes-rw-r--r--default_images/sd/res/orgchart.pngbin0 -> 1637 bytes-rw-r--r--default_images/sd/res/page.pngbin0 -> 537 bytes-rw-r--r--default_images/sd/res/page_h.pngbin0 -> 114 bytes-rw-r--r--default_images/sd/res/pageexcl.pngbin0 -> 505 bytes-rw-r--r--default_images/sd/res/pageexcl_h.pngbin0 -> 108 bytes-rw-r--r--default_images/sd/res/pagemode.pngbin0 -> 219 bytes-rw-r--r--default_images/sd/res/pagemode_h.pngbin0 -> 103 bytes-rw-r--r--default_images/sd/res/pageobjs.pngbin0 -> 645 bytes-rw-r--r--default_images/sd/res/pageobjs_h.pngbin0 -> 140 bytes-rw-r--r--default_images/sd/res/pagobjex.pngbin0 -> 601 bytes-rw-r--r--default_images/sd/res/pagobjex_h.pngbin0 -> 121 bytes-rw-r--r--default_images/sd/res/pipette.pngbin0 -> 594 bytes-rw-r--r--default_images/sd/res/pipette_h.pngbin0 -> 141 bytes-rw-r--r--default_images/sd/res/placeholder_chart_large.pngbin0 -> 561 bytes-rw-r--r--default_images/sd/res/placeholder_chart_large_hover.pngbin0 -> 560 bytes-rw-r--r--default_images/sd/res/placeholder_chart_small.pngbin0 -> 435 bytes-rw-r--r--default_images/sd/res/placeholder_chart_small_hover.pngbin0 -> 435 bytes-rw-r--r--default_images/sd/res/placeholder_image_large.pngbin0 -> 555 bytes-rw-r--r--default_images/sd/res/placeholder_image_large_hover.pngbin0 -> 555 bytes-rw-r--r--default_images/sd/res/placeholder_image_small.pngbin0 -> 418 bytes-rw-r--r--default_images/sd/res/placeholder_image_small_hover.pngbin0 -> 417 bytes-rw-r--r--default_images/sd/res/placeholder_movie_large.pngbin0 -> 572 bytes-rw-r--r--default_images/sd/res/placeholder_movie_large_hover.pngbin0 -> 572 bytes-rw-r--r--default_images/sd/res/placeholder_movie_small.pngbin0 -> 439 bytes-rw-r--r--default_images/sd/res/placeholder_movie_small_hover.pngbin0 -> 439 bytes-rw-r--r--default_images/sd/res/placeholder_table_large.pngbin0 -> 524 bytes-rw-r--r--default_images/sd/res/placeholder_table_large_hover.pngbin0 -> 524 bytes-rw-r--r--default_images/sd/res/placeholder_table_small.pngbin0 -> 400 bytes-rw-r--r--default_images/sd/res/placeholder_table_small_hover.pngbin0 -> 400 bytes-rw-r--r--default_images/sd/res/playblue_16.pngbin0 -> 712 bytes-rw-r--r--default_images/sd/res/playblue_16_h.pngbin0 -> 131 bytes-rw-r--r--default_images/sd/res/plus_h.pngbin0 -> 228 bytes-rw-r--r--default_images/sd/res/pubdes.pngbin0 -> 2065 bytes-rw-r--r--default_images/sd/res/pubdes2.pngbin0 -> 2250 bytes-rw-r--r--default_images/sd/res/pubdes3.pngbin0 -> 3421 bytes-rw-r--r--default_images/sd/res/pubdes4.pngbin0 -> 3314 bytes-rw-r--r--default_images/sd/res/pubdlg1.pngbin0 -> 11880 bytes-rw-r--r--default_images/sd/res/pubdlg2.pngbin0 -> 11026 bytes-rw-r--r--default_images/sd/res/pubdlg3.pngbin0 -> 13014 bytes-rw-r--r--default_images/sd/res/pubdlg4.pngbin0 -> 10620 bytes-rw-r--r--default_images/sd/res/pubdlg5.pngbin0 -> 13334 bytes-rw-r--r--default_images/sd/res/slide_sorter_command1_large.pngbin0 -> 327 bytes-rw-r--r--default_images/sd/res/slide_sorter_command1_large_hc.pngbin0 -> 348 bytes-rw-r--r--default_images/sd/res/slide_sorter_command1_large_hover.pngbin0 -> 342 bytes-rw-r--r--default_images/sd/res/slide_sorter_command1_large_hover_hc.pngbin0 -> 348 bytes-rw-r--r--default_images/sd/res/slide_sorter_command1_medium.pngbin0 -> 295 bytes-rw-r--r--default_images/sd/res/slide_sorter_command1_medium_hc.pngbin0 -> 309 bytes-rw-r--r--default_images/sd/res/slide_sorter_command1_medium_hover.pngbin0 -> 303 bytes-rw-r--r--default_images/sd/res/slide_sorter_command1_medium_hover_hc.pngbin0 -> 312 bytes-rw-r--r--default_images/sd/res/slide_sorter_command1_small.pngbin0 -> 273 bytes-rw-r--r--default_images/sd/res/slide_sorter_command1_small_hc.pngbin0 -> 284 bytes-rw-r--r--default_images/sd/res/slide_sorter_command1_small_hover.pngbin0 -> 278 bytes-rw-r--r--default_images/sd/res/slide_sorter_command1_small_hover_hc.pngbin0 -> 286 bytes-rw-r--r--default_images/sd/res/slide_sorter_command2_large.pngbin0 -> 348 bytes-rw-r--r--default_images/sd/res/slide_sorter_command2_large_hc.pngbin0 -> 357 bytes-rw-r--r--default_images/sd/res/slide_sorter_command2_large_hover.pngbin0 -> 358 bytes-rw-r--r--default_images/sd/res/slide_sorter_command2_large_hover_hc.pngbin0 -> 366 bytes-rw-r--r--default_images/sd/res/slide_sorter_command2_medium.pngbin0 -> 298 bytes-rw-r--r--default_images/sd/res/slide_sorter_command2_medium_hc.pngbin0 -> 311 bytes-rw-r--r--default_images/sd/res/slide_sorter_command2_medium_hover.pngbin0 -> 311 bytes-rw-r--r--default_images/sd/res/slide_sorter_command2_medium_hover_hc.pngbin0 -> 319 bytes-rw-r--r--default_images/sd/res/slide_sorter_command2_small.pngbin0 -> 284 bytes-rw-r--r--default_images/sd/res/slide_sorter_command2_small_hc.pngbin0 -> 296 bytes-rw-r--r--default_images/sd/res/slide_sorter_command2_small_hover.pngbin0 -> 297 bytes-rw-r--r--default_images/sd/res/slide_sorter_command2_small_hover_hc.pngbin0 -> 305 bytes-rw-r--r--default_images/sd/res/slide_sorter_command2b_large.pngbin0 -> 308 bytes-rw-r--r--default_images/sd/res/slide_sorter_command2b_large_hc.pngbin0 -> 312 bytes-rw-r--r--default_images/sd/res/slide_sorter_command2b_large_hover.pngbin0 -> 311 bytes-rw-r--r--default_images/sd/res/slide_sorter_command2b_large_hover_hc.pngbin0 -> 321 bytes-rw-r--r--default_images/sd/res/slide_sorter_command2b_medium.pngbin0 -> 268 bytes-rw-r--r--default_images/sd/res/slide_sorter_command2b_medium_hc.pngbin0 -> 272 bytes-rw-r--r--default_images/sd/res/slide_sorter_command2b_medium_hover.pngbin0 -> 271 bytes-rw-r--r--default_images/sd/res/slide_sorter_command2b_medium_hover_hc.pngbin0 -> 279 bytes-rw-r--r--default_images/sd/res/slide_sorter_command2b_small.pngbin0 -> 257 bytes-rw-r--r--default_images/sd/res/slide_sorter_command2b_small_hc.pngbin0 -> 260 bytes-rw-r--r--default_images/sd/res/slide_sorter_command2b_small_hover.pngbin0 -> 260 bytes-rw-r--r--default_images/sd/res/slide_sorter_command2b_small_hover_hc.pngbin0 -> 267 bytes-rw-r--r--default_images/sd/res/slide_sorter_command3_large.pngbin0 -> 324 bytes-rw-r--r--default_images/sd/res/slide_sorter_command3_large_hc.pngbin0 -> 328 bytes-rw-r--r--default_images/sd/res/slide_sorter_command3_large_hover.pngbin0 -> 328 bytes-rw-r--r--default_images/sd/res/slide_sorter_command3_large_hover_hc.pngbin0 -> 335 bytes-rw-r--r--default_images/sd/res/slide_sorter_command3_medium.pngbin0 -> 285 bytes-rw-r--r--default_images/sd/res/slide_sorter_command3_medium_hc.pngbin0 -> 289 bytes-rw-r--r--default_images/sd/res/slide_sorter_command3_medium_hover.pngbin0 -> 288 bytes-rw-r--r--default_images/sd/res/slide_sorter_command3_medium_hover_hc.pngbin0 -> 296 bytes-rw-r--r--default_images/sd/res/slide_sorter_command3_small.pngbin0 -> 272 bytes-rw-r--r--default_images/sd/res/slide_sorter_command3_small_hc.pngbin0 -> 276 bytes-rw-r--r--default_images/sd/res/slide_sorter_command3_small_hover.pngbin0 -> 275 bytes-rw-r--r--default_images/sd/res/slide_sorter_command3_small_hover_hc.pngbin0 -> 282 bytes-rw-r--r--default_images/sd/res/slide_sorter_command_background_large.pngbin0 -> 1745 bytes-rw-r--r--default_images/sd/res/slide_sorter_command_background_large_hc.pngbin0 -> 1034 bytes-rw-r--r--default_images/sd/res/slide_sorter_command_background_medium.pngbin0 -> 1349 bytes-rw-r--r--default_images/sd/res/slide_sorter_command_background_medium_hc.pngbin0 -> 991 bytes-rw-r--r--default_images/sd/res/slide_sorter_command_background_small.pngbin0 -> 1142 bytes-rw-r--r--default_images/sd/res/slide_sorter_command_background_small_hc.pngbin0 -> 896 bytes-rw-r--r--default_images/sd/res/slide_sorter_focus_border.pngbin0 -> 361 bytes-rw-r--r--default_images/sd/res/slide_sorter_hide_slide_overlay.pngbin0 -> 562 bytes-rw-r--r--default_images/sd/res/slide_sorter_insert_shadow.pngbin0 -> 215 bytes-rw-r--r--default_images/sd/res/slide_sorter_shadow.pngbin0 -> 337 bytes-rw-r--r--default_images/sd/res/stopplayingblue_16.pngbin0 -> 653 bytes-rw-r--r--default_images/sd/res/stopplayingblue_16_h.pngbin0 -> 123 bytes-rw-r--r--default_images/sd/res/table.pngbin0 -> 1728 bytes-rw-r--r--default_images/sd/res/time_16.pngbin0 -> 830 bytes-rw-r--r--default_images/sd/res/time_16_h.pngbin0 -> 163 bytes-rw-r--r--default_images/sd/res/waiticon.pngbin0 -> 243 bytes-rwxr-xr-xdefault_images/sfx2/res/128x128_calc_doc-p.pngbin0 -> 4802 bytes-rwxr-xr-xdefault_images/sfx2/res/128x128_draw_doc-p.pngbin0 -> 6055 bytes-rwxr-xr-xdefault_images/sfx2/res/128x128_impress_doc-p.pngbin0 -> 6219 bytes-rwxr-xr-xdefault_images/sfx2/res/128x128_math_doc-p.pngbin0 -> 5852 bytes-rwxr-xr-xdefault_images/sfx2/res/128x128_writer_doc-p.pngbin0 -> 3732 bytes-rw-r--r--default_images/sfx2/res/an01.pngbin0 -> 6796 bytes-rw-r--r--default_images/sfx2/res/an02.pngbin0 -> 6125 bytes-rw-r--r--default_images/sfx2/res/an03.pngbin0 -> 5474 bytes-rw-r--r--default_images/sfx2/res/an04.pngbin0 -> 4714 bytes-rw-r--r--default_images/sfx2/res/an05.pngbin0 -> 3872 bytes-rw-r--r--default_images/sfx2/res/an06.pngbin0 -> 2708 bytes-rw-r--r--default_images/sfx2/res/closedoc.pngbin0 -> 309 bytes-rw-r--r--default_images/sfx2/res/closedochc.pngbin0 -> 106 bytes-rw-r--r--default_images/sfx2/res/command.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/deleterow.pngbin0 -> 195 bytes-rw-r--r--default_images/sfx2/res/deleterow_h.pngbin0 -> 109 bytes-rw-r--r--default_images/sfx2/res/dictate.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/doccl.pngbin0 -> 573 bytes-rw-r--r--default_images/sfx2/res/doccl_h.pngbin0 -> 121 bytes-rw-r--r--default_images/sfx2/res/favourite.pngbin0 -> 674 bytes-rw-r--r--default_images/sfx2/res/favourite_big.pngbin0 -> 902 bytes-rw-r--r--default_images/sfx2/res/favourite_big_h.pngbin0 -> 152 bytes-rw-r--r--default_images/sfx2/res/favourite_h.pngbin0 -> 135 bytes-rw-r--r--default_images/sfx2/res/hlpbookclosed.pngbin0 -> 596 bytes-rw-r--r--default_images/sfx2/res/hlpbookclosed_h.pngbin0 -> 173 bytes-rw-r--r--default_images/sfx2/res/hlpbookopen.pngbin0 -> 753 bytes-rw-r--r--default_images/sfx2/res/hlpbookopen_h.pngbin0 -> 199 bytes-rw-r--r--default_images/sfx2/res/hlpdoc.pngbin0 -> 939 bytes-rw-r--r--default_images/sfx2/res/hlpdoc_h.pngbin0 -> 144 bytes-rw-r--r--default_images/sfx2/res/indexoff_big.pngbin0 -> 869 bytes-rw-r--r--default_images/sfx2/res/indexoff_big_h.pngbin0 -> 155 bytes-rw-r--r--default_images/sfx2/res/indexoff_small.pngbin0 -> 674 bytes-rw-r--r--default_images/sfx2/res/indexoff_small_h.pngbin0 -> 138 bytes-rw-r--r--default_images/sfx2/res/indexon_big.pngbin0 -> 838 bytes-rw-r--r--default_images/sfx2/res/indexon_big_h.pngbin0 -> 151 bytes-rw-r--r--default_images/sfx2/res/indexon_small.pngbin0 -> 663 bytes-rw-r--r--default_images/sfx2/res/indexon_small_h.pngbin0 -> 134 bytes-rw-r--r--default_images/sfx2/res/lco.pngbin0 -> 1869 bytes-rw-r--r--default_images/sfx2/res/lmo.pngbin0 -> 1869 bytes-rw-r--r--default_images/sfx2/res/ln01.pngbin0 -> 246 bytes-rw-r--r--default_images/sfx2/res/ln010.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln0100.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln0101.pngbin0 -> 308 bytes-rw-r--r--default_images/sfx2/res/ln0102.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln0103.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln0104.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln0105.pngbin0 -> 1430 bytes-rw-r--r--default_images/sfx2/res/ln0106.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln0107.pngbin0 -> 625 bytes-rw-r--r--default_images/sfx2/res/ln0108.pngbin0 -> 1218 bytes-rw-r--r--default_images/sfx2/res/ln0109.pngbin0 -> 330 bytes-rw-r--r--default_images/sfx2/res/ln011.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln0110.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln0111.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln0112.pngbin0 -> 349 bytes-rw-r--r--default_images/sfx2/res/ln0113.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln0114.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln0115.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln0116.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln0117.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln0118.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln0119.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln012.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln0120.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln0121.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln0122.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln0123.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln0124.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln0125.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln0126.pngbin0 -> 418 bytes-rw-r--r--default_images/sfx2/res/ln013.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln014.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln015.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln016.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln017.pngbin0 -> 444 bytes-rw-r--r--default_images/sfx2/res/ln018.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln019.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln02.pngbin0 -> 625 bytes-rw-r--r--default_images/sfx2/res/ln020.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln021.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln022.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln023.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln024.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln025.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln026.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln027.pngbin0 -> 409 bytes-rw-r--r--default_images/sfx2/res/ln028.pngbin0 -> 581 bytes-rw-r--r--default_images/sfx2/res/ln029.pngbin0 -> 772 bytes-rw-r--r--default_images/sfx2/res/ln03.pngbin0 -> 625 bytes-rw-r--r--default_images/sfx2/res/ln030.pngbin0 -> 648 bytes-rw-r--r--default_images/sfx2/res/ln031.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln032.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln033.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln034.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln035.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln036.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln037.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln038.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln039.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln04.pngbin0 -> 625 bytes-rw-r--r--default_images/sfx2/res/ln040.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln041.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln042.pngbin0 -> 388 bytes-rw-r--r--default_images/sfx2/res/ln043.pngbin0 -> 401 bytes-rw-r--r--default_images/sfx2/res/ln044.pngbin0 -> 322 bytes-rw-r--r--default_images/sfx2/res/ln045.pngbin0 -> 1418 bytes-rw-r--r--default_images/sfx2/res/ln046.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln047.pngbin0 -> 448 bytes-rw-r--r--default_images/sfx2/res/ln048.pngbin0 -> 1315 bytes-rw-r--r--default_images/sfx2/res/ln049.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln05.pngbin0 -> 625 bytes-rw-r--r--default_images/sfx2/res/ln050.pngbin0 -> 1218 bytes-rw-r--r--default_images/sfx2/res/ln051.pngbin0 -> 371 bytes-rw-r--r--default_images/sfx2/res/ln052.pngbin0 -> 1418 bytes-rw-r--r--default_images/sfx2/res/ln053.pngbin0 -> 1315 bytes-rw-r--r--default_images/sfx2/res/ln054.pngbin0 -> 1418 bytes-rw-r--r--default_images/sfx2/res/ln055.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln056.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln057.pngbin0 -> 1418 bytes-rw-r--r--default_images/sfx2/res/ln058.pngbin0 -> 370 bytes-rw-r--r--default_images/sfx2/res/ln059.pngbin0 -> 1430 bytes-rw-r--r--default_images/sfx2/res/ln06.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln060.pngbin0 -> 434 bytes-rw-r--r--default_images/sfx2/res/ln061.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln062.pngbin0 -> 330 bytes-rw-r--r--default_images/sfx2/res/ln063.pngbin0 -> 314 bytes-rw-r--r--default_images/sfx2/res/ln064.pngbin0 -> 349 bytes-rw-r--r--default_images/sfx2/res/ln065.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln066.pngbin0 -> 860 bytes-rw-r--r--default_images/sfx2/res/ln067.pngbin0 -> 1315 bytes-rw-r--r--default_images/sfx2/res/ln068.pngbin0 -> 350 bytes-rw-r--r--default_images/sfx2/res/ln069.pngbin0 -> 1315 bytes-rw-r--r--default_images/sfx2/res/ln07.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln070.pngbin0 -> 1418 bytes-rw-r--r--default_images/sfx2/res/ln071.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln072.pngbin0 -> 332 bytes-rw-r--r--default_images/sfx2/res/ln073.pngbin0 -> 1218 bytes-rw-r--r--default_images/sfx2/res/ln074.pngbin0 -> 1418 bytes-rw-r--r--default_images/sfx2/res/ln075.pngbin0 -> 1418 bytes-rw-r--r--default_images/sfx2/res/ln076.pngbin0 -> 353 bytes-rw-r--r--default_images/sfx2/res/ln077.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln078.pngbin0 -> 551 bytes-rw-r--r--default_images/sfx2/res/ln079.pngbin0 -> 547 bytes-rw-r--r--default_images/sfx2/res/ln08.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln080.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln081.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln082.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln083.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln084.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln085.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln086.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln087.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln088.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln089.pngbin0 -> 860 bytes-rw-r--r--default_images/sfx2/res/ln09.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln090.pngbin0 -> 821 bytes-rw-r--r--default_images/sfx2/res/ln091.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln092.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln093.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln094.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln095.pngbin0 -> 749 bytes-rw-r--r--default_images/sfx2/res/ln096.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln097.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln098.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/ln099.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/lxrun.pngbin0 -> 315 bytes-rw-r--r--default_images/sfx2/res/minus.pngbin0 -> 293 bytes-rw-r--r--default_images/sfx2/res/newex.pngbin0 -> 613 bytes-rw-r--r--default_images/sfx2/res/newex_h.pngbin0 -> 147 bytes-rw-r--r--default_images/sfx2/res/phndial1.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/phndial2.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/phndis.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/phnidle.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/phnring1.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/phnring2.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/phnspk1.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/plus.pngbin0 -> 331 bytes-rw-r--r--default_images/sfx2/res/pr01.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/pr010.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/pr011.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/pr012.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/pr013.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/pr014.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/pr015.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/pr016.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/pr02.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/pr03.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/pr04.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/pr05.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/pr06.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/pr07.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/pr08.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/pr09.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sco.pngbin0 -> 1222 bytes-rwxr-xr-xdefault_images/sfx2/res/signet.pngbin0 -> 4599 bytes-rw-r--r--default_images/sfx2/res/smo.pngbin0 -> 1222 bytes-rw-r--r--default_images/sfx2/res/sn01.pngbin0 -> 454 bytes-rw-r--r--default_images/sfx2/res/sn010.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn0100.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn0101.pngbin0 -> 252 bytes-rw-r--r--default_images/sfx2/res/sn0102.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn0103.pngbin0 -> 265 bytes-rw-r--r--default_images/sfx2/res/sn0104.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn0105.pngbin0 -> 271 bytes-rw-r--r--default_images/sfx2/res/sn0106.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn0107.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn0108.pngbin0 -> 596 bytes-rw-r--r--default_images/sfx2/res/sn0109.pngbin0 -> 268 bytes-rw-r--r--default_images/sfx2/res/sn011.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn0110.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn0111.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn0112.pngbin0 -> 255 bytes-rw-r--r--default_images/sfx2/res/sn0113.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn0114.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn0115.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn0116.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn0117.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn0118.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn0119.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn012.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn0120.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn0121.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn0122.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn0123.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn0124.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn0125.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn0126.pngbin0 -> 253 bytes-rw-r--r--default_images/sfx2/res/sn013.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn014.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn015.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn016.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn017.pngbin0 -> 510 bytes-rw-r--r--default_images/sfx2/res/sn018.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn019.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn02.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn020.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn021.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn022.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn023.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn024.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn025.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn026.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn027.pngbin0 -> 335 bytes-rw-r--r--default_images/sfx2/res/sn028.pngbin0 -> 433 bytes-rw-r--r--default_images/sfx2/res/sn029.pngbin0 -> 534 bytes-rw-r--r--default_images/sfx2/res/sn03.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn030.pngbin0 -> 392 bytes-rw-r--r--default_images/sfx2/res/sn031.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn032.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn033.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn034.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn035.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn036.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn037.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn038.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn039.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn04.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn040.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn041.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn042.pngbin0 -> 272 bytes-rw-r--r--default_images/sfx2/res/sn043.pngbin0 -> 286 bytes-rw-r--r--default_images/sfx2/res/sn044.pngbin0 -> 271 bytes-rw-r--r--default_images/sfx2/res/sn045.pngbin0 -> 725 bytes-rw-r--r--default_images/sfx2/res/sn046.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn047.pngbin0 -> 317 bytes-rw-r--r--default_images/sfx2/res/sn048.pngbin0 -> 701 bytes-rw-r--r--default_images/sfx2/res/sn049.pngbin0 -> 725 bytes-rw-r--r--default_images/sfx2/res/sn05.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn050.pngbin0 -> 596 bytes-rw-r--r--default_images/sfx2/res/sn051.pngbin0 -> 271 bytes-rw-r--r--default_images/sfx2/res/sn052.pngbin0 -> 725 bytes-rw-r--r--default_images/sfx2/res/sn053.pngbin0 -> 701 bytes-rw-r--r--default_images/sfx2/res/sn054.pngbin0 -> 725 bytes-rw-r--r--default_images/sfx2/res/sn055.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn056.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn057.pngbin0 -> 725 bytes-rw-r--r--default_images/sfx2/res/sn058.pngbin0 -> 276 bytes-rw-r--r--default_images/sfx2/res/sn059.pngbin0 -> 271 bytes-rw-r--r--default_images/sfx2/res/sn06.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn060.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn061.pngbin0 -> 265 bytes-rw-r--r--default_images/sfx2/res/sn062.pngbin0 -> 268 bytes-rw-r--r--default_images/sfx2/res/sn063.pngbin0 -> 269 bytes-rw-r--r--default_images/sfx2/res/sn064.pngbin0 -> 255 bytes-rw-r--r--default_images/sfx2/res/sn065.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn066.pngbin0 -> 484 bytes-rw-r--r--default_images/sfx2/res/sn067.pngbin0 -> 701 bytes-rw-r--r--default_images/sfx2/res/sn068.pngbin0 -> 265 bytes-rw-r--r--default_images/sfx2/res/sn069.pngbin0 -> 701 bytes-rw-r--r--default_images/sfx2/res/sn07.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn070.pngbin0 -> 725 bytes-rw-r--r--default_images/sfx2/res/sn071.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn072.pngbin0 -> 267 bytes-rw-r--r--default_images/sfx2/res/sn073.pngbin0 -> 596 bytes-rw-r--r--default_images/sfx2/res/sn074.pngbin0 -> 725 bytes-rw-r--r--default_images/sfx2/res/sn075.pngbin0 -> 725 bytes-rw-r--r--default_images/sfx2/res/sn076.pngbin0 -> 262 bytes-rw-r--r--default_images/sfx2/res/sn077.pngbin0 -> 701 bytes-rw-r--r--default_images/sfx2/res/sn078.pngbin0 -> 314 bytes-rw-r--r--default_images/sfx2/res/sn079.pngbin0 -> 280 bytes-rw-r--r--default_images/sfx2/res/sn08.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn080.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn081.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn082.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn083.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn084.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn085.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn086.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn087.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn088.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn089.pngbin0 -> 484 bytes-rw-r--r--default_images/sfx2/res/sn09.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn090.pngbin0 -> 485 bytes-rw-r--r--default_images/sfx2/res/sn091.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn092.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn093.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn094.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn095.pngbin0 -> 525 bytes-rw-r--r--default_images/sfx2/res/sn096.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn097.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn098.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/sn099.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/speekoff.pngbin0 -> 202 bytes-rw-r--r--default_images/sfx2/res/styfam1.pngbin0 -> 667 bytes-rw-r--r--default_images/sfx2/res/styfam1_h.pngbin0 -> 142 bytes-rw-r--r--default_images/sfx2/res/styfam2.pngbin0 -> 657 bytes-rw-r--r--default_images/sfx2/res/styfam2_h.pngbin0 -> 124 bytes-rw-r--r--default_images/sfx2/res/styfam3.pngbin0 -> 268 bytes-rw-r--r--default_images/sfx2/res/styfam3_h.pngbin0 -> 165 bytes-rw-r--r--default_images/sfx2/res/styfam4.pngbin0 -> 572 bytes-rw-r--r--default_images/sfx2/res/styfam4_h.pngbin0 -> 122 bytes-rw-r--r--default_images/starmath/res/al21801.pngbin0 -> 252 bytes-rw-r--r--default_images/starmath/res/al21802.pngbin0 -> 233 bytes-rw-r--r--default_images/starmath/res/al21803.pngbin0 -> 262 bytes-rw-r--r--default_images/starmath/res/al21804.pngbin0 -> 252 bytes-rw-r--r--default_images/starmath/res/al21805.pngbin0 -> 212 bytes-rw-r--r--default_images/starmath/res/al21806.pngbin0 -> 218 bytes-rw-r--r--default_images/starmath/res/al21808.pngbin0 -> 217 bytes-rw-r--r--default_images/starmath/res/al21809.pngbin0 -> 273 bytes-rw-r--r--default_images/starmath/res/al21810.pngbin0 -> 253 bytes-rw-r--r--default_images/starmath/res/al21811.pngbin0 -> 284 bytes-rw-r--r--default_images/starmath/res/al21812.pngbin0 -> 282 bytes-rw-r--r--default_images/starmath/res/al21813.pngbin0 -> 233 bytes-rw-r--r--default_images/starmath/res/al21814.pngbin0 -> 236 bytes-rw-r--r--default_images/starmath/res/al21821.pngbin0 -> 249 bytes-rw-r--r--default_images/starmath/res/al21822.pngbin0 -> 259 bytes-rw-r--r--default_images/starmath/res/al21823.pngbin0 -> 239 bytes-rw-r--r--default_images/starmath/res/al21824.pngbin0 -> 258 bytes-rw-r--r--default_images/starmath/res/al21825.pngbin0 -> 228 bytes-rw-r--r--default_images/starmath/res/al21826.pngbin0 -> 235 bytes-rw-r--r--default_images/starmath/res/alh21801.pngbin0 -> 155 bytes-rw-r--r--default_images/starmath/res/alh21802.pngbin0 -> 138 bytes-rw-r--r--default_images/starmath/res/alh21803.pngbin0 -> 166 bytes-rw-r--r--default_images/starmath/res/alh21804.pngbin0 -> 153 bytes-rw-r--r--default_images/starmath/res/alh21805.pngbin0 -> 130 bytes-rw-r--r--default_images/starmath/res/alh21806.pngbin0 -> 131 bytes-rw-r--r--default_images/starmath/res/alh21808.pngbin0 -> 138 bytes-rw-r--r--default_images/starmath/res/alh21809.pngbin0 -> 163 bytes-rw-r--r--default_images/starmath/res/alh21810.pngbin0 -> 146 bytes-rw-r--r--default_images/starmath/res/alh21811.pngbin0 -> 173 bytes-rw-r--r--default_images/starmath/res/alh21812.pngbin0 -> 165 bytes-rw-r--r--default_images/starmath/res/alh21813.pngbin0 -> 140 bytes-rw-r--r--default_images/starmath/res/alh21814.pngbin0 -> 142 bytes-rw-r--r--default_images/starmath/res/alh21821.pngbin0 -> 167 bytes-rw-r--r--default_images/starmath/res/alh21822.pngbin0 -> 174 bytes-rw-r--r--default_images/starmath/res/alh21823.pngbin0 -> 136 bytes-rw-r--r--default_images/starmath/res/alh21824.pngbin0 -> 148 bytes-rw-r--r--default_images/starmath/res/alh21825.pngbin0 -> 151 bytes-rw-r--r--default_images/starmath/res/alh21826.pngbin0 -> 152 bytes-rw-r--r--default_images/starmath/res/ar_right.pngbin0 -> 1451 bytes-rw-r--r--default_images/starmath/res/ar_right_h.pngbin0 -> 179 bytes-rw-r--r--default_images/starmath/res/at21701.pngbin0 -> 234 bytes-rw-r--r--default_images/starmath/res/at21702.pngbin0 -> 230 bytes-rw-r--r--default_images/starmath/res/at21703.pngbin0 -> 241 bytes-rw-r--r--default_images/starmath/res/at21704.pngbin0 -> 252 bytes-rw-r--r--default_images/starmath/res/at21705.pngbin0 -> 238 bytes-rw-r--r--default_images/starmath/res/at21706.pngbin0 -> 255 bytes-rw-r--r--default_images/starmath/res/at21707.pngbin0 -> 251 bytes-rw-r--r--default_images/starmath/res/at21708.pngbin0 -> 250 bytes-rw-r--r--default_images/starmath/res/at21709.pngbin0 -> 240 bytes-rw-r--r--default_images/starmath/res/at21710.pngbin0 -> 236 bytes-rw-r--r--default_images/starmath/res/at21711.pngbin0 -> 244 bytes-rw-r--r--default_images/starmath/res/at21712.pngbin0 -> 244 bytes-rw-r--r--default_images/starmath/res/at21713.pngbin0 -> 270 bytes-rw-r--r--default_images/starmath/res/at21714.pngbin0 -> 270 bytes-rw-r--r--default_images/starmath/res/at21715.pngbin0 -> 271 bytes-rw-r--r--default_images/starmath/res/at21716.pngbin0 -> 183 bytes-rw-r--r--default_images/starmath/res/at21717.pngbin0 -> 635 bytes-rw-r--r--default_images/starmath/res/at21718.pngbin0 -> 541 bytes-rw-r--r--default_images/starmath/res/at21719.pngbin0 -> 1473 bytes-rw-r--r--default_images/starmath/res/at21720.pngbin0 -> 1298 bytes-rw-r--r--default_images/starmath/res/at21722.pngbin0 -> 302 bytes-rw-r--r--default_images/starmath/res/at21723.pngbin0 -> 288 bytes-rw-r--r--default_images/starmath/res/at21724.pngbin0 -> 289 bytes-rw-r--r--default_images/starmath/res/ath21701.pngbin0 -> 211 bytes-rw-r--r--default_images/starmath/res/ath21702.pngbin0 -> 210 bytes-rw-r--r--default_images/starmath/res/ath21703.pngbin0 -> 222 bytes-rw-r--r--default_images/starmath/res/ath21704.pngbin0 -> 214 bytes-rw-r--r--default_images/starmath/res/ath21705.pngbin0 -> 203 bytes-rw-r--r--default_images/starmath/res/ath21706.pngbin0 -> 218 bytes-rw-r--r--default_images/starmath/res/ath21707.pngbin0 -> 212 bytes-rw-r--r--default_images/starmath/res/ath21708.pngbin0 -> 219 bytes-rw-r--r--default_images/starmath/res/ath21709.pngbin0 -> 216 bytes-rw-r--r--default_images/starmath/res/ath21710.pngbin0 -> 214 bytes-rw-r--r--default_images/starmath/res/ath21711.pngbin0 -> 219 bytes-rw-r--r--default_images/starmath/res/ath21712.pngbin0 -> 220 bytes-rw-r--r--default_images/starmath/res/ath21713.pngbin0 -> 235 bytes-rw-r--r--default_images/starmath/res/ath21714.pngbin0 -> 235 bytes-rw-r--r--default_images/starmath/res/ath21715.pngbin0 -> 225 bytes-rw-r--r--default_images/starmath/res/ath21716.pngbin0 -> 219 bytes-rw-r--r--default_images/starmath/res/ath21717.pngbin0 -> 145 bytes-rw-r--r--default_images/starmath/res/ath21718.pngbin0 -> 155 bytes-rw-r--r--default_images/starmath/res/ath21719.pngbin0 -> 176 bytes-rw-r--r--default_images/starmath/res/ath21720.pngbin0 -> 157 bytes-rw-r--r--default_images/starmath/res/ath21722.pngbin0 -> 261 bytes-rw-r--r--default_images/starmath/res/ath21723.pngbin0 -> 260 bytes-rw-r--r--default_images/starmath/res/ath21724.pngbin0 -> 256 bytes-rw-r--r--default_images/starmath/res/bi21301.pngbin0 -> 246 bytes-rw-r--r--default_images/starmath/res/bi21302.pngbin0 -> 239 bytes-rw-r--r--default_images/starmath/res/bi21303.pngbin0 -> 242 bytes-rw-r--r--default_images/starmath/res/bi21304.pngbin0 -> 228 bytes-rw-r--r--default_images/starmath/res/bi21305.pngbin0 -> 233 bytes-rw-r--r--default_images/starmath/res/bi21306.pngbin0 -> 234 bytes-rw-r--r--default_images/starmath/res/bi21307.pngbin0 -> 244 bytes-rw-r--r--default_images/starmath/res/bi21308.pngbin0 -> 241 bytes-rw-r--r--default_images/starmath/res/bi21309.pngbin0 -> 233 bytes-rw-r--r--default_images/starmath/res/bi21310.pngbin0 -> 225 bytes-rw-r--r--default_images/starmath/res/bi21311.pngbin0 -> 243 bytes-rw-r--r--default_images/starmath/res/bi21312.pngbin0 -> 250 bytes-rw-r--r--default_images/starmath/res/bi21313.pngbin0 -> 232 bytes-rw-r--r--default_images/starmath/res/bi21314.pngbin0 -> 231 bytes-rw-r--r--default_images/starmath/res/bi21315.pngbin0 -> 230 bytes-rw-r--r--default_images/starmath/res/bi21316.pngbin0 -> 243 bytes-rw-r--r--default_images/starmath/res/bi21322.pngbin0 -> 225 bytes-rw-r--r--default_images/starmath/res/bi21323.pngbin0 -> 241 bytes-rw-r--r--default_images/starmath/res/bi21324.pngbin0 -> 250 bytes-rw-r--r--default_images/starmath/res/bi21325.pngbin0 -> 247 bytes-rw-r--r--default_images/starmath/res/bi21326.pngbin0 -> 245 bytes-rw-r--r--default_images/starmath/res/bih21301.pngbin0 -> 143 bytes-rw-r--r--default_images/starmath/res/bih21302.pngbin0 -> 151 bytes-rw-r--r--default_images/starmath/res/bih21303.pngbin0 -> 145 bytes-rw-r--r--default_images/starmath/res/bih21304.pngbin0 -> 229 bytes-rw-r--r--default_images/starmath/res/bih21305.pngbin0 -> 149 bytes-rw-r--r--default_images/starmath/res/bih21306.pngbin0 -> 148 bytes-rw-r--r--default_images/starmath/res/bih21307.pngbin0 -> 245 bytes-rw-r--r--default_images/starmath/res/bih21308.pngbin0 -> 234 bytes-rw-r--r--default_images/starmath/res/bih21309.pngbin0 -> 247 bytes-rw-r--r--default_images/starmath/res/bih21310.pngbin0 -> 246 bytes-rw-r--r--default_images/starmath/res/bih21311.pngbin0 -> 235 bytes-rw-r--r--default_images/starmath/res/bih21312.pngbin0 -> 243 bytes-rw-r--r--default_images/starmath/res/bih21313.pngbin0 -> 240 bytes-rw-r--r--default_images/starmath/res/bih21314.pngbin0 -> 241 bytes-rw-r--r--default_images/starmath/res/bih21315.pngbin0 -> 235 bytes-rw-r--r--default_images/starmath/res/bih21316.pngbin0 -> 238 bytes-rw-r--r--default_images/starmath/res/bih21322.pngbin0 -> 231 bytes-rw-r--r--default_images/starmath/res/bih21323.pngbin0 -> 253 bytes-rw-r--r--default_images/starmath/res/bih21324.pngbin0 -> 238 bytes-rw-r--r--default_images/starmath/res/bih21325.pngbin0 -> 242 bytes-rw-r--r--default_images/starmath/res/bih21326.pngbin0 -> 235 bytes-rw-r--r--default_images/starmath/res/co21901.pngbin0 -> 654 bytes-rw-r--r--default_images/starmath/res/co21902.pngbin0 -> 151 bytes-rw-r--r--default_images/starmath/res/co21903.pngbin0 -> 151 bytes-rw-r--r--default_images/starmath/res/co21904.pngbin0 -> 229 bytes-rw-r--r--default_images/starmath/res/co21905.pngbin0 -> 211 bytes-rw-r--r--default_images/starmath/res/co21906.pngbin0 -> 240 bytes-rw-r--r--default_images/starmath/res/co21907.pngbin0 -> 252 bytes-rw-r--r--default_images/starmath/res/co21908.pngbin0 -> 238 bytes-rw-r--r--default_images/starmath/res/co21909.pngbin0 -> 250 bytes-rw-r--r--default_images/starmath/res/co21910.pngbin0 -> 276 bytes-rw-r--r--default_images/starmath/res/co21911.pngbin0 -> 257 bytes-rw-r--r--default_images/starmath/res/co21912.pngbin0 -> 231 bytes-rw-r--r--default_images/starmath/res/co21916.pngbin0 -> 239 bytes-rw-r--r--default_images/starmath/res/co21917.pngbin0 -> 242 bytes-rw-r--r--default_images/starmath/res/co21918.pngbin0 -> 241 bytes-rw-r--r--default_images/starmath/res/coh21901.pngbin0 -> 122 bytes-rw-r--r--default_images/starmath/res/coh21902.pngbin0 -> 101 bytes-rw-r--r--default_images/starmath/res/coh21903.pngbin0 -> 101 bytes-rw-r--r--default_images/starmath/res/coh21904.pngbin0 -> 229 bytes-rw-r--r--default_images/starmath/res/coh21905.pngbin0 -> 206 bytes-rw-r--r--default_images/starmath/res/coh21906.pngbin0 -> 238 bytes-rw-r--r--default_images/starmath/res/coh21907.pngbin0 -> 248 bytes-rw-r--r--default_images/starmath/res/coh21908.pngbin0 -> 234 bytes-rw-r--r--default_images/starmath/res/coh21909.pngbin0 -> 218 bytes-rw-r--r--default_images/starmath/res/coh21910.pngbin0 -> 238 bytes-rw-r--r--default_images/starmath/res/coh21911.pngbin0 -> 231 bytes-rw-r--r--default_images/starmath/res/coh21912.pngbin0 -> 230 bytes-rw-r--r--default_images/starmath/res/coh21916.pngbin0 -> 227 bytes-rw-r--r--default_images/starmath/res/coh21917.pngbin0 -> 228 bytes-rw-r--r--default_images/starmath/res/coh21918.pngbin0 -> 233 bytes-rw-r--r--default_images/starmath/res/dist101.pngbin0 -> 349 bytes-rw-r--r--default_images/starmath/res/dist101_h.pngbin0 -> 225 bytes-rw-r--r--default_images/starmath/res/dist102.pngbin0 -> 342 bytes-rw-r--r--default_images/starmath/res/dist102_h.pngbin0 -> 222 bytes-rw-r--r--default_images/starmath/res/dist103.pngbin0 -> 351 bytes-rw-r--r--default_images/starmath/res/dist103_h.pngbin0 -> 223 bytes-rw-r--r--default_images/starmath/res/dist104.pngbin0 -> 351 bytes-rw-r--r--default_images/starmath/res/dist104_h.pngbin0 -> 226 bytes-rw-r--r--default_images/starmath/res/dist11.pngbin0 -> 373 bytes-rw-r--r--default_images/starmath/res/dist11_h.pngbin0 -> 246 bytes-rw-r--r--default_images/starmath/res/dist12.pngbin0 -> 497 bytes-rw-r--r--default_images/starmath/res/dist12_h.pngbin0 -> 329 bytes-rw-r--r--default_images/starmath/res/dist13.pngbin0 -> 458 bytes-rw-r--r--default_images/starmath/res/dist13_h.pngbin0 -> 293 bytes-rw-r--r--default_images/starmath/res/dist21.pngbin0 -> 537 bytes-rw-r--r--default_images/starmath/res/dist21_h.pngbin0 -> 377 bytes-rw-r--r--default_images/starmath/res/dist22.pngbin0 -> 523 bytes-rw-r--r--default_images/starmath/res/dist22_h.pngbin0 -> 365 bytes-rw-r--r--default_images/starmath/res/dist31.pngbin0 -> 457 bytes-rw-r--r--default_images/starmath/res/dist31_h.pngbin0 -> 295 bytes-rw-r--r--default_images/starmath/res/dist32.pngbin0 -> 459 bytes-rw-r--r--default_images/starmath/res/dist32_h.pngbin0 -> 294 bytes-rw-r--r--default_images/starmath/res/dist41.pngbin0 -> 442 bytes-rw-r--r--default_images/starmath/res/dist41_h.pngbin0 -> 287 bytes-rw-r--r--default_images/starmath/res/dist42.pngbin0 -> 454 bytes-rw-r--r--default_images/starmath/res/dist42_h.pngbin0 -> 291 bytes-rw-r--r--default_images/starmath/res/dist51.pngbin0 -> 511 bytes-rw-r--r--default_images/starmath/res/dist51_h.pngbin0 -> 304 bytes-rw-r--r--default_images/starmath/res/dist52.pngbin0 -> 489 bytes-rw-r--r--default_images/starmath/res/dist52_h.pngbin0 -> 289 bytes-rw-r--r--default_images/starmath/res/dist61.pngbin0 -> 475 bytes-rw-r--r--default_images/starmath/res/dist61_h.pngbin0 -> 325 bytes-rw-r--r--default_images/starmath/res/dist62.pngbin0 -> 433 bytes-rw-r--r--default_images/starmath/res/dist62_h.pngbin0 -> 305 bytes-rw-r--r--default_images/starmath/res/dist71.pngbin0 -> 448 bytes-rw-r--r--default_images/starmath/res/dist71_h.pngbin0 -> 313 bytes-rw-r--r--default_images/starmath/res/dist72.pngbin0 -> 444 bytes-rw-r--r--default_images/starmath/res/dist72_h.pngbin0 -> 315 bytes-rw-r--r--default_images/starmath/res/dist81.pngbin0 -> 472 bytes-rw-r--r--default_images/starmath/res/dist81_h.pngbin0 -> 341 bytes-rw-r--r--default_images/starmath/res/dist82.pngbin0 -> 471 bytes-rw-r--r--default_images/starmath/res/dist82_h.pngbin0 -> 307 bytes-rw-r--r--default_images/starmath/res/dist91.pngbin0 -> 484 bytes-rw-r--r--default_images/starmath/res/dist91_h.pngbin0 -> 328 bytes-rw-r--r--default_images/starmath/res/dist92.pngbin0 -> 501 bytes-rw-r--r--default_images/starmath/res/dist92_h.pngbin0 -> 353 bytes-rw-r--r--default_images/starmath/res/fo21601.pngbin0 -> 229 bytes-rw-r--r--default_images/starmath/res/fo21602.pngbin0 -> 225 bytes-rw-r--r--default_images/starmath/res/fo21603.pngbin0 -> 229 bytes-rw-r--r--default_images/starmath/res/fo21604.pngbin0 -> 229 bytes-rw-r--r--default_images/starmath/res/fo21605.pngbin0 -> 243 bytes-rw-r--r--default_images/starmath/res/fo21606.pngbin0 -> 252 bytes-rw-r--r--default_images/starmath/res/fo21607.pngbin0 -> 267 bytes-rw-r--r--default_images/starmath/res/fo21609.pngbin0 -> 260 bytes-rw-r--r--default_images/starmath/res/fo21610.pngbin0 -> 292 bytes-rw-r--r--default_images/starmath/res/fo21611.pngbin0 -> 296 bytes-rw-r--r--default_images/starmath/res/fo21613.pngbin0 -> 280 bytes-rw-r--r--default_images/starmath/res/fo21614.pngbin0 -> 262 bytes-rw-r--r--default_images/starmath/res/fo21615.pngbin0 -> 265 bytes-rw-r--r--default_images/starmath/res/foh21601.pngbin0 -> 222 bytes-rw-r--r--default_images/starmath/res/foh21602.pngbin0 -> 241 bytes-rw-r--r--default_images/starmath/res/foh21603.pngbin0 -> 218 bytes-rw-r--r--default_images/starmath/res/foh21604.pngbin0 -> 217 bytes-rw-r--r--default_images/starmath/res/foh21605.pngbin0 -> 232 bytes-rw-r--r--default_images/starmath/res/foh21606.pngbin0 -> 237 bytes-rw-r--r--default_images/starmath/res/foh21607.pngbin0 -> 242 bytes-rw-r--r--default_images/starmath/res/foh21609.pngbin0 -> 275 bytes-rw-r--r--default_images/starmath/res/foh21610.pngbin0 -> 274 bytes-rw-r--r--default_images/starmath/res/foh21611.pngbin0 -> 277 bytes-rw-r--r--default_images/starmath/res/foh21613.pngbin0 -> 269 bytes-rw-r--r--default_images/starmath/res/foh21614.pngbin0 -> 246 bytes-rw-r--r--default_images/starmath/res/foh21615.pngbin0 -> 244 bytes-rw-r--r--default_images/starmath/res/fu21501.pngbin0 -> 210 bytes-rw-r--r--default_images/starmath/res/fu21502.pngbin0 -> 224 bytes-rw-r--r--default_images/starmath/res/fu21503.pngbin0 -> 223 bytes-rw-r--r--default_images/starmath/res/fu21504.pngbin0 -> 239 bytes-rw-r--r--default_images/starmath/res/fu21505.pngbin0 -> 219 bytes-rw-r--r--default_images/starmath/res/fu21506.pngbin0 -> 179 bytes-rw-r--r--default_images/starmath/res/fu21507.pngbin0 -> 223 bytes-rw-r--r--default_images/starmath/res/fu21508.pngbin0 -> 204 bytes-rw-r--r--default_images/starmath/res/fu21509.pngbin0 -> 210 bytes-rw-r--r--default_images/starmath/res/fu21510.pngbin0 -> 200 bytes-rw-r--r--default_images/starmath/res/fu21511.pngbin0 -> 211 bytes-rw-r--r--default_images/starmath/res/fu21512.pngbin0 -> 224 bytes-rw-r--r--default_images/starmath/res/fu21513.pngbin0 -> 217 bytes-rw-r--r--default_images/starmath/res/fu21514.pngbin0 -> 215 bytes-rw-r--r--default_images/starmath/res/fu21515.pngbin0 -> 210 bytes-rw-r--r--default_images/starmath/res/fu21516.pngbin0 -> 224 bytes-rw-r--r--default_images/starmath/res/fu21517.pngbin0 -> 237 bytes-rw-r--r--default_images/starmath/res/fu21518.pngbin0 -> 226 bytes-rw-r--r--default_images/starmath/res/fu21519.pngbin0 -> 234 bytes-rw-r--r--default_images/starmath/res/fu21520.pngbin0 -> 241 bytes-rw-r--r--default_images/starmath/res/fu21521.pngbin0 -> 241 bytes-rw-r--r--default_images/starmath/res/fu21522.pngbin0 -> 237 bytes-rw-r--r--default_images/starmath/res/fu21523.pngbin0 -> 226 bytes-rw-r--r--default_images/starmath/res/fu21524.pngbin0 -> 243 bytes-rw-r--r--default_images/starmath/res/fu21908.pngbin0 -> 248 bytes-rw-r--r--default_images/starmath/res/fuh21501.pngbin0 -> 188 bytes-rw-r--r--default_images/starmath/res/fuh21502.pngbin0 -> 225 bytes-rw-r--r--default_images/starmath/res/fuh21503.pngbin0 -> 235 bytes-rw-r--r--default_images/starmath/res/fuh21504.pngbin0 -> 249 bytes-rw-r--r--default_images/starmath/res/fuh21505.pngbin0 -> 213 bytes-rw-r--r--default_images/starmath/res/fuh21506.pngbin0 -> 110 bytes-rw-r--r--default_images/starmath/res/fuh21507.pngbin0 -> 138 bytes-rw-r--r--default_images/starmath/res/fuh21508.pngbin0 -> 130 bytes-rw-r--r--default_images/starmath/res/fuh21509.pngbin0 -> 131 bytes-rw-r--r--default_images/starmath/res/fuh21510.pngbin0 -> 132 bytes-rw-r--r--default_images/starmath/res/fuh21511.pngbin0 -> 128 bytes-rw-r--r--default_images/starmath/res/fuh21512.pngbin0 -> 130 bytes-rw-r--r--default_images/starmath/res/fuh21513.pngbin0 -> 132 bytes-rw-r--r--default_images/starmath/res/fuh21514.pngbin0 -> 140 bytes-rw-r--r--default_images/starmath/res/fuh21515.pngbin0 -> 134 bytes-rw-r--r--default_images/starmath/res/fuh21516.pngbin0 -> 136 bytes-rw-r--r--default_images/starmath/res/fuh21517.pngbin0 -> 139 bytes-rw-r--r--default_images/starmath/res/fuh21518.pngbin0 -> 142 bytes-rw-r--r--default_images/starmath/res/fuh21519.pngbin0 -> 139 bytes-rw-r--r--default_images/starmath/res/fuh21520.pngbin0 -> 136 bytes-rw-r--r--default_images/starmath/res/fuh21521.pngbin0 -> 145 bytes-rw-r--r--default_images/starmath/res/fuh21522.pngbin0 -> 152 bytes-rw-r--r--default_images/starmath/res/fuh21523.pngbin0 -> 145 bytes-rw-r--r--default_images/starmath/res/fuh21524.pngbin0 -> 145 bytes-rw-r--r--default_images/starmath/res/fuh21908.pngbin0 -> 228 bytes-rw-r--r--default_images/starmath/res/im21101.pngbin0 -> 300 bytes-rw-r--r--default_images/starmath/res/im21102.pngbin0 -> 233 bytes-rw-r--r--default_images/starmath/res/im21103.pngbin0 -> 256 bytes-rw-r--r--default_images/starmath/res/im21104.pngbin0 -> 277 bytes-rw-r--r--default_images/starmath/res/im21105.pngbin0 -> 270 bytes-rw-r--r--default_images/starmath/res/im21106.pngbin0 -> 255 bytes-rw-r--r--default_images/starmath/res/im21107.pngbin0 -> 286 bytes-rw-r--r--default_images/starmath/res/im21108.pngbin0 -> 1243 bytes-rw-r--r--default_images/starmath/res/im21117.pngbin0 -> 261 bytes-rw-r--r--default_images/starmath/res/imh21101.pngbin0 -> 293 bytes-rw-r--r--default_images/starmath/res/imh21102.pngbin0 -> 247 bytes-rw-r--r--default_images/starmath/res/imh21103.pngbin0 -> 227 bytes-rw-r--r--default_images/starmath/res/imh21104.pngbin0 -> 275 bytes-rw-r--r--default_images/starmath/res/imh21105.pngbin0 -> 250 bytes-rw-r--r--default_images/starmath/res/imh21106.pngbin0 -> 218 bytes-rw-r--r--default_images/starmath/res/imh21107.pngbin0 -> 168 bytes-rw-r--r--default_images/starmath/res/imh21108.pngbin0 -> 218 bytes-rw-r--r--default_images/starmath/res/imh21117.pngbin0 -> 247 bytes-rw-r--r--default_images/starmath/res/mi21608.pngbin0 -> 201 bytes-rw-r--r--default_images/starmath/res/mi21612.pngbin0 -> 251 bytes-rw-r--r--default_images/starmath/res/mi22003.pngbin0 -> 248 bytes-rw-r--r--default_images/starmath/res/mi22004.pngbin0 -> 253 bytes-rw-r--r--default_images/starmath/res/mi22005.pngbin0 -> 231 bytes-rw-r--r--default_images/starmath/res/mi22006.pngbin0 -> 248 bytes-rw-r--r--default_images/starmath/res/mi22007.pngbin0 -> 264 bytes-rw-r--r--default_images/starmath/res/mi22008.pngbin0 -> 154 bytes-rw-r--r--default_images/starmath/res/mi22009.pngbin0 -> 172 bytes-rw-r--r--default_images/starmath/res/mi22010.pngbin0 -> 170 bytes-rw-r--r--default_images/starmath/res/mi22011.pngbin0 -> 154 bytes-rw-r--r--default_images/starmath/res/mi22012.pngbin0 -> 157 bytes-rw-r--r--default_images/starmath/res/mi22013.pngbin0 -> 252 bytes-rw-r--r--default_images/starmath/res/mi22014.pngbin0 -> 234 bytes-rw-r--r--default_images/starmath/res/mi22015.pngbin0 -> 235 bytes-rw-r--r--default_images/starmath/res/mi22016.pngbin0 -> 591 bytes-rw-r--r--default_images/starmath/res/mi22017.pngbin0 -> 604 bytes-rw-r--r--default_images/starmath/res/mi22018.pngbin0 -> 586 bytes-rw-r--r--default_images/starmath/res/mi22019.pngbin0 -> 599 bytes-rw-r--r--default_images/starmath/res/mih21608.pngbin0 -> 170 bytes-rw-r--r--default_images/starmath/res/mih21612.pngbin0 -> 226 bytes-rw-r--r--default_images/starmath/res/mih22003.pngbin0 -> 230 bytes-rw-r--r--default_images/starmath/res/mih22004.pngbin0 -> 235 bytes-rw-r--r--default_images/starmath/res/mih22005.pngbin0 -> 201 bytes-rw-r--r--default_images/starmath/res/mih22006.pngbin0 -> 223 bytes-rw-r--r--default_images/starmath/res/mih22007.pngbin0 -> 236 bytes-rw-r--r--default_images/starmath/res/mih22008.pngbin0 -> 144 bytes-rw-r--r--default_images/starmath/res/mih22009.pngbin0 -> 154 bytes-rw-r--r--default_images/starmath/res/mih22010.pngbin0 -> 150 bytes-rw-r--r--default_images/starmath/res/mih22011.pngbin0 -> 145 bytes-rw-r--r--default_images/starmath/res/mih22012.pngbin0 -> 147 bytes-rw-r--r--default_images/starmath/res/mih22013.pngbin0 -> 206 bytes-rw-r--r--default_images/starmath/res/mih22014.pngbin0 -> 224 bytes-rw-r--r--default_images/starmath/res/mih22015.pngbin0 -> 217 bytes-rw-r--r--default_images/starmath/res/mih22016.pngbin0 -> 113 bytes-rw-r--r--default_images/starmath/res/mih22017.pngbin0 -> 116 bytes-rw-r--r--default_images/starmath/res/mih22018.pngbin0 -> 119 bytes-rw-r--r--default_images/starmath/res/mih22019.pngbin0 -> 122 bytes-rw-r--r--default_images/starmath/res/op21401.pngbin0 -> 256 bytes-rw-r--r--default_images/starmath/res/op21402.pngbin0 -> 254 bytes-rw-r--r--default_images/starmath/res/op21403.pngbin0 -> 252 bytes-rw-r--r--default_images/starmath/res/op21405.pngbin0 -> 258 bytes-rw-r--r--default_images/starmath/res/op21406.pngbin0 -> 256 bytes-rw-r--r--default_images/starmath/res/op21407.pngbin0 -> 244 bytes-rw-r--r--default_images/starmath/res/op21408.pngbin0 -> 251 bytes-rw-r--r--default_images/starmath/res/op21409.pngbin0 -> 267 bytes-rw-r--r--default_images/starmath/res/op21410.pngbin0 -> 261 bytes-rw-r--r--default_images/starmath/res/op21411.pngbin0 -> 266 bytes-rw-r--r--default_images/starmath/res/op21412.pngbin0 -> 257 bytes-rw-r--r--default_images/starmath/res/op21413.pngbin0 -> 268 bytes-rw-r--r--default_images/starmath/res/op21414.pngbin0 -> 267 bytes-rw-r--r--default_images/starmath/res/op21415.pngbin0 -> 270 bytes-rw-r--r--default_images/starmath/res/op21416.pngbin0 -> 263 bytes-rw-r--r--default_images/starmath/res/op21417.pngbin0 -> 228 bytes-rw-r--r--default_images/starmath/res/op21418.pngbin0 -> 241 bytes-rw-r--r--default_images/starmath/res/op21419.pngbin0 -> 256 bytes-rw-r--r--default_images/starmath/res/op21420.pngbin0 -> 241 bytes-rw-r--r--default_images/starmath/res/op21421.pngbin0 -> 235 bytes-rw-r--r--default_images/starmath/res/op22001.pngbin0 -> 246 bytes-rw-r--r--default_images/starmath/res/op22002.pngbin0 -> 253 bytes-rw-r--r--default_images/starmath/res/oph21401.pngbin0 -> 226 bytes-rw-r--r--default_images/starmath/res/oph21402.pngbin0 -> 226 bytes-rw-r--r--default_images/starmath/res/oph21403.pngbin0 -> 232 bytes-rw-r--r--default_images/starmath/res/oph21405.pngbin0 -> 242 bytes-rw-r--r--default_images/starmath/res/oph21406.pngbin0 -> 233 bytes-rw-r--r--default_images/starmath/res/oph21407.pngbin0 -> 244 bytes-rw-r--r--default_images/starmath/res/oph21408.pngbin0 -> 250 bytes-rw-r--r--default_images/starmath/res/oph21409.pngbin0 -> 232 bytes-rw-r--r--default_images/starmath/res/oph21410.pngbin0 -> 231 bytes-rw-r--r--default_images/starmath/res/oph21411.pngbin0 -> 230 bytes-rw-r--r--default_images/starmath/res/oph21412.pngbin0 -> 233 bytes-rw-r--r--default_images/starmath/res/oph21413.pngbin0 -> 243 bytes-rw-r--r--default_images/starmath/res/oph21414.pngbin0 -> 245 bytes-rw-r--r--default_images/starmath/res/oph21415.pngbin0 -> 240 bytes-rw-r--r--default_images/starmath/res/oph21416.pngbin0 -> 241 bytes-rw-r--r--default_images/starmath/res/oph21417.pngbin0 -> 221 bytes-rw-r--r--default_images/starmath/res/oph21418.pngbin0 -> 200 bytes-rw-r--r--default_images/starmath/res/oph21419.pngbin0 -> 227 bytes-rw-r--r--default_images/starmath/res/oph21420.pngbin0 -> 220 bytes-rw-r--r--default_images/starmath/res/oph21421.pngbin0 -> 209 bytes-rw-r--r--default_images/starmath/res/oph22001.pngbin0 -> 233 bytes-rw-r--r--default_images/starmath/res/oph22002.pngbin0 -> 226 bytes-rw-r--r--default_images/starmath/res/un21201.pngbin0 -> 220 bytes-rw-r--r--default_images/starmath/res/un21202.pngbin0 -> 215 bytes-rw-r--r--default_images/starmath/res/un21203.pngbin0 -> 219 bytes-rw-r--r--default_images/starmath/res/un21204.pngbin0 -> 224 bytes-rw-r--r--default_images/starmath/res/un21205.pngbin0 -> 236 bytes-rw-r--r--default_images/starmath/res/un21206.pngbin0 -> 242 bytes-rw-r--r--default_images/starmath/res/un21207.pngbin0 -> 229 bytes-rw-r--r--default_images/starmath/res/un21208.pngbin0 -> 248 bytes-rw-r--r--default_images/starmath/res/un21209.pngbin0 -> 234 bytes-rw-r--r--default_images/starmath/res/un21210.pngbin0 -> 255 bytes-rw-r--r--default_images/starmath/res/un21211.pngbin0 -> 246 bytes-rw-r--r--default_images/starmath/res/un21212.pngbin0 -> 264 bytes-rw-r--r--default_images/starmath/res/un21213.pngbin0 -> 219 bytes-rw-r--r--default_images/starmath/res/un21214.pngbin0 -> 230 bytes-rw-r--r--default_images/starmath/res/un21215.pngbin0 -> 240 bytes-rw-r--r--default_images/starmath/res/un21221.pngbin0 -> 239 bytes-rw-r--r--default_images/starmath/res/unh21201.pngbin0 -> 203 bytes-rw-r--r--default_images/starmath/res/unh21202.pngbin0 -> 201 bytes-rw-r--r--default_images/starmath/res/unh21203.pngbin0 -> 205 bytes-rw-r--r--default_images/starmath/res/unh21204.pngbin0 -> 212 bytes-rw-r--r--default_images/starmath/res/unh21205.pngbin0 -> 225 bytes-rw-r--r--default_images/starmath/res/unh21206.pngbin0 -> 218 bytes-rw-r--r--default_images/starmath/res/unh21207.pngbin0 -> 238 bytes-rw-r--r--default_images/starmath/res/unh21208.pngbin0 -> 244 bytes-rw-r--r--default_images/starmath/res/unh21209.pngbin0 -> 220 bytes-rw-r--r--default_images/starmath/res/unh21210.pngbin0 -> 220 bytes-rw-r--r--default_images/starmath/res/unh21211.pngbin0 -> 232 bytes-rw-r--r--default_images/starmath/res/unh21212.pngbin0 -> 236 bytes-rw-r--r--default_images/starmath/res/unh21213.pngbin0 -> 197 bytes-rw-r--r--default_images/starmath/res/unh21214.pngbin0 -> 229 bytes-rw-r--r--default_images/starmath/res/unh21215.pngbin0 -> 227 bytes-rw-r--r--default_images/starmath/res/unh21221.pngbin0 -> 231 bytes-rw-r--r--default_images/svtools/res/back_large.pngbin0 -> 1042 bytes-rw-r--r--default_images/svtools/res/back_large_h.pngbin0 -> 149 bytes-rw-r--r--default_images/svtools/res/back_small.pngbin0 -> 526 bytes-rw-r--r--default_images/svtools/res/back_small_h.pngbin0 -> 164 bytes-rw-r--r--default_images/svtools/res/bmpfont.pngbin0 -> 737 bytes-rw-r--r--default_images/svtools/res/bmpfont_h.pngbin0 -> 161 bytes-rw-r--r--default_images/svtools/res/closer.pngbin0 -> 309 bytes-rw-r--r--default_images/svtools/res/collate.pngbin0 -> 2146 bytes-rw-r--r--default_images/svtools/res/collate_h.pngbin0 -> 271 bytes-rw-r--r--default_images/svtools/res/ed01.pngbin0 -> 397 bytes-rw-r--r--default_images/svtools/res/ed02.pngbin0 -> 432 bytes-rw-r--r--default_images/svtools/res/ed03.pngbin0 -> 412 bytes-rw-r--r--default_images/svtools/res/ed04.pngbin0 -> 402 bytes-rw-r--r--default_images/svtools/res/ed05.pngbin0 -> 536 bytes-rw-r--r--default_images/svtools/res/ed06.pngbin0 -> 404 bytes-rw-r--r--default_images/svtools/res/ed07.pngbin0 -> 540 bytes-rw-r--r--default_images/svtools/res/ed08.pngbin0 -> 351 bytes-rw-r--r--default_images/svtools/res/ed09.pngbin0 -> 126 bytes-rw-r--r--default_images/svtools/res/edh01.pngbin0 -> 107 bytes-rw-r--r--default_images/svtools/res/edh02.pngbin0 -> 132 bytes-rw-r--r--default_images/svtools/res/edh03.pngbin0 -> 110 bytes-rw-r--r--default_images/svtools/res/edh04.pngbin0 -> 119 bytes-rw-r--r--default_images/svtools/res/edh05.pngbin0 -> 119 bytes-rw-r--r--default_images/svtools/res/edh06.pngbin0 -> 112 bytes-rw-r--r--default_images/svtools/res/edh07.pngbin0 -> 128 bytes-rw-r--r--default_images/svtools/res/edh08.pngbin0 -> 102 bytes-rw-r--r--default_images/svtools/res/edh09.pngbin0 -> 161 bytes-rw-r--r--default_images/svtools/res/folder.pngbin0 -> 436 bytes-rw-r--r--default_images/svtools/res/helpagent.pngbin0 -> 3036 bytes-rw-r--r--default_images/svtools/res/info_large.pngbin0 -> 755 bytes-rw-r--r--default_images/svtools/res/info_large_h.pngbin0 -> 314 bytes-rw-r--r--default_images/svtools/res/info_small.pngbin0 -> 479 bytes-rw-r--r--default_images/svtools/res/info_small_h.pngbin0 -> 259 bytes-rw-r--r--default_images/svtools/res/my_docs.pngbin0 -> 1285 bytes-rw-r--r--default_images/svtools/res/my_docs_h.pngbin0 -> 233 bytes-rw-r--r--default_images/svtools/res/ncollate.pngbin0 -> 2244 bytes-rw-r--r--default_images/svtools/res/ncollate_h.pngbin0 -> 300 bytes-rw-r--r--default_images/svtools/res/new_doc.pngbin0 -> 950 bytes-rw-r--r--default_images/svtools/res/new_doc_h.pngbin0 -> 3785 bytes-rw-r--r--default_images/svtools/res/preview_large.pngbin0 -> 701 bytes-rw-r--r--default_images/svtools/res/preview_large_h.pngbin0 -> 110 bytes-rw-r--r--default_images/svtools/res/preview_small.pngbin0 -> 491 bytes-rw-r--r--default_images/svtools/res/preview_small_h.pngbin0 -> 104 bytes-rw-r--r--default_images/svtools/res/prnfont.pngbin0 -> 634 bytes-rw-r--r--default_images/svtools/res/prnfont_h.pngbin0 -> 149 bytes-rw-r--r--default_images/svtools/res/regkey.pngbin0 -> 1130 bytes-rw-r--r--default_images/svtools/res/samples.pngbin0 -> 1456 bytes-rw-r--r--default_images/svtools/res/samples_h.pngbin0 -> 217 bytes-rw-r--r--default_images/svtools/res/scalfont.pngbin0 -> 808 bytes-rw-r--r--default_images/svtools/res/scalfont_h.pngbin0 -> 165 bytes-rw-r--r--default_images/svtools/res/template.pngbin0 -> 966 bytes-rw-r--r--default_images/svtools/res/template_h.pngbin0 -> 3784 bytes-rw-r--r--default_images/svtools/res/triangle_down.pngbin0 -> 369 bytes-rw-r--r--default_images/svtools/res/triangle_down_hc.pngbin0 -> 100 bytes-rw-r--r--default_images/svtools/res/triangle_right.pngbin0 -> 425 bytes-rw-r--r--default_images/svtools/res/triangle_right_hc.pngbin0 -> 100 bytes-rw-r--r--default_images/svtools/res/ttall.pngbin0 -> 914 bytes-rw-r--r--default_images/svtools/res/ttdef.pngbin0 -> 915 bytes-rw-r--r--default_images/svtools/res/tthid.pngbin0 -> 917 bytes-rw-r--r--default_images/svtools/res/ttremote.pngbin0 -> 931 bytes-rw-r--r--default_images/svtools/res/ttshow.pngbin0 -> 923 bytes-rw-r--r--default_images/svtools/res/ttshow2.pngbin0 -> 923 bytes-rw-r--r--default_images/svtools/res/up_large.pngbin0 -> 960 bytes-rw-r--r--default_images/svtools/res/up_large_h.pngbin0 -> 173 bytes-rw-r--r--default_images/svtools/res/up_small.pngbin0 -> 605 bytes-rw-r--r--default_images/svtools/res/up_small_h.pngbin0 -> 137 bytes-rw-r--r--default_images/svx/res/3dgeo.pngbin0 -> 325 bytes-rw-r--r--default_images/svx/res/3dgeo_h.pngbin0 -> 155 bytes-rw-r--r--default_images/svx/res/3dlight.pngbin0 -> 452 bytes-rw-r--r--default_images/svx/res/3dlight_h.pngbin0 -> 168 bytes-rw-r--r--default_images/svx/res/3drepres.pngbin0 -> 451 bytes-rw-r--r--default_images/svx/res/3drepres_h.pngbin0 -> 156 bytes-rw-r--r--default_images/svx/res/3dtextur.pngbin0 -> 421 bytes-rw-r--r--default_images/svx/res/3dtextur_h.pngbin0 -> 158 bytes-rw-r--r--default_images/svx/res/apply.pngbin0 -> 477 bytes-rw-r--r--default_images/svx/res/apply_h.pngbin0 -> 135 bytes-rw-r--r--default_images/svx/res/blend3d.pngbin0 -> 936 bytes-rw-r--r--default_images/svx/res/blend3d_h.pngbin0 -> 146 bytes-rw-r--r--default_images/svx/res/brightlit_16.pngbin0 -> 379 bytes-rw-r--r--default_images/svx/res/brightlit_16_h.pngbin0 -> 162 bytes-rw-r--r--default_images/svx/res/caution_11x16.pngbin0 -> 536 bytes-rw-r--r--default_images/svx/res/caution_11x16_h.pngbin0 -> 145 bytes-rw-r--r--default_images/svx/res/cd01.pngbin0 -> 477 bytes-rw-r--r--default_images/svx/res/cd015.pngbin0 -> 477 bytes-rw-r--r--default_images/svx/res/cd016.pngbin0 -> 580 bytes-rw-r--r--default_images/svx/res/cd017.pngbin0 -> 523 bytes-rw-r--r--default_images/svx/res/cd018.pngbin0 -> 533 bytes-rw-r--r--default_images/svx/res/cd02.pngbin0 -> 228 bytes-rw-r--r--default_images/svx/res/cd020.pngbin0 -> 888 bytes-rw-r--r--default_images/svx/res/cd021.pngbin0 -> 894 bytes-rw-r--r--default_images/svx/res/cd025.pngbin0 -> 645 bytes-rw-r--r--default_images/svx/res/cd026.pngbin0 -> 594 bytes-rw-r--r--default_images/svx/res/cd05.pngbin0 -> 568 bytes-rw-r--r--default_images/svx/res/cd06.pngbin0 -> 378 bytes-rw-r--r--default_images/svx/res/cd07.pngbin0 -> 756 bytes-rw-r--r--default_images/svx/res/cd08.pngbin0 -> 677 bytes-rw-r--r--default_images/svx/res/cdh01.pngbin0 -> 135 bytes-rw-r--r--default_images/svx/res/cdh015.pngbin0 -> 142 bytes-rw-r--r--default_images/svx/res/cdh016.pngbin0 -> 152 bytes-rw-r--r--default_images/svx/res/cdh017.pngbin0 -> 157 bytes-rw-r--r--default_images/svx/res/cdh018.pngbin0 -> 170 bytes-rw-r--r--default_images/svx/res/cdh02.pngbin0 -> 125 bytes-rw-r--r--default_images/svx/res/cdh020.pngbin0 -> 150 bytes-rw-r--r--default_images/svx/res/cdh021.pngbin0 -> 143 bytes-rw-r--r--default_images/svx/res/cdh025.pngbin0 -> 159 bytes-rw-r--r--default_images/svx/res/cdh026.pngbin0 -> 141 bytes-rw-r--r--default_images/svx/res/cdh05.pngbin0 -> 121 bytes-rw-r--r--default_images/svx/res/cdh06.pngbin0 -> 259 bytes-rw-r--r--default_images/svx/res/cdh07.pngbin0 -> 128 bytes-rw-r--r--default_images/svx/res/cdh08.pngbin0 -> 141 bytes-rw-r--r--default_images/svx/res/color.pngbin0 -> 445 bytes-rw-r--r--default_images/svx/res/color_h.pngbin0 -> 120 bytes-rw-r--r--default_images/svx/res/colordlg.pngbin0 -> 698 bytes-rw-r--r--default_images/svx/res/colordlg_h.pngbin0 -> 166 bytes-rw-r--r--default_images/svx/res/convrt3d.pngbin0 -> 749 bytes-rw-r--r--default_images/svx/res/convrt3d_h.pngbin0 -> 142 bytes-rw-r--r--default_images/svx/res/dimlit_16.pngbin0 -> 372 bytes-rw-r--r--default_images/svx/res/dimlit_16_h.pngbin0 -> 164 bytes-rw-r--r--default_images/svx/res/directioneast_22.pngbin0 -> 354 bytes-rw-r--r--default_images/svx/res/directioneast_22_h.pngbin0 -> 141 bytes-rw-r--r--default_images/svx/res/directionnorth_22.pngbin0 -> 349 bytes-rw-r--r--default_images/svx/res/directionnorth_22_h.pngbin0 -> 143 bytes-rw-r--r--default_images/svx/res/directionnortheast_22.pngbin0 -> 392 bytes-rw-r--r--default_images/svx/res/directionnortheast_22_h.pngbin0 -> 179 bytes-rw-r--r--default_images/svx/res/directionnorthwest_22.pngbin0 -> 436 bytes-rw-r--r--default_images/svx/res/directionnorthwest_22_h.pngbin0 -> 177 bytes-rw-r--r--default_images/svx/res/directionsouth_22.pngbin0 -> 349 bytes-rw-r--r--default_images/svx/res/directionsouth_22_h.pngbin0 -> 127 bytes-rw-r--r--default_images/svx/res/directionsoutheast_22.pngbin0 -> 430 bytes-rw-r--r--default_images/svx/res/directionsoutheast_22_h.pngbin0 -> 175 bytes-rw-r--r--default_images/svx/res/directionsouthwest_22.pngbin0 -> 427 bytes-rw-r--r--default_images/svx/res/directionsouthwest_22_h.pngbin0 -> 171 bytes-rw-r--r--default_images/svx/res/directionstraight_22.pngbin0 -> 277 bytes-rw-r--r--default_images/svx/res/directionstraight_22_h.pngbin0 -> 101 bytes-rw-r--r--default_images/svx/res/directionwest_22.pngbin0 -> 375 bytes-rw-r--r--default_images/svx/res/directionwest_22_h.pngbin0 -> 137 bytes-rw-r--r--default_images/svx/res/doublesi.pngbin0 -> 317 bytes-rw-r--r--default_images/svx/res/doublesi_h.pngbin0 -> 146 bytes-rw-r--r--default_images/svx/res/dsth_cen.pngbin0 -> 682 bytes-rw-r--r--default_images/svx/res/dsth_cen_h.pngbin0 -> 137 bytes-rw-r--r--default_images/svx/res/dsth_dst.pngbin0 -> 673 bytes-rw-r--r--default_images/svx/res/dsth_dst_h.pngbin0 -> 139 bytes-rw-r--r--default_images/svx/res/dsth_hig.pngbin0 -> 655 bytes-rw-r--r--default_images/svx/res/dsth_hig_h.pngbin0 -> 135 bytes-rw-r--r--default_images/svx/res/dsth_low.pngbin0 -> 662 bytes-rw-r--r--default_images/svx/res/dsth_low_h.pngbin0 -> 133 bytes-rw-r--r--default_images/svx/res/dstv_cen.pngbin0 -> 699 bytes-rw-r--r--default_images/svx/res/dstv_cen_h.pngbin0 -> 139 bytes-rw-r--r--default_images/svx/res/dstv_dst.pngbin0 -> 691 bytes-rw-r--r--default_images/svx/res/dstv_dst_h.pngbin0 -> 134 bytes-rw-r--r--default_images/svx/res/dstv_hig.pngbin0 -> 674 bytes-rw-r--r--default_images/svx/res/dstv_hig_h.pngbin0 -> 134 bytes-rw-r--r--default_images/svx/res/dstv_low.pngbin0 -> 651 bytes-rw-r--r--default_images/svx/res/dstv_low_h.pngbin0 -> 136 bytes-rw-r--r--default_images/svx/res/extrusion05inch_16.pngbin0 -> 485 bytes-rw-r--r--default_images/svx/res/extrusion05inch_16_h.pngbin0 -> 119 bytes-rw-r--r--default_images/svx/res/extrusion0inch_16.pngbin0 -> 382 bytes-rw-r--r--default_images/svx/res/extrusion0inch_16_h.pngbin0 -> 258 bytes-rw-r--r--default_images/svx/res/extrusion1inch_16.pngbin0 -> 545 bytes-rw-r--r--default_images/svx/res/extrusion1inch_16_h.pngbin0 -> 136 bytes-rw-r--r--default_images/svx/res/extrusion2inch_16.pngbin0 -> 607 bytes-rw-r--r--default_images/svx/res/extrusion2inch_16_h.pngbin0 -> 148 bytes-rw-r--r--default_images/svx/res/extrusion4inch_16.pngbin0 -> 661 bytes-rw-r--r--default_images/svx/res/extrusion4inch_16_h.pngbin0 -> 151 bytes-rw-r--r--default_images/svx/res/extrusioninfinity_16.pngbin0 -> 680 bytes-rw-r--r--default_images/svx/res/extrusioninfinity_16_h.pngbin0 -> 148 bytes-rw-r--r--default_images/svx/res/filter3d.pngbin0 -> 460 bytes-rw-r--r--default_images/svx/res/filter3d_h.pngbin0 -> 117 bytes-rw-r--r--default_images/svx/res/fontworkaligncentered_16.pngbin0 -> 324 bytes-rw-r--r--default_images/svx/res/fontworkaligncentered_16_h.pngbin0 -> 188 bytes-rw-r--r--default_images/svx/res/fontworkaligncentered_26.pngbin0 -> 493 bytes-rw-r--r--default_images/svx/res/fontworkaligncentered_26_h.pngbin0 -> 210 bytes-rw-r--r--default_images/svx/res/fontworkalignjustified_16.pngbin0 -> 314 bytes-rw-r--r--default_images/svx/res/fontworkalignjustified_16_h.pngbin0 -> 184 bytes-rw-r--r--default_images/svx/res/fontworkalignjustified_26.pngbin0 -> 479 bytes-rw-r--r--default_images/svx/res/fontworkalignjustified_26_h.pngbin0 -> 189 bytes-rw-r--r--default_images/svx/res/fontworkalignleft_16.pngbin0 -> 320 bytes-rw-r--r--default_images/svx/res/fontworkalignleft_16_h.pngbin0 -> 186 bytes-rw-r--r--default_images/svx/res/fontworkalignleft_26.pngbin0 -> 487 bytes-rw-r--r--default_images/svx/res/fontworkalignleft_26_h.pngbin0 -> 206 bytes-rw-r--r--default_images/svx/res/fontworkalignright_16.pngbin0 -> 322 bytes-rw-r--r--default_images/svx/res/fontworkalignright_16_h.pngbin0 -> 191 bytes-rw-r--r--default_images/svx/res/fontworkalignright_26.pngbin0 -> 486 bytes-rw-r--r--default_images/svx/res/fontworkalignright_26_h.pngbin0 -> 208 bytes-rw-r--r--default_images/svx/res/fontworkalignstretch_16.pngbin0 -> 498 bytes-rw-r--r--default_images/svx/res/fontworkalignstretch_16_h.pngbin0 -> 110 bytes-rw-r--r--default_images/svx/res/fontworkalignstretch_26.pngbin0 -> 837 bytes-rw-r--r--default_images/svx/res/fontworkalignstretch_26_h.pngbin0 -> 132 bytes-rw-r--r--default_images/svx/res/fr01.pngbin0 -> 387 bytes-rw-r--r--default_images/svx/res/fr010.pngbin0 -> 487 bytes-rw-r--r--default_images/svx/res/fr011.pngbin0 -> 478 bytes-rw-r--r--default_images/svx/res/fr012.pngbin0 -> 475 bytes-rw-r--r--default_images/svx/res/fr02.pngbin0 -> 395 bytes-rw-r--r--default_images/svx/res/fr03.pngbin0 -> 397 bytes-rw-r--r--default_images/svx/res/fr04.pngbin0 -> 388 bytes-rw-r--r--default_images/svx/res/fr05.pngbin0 -> 396 bytes-rw-r--r--default_images/svx/res/fr06.pngbin0 -> 402 bytes-rw-r--r--default_images/svx/res/fr07.pngbin0 -> 409 bytes-rw-r--r--default_images/svx/res/fr08.pngbin0 -> 366 bytes-rw-r--r--default_images/svx/res/fr09.pngbin0 -> 505 bytes-rw-r--r--default_images/svx/res/frh01.pngbin0 -> 277 bytes-rw-r--r--default_images/svx/res/frh010.pngbin0 -> 103 bytes-rw-r--r--default_images/svx/res/frh011.pngbin0 -> 108 bytes-rw-r--r--default_images/svx/res/frh012.pngbin0 -> 282 bytes-rw-r--r--default_images/svx/res/frh02.pngbin0 -> 278 bytes-rw-r--r--default_images/svx/res/frh03.pngbin0 -> 278 bytes-rw-r--r--default_images/svx/res/frh04.pngbin0 -> 288 bytes-rw-r--r--default_images/svx/res/frh05.pngbin0 -> 280 bytes-rw-r--r--default_images/svx/res/frh06.pngbin0 -> 281 bytes-rw-r--r--default_images/svx/res/frh07.pngbin0 -> 281 bytes-rw-r--r--default_images/svx/res/frh08.pngbin0 -> 277 bytes-rw-r--r--default_images/svx/res/frh09.pngbin0 -> 105 bytes-rw-r--r--default_images/svx/res/frmsel.bmpbin0 -> 510 bytes-rw-r--r--default_images/svx/res/fw01.pngbin0 -> 183 bytes-rw-r--r--default_images/svx/res/fw010.pngbin0 -> 174 bytes-rw-r--r--default_images/svx/res/fw011.pngbin0 -> 204 bytes-rw-r--r--default_images/svx/res/fw012.pngbin0 -> 194 bytes-rw-r--r--default_images/svx/res/fw013.pngbin0 -> 160 bytes-rw-r--r--default_images/svx/res/fw014.pngbin0 -> 171 bytes-rw-r--r--default_images/svx/res/fw015.pngbin0 -> 185 bytes-rw-r--r--default_images/svx/res/fw016.pngbin0 -> 173 bytes-rw-r--r--default_images/svx/res/fw017.pngbin0 -> 166 bytes-rw-r--r--default_images/svx/res/fw018.pngbin0 -> 199 bytes-rw-r--r--default_images/svx/res/fw019.pngbin0 -> 190 bytes-rw-r--r--default_images/svx/res/fw02.pngbin0 -> 217 bytes-rw-r--r--default_images/svx/res/fw020.pngbin0 -> 186 bytes-rw-r--r--default_images/svx/res/fw021.pngbin0 -> 192 bytes-rw-r--r--default_images/svx/res/fw03.pngbin0 -> 214 bytes-rw-r--r--default_images/svx/res/fw04.pngbin0 -> 196 bytes-rw-r--r--default_images/svx/res/fw05.pngbin0 -> 213 bytes-rw-r--r--default_images/svx/res/fw06.pngbin0 -> 180 bytes-rw-r--r--default_images/svx/res/fw07.pngbin0 -> 156 bytes-rw-r--r--default_images/svx/res/fw08.pngbin0 -> 159 bytes-rw-r--r--default_images/svx/res/fw09.pngbin0 -> 154 bytes-rw-r--r--default_images/svx/res/fwbhcirc.pngbin0 -> 206 bytes-rw-r--r--default_images/svx/res/fwbhcirc_h.pngbin0 -> 206 bytes-rw-r--r--default_images/svx/res/fwbotarc.pngbin0 -> 194 bytes-rw-r--r--default_images/svx/res/fwbotarc_h.pngbin0 -> 194 bytes-rw-r--r--default_images/svx/res/fwbuttn1.pngbin0 -> 207 bytes-rw-r--r--default_images/svx/res/fwbuttn1_h.pngbin0 -> 207 bytes-rw-r--r--default_images/svx/res/fwbuttn2.pngbin0 -> 214 bytes-rw-r--r--default_images/svx/res/fwbuttn2_h.pngbin0 -> 214 bytes-rw-r--r--default_images/svx/res/fwbuttn3.pngbin0 -> 214 bytes-rw-r--r--default_images/svx/res/fwbuttn3_h.pngbin0 -> 214 bytes-rw-r--r--default_images/svx/res/fwbuttn4.pngbin0 -> 214 bytes-rw-r--r--default_images/svx/res/fwbuttn4_h.pngbin0 -> 214 bytes-rw-r--r--default_images/svx/res/fwh01.pngbin0 -> 153 bytes-rw-r--r--default_images/svx/res/fwh010.pngbin0 -> 172 bytes-rw-r--r--default_images/svx/res/fwh011.pngbin0 -> 200 bytes-rw-r--r--default_images/svx/res/fwh012.pngbin0 -> 193 bytes-rw-r--r--default_images/svx/res/fwh013.pngbin0 -> 155 bytes-rw-r--r--default_images/svx/res/fwh014.pngbin0 -> 167 bytes-rw-r--r--default_images/svx/res/fwh015.pngbin0 -> 181 bytes-rw-r--r--default_images/svx/res/fwh016.pngbin0 -> 165 bytes-rw-r--r--default_images/svx/res/fwh017.pngbin0 -> 161 bytes-rw-r--r--default_images/svx/res/fwh018.pngbin0 -> 181 bytes-rw-r--r--default_images/svx/res/fwh019.pngbin0 -> 189 bytes-rw-r--r--default_images/svx/res/fwh02.pngbin0 -> 207 bytes-rw-r--r--default_images/svx/res/fwh020.pngbin0 -> 182 bytes-rw-r--r--default_images/svx/res/fwh021.pngbin0 -> 188 bytes-rw-r--r--default_images/svx/res/fwh03.pngbin0 -> 183 bytes-rw-r--r--default_images/svx/res/fwh04.pngbin0 -> 190 bytes-rw-r--r--default_images/svx/res/fwh05.pngbin0 -> 191 bytes-rw-r--r--default_images/svx/res/fwh06.pngbin0 -> 179 bytes-rw-r--r--default_images/svx/res/fwh07.pngbin0 -> 151 bytes-rw-r--r--default_images/svx/res/fwh08.pngbin0 -> 154 bytes-rw-r--r--default_images/svx/res/fwh09.pngbin0 -> 150 bytes-rw-r--r--default_images/svx/res/fwlftarc.pngbin0 -> 201 bytes-rw-r--r--default_images/svx/res/fwlftarc_h.pngbin0 -> 201 bytes-rw-r--r--default_images/svx/res/fwlhcirc.pngbin0 -> 202 bytes-rw-r--r--default_images/svx/res/fwlhcirc_h.pngbin0 -> 202 bytes-rw-r--r--default_images/svx/res/fwrgtarc.pngbin0 -> 196 bytes-rw-r--r--default_images/svx/res/fwrgtarc_h.pngbin0 -> 196 bytes-rw-r--r--default_images/svx/res/fwrhcirc.pngbin0 -> 200 bytes-rw-r--r--default_images/svx/res/fwrhcirc_h.pngbin0 -> 200 bytes-rw-r--r--default_images/svx/res/fwtoparc.pngbin0 -> 197 bytes-rw-r--r--default_images/svx/res/fwtoparc_h.pngbin0 -> 197 bytes-rw-r--r--default_images/svx/res/galdefl.pngbin0 -> 821 bytes-rw-r--r--default_images/svx/res/galdefs.pngbin0 -> 485 bytes-rw-r--r--default_images/svx/res/galicon.pngbin0 -> 566 bytes-rw-r--r--default_images/svx/res/galicon_h.pngbin0 -> 105 bytes-rw-r--r--default_images/svx/res/galimpl.pngbin0 -> 315 bytes-rw-r--r--default_images/svx/res/galimps.pngbin0 -> 202 bytes-rw-r--r--default_images/svx/res/gallist.pngbin0 -> 580 bytes-rw-r--r--default_images/svx/res/gallist_h.pngbin0 -> 103 bytes-rw-r--r--default_images/svx/res/galmedia.pngbin0 -> 1912 bytes-rw-r--r--default_images/svx/res/galnorl.pngbin0 -> 860 bytes-rw-r--r--default_images/svx/res/galnors.pngbin0 -> 484 bytes-rw-r--r--default_images/svx/res/galrdol.pngbin0 -> 844 bytes-rw-r--r--default_images/svx/res/galrdos.pngbin0 -> 484 bytes-rw-r--r--default_images/svx/res/galsnd1.pngbin0 -> 773 bytes-rw-r--r--default_images/svx/res/galsnd2.pngbin0 -> 771 bytes-rw-r--r--default_images/svx/res/galsnd3.pngbin0 -> 645 bytes-rw-r--r--default_images/svx/res/galsnd4.pngbin0 -> 930 bytes-rw-r--r--default_images/svx/res/galsnd5.pngbin0 -> 608 bytes-rw-r--r--default_images/svx/res/galsnd6.pngbin0 -> 678 bytes-rw-r--r--default_images/svx/res/galsnd7.pngbin0 -> 639 bytes-rw-r--r--default_images/svx/res/graphic.pngbin0 -> 866 bytes-rw-r--r--default_images/svx/res/grfload.pngbin0 -> 262 bytes-rw-r--r--default_images/svx/res/id01.pngbin0 -> 477 bytes-rw-r--r--default_images/svx/res/id016.pngbin0 -> 479 bytes-rw-r--r--default_images/svx/res/id018.pngbin0 -> 652 bytes-rw-r--r--default_images/svx/res/id019.pngbin0 -> 712 bytes-rw-r--r--default_images/svx/res/id02.pngbin0 -> 711 bytes-rw-r--r--default_images/svx/res/id03.pngbin0 -> 585 bytes-rw-r--r--default_images/svx/res/id030.pngbin0 -> 477 bytes-rw-r--r--default_images/svx/res/id031.pngbin0 -> 580 bytes-rw-r--r--default_images/svx/res/id032.pngbin0 -> 523 bytes-rw-r--r--default_images/svx/res/id033.pngbin0 -> 533 bytes-rw-r--r--default_images/svx/res/id04.pngbin0 -> 568 bytes-rw-r--r--default_images/svx/res/id040.pngbin0 -> 888 bytes-rw-r--r--default_images/svx/res/id041.pngbin0 -> 894 bytes-rw-r--r--default_images/svx/res/id05.pngbin0 -> 378 bytes-rw-r--r--default_images/svx/res/id06.pngbin0 -> 756 bytes-rw-r--r--default_images/svx/res/id07.pngbin0 -> 677 bytes-rw-r--r--default_images/svx/res/id08.pngbin0 -> 781 bytes-rw-r--r--default_images/svx/res/idh01.pngbin0 -> 135 bytes-rw-r--r--default_images/svx/res/idh016.pngbin0 -> 146 bytes-rw-r--r--default_images/svx/res/idh018.pngbin0 -> 266 bytes-rw-r--r--default_images/svx/res/idh019.pngbin0 -> 172 bytes-rw-r--r--default_images/svx/res/idh02.pngbin0 -> 141 bytes-rw-r--r--default_images/svx/res/idh03.pngbin0 -> 123 bytes-rw-r--r--default_images/svx/res/idh030.pngbin0 -> 142 bytes-rw-r--r--default_images/svx/res/idh031.pngbin0 -> 152 bytes-rw-r--r--default_images/svx/res/idh032.pngbin0 -> 157 bytes-rw-r--r--default_images/svx/res/idh033.pngbin0 -> 170 bytes-rw-r--r--default_images/svx/res/idh04.pngbin0 -> 121 bytes-rw-r--r--default_images/svx/res/idh040.pngbin0 -> 150 bytes-rw-r--r--default_images/svx/res/idh041.pngbin0 -> 143 bytes-rw-r--r--default_images/svx/res/idh05.pngbin0 -> 259 bytes-rw-r--r--default_images/svx/res/idh06.pngbin0 -> 128 bytes-rw-r--r--default_images/svx/res/idh07.pngbin0 -> 141 bytes-rw-r--r--default_images/svx/res/idh08.pngbin0 -> 161 bytes-rw-r--r--default_images/svx/res/invert3d.pngbin0 -> 354 bytes-rw-r--r--default_images/svx/res/invert3d_h.pngbin0 -> 154 bytes-rw-r--r--default_images/svx/res/legtyp1.pngbin0 -> 606 bytes-rw-r--r--default_images/svx/res/legtyp1_hc.pngbin0 -> 110 bytes-rw-r--r--default_images/svx/res/legtyp2.pngbin0 -> 705 bytes-rw-r--r--default_images/svx/res/legtyp2_hc.pngbin0 -> 137 bytes-rw-r--r--default_images/svx/res/legtyp3.pngbin0 -> 671 bytes-rw-r--r--default_images/svx/res/legtyp3_hc.pngbin0 -> 139 bytes-rw-r--r--default_images/svx/res/legtyp4.pngbin0 -> 731 bytes-rw-r--r--default_images/svx/res/legtyp4_hc.pngbin0 -> 131 bytes-rw-r--r--default_images/svx/res/lght2sid.pngbin0 -> 376 bytes-rw-r--r--default_images/svx/res/lght2sid_h.pngbin0 -> 155 bytes-rw-r--r--default_images/svx/res/light.pngbin0 -> 386 bytes-rw-r--r--default_images/svx/res/light_h.pngbin0 -> 133 bytes-rw-r--r--default_images/svx/res/lightfrombottom_22.pngbin0 -> 1088 bytes-rw-r--r--default_images/svx/res/lightfrombottom_22_h.pngbin0 -> 204 bytes-rw-r--r--default_images/svx/res/lightfrombottomleft_22.pngbin0 -> 1113 bytes-rw-r--r--default_images/svx/res/lightfrombottomleft_22_h.pngbin0 -> 197 bytes-rw-r--r--default_images/svx/res/lightfrombottomright_22.pngbin0 -> 1049 bytes-rw-r--r--default_images/svx/res/lightfrombottomright_22_h.pngbin0 -> 198 bytes-rw-r--r--default_images/svx/res/lightfromfront_22.pngbin0 -> 1204 bytes-rw-r--r--default_images/svx/res/lightfromfront_22_h.pngbin0 -> 213 bytes-rw-r--r--default_images/svx/res/lightfromleft_22.pngbin0 -> 1012 bytes-rw-r--r--default_images/svx/res/lightfromleft_22_h.pngbin0 -> 211 bytes-rw-r--r--default_images/svx/res/lightfromright_22.pngbin0 -> 1027 bytes-rw-r--r--default_images/svx/res/lightfromright_22_h.pngbin0 -> 210 bytes-rw-r--r--default_images/svx/res/lightfromtop_22.pngbin0 -> 1140 bytes-rw-r--r--default_images/svx/res/lightfromtop_22_h.pngbin0 -> 196 bytes-rw-r--r--default_images/svx/res/lightfromtopleft_22.pngbin0 -> 1111 bytes-rw-r--r--default_images/svx/res/lightfromtopleft_22_h.pngbin0 -> 213 bytes-rw-r--r--default_images/svx/res/lightfromtopright_22.pngbin0 -> 1125 bytes-rw-r--r--default_images/svx/res/lightfromtopright_22_h.pngbin0 -> 213 bytes-rw-r--r--default_images/svx/res/lightofffrombottom_22.pngbin0 -> 522 bytes-rw-r--r--default_images/svx/res/lightofffrombottom_22_h.pngbin0 -> 243 bytes-rw-r--r--default_images/svx/res/lightofffrombottomleft_22.pngbin0 -> 575 bytes-rw-r--r--default_images/svx/res/lightofffrombottomleft_22_h.pngbin0 -> 169 bytes-rw-r--r--default_images/svx/res/lightofffrombottomright_22.pngbin0 -> 580 bytes-rw-r--r--default_images/svx/res/lightofffrombottomright_22_h.pngbin0 -> 168 bytes-rw-r--r--default_images/svx/res/lightofffromleft_22.pngbin0 -> 488 bytes-rw-r--r--default_images/svx/res/lightofffromleft_22_h.pngbin0 -> 210 bytes-rw-r--r--default_images/svx/res/lightofffromright_22.pngbin0 -> 510 bytes-rw-r--r--default_images/svx/res/lightofffromright_22_h.pngbin0 -> 213 bytes-rw-r--r--default_images/svx/res/lightofffromtop_22.pngbin0 -> 543 bytes-rw-r--r--default_images/svx/res/lightofffromtop_22_h.pngbin0 -> 245 bytes-rw-r--r--default_images/svx/res/lightofffromtopleft_22.pngbin0 -> 572 bytes-rw-r--r--default_images/svx/res/lightofffromtopleft_22_h.pngbin0 -> 169 bytes-rw-r--r--default_images/svx/res/lightofffromtopright_22.pngbin0 -> 570 bytes-rw-r--r--default_images/svx/res/lightofffromtopright_22_h.pngbin0 -> 167 bytes-rw-r--r--default_images/svx/res/lighton.pngbin0 -> 407 bytes-rw-r--r--default_images/svx/res/lighton_h.pngbin0 -> 166 bytes-rw-r--r--default_images/svx/res/lightonfrombottom_22.pngbin0 -> 605 bytes-rw-r--r--default_images/svx/res/lightonfrombottom_22_h.pngbin0 -> 190 bytes-rw-r--r--default_images/svx/res/lightonfrombottomleft_22.pngbin0 -> 621 bytes-rw-r--r--default_images/svx/res/lightonfrombottomleft_22_h.pngbin0 -> 206 bytes-rw-r--r--default_images/svx/res/lightonfrombottomright_22.pngbin0 -> 650 bytes-rw-r--r--default_images/svx/res/lightonfrombottomright_22_h.pngbin0 -> 210 bytes-rw-r--r--default_images/svx/res/lightonfromleft_22.pngbin0 -> 607 bytes-rw-r--r--default_images/svx/res/lightonfromleft_22_h.pngbin0 -> 194 bytes-rw-r--r--default_images/svx/res/lightonfromright_22.pngbin0 -> 616 bytes-rw-r--r--default_images/svx/res/lightonfromright_22_h.pngbin0 -> 187 bytes-rw-r--r--default_images/svx/res/lightonfromtop_22.pngbin0 -> 627 bytes-rw-r--r--default_images/svx/res/lightonfromtop_22_h.pngbin0 -> 196 bytes-rw-r--r--default_images/svx/res/lightonfromtopleft_22.pngbin0 -> 661 bytes-rw-r--r--default_images/svx/res/lightonfromtopleft_22_h.pngbin0 -> 204 bytes-rw-r--r--default_images/svx/res/lightonfromtopright_22.pngbin0 -> 634 bytes-rw-r--r--default_images/svx/res/lightonfromtopright_22_h.pngbin0 -> 205 bytes-rw-r--r--default_images/svx/res/lngcheck.pngbin0 -> 547 bytes-rw-r--r--default_images/svx/res/lngcheck_h.pngbin0 -> 145 bytes-rw-r--r--default_images/svx/res/lo01.pngbin0 -> 232 bytes-rw-r--r--default_images/svx/res/lo02.pngbin0 -> 223 bytes-rw-r--r--default_images/svx/res/lo03.pngbin0 -> 179 bytes-rw-r--r--default_images/svx/res/loh01.pngbin0 -> 121 bytes-rw-r--r--default_images/svx/res/loh02.pngbin0 -> 121 bytes-rw-r--r--default_images/svx/res/loh03.pngbin0 -> 151 bytes-rw-r--r--default_images/svx/res/luminanc.pngbin0 -> 505 bytes-rw-r--r--default_images/svx/res/luminanc_h.pngbin0 -> 260 bytes-rw-r--r--default_images/svx/res/material.pngbin0 -> 463 bytes-rw-r--r--default_images/svx/res/material_h.pngbin0 -> 153 bytes-rw-r--r--default_images/svx/res/matte_16.pngbin0 -> 960 bytes-rw-r--r--default_images/svx/res/matte_16_h.pngbin0 -> 179 bytes-rw-r--r--default_images/svx/res/metal_16.pngbin0 -> 833 bytes-rw-r--r--default_images/svx/res/metal_16_h.pngbin0 -> 168 bytes-rw-r--r--default_images/svx/res/minus_h.pngbin0 -> 220 bytes-rw-r--r--default_images/svx/res/modula3d.pngbin0 -> 432 bytes-rw-r--r--default_images/svx/res/modula3d_h.pngbin0 -> 143 bytes-rw-r--r--default_images/svx/res/navigationball_10.pngbin0 -> 437 bytes-rw-r--r--default_images/svx/res/navigationball_10_h.pngbin0 -> 111 bytes-rw-r--r--default_images/svx/res/normallit_16.pngbin0 -> 376 bytes-rw-r--r--default_images/svx/res/normallit_16_h.pngbin0 -> 164 bytes-rw-r--r--default_images/svx/res/normflat.pngbin0 -> 275 bytes-rw-r--r--default_images/svx/res/normflat_h.pngbin0 -> 138 bytes-rw-r--r--default_images/svx/res/normobjs.pngbin0 -> 372 bytes-rw-r--r--default_images/svx/res/normobjs_h.pngbin0 -> 146 bytes-rw-r--r--default_images/svx/res/normsphe.pngbin0 -> 326 bytes-rw-r--r--default_images/svx/res/normsphe_h.pngbin0 -> 146 bytes-rw-r--r--default_images/svx/res/notcertificate_16.pngbin0 -> 876 bytes-rw-r--r--default_images/svx/res/notcertificate_16_h.pngbin0 -> 194 bytes-rw-r--r--default_images/svx/res/notcheck.pngbin0 -> 121 bytes-rw-r--r--default_images/svx/res/nu01.pngbin0 -> 477 bytes-rw-r--r--default_images/svx/res/nu02.pngbin0 -> 510 bytes-rw-r--r--default_images/svx/res/nu03.pngbin0 -> 625 bytes-rwxr-xr-xdefault_images/svx/res/nu04.pngbin0 -> 430 bytes-rw-r--r--default_images/svx/res/nu07.pngbin0 -> 477 bytes-rw-r--r--default_images/svx/res/nu08.pngbin0 -> 510 bytes-rw-r--r--default_images/svx/res/nuh01.pngbin0 -> 135 bytes-rw-r--r--default_images/svx/res/nuh02.pngbin0 -> 140 bytes-rw-r--r--default_images/svx/res/nuh03.pngbin0 -> 139 bytes-rwxr-xr-xdefault_images/svx/res/nuh04.pngbin0 -> 135 bytes-rw-r--r--default_images/svx/res/objects.pngbin0 -> 526 bytes-rw-r--r--default_images/svx/res/objspc3d.pngbin0 -> 267 bytes-rw-r--r--default_images/svx/res/objspc3d_h.pngbin0 -> 131 bytes-rw-r--r--default_images/svx/res/odfwarning.pngbin0 -> 536 bytes-rw-r--r--default_images/svx/res/odfwarning_h.pngbin0 -> 145 bytes-rw-r--r--default_images/svx/res/ole.pngbin0 -> 729 bytes-rw-r--r--default_images/svx/res/parallel.pngbin0 -> 288 bytes-rw-r--r--default_images/svx/res/parallel_16.pngbin0 -> 350 bytes-rw-r--r--default_images/svx/res/parallel_16_h.pngbin0 -> 163 bytes-rw-r--r--default_images/svx/res/parallel_h.pngbin0 -> 162 bytes-rw-r--r--default_images/svx/res/persp3d.pngbin0 -> 285 bytes-rw-r--r--default_images/svx/res/persp3d_h.pngbin0 -> 142 bytes-rw-r--r--default_images/svx/res/perspective_16.pngbin0 -> 354 bytes-rw-r--r--default_images/svx/res/perspective_16_h.pngbin0 -> 168 bytes-rw-r--r--default_images/svx/res/plastic_16.pngbin0 -> 688 bytes-rw-r--r--default_images/svx/res/plastic_16_h.pngbin0 -> 149 bytes-rw-r--r--default_images/svx/res/plus_h.pngbin0 -> 228 bytes-rw-r--r--default_images/svx/res/pr01.pngbin0 -> 342 bytes-rw-r--r--default_images/svx/res/pr010.pngbin0 -> 345 bytes-rw-r--r--default_images/svx/res/pr011.pngbin0 -> 354 bytes-rw-r--r--default_images/svx/res/pr012.pngbin0 -> 339 bytes-rw-r--r--default_images/svx/res/pr013.pngbin0 -> 242 bytes-rw-r--r--default_images/svx/res/pr014.pngbin0 -> 398 bytes-rw-r--r--default_images/svx/res/pr015.pngbin0 -> 331 bytes-rw-r--r--default_images/svx/res/pr016.pngbin0 -> 408 bytes-rw-r--r--default_images/svx/res/pr017.pngbin0 -> 328 bytes-rw-r--r--default_images/svx/res/pr018.pngbin0 -> 384 bytes-rw-r--r--default_images/svx/res/pr019.pngbin0 -> 392 bytes-rw-r--r--default_images/svx/res/pr02.pngbin0 -> 323 bytes-rw-r--r--default_images/svx/res/pr020.pngbin0 -> 398 bytes-rw-r--r--default_images/svx/res/pr021.pngbin0 -> 493 bytes-rw-r--r--default_images/svx/res/pr03.pngbin0 -> 323 bytes-rw-r--r--default_images/svx/res/pr04.pngbin0 -> 348 bytes-rw-r--r--default_images/svx/res/pr05.pngbin0 -> 343 bytes-rw-r--r--default_images/svx/res/pr06.pngbin0 -> 423 bytes-rw-r--r--default_images/svx/res/pr07.pngbin0 -> 242 bytes-rw-r--r--default_images/svx/res/pr08.pngbin0 -> 240 bytes-rw-r--r--default_images/svx/res/pr09.pngbin0 -> 401 bytes-rw-r--r--default_images/svx/res/prh01.pngbin0 -> 254 bytes-rw-r--r--default_images/svx/res/prh010.pngbin0 -> 256 bytes-rw-r--r--default_images/svx/res/prh011.pngbin0 -> 105 bytes-rw-r--r--default_images/svx/res/prh012.pngbin0 -> 260 bytes-rw-r--r--default_images/svx/res/prh013.pngbin0 -> 212 bytes-rw-r--r--default_images/svx/res/prh014.pngbin0 -> 279 bytes-rw-r--r--default_images/svx/res/prh015.pngbin0 -> 261 bytes-rw-r--r--default_images/svx/res/prh016.pngbin0 -> 104 bytes-rw-r--r--default_images/svx/res/prh017.pngbin0 -> 261 bytes-rw-r--r--default_images/svx/res/prh018.pngbin0 -> 103 bytes-rw-r--r--default_images/svx/res/prh019.pngbin0 -> 260 bytes-rw-r--r--default_images/svx/res/prh02.pngbin0 -> 256 bytes-rw-r--r--default_images/svx/res/prh020.pngbin0 -> 261 bytes-rw-r--r--default_images/svx/res/prh021.pngbin0 -> 118 bytes-rw-r--r--default_images/svx/res/prh03.pngbin0 -> 264 bytes-rw-r--r--default_images/svx/res/prh04.pngbin0 -> 257 bytes-rw-r--r--default_images/svx/res/prh05.pngbin0 -> 262 bytes-rw-r--r--default_images/svx/res/prh06.pngbin0 -> 136 bytes-rw-r--r--default_images/svx/res/prh07.pngbin0 -> 214 bytes-rw-r--r--default_images/svx/res/prh08.pngbin0 -> 215 bytes-rw-r--r--default_images/svx/res/prh09.pngbin0 -> 261 bytes-rw-r--r--default_images/svx/res/rectbtns.pngbin0 -> 280 bytes-rw-r--r--default_images/svx/res/reload.pngbin0 -> 909 bytes-rw-r--r--default_images/svx/res/reloads.pngbin0 -> 299 bytes-rw-r--r--default_images/svx/res/replac3d.pngbin0 -> 266 bytes-rw-r--r--default_images/svx/res/replac3d_h.pngbin0 -> 142 bytes-rw-r--r--default_images/svx/res/rotate3d.pngbin0 -> 702 bytes-rw-r--r--default_images/svx/res/rotate3d_h.pngbin0 -> 141 bytes-rw-r--r--default_images/svx/res/sc10350_h.pngbin0 -> 141 bytes-rw-r--r--default_images/svx/res/sh01.pngbin0 -> 335 bytes-rw-r--r--default_images/svx/res/sh02.pngbin0 -> 345 bytes-rw-r--r--default_images/svx/res/sh03.pngbin0 -> 345 bytes-rw-r--r--default_images/svx/res/sh04.pngbin0 -> 349 bytes-rw-r--r--default_images/svx/res/sh05.pngbin0 -> 343 bytes-rw-r--r--default_images/svx/res/shadow3d.pngbin0 -> 193 bytes-rw-r--r--default_images/svx/res/shadow3d_h.pngbin0 -> 124 bytes-rw-r--r--default_images/svx/res/shh01.pngbin0 -> 253 bytes-rw-r--r--default_images/svx/res/shh02.pngbin0 -> 102 bytes-rw-r--r--default_images/svx/res/shh03.pngbin0 -> 105 bytes-rw-r--r--default_images/svx/res/shh04.pngbin0 -> 103 bytes-rw-r--r--default_images/svx/res/shh05.pngbin0 -> 105 bytes-rw-r--r--default_images/svx/res/signet_11x16.pngbin0 -> 604 bytes-rw-r--r--default_images/svx/res/signet_11x16_h.pngbin0 -> 147 bytes-rw-r--r--default_images/svx/res/slidezoomin_11.pngbin0 -> 562 bytes-rw-r--r--default_images/svx/res/slidezoomin_11_h.pngbin0 -> 122 bytes-rw-r--r--default_images/svx/res/slidezoomout_11.pngbin0 -> 539 bytes-rw-r--r--default_images/svx/res/slidezoomout_11_h.pngbin0 -> 121 bytes-rw-r--r--default_images/svx/res/spellerr.pngbin0 -> 510 bytes-rw-r--r--default_images/svx/res/spellok.pngbin0 -> 477 bytes-rw-r--r--default_images/svx/res/sphere3d.pngbin0 -> 885 bytes-rw-r--r--default_images/svx/res/sphere3d_h.pngbin0 -> 124 bytes-rw-r--r--default_images/svx/res/time.pngbin0 -> 902 bytes-rw-r--r--default_images/svx/res/time_h.pngbin0 -> 165 bytes-rw-r--r--default_images/svx/res/tr10416.pngbin0 -> 1742 bytes-rw-r--r--default_images/svx/res/tr10432.pngbin0 -> 2429 bytes-rw-r--r--default_images/svx/res/tr10433.pngbin0 -> 2158 bytes-rw-r--r--default_images/svx/res/tr10434.pngbin0 -> 2576 bytes-rw-r--r--default_images/svx/res/tr10435.pngbin0 -> 2258 bytes-rw-r--r--default_images/svx/res/tr10436.pngbin0 -> 2371 bytes-rw-r--r--default_images/svx/res/tr10437.pngbin0 -> 4703 bytes-rw-r--r--default_images/svx/res/tr10439.pngbin0 -> 2158 bytes-rw-r--r--default_images/svx/res/tr10447.pngbin0 -> 2491 bytes-rw-r--r--default_images/svx/res/tr10450.pngbin0 -> 2594 bytes-rw-r--r--default_images/svx/res/tr10452.pngbin0 -> 1641 bytes-rw-r--r--default_images/svx/res/tr10921.pngbin0 -> 2912 bytes-rw-r--r--default_images/svx/res/trh10416.pngbin0 -> 333 bytes-rw-r--r--default_images/svx/res/trh10432.pngbin0 -> 3859 bytes-rw-r--r--default_images/svx/res/trh10433.pngbin0 -> 3905 bytes-rw-r--r--default_images/svx/res/trh10434.pngbin0 -> 3962 bytes-rw-r--r--default_images/svx/res/trh10435.pngbin0 -> 3919 bytes-rw-r--r--default_images/svx/res/trh10436.pngbin0 -> 3911 bytes-rw-r--r--default_images/svx/res/trh10437.pngbin0 -> 3857 bytes-rw-r--r--default_images/svx/res/trh10439.pngbin0 -> 3905 bytes-rw-r--r--default_images/svx/res/trh10447.pngbin0 -> 3946 bytes-rw-r--r--default_images/svx/res/trh10450.pngbin0 -> 3953 bytes-rw-r--r--default_images/svx/res/trh10452.pngbin0 -> 229 bytes-rw-r--r--default_images/svx/res/trh10921.pngbin0 -> 345 bytes-rw-r--r--default_images/svx/res/vendor01.pngbin0 -> 3269 bytes-rw-r--r--default_images/svx/res/vendor01h.pngbin0 -> 3269 bytes-rw-r--r--default_images/svx/res/wireframe_16.pngbin0 -> 471 bytes-rw-r--r--default_images/svx/res/wireframe_16_h.pngbin0 -> 137 bytes-rw-r--r--default_images/svx/res/zetlhor2.pngbin0 -> 194 bytes-rw-r--r--default_images/svx/res/zetlhor2_h.pngbin0 -> 193 bytes-rw-r--r--default_images/svx/res/zetlver2.pngbin0 -> 198 bytes-rw-r--r--default_images/svx/res/zetlver2_h.pngbin0 -> 187 bytes-rw-r--r--default_images/svx/source/svdraw/cropmarkers.pngbin0 -> 949 bytes-rw-r--r--default_images/svx/source/svdraw/cropmarkers2.pngbin0 -> 1181 bytes-rw-r--r--default_images/svx/source/svdraw/cropmarkersACC.pngbin0 -> 1033 bytes-rw-r--r--default_images/svx/source/svdraw/markers.pngbin0 -> 2611 bytes-rw-r--r--default_images/svx/source/svdraw/markers2.pngbin0 -> 4362 bytes-rw-r--r--default_images/svx/source/svdraw/markersACC.pngbin0 -> 2232 bytes-rw-r--r--default_images/svx/source/svdraw/pageshadow35x35.pngbin0 -> 708 bytes-rw-r--r--default_images/sw/imglst/lc20556.pngbin0 -> 1116 bytes-rw-r--r--default_images/sw/imglst/lc20557.pngbin0 -> 999 bytes-rw-r--r--default_images/sw/imglst/lc20558.pngbin0 -> 786 bytes-rw-r--r--default_images/sw/imglst/lch20556.pngbin0 -> 197 bytes-rw-r--r--default_images/sw/imglst/lch20557.pngbin0 -> 165 bytes-rw-r--r--default_images/sw/imglst/lch20558.pngbin0 -> 143 bytes-rw-r--r--default_images/sw/imglst/nc20000.pngbin0 -> 270 bytes-rw-r--r--default_images/sw/imglst/nc20001.pngbin0 -> 404 bytes-rw-r--r--default_images/sw/imglst/nc20002.pngbin0 -> 466 bytes-rw-r--r--default_images/sw/imglst/nc20003.pngbin0 -> 768 bytes-rw-r--r--default_images/sw/imglst/nc20004.pngbin0 -> 529 bytes-rw-r--r--default_images/sw/imglst/nc20005.pngbin0 -> 651 bytes-rw-r--r--default_images/sw/imglst/nc20006.pngbin0 -> 262 bytes-rw-r--r--default_images/sw/imglst/nc20007.pngbin0 -> 532 bytes-rw-r--r--default_images/sw/imglst/nc20008.pngbin0 -> 555 bytes-rw-r--r--default_images/sw/imglst/nc20009.pngbin0 -> 461 bytes-rw-r--r--default_images/sw/imglst/nc20010.pngbin0 -> 625 bytes-rw-r--r--default_images/sw/imglst/nc20011.pngbin0 -> 768 bytes-rw-r--r--default_images/sw/imglst/nch20000.pngbin0 -> 101 bytes-rw-r--r--default_images/sw/imglst/nch20001.pngbin0 -> 245 bytes-rw-r--r--default_images/sw/imglst/nch20002.pngbin0 -> 101 bytes-rw-r--r--default_images/sw/imglst/nch20003.pngbin0 -> 132 bytes-rw-r--r--default_images/sw/imglst/nch20004.pngbin0 -> 101 bytes-rw-r--r--default_images/sw/imglst/nch20005.pngbin0 -> 160 bytes-rw-r--r--default_images/sw/imglst/nch20006.pngbin0 -> 268 bytes-rw-r--r--default_images/sw/imglst/nch20007.pngbin0 -> 127 bytes-rw-r--r--default_images/sw/imglst/nch20008.pngbin0 -> 137 bytes-rw-r--r--default_images/sw/imglst/nch20009.pngbin0 -> 116 bytes-rw-r--r--default_images/sw/imglst/nch20010.pngbin0 -> 139 bytes-rw-r--r--default_images/sw/imglst/nch20011.pngbin0 -> 132 bytes-rw-r--r--default_images/sw/imglst/re01.pngbin0 -> 399 bytes-rw-r--r--default_images/sw/imglst/re02.pngbin0 -> 532 bytes-rw-r--r--default_images/sw/imglst/re03.pngbin0 -> 359 bytes-rw-r--r--default_images/sw/imglst/re04.pngbin0 -> 498 bytes-rw-r--r--default_images/sw/imglst/reh01.pngbin0 -> 109 bytes-rw-r--r--default_images/sw/imglst/reh02.pngbin0 -> 136 bytes-rw-r--r--default_images/sw/imglst/reh03.pngbin0 -> 269 bytes-rw-r--r--default_images/sw/imglst/reh04.pngbin0 -> 127 bytes-rw-r--r--default_images/sw/imglst/sc20171.pngbin0 -> 443 bytes-rw-r--r--default_images/sw/imglst/sc20172.pngbin0 -> 413 bytes-rw-r--r--default_images/sw/imglst/sc20173.pngbin0 -> 429 bytes-rw-r--r--default_images/sw/imglst/sc20174.pngbin0 -> 432 bytes-rw-r--r--default_images/sw/imglst/sc20175.pngbin0 -> 679 bytes-rw-r--r--default_images/sw/imglst/sc20177.pngbin0 -> 646 bytes-rw-r--r--default_images/sw/imglst/sc20179.pngbin0 -> 663 bytes-rw-r--r--default_images/sw/imglst/sc20182.pngbin0 -> 657 bytes-rw-r--r--default_images/sw/imglst/sc20183.pngbin0 -> 640 bytes-rw-r--r--default_images/sw/imglst/sc20186.pngbin0 -> 674 bytes-rw-r--r--default_images/sw/imglst/sc20233.pngbin0 -> 628 bytes-rw-r--r--default_images/sw/imglst/sc20234.pngbin0 -> 796 bytes-rw-r--r--default_images/sw/imglst/sc20235.pngbin0 -> 532 bytes-rw-r--r--default_images/sw/imglst/sc20236.pngbin0 -> 280 bytes-rw-r--r--default_images/sw/imglst/sc20238.pngbin0 -> 503 bytes-rw-r--r--default_images/sw/imglst/sc20239.pngbin0 -> 660 bytes-rw-r--r--default_images/sw/imglst/sc20244.pngbin0 -> 796 bytes-rw-r--r--default_images/sw/imglst/sc20245.pngbin0 -> 735 bytes-rw-r--r--default_images/sw/imglst/sc20246.pngbin0 -> 705 bytes-rw-r--r--default_images/sw/imglst/sc20247.pngbin0 -> 729 bytes-rw-r--r--default_images/sw/imglst/sc20248.pngbin0 -> 692 bytes-rw-r--r--default_images/sw/imglst/sc20249.pngbin0 -> 756 bytes-rw-r--r--default_images/sw/imglst/sc20556.pngbin0 -> 651 bytes-rw-r--r--default_images/sw/imglst/sc20557.pngbin0 -> 510 bytes-rw-r--r--default_images/sw/imglst/sc20558.pngbin0 -> 477 bytes-rw-r--r--default_images/sw/imglst/sch20171.pngbin0 -> 126 bytes-rw-r--r--default_images/sw/imglst/sch20172.pngbin0 -> 110 bytes-rw-r--r--default_images/sw/imglst/sch20173.pngbin0 -> 113 bytes-rw-r--r--default_images/sw/imglst/sch20174.pngbin0 -> 124 bytes-rw-r--r--default_images/sw/imglst/sch20175.pngbin0 -> 149 bytes-rw-r--r--default_images/sw/imglst/sch20177.pngbin0 -> 142 bytes-rw-r--r--default_images/sw/imglst/sch20179.pngbin0 -> 148 bytes-rw-r--r--default_images/sw/imglst/sch20182.pngbin0 -> 146 bytes-rw-r--r--default_images/sw/imglst/sch20183.pngbin0 -> 129 bytes-rw-r--r--default_images/sw/imglst/sch20186.pngbin0 -> 147 bytes-rw-r--r--default_images/sw/imglst/sch20233.pngbin0 -> 150 bytes-rw-r--r--default_images/sw/imglst/sch20234.pngbin0 -> 139 bytes-rw-r--r--default_images/sw/imglst/sch20235.pngbin0 -> 127 bytes-rw-r--r--default_images/sw/imglst/sch20236.pngbin0 -> 121 bytes-rw-r--r--default_images/sw/imglst/sch20238.pngbin0 -> 100 bytes-rw-r--r--default_images/sw/imglst/sch20239.pngbin0 -> 125 bytes-rw-r--r--default_images/sw/imglst/sch20244.pngbin0 -> 139 bytes-rw-r--r--default_images/sw/imglst/sch20245.pngbin0 -> 164 bytes-rw-r--r--default_images/sw/imglst/sch20246.pngbin0 -> 136 bytes-rw-r--r--default_images/sw/imglst/sch20247.pngbin0 -> 148 bytes-rw-r--r--default_images/sw/imglst/sch20248.pngbin0 -> 135 bytes-rw-r--r--default_images/sw/imglst/sch20249.pngbin0 -> 127 bytes-rw-r--r--default_images/sw/imglst/sch20556.pngbin0 -> 162 bytes-rw-r--r--default_images/sw/imglst/sch20557.pngbin0 -> 140 bytes-rw-r--r--default_images/sw/imglst/sch20558.pngbin0 -> 135 bytes-rw-r--r--default_images/sw/imglst/sf01.pngbin0 -> 657 bytes-rw-r--r--default_images/sw/imglst/sf02.pngbin0 -> 667 bytes-rw-r--r--default_images/sw/imglst/sf03.pngbin0 -> 524 bytes-rw-r--r--default_images/sw/imglst/sf04.pngbin0 -> 572 bytes-rw-r--r--default_images/sw/imglst/sf05.pngbin0 -> 719 bytes-rw-r--r--default_images/sw/imglst/sfh01.pngbin0 -> 124 bytes-rw-r--r--default_images/sw/imglst/sfh02.pngbin0 -> 142 bytes-rw-r--r--default_images/sw/imglst/sfh03.pngbin0 -> 127 bytes-rw-r--r--default_images/sw/imglst/sfh04.pngbin0 -> 122 bytes-rw-r--r--default_images/sw/imglst/sfh05.pngbin0 -> 121 bytes-rw-r--r--default_images/sw/imglst/sr20000.pngbin0 -> 410 bytes-rw-r--r--default_images/sw/imglst/sr20001.pngbin0 -> 426 bytes-rw-r--r--default_images/sw/imglst/sr20002.pngbin0 -> 404 bytes-rw-r--r--default_images/sw/imglst/sr20003.pngbin0 -> 466 bytes-rw-r--r--default_images/sw/imglst/sr20004.pngbin0 -> 525 bytes-rw-r--r--default_images/sw/imglst/sr20005.pngbin0 -> 742 bytes-rw-r--r--default_images/sw/imglst/sr20006.pngbin0 -> 676 bytes-rw-r--r--default_images/sw/imglst/sr20007.pngbin0 -> 262 bytes-rw-r--r--default_images/sw/imglst/sr20008.pngbin0 -> 651 bytes-rw-r--r--default_images/sw/imglst/sr20009.pngbin0 -> 768 bytes-rw-r--r--default_images/sw/imglst/sr20010.pngbin0 -> 529 bytes-rw-r--r--default_images/sw/imglst/sr20011.pngbin0 -> 270 bytes-rw-r--r--default_images/sw/imglst/sr20012.pngbin0 -> 422 bytes-rw-r--r--default_images/sw/imglst/sr20013.pngbin0 -> 735 bytes-rw-r--r--default_images/sw/imglst/sr20014.pngbin0 -> 640 bytes-rw-r--r--default_images/sw/imglst/sr20015.pngbin0 -> 625 bytes-rw-r--r--default_images/sw/imglst/sr20016.pngbin0 -> 1008 bytes-rw-r--r--default_images/sw/imglst/sr20017.pngbin0 -> 424 bytes-rw-r--r--default_images/sw/imglst/sr20018.pngbin0 -> 571 bytes-rw-r--r--default_images/sw/imglst/sr20019.pngbin0 -> 570 bytes-rw-r--r--default_images/sw/imglst/srh20000.pngbin0 -> 104 bytes-rw-r--r--default_images/sw/imglst/srh20001.pngbin0 -> 104 bytes-rw-r--r--default_images/sw/imglst/srh20002.pngbin0 -> 245 bytes-rw-r--r--default_images/sw/imglst/srh20003.pngbin0 -> 101 bytes-rw-r--r--default_images/sw/imglst/srh20004.pngbin0 -> 109 bytes-rw-r--r--default_images/sw/imglst/srh20005.pngbin0 -> 156 bytes-rw-r--r--default_images/sw/imglst/srh20006.pngbin0 -> 155 bytes-rw-r--r--default_images/sw/imglst/srh20007.pngbin0 -> 268 bytes-rw-r--r--default_images/sw/imglst/srh20008.pngbin0 -> 160 bytes-rw-r--r--default_images/sw/imglst/srh20009.pngbin0 -> 132 bytes-rw-r--r--default_images/sw/imglst/srh20010.pngbin0 -> 101 bytes-rw-r--r--default_images/sw/imglst/srh20011.pngbin0 -> 101 bytes-rw-r--r--default_images/sw/imglst/srh20012.pngbin0 -> 114 bytes-rw-r--r--default_images/sw/imglst/srh20013.pngbin0 -> 153 bytes-rw-r--r--default_images/sw/imglst/srh20014.pngbin0 -> 129 bytes-rw-r--r--default_images/sw/imglst/srh20015.pngbin0 -> 139 bytes-rw-r--r--default_images/sw/imglst/srh20016.pngbin0 -> 167 bytes-rw-r--r--default_images/sw/imglst/srh20017.pngbin0 -> 115 bytes-rw-r--r--default_images/sw/imglst/srh20018.pngbin0 -> 115 bytes-rw-r--r--default_images/sw/imglst/srh20019.pngbin0 -> 141 bytes-rw-r--r--default_images/sw/imglst/sx01.pngbin0 -> 261 bytes-rw-r--r--default_images/sw/imglst/sx02.pngbin0 -> 366 bytes-rw-r--r--default_images/sw/imglst/sx03.pngbin0 -> 732 bytes-rw-r--r--default_images/sw/imglst/sxh01.pngbin0 -> 284 bytes-rw-r--r--default_images/sw/imglst/sxh02.pngbin0 -> 107 bytes-rw-r--r--default_images/sw/imglst/sxh03.pngbin0 -> 148 bytes-rw-r--r--default_images/sw/imglst/wr01.pngbin0 -> 615 bytes-rw-r--r--default_images/sw/imglst/wr010.pngbin0 -> 768 bytes-rw-r--r--default_images/sw/imglst/wr011.pngbin0 -> 743 bytes-rw-r--r--default_images/sw/imglst/wr02.pngbin0 -> 639 bytes-rw-r--r--default_images/sw/imglst/wr03.pngbin0 -> 649 bytes-rw-r--r--default_images/sw/imglst/wr04.pngbin0 -> 661 bytes-rw-r--r--default_images/sw/imglst/wr05.pngbin0 -> 663 bytes-rw-r--r--default_images/sw/imglst/wr06.pngbin0 -> 650 bytes-rw-r--r--default_images/sw/imglst/wr07.pngbin0 -> 721 bytes-rw-r--r--default_images/sw/imglst/wr08.pngbin0 -> 740 bytes-rw-r--r--default_images/sw/imglst/wr09.pngbin0 -> 743 bytes-rw-r--r--default_images/sw/imglst/wrh01.pngbin0 -> 123 bytes-rw-r--r--default_images/sw/imglst/wrh010.pngbin0 -> 179 bytes-rw-r--r--default_images/sw/imglst/wrh011.pngbin0 -> 169 bytes-rw-r--r--default_images/sw/imglst/wrh02.pngbin0 -> 135 bytes-rw-r--r--default_images/sw/imglst/wrh03.pngbin0 -> 136 bytes-rw-r--r--default_images/sw/imglst/wrh04.pngbin0 -> 139 bytes-rw-r--r--default_images/sw/imglst/wrh05.pngbin0 -> 148 bytes-rw-r--r--default_images/sw/imglst/wrh06.pngbin0 -> 135 bytes-rw-r--r--default_images/sw/imglst/wrh07.pngbin0 -> 155 bytes-rw-r--r--default_images/sw/imglst/wrh08.pngbin0 -> 169 bytes-rw-r--r--default_images/sw/imglst/wrh09.pngbin0 -> 169 bytes-rw-r--r--default_images/sw/res/all_left.pngbin0 -> 460 bytes-rw-r--r--default_images/sw/res/all_left_h.pngbin0 -> 106 bytes-rw-r--r--default_images/sw/res/all_right.pngbin0 -> 448 bytes-rw-r--r--default_images/sw/res/all_right_h.pngbin0 -> 106 bytes-rw-r--r--default_images/sw/res/anchor.pngbin0 -> 264 bytes-rw-r--r--default_images/sw/res/danchor.pngbin0 -> 264 bytes-rw-r--r--default_images/sw/res/dog.pngbin0 -> 1307 bytes-rw-r--r--default_images/sw/res/dog_h.pngbin0 -> 199 bytes-rw-r--r--default_images/sw/res/doublepage_11x23.pngbin0 -> 541 bytes-rw-r--r--default_images/sw/res/doublepage_11x23_h.pngbin0 -> 118 bytes-rw-r--r--default_images/sw/res/doublepage_a_11x23.pngbin0 -> 533 bytes-rw-r--r--default_images/sw/res/doublepage_a_11x23_h.pngbin0 -> 128 bytes-rw-r--r--default_images/sw/res/emptypage_11x15.pngbin0 -> 428 bytes-rw-r--r--default_images/sw/res/emptypage_11x15_h.pngbin0 -> 103 bytes-rw-r--r--default_images/sw/res/emptypage_a_11x15.pngbin0 -> 429 bytes-rw-r--r--default_images/sw/res/emptypage_a_11x15_h.pngbin0 -> 111 bytes-rw-r--r--default_images/sw/res/envhc_l.pngbin0 -> 1187 bytes-rw-r--r--default_images/sw/res/envhc_l_h.pngbin0 -> 142 bytes-rw-r--r--default_images/sw/res/envhc_u.pngbin0 -> 1042 bytes-rw-r--r--default_images/sw/res/envhc_u_h.pngbin0 -> 130 bytes-rw-r--r--default_images/sw/res/envhl_l.pngbin0 -> 1137 bytes-rw-r--r--default_images/sw/res/envhl_l_h.pngbin0 -> 142 bytes-rw-r--r--default_images/sw/res/envhl_u.pngbin0 -> 995 bytes-rw-r--r--default_images/sw/res/envhl_u_h.pngbin0 -> 130 bytes-rw-r--r--default_images/sw/res/envhr_l.pngbin0 -> 1147 bytes-rw-r--r--default_images/sw/res/envhr_l_h.pngbin0 -> 143 bytes-rw-r--r--default_images/sw/res/envhr_u.pngbin0 -> 1002 bytes-rw-r--r--default_images/sw/res/envhr_u_h.pngbin0 -> 129 bytes-rw-r--r--default_images/sw/res/envvc_l.pngbin0 -> 1299 bytes-rw-r--r--default_images/sw/res/envvc_l_h.pngbin0 -> 147 bytes-rw-r--r--default_images/sw/res/envvc_u.pngbin0 -> 1081 bytes-rw-r--r--default_images/sw/res/envvc_u_h.pngbin0 -> 139 bytes-rw-r--r--default_images/sw/res/envvl_l.pngbin0 -> 1231 bytes-rw-r--r--default_images/sw/res/envvl_l_h.pngbin0 -> 142 bytes-rw-r--r--default_images/sw/res/envvl_u.pngbin0 -> 1016 bytes-rw-r--r--default_images/sw/res/envvl_u_h.pngbin0 -> 135 bytes-rw-r--r--default_images/sw/res/envvr_l.pngbin0 -> 1226 bytes-rw-r--r--default_images/sw/res/envvr_l_h.pngbin0 -> 142 bytes-rw-r--r--default_images/sw/res/envvr_u.pngbin0 -> 1014 bytes-rw-r--r--default_images/sw/res/envvr_u_h.pngbin0 -> 135 bytes-rw-r--r--default_images/sw/res/one_left.pngbin0 -> 454 bytes-rw-r--r--default_images/sw/res/one_left_h.pngbin0 -> 101 bytes-rw-r--r--default_images/sw/res/one_right.pngbin0 -> 465 bytes-rw-r--r--default_images/sw/res/one_right_h.pngbin0 -> 101 bytes-rw-r--r--default_images/sw/res/punkt.pngbin0 -> 437 bytes-rw-r--r--default_images/sw/res/punkt_h.pngbin0 -> 111 bytes-rw-r--r--default_images/sw/res/styfamnu.pngbin0 -> 719 bytes-rw-r--r--default_images/sw/res/styfamnu_h.pngbin0 -> 121 bytes-rw-r--r--default_images/sw/res/twopages_11x25.pngbin0 -> 464 bytes-rw-r--r--default_images/sw/res/twopages_11x25_h.pngbin0 -> 116 bytes-rw-r--r--default_images/sw/res/twopages_a_11x25.pngbin0 -> 464 bytes-rw-r--r--default_images/sw/res/twopages_a_11x25_h.pngbin0 -> 125 bytes-rw-r--r--default_images/sw/res/x.pngbin0 -> 202 bytes-rw-r--r--default_images/sw/res/zetlhor2.pngbin0 -> 359 bytes-rw-r--r--default_images/sw/res/zetlhor2_h.pngbin0 -> 171 bytes-rw-r--r--default_images/sw/res/zetlver2.pngbin0 -> 387 bytes-rw-r--r--default_images/sw/res/zetlver2_h.pngbin0 -> 104 bytes-rw-r--r--default_images/toolkit/source/awt/spinner03-32-hc_01.pngbin0 -> 441 bytes-rw-r--r--default_images/toolkit/source/awt/spinner03-32-hc_02.pngbin0 -> 436 bytes-rw-r--r--default_images/toolkit/source/awt/spinner03-32-hc_03.pngbin0 -> 435 bytes-rw-r--r--default_images/toolkit/source/awt/spinner03-32-hc_04.pngbin0 -> 435 bytes-rw-r--r--default_images/toolkit/source/awt/spinner03-32-hc_05.pngbin0 -> 439 bytes-rw-r--r--default_images/toolkit/source/awt/spinner03-32-hc_06.pngbin0 -> 443 bytes-rw-r--r--default_images/toolkit/source/awt/spinner03-32-hc_07.pngbin0 -> 444 bytes-rw-r--r--default_images/toolkit/source/awt/spinner03-32-hc_08.pngbin0 -> 439 bytes-rw-r--r--default_images/toolkit/source/awt/spinner03-32-hc_09.pngbin0 -> 427 bytes-rw-r--r--default_images/toolkit/source/awt/spinner03-32-hc_10.pngbin0 -> 429 bytes-rw-r--r--default_images/toolkit/source/awt/spinner03-32-hc_11.pngbin0 -> 429 bytes-rw-r--r--default_images/toolkit/source/awt/spinner03-32-hc_12.pngbin0 -> 435 bytes-rw-r--r--default_images/toolkit/source/awt/spinner03-grey_01.pngbin0 -> 666 bytes-rw-r--r--default_images/toolkit/source/awt/spinner03-grey_02.pngbin0 -> 668 bytes-rw-r--r--default_images/toolkit/source/awt/spinner03-grey_03.pngbin0 -> 678 bytes-rw-r--r--default_images/toolkit/source/awt/spinner03-grey_04.pngbin0 -> 680 bytes-rw-r--r--default_images/toolkit/source/awt/spinner03-grey_05.pngbin0 -> 671 bytes-rw-r--r--default_images/toolkit/source/awt/spinner03-grey_06.pngbin0 -> 676 bytes-rw-r--r--default_images/toolkit/source/awt/spinner03-grey_07.pngbin0 -> 692 bytes-rw-r--r--default_images/toolkit/source/awt/spinner03-grey_08.pngbin0 -> 682 bytes-rw-r--r--default_images/toolkit/source/awt/spinner03-grey_09.pngbin0 -> 675 bytes-rw-r--r--default_images/toolkit/source/awt/spinner03-grey_10.pngbin0 -> 673 bytes-rw-r--r--default_images/toolkit/source/awt/spinner03-grey_11.pngbin0 -> 679 bytes-rw-r--r--default_images/toolkit/source/awt/spinner03-grey_12.pngbin0 -> 676 bytes-rw-r--r--default_images/vcl/source/src/check.pngbin0 -> 368 bytes-rw-r--r--default_images/vcl/source/src/checkmac.pngbin0 -> 377 bytes-rw-r--r--default_images/vcl/source/src/checkmono.bmpbin0 -> 898 bytes-rw-r--r--default_images/vcl/source/src/checkos2.pngbin0 -> 388 bytes-rw-r--r--default_images/vcl/source/src/checkunx.pngbin0 -> 226 bytes-rw-r--r--default_images/vcl/source/src/checkwin.pngbin0 -> 368 bytes-rw-r--r--default_images/vcl/source/src/closedoc.pngbin0 -> 309 bytes-rw-r--r--default_images/vcl/source/src/closedochc.pngbin0 -> 106 bytes-rw-r--r--default_images/vcl/source/src/collate.pngbin0 -> 672 bytes-rw-r--r--default_images/vcl/source/src/collate_h.pngbin0 -> 380 bytes-rw-r--r--default_images/vcl/source/src/msgbox.pngbin0 -> 6023 bytes-rw-r--r--default_images/vcl/source/src/msgbox_hc.pngbin0 -> 1106 bytes-rw-r--r--default_images/vcl/source/src/ncollate.pngbin0 -> 635 bytes-rw-r--r--default_images/vcl/source/src/ncollate_h.pngbin0 -> 393 bytes-rw-r--r--default_images/vcl/source/src/pin.pngbin0 -> 330 bytes-rw-r--r--default_images/vcl/source/src/radio.pngbin0 -> 323 bytes-rw-r--r--default_images/vcl/source/src/radiomac.pngbin0 -> 380 bytes-rw-r--r--default_images/vcl/source/src/radiomono.bmpbin0 -> 638 bytes-rw-r--r--default_images/vcl/source/src/radioos2.pngbin0 -> 404 bytes-rw-r--r--default_images/vcl/source/src/radiounx.pngbin0 -> 368 bytes-rw-r--r--default_images/vcl/source/src/radiowin.pngbin0 -> 323 bytes-rw-r--r--default_images/vcl/source/src/scrbmp.pngbin0 -> 749 bytes-rw-r--r--default_images/vcl/source/src/scrmsk.pngbin0 -> 229 bytes-rw-r--r--default_images/vcl/source/src/splharw.pngbin0 -> 258 bytes-rw-r--r--default_images/vcl/source/src/splhpin.pngbin0 -> 299 bytes-rw-r--r--default_images/vcl/source/src/splvarw.pngbin0 -> 279 bytes-rw-r--r--default_images/vcl/source/src/splvpin.pngbin0 -> 293 bytes-rw-r--r--default_images/wizards/res/diagonal.pngbin0 -> 522 bytes-rw-r--r--default_images/wizards/res/diagonal_h.pngbin0 -> 231 bytes-rw-r--r--default_images/wizards/res/formarrangefree_42.pngbin0 -> 476 bytes-rw-r--r--default_images/wizards/res/formarrangefree_42_h.pngbin0 -> 175 bytes-rw-r--r--default_images/wizards/res/formarrangelistside_42.pngbin0 -> 424 bytes-rw-r--r--default_images/wizards/res/formarrangelistside_42_h.pngbin0 -> 132 bytes-rw-r--r--default_images/wizards/res/formarrangelisttop_42.pngbin0 -> 418 bytes-rw-r--r--default_images/wizards/res/formarrangelisttop_42_h.pngbin0 -> 134 bytes-rw-r--r--default_images/wizards/res/formarrangetable_42.pngbin0 -> 442 bytes-rw-r--r--default_images/wizards/res/formarrangetable_42_h.pngbin0 -> 127 bytes-rw-r--r--default_images/wizards/res/frame_bottom.pngbin0 -> 472 bytes-rw-r--r--default_images/wizards/res/frame_bottom_h.pngbin0 -> 170 bytes-rw-r--r--default_images/wizards/res/frame_left.pngbin0 -> 474 bytes-rw-r--r--default_images/wizards/res/frame_left_h.pngbin0 -> 161 bytes-rw-r--r--default_images/wizards/res/frame_right.pngbin0 -> 470 bytes-rw-r--r--default_images/wizards/res/frame_right_h.pngbin0 -> 160 bytes-rw-r--r--default_images/wizards/res/frame_top.pngbin0 -> 472 bytes-rw-r--r--default_images/wizards/res/frame_top_h.pngbin0 -> 170 bytes-rw-r--r--default_images/wizards/res/landscape_32.pngbin0 -> 735 bytes-rw-r--r--default_images/wizards/res/landscape_32_h.pngbin0 -> 127 bytes-rw-r--r--default_images/wizards/res/portrait_32.pngbin0 -> 749 bytes-rw-r--r--default_images/wizards/res/portrait_32_h.pngbin0 -> 126 bytes-rw-r--r--default_images/wizards/res/simple.pngbin0 -> 460 bytes-rw-r--r--default_images/wizards/res/simple_h.pngbin0 -> 161 bytes-rw-r--r--default_images/wizards/res/table_2.pngbin0 -> 477 bytes-rw-r--r--default_images/wizards/res/table_2_h.pngbin0 -> 181 bytes-rw-r--r--default_images/wizards/res/table_3.pngbin0 -> 468 bytes-rw-r--r--default_images/wizards/res/table_3_h.pngbin0 -> 169 bytes-rw-r--r--default_images/wizards/res/ttt.pngbin0 -> 749 bytes-rw-r--r--default_images/wizards/res/zigzag.pngbin0 -> 539 bytes-rw-r--r--default_images/wizards/res/zigzag_h.pngbin0 -> 242 bytes-rw-r--r--default_images/xmlsecurity/res/caution_11x16.pngbin0 -> 536 bytes-rw-r--r--default_images/xmlsecurity/res/caution_11x16_h.pngbin0 -> 145 bytes-rw-r--r--default_images/xmlsecurity/res/certificate_16.pngbin0 -> 708 bytes-rw-r--r--default_images/xmlsecurity/res/certificate_16_h.pngbin0 -> 157 bytes-rw-r--r--default_images/xmlsecurity/res/certificate_40x56.pngbin0 -> 2614 bytes-rw-r--r--default_images/xmlsecurity/res/certificate_40x56_h.pngbin0 -> 267 bytes-rw-r--r--default_images/xmlsecurity/res/key_12.pngbin0 -> 439 bytes-rw-r--r--default_images/xmlsecurity/res/key_12_h.pngbin0 -> 120 bytes-rw-r--r--default_images/xmlsecurity/res/notcertificate_16.pngbin0 -> 876 bytes-rw-r--r--default_images/xmlsecurity/res/notcertificate_16_h.pngbin0 -> 194 bytes-rw-r--r--default_images/xmlsecurity/res/notcertificate_40x56.pngbin0 -> 3343 bytes-rw-r--r--default_images/xmlsecurity/res/notcertificate_40x56_h.pngbin0 -> 1213 bytes-rw-r--r--default_images/xmlsecurity/res/signet_11x16.pngbin0 -> 604 bytes-rw-r--r--default_images/xmlsecurity/res/signet_11x16_h.pngbin0 -> 147 bytes-rw-r--r--desktop/inc/app.hxx213
-rw-r--r--desktop/inc/deployment.hrc87
-rw-r--r--desktop/inc/makefile.mk47
-rw-r--r--desktop/inc/pch/precompiled_desktop.cxx29
-rw-r--r--desktop/inc/pch/precompiled_desktop.hxx40
-rw-r--r--desktop/os2/source/applauncher/launcher.cxx122
-rw-r--r--desktop/os2/source/applauncher/launcher.hxx9
-rw-r--r--desktop/os2/source/applauncher/makefile.mk121
-rw-r--r--desktop/os2/source/applauncher/officeloader.cxx3
-rw-r--r--desktop/os2/source/applauncher/quickstart.cxx3
-rw-r--r--desktop/os2/source/applauncher/sbase.cxx3
-rw-r--r--desktop/os2/source/applauncher/scalc.cxx3
-rw-r--r--desktop/os2/source/applauncher/sdraw.cxx3
-rw-r--r--desktop/os2/source/applauncher/simpress.cxx3
-rw-r--r--desktop/os2/source/applauncher/smath.cxx3
-rw-r--r--desktop/os2/source/applauncher/swriter.cxx3
-rw-r--r--desktop/prj/build.lst43
-rw-r--r--desktop/prj/d.lst145
-rw-r--r--desktop/qa/deployment_misc/makefile.mk54
-rw-r--r--desktop/qa/deployment_misc/test_dp_version.cxx90
-rw-r--r--desktop/qa/deployment_misc/version.map34
-rw-r--r--desktop/registry/data/org/openoffice/Office/Jobs.xcu74
-rw-r--r--desktop/registry/data/org/openoffice/Office/makefile.mk77
-rw-r--r--desktop/scripts/basis-link1
-rw-r--r--desktop/scripts/makefile.mk67
-rw-r--r--desktop/scripts/mozwrapper.sh8
-rw-r--r--desktop/scripts/odf-basis-link1
-rw-r--r--desktop/scripts/sbase.sh4
-rw-r--r--desktop/scripts/scalc.sh4
-rw-r--r--desktop/scripts/sdraw.sh4
-rw-r--r--desktop/scripts/simpress.sh4
-rw-r--r--desktop/scripts/smaster.sh4
-rw-r--r--desktop/scripts/smath.sh4
-rw-r--r--desktop/scripts/so-basis-link1
-rw-r--r--desktop/scripts/soffice.sh135
-rw-r--r--desktop/scripts/sweb.sh4
-rw-r--r--desktop/scripts/swriter.sh4
-rw-r--r--desktop/scripts/unoinfo.sh56
-rw-r--r--desktop/scripts/unopkg.sh76
-rw-r--r--desktop/scripts/ure-link1
-rw-r--r--desktop/source/app/app.cxx3312
-rw-r--r--desktop/source/app/appfirststart.cxx274
-rw-r--r--desktop/source/app/appinit.cxx484
-rw-r--r--desktop/source/app/appinit.hxx50
-rw-r--r--desktop/source/app/appsys.cxx69
-rw-r--r--desktop/source/app/appsys.hxx42
-rwxr-xr-xdesktop/source/app/check_ext_deps.cxx431
-rw-r--r--desktop/source/app/checkinstall.cxx118
-rw-r--r--desktop/source/app/checkinstall.hxx42
-rw-r--r--desktop/source/app/cmdlineargs.cxx900
-rw-r--r--desktop/source/app/cmdlineargs.hxx212
-rw-r--r--desktop/source/app/cmdlinehelp.cxx173
-rw-r--r--desktop/source/app/cmdlinehelp.hxx23
-rw-r--r--desktop/source/app/configinit.cxx303
-rw-r--r--desktop/source/app/configinit.hxx71
-rw-r--r--desktop/source/app/copyright_ascii_ooo.c10
-rw-r--r--desktop/source/app/copyright_ascii_sun.c8
-rw-r--r--desktop/source/app/desktop.hrc91
-rw-r--r--desktop/source/app/desktop.src234
-rw-r--r--desktop/source/app/desktopcontext.cxx63
-rw-r--r--desktop/source/app/desktopcontext.hxx50
-rw-r--r--desktop/source/app/desktopresid.cxx44
-rw-r--r--desktop/source/app/desktopresid.hxx44
-rw-r--r--desktop/source/app/dispatchwatcher.cxx514
-rw-r--r--desktop/source/app/dispatchwatcher.hxx124
-rw-r--r--desktop/source/app/exports.dxp3
-rw-r--r--desktop/source/app/langselect.cxx558
-rw-r--r--desktop/source/app/langselect.hxx74
-rw-r--r--desktop/source/app/lockfile.cxx256
-rw-r--r--desktop/source/app/lockfile.hxx99
-rw-r--r--desktop/source/app/lockfile2.cxx70
-rw-r--r--desktop/source/app/main.c36
-rw-r--r--desktop/source/app/makefile.mk115
-rw-r--r--desktop/source/app/officeipcthread.cxx994
-rw-r--r--desktop/source/app/officeipcthread.hxx165
-rw-r--r--desktop/source/app/omutexmember.hxx61
-rw-r--r--desktop/source/app/sofficemain.cxx52
-rw-r--r--desktop/source/app/sofficemain.h43
-rw-r--r--desktop/source/app/userinstall.cxx301
-rw-r--r--desktop/source/app/userinstall.hxx52
-rw-r--r--desktop/source/app/version.map34
-rw-r--r--desktop/source/deployment/dp_log.cxx211
-rw-r--r--desktop/source/deployment/dp_persmap.cxx253
-rw-r--r--desktop/source/deployment/dp_services.cxx136
-rw-r--r--desktop/source/deployment/dp_xml.cxx78
-rw-r--r--desktop/source/deployment/gui/descedit.cxx100
-rw-r--r--desktop/source/deployment/gui/descedit.hxx57
-rw-r--r--desktop/source/deployment/gui/dp_gui.h98
-rwxr-xr-xdesktop/source/deployment/gui/dp_gui.hrc180
-rw-r--r--desktop/source/deployment/gui/dp_gui_autoscrolledit.cxx74
-rw-r--r--desktop/source/deployment/gui/dp_gui_autoscrolledit.hxx51
-rw-r--r--desktop/source/deployment/gui/dp_gui_backend.src131
-rw-r--r--desktop/source/deployment/gui/dp_gui_dependencydialog.cxx86
-rw-r--r--desktop/source/deployment/gui/dp_gui_dependencydialog.hxx68
-rw-r--r--desktop/source/deployment/gui/dp_gui_dependencydialog.src70
-rwxr-xr-xdesktop/source/deployment/gui/dp_gui_dialog.src345
-rw-r--r--desktop/source/deployment/gui/dp_gui_dialog2.cxx1778
-rwxr-xr-xdesktop/source/deployment/gui/dp_gui_dialog2.hxx266
-rw-r--r--desktop/source/deployment/gui/dp_gui_dialog2.src252
-rwxr-xr-xdesktop/source/deployment/gui/dp_gui_extensioncmdqueue.cxx1212
-rwxr-xr-xdesktop/source/deployment/gui/dp_gui_extensioncmdqueue.hxx111
-rwxr-xr-xdesktop/source/deployment/gui/dp_gui_extlistbox.cxx1210
-rwxr-xr-xdesktop/source/deployment/gui/dp_gui_extlistbox.hxx270
-rwxr-xr-xdesktop/source/deployment/gui/dp_gui_service.cxx376
-rw-r--r--desktop/source/deployment/gui/dp_gui_shared.hxx62
-rw-r--r--desktop/source/deployment/gui/dp_gui_system.cxx59
-rw-r--r--desktop/source/deployment/gui/dp_gui_system.hxx37
-rwxr-xr-xdesktop/source/deployment/gui/dp_gui_theextmgr.cxx531
-rwxr-xr-xdesktop/source/deployment/gui/dp_gui_theextmgr.hxx131
-rw-r--r--desktop/source/deployment/gui/dp_gui_thread.cxx82
-rw-r--r--desktop/source/deployment/gui/dp_gui_thread.hxx84
-rw-r--r--desktop/source/deployment/gui/dp_gui_updatedata.hxx86
-rw-r--r--desktop/source/deployment/gui/dp_gui_updatedialog.cxx1301
-rw-r--r--desktop/source/deployment/gui/dp_gui_updatedialog.hxx233
-rw-r--r--desktop/source/deployment/gui/dp_gui_updatedialog.src265
-rw-r--r--desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx756
-rw-r--r--desktop/source/deployment/gui/dp_gui_updateinstalldialog.hxx144
-rw-r--r--desktop/source/deployment/gui/dp_gui_updateinstalldialog.src203
-rw-r--r--desktop/source/deployment/gui/dp_gui_versionboxes.src76
-rw-r--r--desktop/source/deployment/gui/license_dialog.cxx330
-rw-r--r--desktop/source/deployment/gui/license_dialog.hxx71
-rw-r--r--desktop/source/deployment/gui/makefile.mk109
-rw-r--r--desktop/source/deployment/inc/db.hxx173
-rw-r--r--desktop/source/deployment/inc/dp_dependencies.hxx82
-rw-r--r--desktop/source/deployment/inc/dp_descriptioninfoset.hxx299
-rw-r--r--desktop/source/deployment/inc/dp_identifier.hxx92
-rw-r--r--desktop/source/deployment/inc/dp_interact.h150
-rw-r--r--desktop/source/deployment/inc/dp_misc.h179
-rw-r--r--desktop/source/deployment/inc/dp_misc.mk42
-rw-r--r--desktop/source/deployment/inc/dp_misc_api.hxx40
-rw-r--r--desktop/source/deployment/inc/dp_persmap.h65
-rw-r--r--desktop/source/deployment/inc/dp_platform.hxx56
-rw-r--r--desktop/source/deployment/inc/dp_resource.h67
-rw-r--r--desktop/source/deployment/inc/dp_ucb.h91
-rwxr-xr-xdesktop/source/deployment/inc/dp_update.hxx147
-rw-r--r--desktop/source/deployment/inc/dp_version.hxx48
-rw-r--r--desktop/source/deployment/inc/dp_xml.h57
-rw-r--r--desktop/source/deployment/makefile.mk112
-rw-r--r--desktop/source/deployment/manager/dp_activepackages.cxx206
-rw-r--r--desktop/source/deployment/manager/dp_activepackages.hxx99
-rw-r--r--desktop/source/deployment/manager/dp_commandenvironments.cxx286
-rw-r--r--desktop/source/deployment/manager/dp_commandenvironments.hxx160
-rw-r--r--desktop/source/deployment/manager/dp_extensionmanager.cxx1369
-rw-r--r--desktop/source/deployment/manager/dp_extensionmanager.hxx307
-rw-r--r--desktop/source/deployment/manager/dp_informationprovider.cxx393
-rw-r--r--desktop/source/deployment/manager/dp_manager.cxx1673
-rw-r--r--desktop/source/deployment/manager/dp_manager.h294
-rw-r--r--desktop/source/deployment/manager/dp_manager.hrc39
-rw-r--r--desktop/source/deployment/manager/dp_manager.src59
-rw-r--r--desktop/source/deployment/manager/dp_managerfac.cxx200
-rw-r--r--desktop/source/deployment/manager/dp_properties.cxx169
-rw-r--r--desktop/source/deployment/manager/dp_properties.hxx78
-rw-r--r--desktop/source/deployment/manager/makefile.mk55
-rw-r--r--desktop/source/deployment/misc/db.cxx272
-rw-r--r--desktop/source/deployment/misc/dp_dependencies.cxx171
-rw-r--r--desktop/source/deployment/misc/dp_descriptioninfoset.cxx864
-rw-r--r--desktop/source/deployment/misc/dp_identifier.cxx73
-rw-r--r--desktop/source/deployment/misc/dp_interact.cxx185
-rw-r--r--desktop/source/deployment/misc/dp_misc.cxx630
-rw-r--r--desktop/source/deployment/misc/dp_misc.hrc33
-rw-r--r--desktop/source/deployment/misc/dp_misc.src40
-rw-r--r--desktop/source/deployment/misc/dp_platform.cxx232
-rw-r--r--desktop/source/deployment/misc/dp_resource.cxx233
-rw-r--r--desktop/source/deployment/misc/dp_ucb.cxx320
-rwxr-xr-xdesktop/source/deployment/misc/dp_update.cxx397
-rw-r--r--desktop/source/deployment/misc/dp_version.cxx74
-rw-r--r--desktop/source/deployment/misc/makefile.mk95
-rw-r--r--desktop/source/deployment/registry/component/dp_compbackenddb.cxx156
-rw-r--r--desktop/source/deployment/registry/component/dp_compbackenddb.hxx120
-rw-r--r--desktop/source/deployment/registry/component/dp_component.cxx1586
-rw-r--r--desktop/source/deployment/registry/component/dp_component.hrc39
-rw-r--r--desktop/source/deployment/registry/component/dp_component.src54
-rw-r--r--desktop/source/deployment/registry/component/makefile.mk48
-rw-r--r--desktop/source/deployment/registry/configuration/dp_configuration.cxx771
-rw-r--r--desktop/source/deployment/registry/configuration/dp_configuration.hrc36
-rw-r--r--desktop/source/deployment/registry/configuration/dp_configuration.src39
-rw-r--r--desktop/source/deployment/registry/configuration/dp_configurationbackenddb.cxx183
-rw-r--r--desktop/source/deployment/registry/configuration/dp_configurationbackenddb.hxx93
-rw-r--r--desktop/source/deployment/registry/configuration/makefile.mk52
-rw-r--r--desktop/source/deployment/registry/dp_backend.cxx807
-rw-r--r--desktop/source/deployment/registry/dp_backenddb.cxx649
-rw-r--r--desktop/source/deployment/registry/dp_registry.cxx558
-rw-r--r--desktop/source/deployment/registry/dp_registry.src59
-rw-r--r--desktop/source/deployment/registry/executable/dp_executable.cxx331
-rw-r--r--desktop/source/deployment/registry/executable/dp_executablebackenddb.cxx81
-rw-r--r--desktop/source/deployment/registry/executable/dp_executablebackenddb.hxx76
-rw-r--r--desktop/source/deployment/registry/executable/makefile.mk44
-rw-r--r--desktop/source/deployment/registry/help/dp_help.cxx598
-rw-r--r--desktop/source/deployment/registry/help/dp_help.hrc39
-rw-r--r--desktop/source/deployment/registry/help/dp_help.src44
-rw-r--r--desktop/source/deployment/registry/help/dp_helpbackenddb.cxx175
-rw-r--r--desktop/source/deployment/registry/help/dp_helpbackenddb.hxx89
-rw-r--r--desktop/source/deployment/registry/help/makefile.mk52
-rw-r--r--desktop/source/deployment/registry/inc/dp_backend.h379
-rw-r--r--desktop/source/deployment/registry/inc/dp_backenddb.hxx170
-rw-r--r--desktop/source/deployment/registry/inc/dp_registry.hrc40
-rw-r--r--desktop/source/deployment/registry/makefile.mk49
-rw-r--r--desktop/source/deployment/registry/package/dp_extbackenddb.cxx135
-rw-r--r--desktop/source/deployment/registry/package/dp_extbackenddb.hxx96
-rw-r--r--desktop/source/deployment/registry/package/dp_package.cxx1645
-rw-r--r--desktop/source/deployment/registry/package/dp_package.hrc35
-rw-r--r--desktop/source/deployment/registry/package/dp_package.src34
-rw-r--r--desktop/source/deployment/registry/package/makefile.mk48
-rw-r--r--desktop/source/deployment/registry/script/dp_lib_container.cxx73
-rw-r--r--desktop/source/deployment/registry/script/dp_lib_container.h57
-rw-r--r--desktop/source/deployment/registry/script/dp_script.cxx499
-rw-r--r--desktop/source/deployment/registry/script/dp_script.hrc39
-rw-r--r--desktop/source/deployment/registry/script/dp_script.src49
-rw-r--r--desktop/source/deployment/registry/script/dp_scriptbackenddb.cxx85
-rw-r--r--desktop/source/deployment/registry/script/dp_scriptbackenddb.hxx73
-rw-r--r--desktop/source/deployment/registry/script/makefile.mk49
-rw-r--r--desktop/source/deployment/registry/sfwk/dp_parceldesc.cxx130
-rw-r--r--desktop/source/deployment/registry/sfwk/dp_parceldesc.hxx89
-rw-r--r--desktop/source/deployment/registry/sfwk/dp_sfwk.cxx408
-rw-r--r--desktop/source/deployment/registry/sfwk/dp_sfwk.hrc35
-rw-r--r--desktop/source/deployment/registry/sfwk/dp_sfwk.src35
-rw-r--r--desktop/source/deployment/registry/sfwk/makefile.mk48
-rw-r--r--desktop/source/deployment/target.pmk36
-rw-r--r--desktop/source/deployment/unopkg/makefile.mk48
-rw-r--r--desktop/source/deployment/unopkg/unopkg.src84
-rw-r--r--desktop/source/inc/exithelper.hxx68
-rw-r--r--desktop/source/inc/helpid.hrc78
-rw-r--r--desktop/source/migration/cfgfilter.cxx333
-rw-r--r--desktop/source/migration/cfgfilter.hxx173
-rw-r--r--desktop/source/migration/makefile.mk59
-rwxr-xr-xdesktop/source/migration/migration.cxx1365
-rw-r--r--desktop/source/migration/migration.hxx46
-rw-r--r--desktop/source/migration/migration_impl.hxx252
-rw-r--r--desktop/source/migration/pages.cxx673
-rw-r--r--desktop/source/migration/pages.hxx214
-rw-r--r--desktop/source/migration/services/autocorrmigration.cxx285
-rw-r--r--desktop/source/migration/services/autocorrmigration.hxx102
-rw-r--r--desktop/source/migration/services/basicmigration.cxx274
-rw-r--r--desktop/source/migration/services/basicmigration.hxx102
-rw-r--r--desktop/source/migration/services/cexports.cxx80
-rwxr-xr-xdesktop/source/migration/services/cexportsoo3.cxx68
-rw-r--r--desktop/source/migration/services/cppumaker.mk36
-rw-r--r--desktop/source/migration/services/jvmfwk.cxx529
-rw-r--r--desktop/source/migration/services/jvmfwk.hxx50
-rw-r--r--desktop/source/migration/services/makefile.mk119
-rw-r--r--desktop/source/migration/services/migrationoo2.xml78
-rwxr-xr-xdesktop/source/migration/services/migrationoo3.map8
-rw-r--r--desktop/source/migration/services/misc.hxx48
-rwxr-xr-xdesktop/source/migration/services/oo3extensionmigration.cxx583
-rwxr-xr-xdesktop/source/migration/services/oo3extensionmigration.hxx160
-rwxr-xr-xdesktop/source/migration/services/wordbookmigration.cxx322
-rwxr-xr-xdesktop/source/migration/services/wordbookmigration.hxx102
-rw-r--r--desktop/source/migration/wizard.cxx654
-rw-r--r--desktop/source/migration/wizard.hrc99
-rw-r--r--desktop/source/migration/wizard.hxx106
-rw-r--r--desktop/source/migration/wizard.src424
-rw-r--r--desktop/source/offacc/acceptor.cxx367
-rw-r--r--desktop/source/offacc/acceptor.hxx129
-rw-r--r--desktop/source/offacc/makefile.mk62
-rw-r--r--desktop/source/pagein/file_image.h78
-rw-r--r--desktop/source/pagein/file_image_unx.c150
-rw-r--r--desktop/source/pagein/makefile.mk165
-rw-r--r--desktop/source/pagein/pagein.c149
-rw-r--r--desktop/source/pkgchk/unopkg/makefile.mk104
-rw-r--r--desktop/source/pkgchk/unopkg/unopkg_app.cxx691
-rw-r--r--desktop/source/pkgchk/unopkg/unopkg_cmdenv.cxx433
-rw-r--r--desktop/source/pkgchk/unopkg/unopkg_main.c36
-rw-r--r--desktop/source/pkgchk/unopkg/unopkg_main.h43
-rw-r--r--desktop/source/pkgchk/unopkg/unopkg_misc.cxx637
-rw-r--r--desktop/source/pkgchk/unopkg/unopkg_shared.h188
-rw-r--r--desktop/source/pkgchk/unopkg/version.map34
-rw-r--r--desktop/source/registration/com/sun/star/registration/Registration.java339
-rw-r--r--desktop/source/registration/com/sun/star/registration/makefile.mk55
-rw-r--r--desktop/source/registration/com/sun/star/registration/manifest2
-rw-r--r--desktop/source/registration/com/sun/star/servicetag/BrowserSupport.java201
-rw-r--r--desktop/source/registration/com/sun/star/servicetag/Installer.java943
-rw-r--r--desktop/source/registration/com/sun/star/servicetag/LinuxSystemEnvironment.java323
-rw-r--r--desktop/source/registration/com/sun/star/servicetag/RegistrationData.java531
-rw-r--r--desktop/source/registration/com/sun/star/servicetag/RegistrationDocument.java440
-rw-r--r--desktop/source/registration/com/sun/star/servicetag/Registry.java554
-rw-r--r--desktop/source/registration/com/sun/star/servicetag/ServiceTag.java636
-rw-r--r--desktop/source/registration/com/sun/star/servicetag/SolarisServiceTag.java64
-rw-r--r--desktop/source/registration/com/sun/star/servicetag/SolarisSystemEnvironment.java421
-rw-r--r--desktop/source/registration/com/sun/star/servicetag/SunConnection.java292
-rw-r--r--desktop/source/registration/com/sun/star/servicetag/SysnetRegistryHelper.java376
-rw-r--r--desktop/source/registration/com/sun/star/servicetag/SystemEnvironment.java436
-rw-r--r--desktop/source/registration/com/sun/star/servicetag/UnauthorizedAccessException.java55
-rw-r--r--desktop/source/registration/com/sun/star/servicetag/Util.java293
-rw-r--r--desktop/source/registration/com/sun/star/servicetag/WindowsSystemEnvironment.java232
-rw-r--r--desktop/source/registration/com/sun/star/servicetag/makefile.mk79
-rw-r--r--desktop/source/registration/com/sun/star/servicetag/resources/product_registration.xsd366
-rw-r--r--desktop/source/so_comp/evaluation.cxx205
-rw-r--r--desktop/source/so_comp/evaluation.hxx92
-rw-r--r--desktop/source/so_comp/makefile.mk77
-rw-r--r--desktop/source/so_comp/oemjob.cxx280
-rw-r--r--desktop/source/so_comp/oemjob.hxx92
-rw-r--r--desktop/source/so_comp/services.cxx160
-rwxr-xr-xdesktop/source/splash/firststart.cxx156
-rwxr-xr-xdesktop/source/splash/firststart.hxx90
-rw-r--r--desktop/source/splash/makefile.mk89
-rwxr-xr-xdesktop/source/splash/services_spl.cxx157
-rw-r--r--desktop/source/splash/splash.cxx715
-rw-r--r--desktop/source/splash/splash.hxx136
-rw-r--r--desktop/test/deployment/boxt/Addons.xcu50
-rw-r--r--desktop/test/deployment/boxt/ProtocolHandler.xcu38
-rw-r--r--desktop/test/deployment/boxt/boxt.cxx235
-rw-r--r--desktop/test/deployment/boxt/description.xml39
-rw-r--r--desktop/test/deployment/boxt/makefile.mk68
-rw-r--r--desktop/test/deployment/boxt/manifest.xml37
-rw-r--r--desktop/test/deployment/dependencies/broken-dependency.oxtbin0 -> 1655 bytes-rw-r--r--desktop/test/deployment/dependencies/double-dependencies.oxtbin0 -> 1651 bytes-rw-r--r--desktop/test/deployment/dependencies/empty-dependencies.oxtbin0 -> 1624 bytes-rw-r--r--desktop/test/deployment/dependencies/funny-dependency.oxtbin0 -> 1730 bytes-rw-r--r--desktop/test/deployment/dependencies/license-dependency.oxtbin0 -> 1891 bytes-rw-r--r--desktop/test/deployment/dependencies/many-dependencies.oxtbin0 -> 1702 bytes-rw-r--r--desktop/test/deployment/dependencies/minattr22.oxtbin0 -> 1690 bytes-rw-r--r--desktop/test/deployment/dependencies/minattr23.oxtbin0 -> 1690 bytes-rw-r--r--desktop/test/deployment/dependencies/minattr24.oxtbin0 -> 1690 bytes-rw-r--r--desktop/test/deployment/dependencies/no-dependencies.oxtbin0 -> 1611 bytes-rw-r--r--desktop/test/deployment/dependencies/no-description.oxtbin0 -> 1360 bytes-rw-r--r--desktop/test/deployment/dependencies/readme.txt82
-rw-r--r--desktop/test/deployment/dependencies/unknown-dependency.oxtbin0 -> 1633 bytes-rw-r--r--desktop/test/deployment/dependencies/version10000.oxtbin0 -> 1668 bytes-rw-r--r--desktop/test/deployment/dependencies/version21.oxtbin0 -> 1666 bytes-rw-r--r--desktop/test/deployment/dependencies/version21ns.oxtbin0 -> 1661 bytes-rw-r--r--desktop/test/deployment/dependencies/version21other.oxtbin0 -> 1679 bytes-rw-r--r--desktop/test/deployment/dependencies/version22.oxtbin0 -> 1666 bytes-rw-r--r--desktop/test/deployment/dependencies/version23.oxtbin0 -> 1666 bytes-rw-r--r--desktop/test/deployment/dependencies/versionempty.oxtbin0 -> 1675 bytes-rw-r--r--desktop/test/deployment/dependencies/versionnone.oxtbin0 -> 1674 bytes-rw-r--r--desktop/test/deployment/description/desc1.oxtbin0 -> 2096 bytes-rw-r--r--desktop/test/deployment/description/desc2.oxtbin0 -> 2091 bytes-rw-r--r--desktop/test/deployment/description/desc3.oxtbin0 -> 2070 bytes-rw-r--r--desktop/test/deployment/description/desc4.oxtbin0 -> 2061 bytes-rw-r--r--desktop/test/deployment/description/desc5.oxtbin0 -> 2041 bytes-rwxr-xr-xdesktop/test/deployment/description/readme.txt23
-rw-r--r--desktop/test/deployment/display_name/name1.oxtbin0 -> 704 bytes-rw-r--r--desktop/test/deployment/display_name/name2.oxtbin0 -> 699 bytes-rw-r--r--desktop/test/deployment/display_name/name3.oxtbin0 -> 681 bytes-rw-r--r--desktop/test/deployment/display_name/name4.oxtbin0 -> 675 bytes-rw-r--r--desktop/test/deployment/display_name/name5.oxtbin0 -> 654 bytes-rw-r--r--desktop/test/deployment/display_name/readme.txt26
-rw-r--r--desktop/test/deployment/executable_content/build/hello.c45
-rw-r--r--desktop/test/deployment/executable_content/build/makefile.mk51
-rw-r--r--desktop/test/deployment/executable_content/build/readme.txt2
-rw-r--r--desktop/test/deployment/executable_content/hello.oxtbin0 -> 35048 bytes-rw-r--r--desktop/test/deployment/executable_content/readme.txt12
-rw-r--r--desktop/test/deployment/identifier/explicit/identifier.oxtbin0 -> 1660 bytes-rw-r--r--desktop/test/deployment/identifier/legacy/identifier.oxtbin0 -> 1634 bytes-rw-r--r--desktop/test/deployment/identifier/readme.txt33
-rw-r--r--desktop/test/deployment/locationtest/LocationTest.idl40
-rw-r--r--desktop/test/deployment/locationtest/LocationTest.java165
-rw-r--r--desktop/test/deployment/locationtest/LocationTest.odtbin0 -> 7681 bytes-rw-r--r--desktop/test/deployment/locationtest/MANIFEST.MF2
-rw-r--r--desktop/test/deployment/locationtest/delzip1
-rw-r--r--desktop/test/deployment/locationtest/description.xml13
-rw-r--r--desktop/test/deployment/locationtest/makefile.mk84
-rw-r--r--desktop/test/deployment/locationtest/manifest.xml5
-rw-r--r--desktop/test/deployment/options/handler/com/sun/star/comp/extensionoptions/MANIFEST.MF2
-rw-r--r--desktop/test/deployment/options/handler/com/sun/star/comp/extensionoptions/OptionsEventHandler.java449
-rw-r--r--desktop/test/deployment/options/handler/com/sun/star/comp/extensionoptions/makefile.mk53
-rw-r--r--desktop/test/deployment/options/leaf1.oxtbin0 -> 8308 bytes-rw-r--r--desktop/test/deployment/options/leaf1mod.oxtbin0 -> 8310 bytes-rw-r--r--desktop/test/deployment/options/leaf2.oxtbin0 -> 8338 bytes-rw-r--r--desktop/test/deployment/options/leaves1.oxtbin0 -> 21158 bytes-rw-r--r--desktop/test/deployment/options/leaves2.oxtbin0 -> 21153 bytes-rw-r--r--desktop/test/deployment/options/leaves3.oxtbin0 -> 21080 bytes-rw-r--r--desktop/test/deployment/options/modules1.oxtbin0 -> 24317 bytes-rw-r--r--desktop/test/deployment/options/modules2.oxtbin0 -> 24196 bytes-rw-r--r--desktop/test/deployment/options/nodes1.oxtbin0 -> 1882 bytes-rw-r--r--desktop/test/deployment/options/nodes2.oxtbin0 -> 24287 bytes-rw-r--r--desktop/test/deployment/options/nodes3.oxtbin0 -> 24315 bytes-rw-r--r--desktop/test/deployment/options/nodes4.oxtbin0 -> 24318 bytes-rw-r--r--desktop/test/deployment/options/nodes5.oxtbin0 -> 12616 bytes-rw-r--r--desktop/test/deployment/options/readme.txt200
-rw-r--r--desktop/test/deployment/simple_license/BadDesc.oxtbin0 -> 9663 bytes-rw-r--r--desktop/test/deployment/simple_license/BadNamespace.oxtbin0 -> 9736 bytes-rw-r--r--desktop/test/deployment/simple_license/BadRoot.oxtbin0 -> 9073 bytes-rw-r--r--desktop/test/deployment/simple_license/Locale1.oxtbin0 -> 2126 bytes-rw-r--r--desktop/test/deployment/simple_license/Locale2.oxtbin0 -> 2121 bytes-rw-r--r--desktop/test/deployment/simple_license/Locale3.oxtbin0 -> 2101 bytes-rw-r--r--desktop/test/deployment/simple_license/Locale4.oxtbin0 -> 2094 bytes-rw-r--r--desktop/test/deployment/simple_license/Locale5.oxtbin0 -> 2072 bytes-rw-r--r--desktop/test/deployment/simple_license/Locale6.oxtbin0 -> 1397 bytes-rw-r--r--desktop/test/deployment/simple_license/LongLic.oxtbin0 -> 9521 bytes-rw-r--r--desktop/test/deployment/simple_license/MissingLic.oxtbin0 -> 9214 bytes-rw-r--r--desktop/test/deployment/simple_license/MissingLicRef.oxtbin0 -> 9332 bytes-rw-r--r--desktop/test/deployment/simple_license/NoDefLang.oxtbin0 -> 9360 bytes-rw-r--r--desktop/test/deployment/simple_license/NoDesc.oxtbin0 -> 8722 bytes-rw-r--r--desktop/test/deployment/simple_license/NoLang.oxtbin0 -> 9217 bytes-rw-r--r--desktop/test/deployment/simple_license/Prefix.oxtbin0 -> 1112 bytes-rw-r--r--desktop/test/deployment/simple_license/ShortLicense.oxtbin0 -> 9381 bytes-rw-r--r--desktop/test/deployment/simple_license/ShortLicenseShared.oxtbin0 -> 9382 bytes-rwxr-xr-xdesktop/test/deployment/simple_license/suppress_license.oxtbin0 -> 2143 bytes-rw-r--r--desktop/test/deployment/simple_license/tests_simple_license.odtbin0 -> 16629 bytes-rw-r--r--desktop/test/deployment/update/changing_display_name/change1.oxtbin0 -> 1650 bytes-rw-r--r--desktop/test/deployment/update/changing_display_name/change1_mod.oxtbin0 -> 1673 bytes-rw-r--r--desktop/test/deployment/update/changing_display_name/readme.txt13
-rw-r--r--desktop/test/deployment/update/changing_display_name/update1/change1.oxtbin0 -> 1675 bytes-rw-r--r--desktop/test/deployment/update/changing_display_name/update1/change1.update.xml10
-rw-r--r--desktop/test/deployment/update/changing_display_name/update2/change1.oxtbin0 -> 1687 bytes-rw-r--r--desktop/test/deployment/update/changing_display_name/update2/change1.update.xml10
-rw-r--r--desktop/test/deployment/update/default_url/default1.oxtbin0 -> 1544 bytes-rw-r--r--desktop/test/deployment/update/default_url/default2.oxtbin0 -> 1544 bytes-rw-r--r--desktop/test/deployment/update/default_url/readme.txt9
-rw-r--r--desktop/test/deployment/update/default_url/update/default1.oxtbin0 -> 1546 bytes-rw-r--r--desktop/test/deployment/update/default_url/update/default1.update.xml10
-rw-r--r--desktop/test/deployment/update/default_url/update/default2.oxtbin0 -> 1546 bytes-rw-r--r--desktop/test/deployment/update/default_url/update/default2.update.xml10
-rw-r--r--desktop/test/deployment/update/default_url/update/feed1.xml33
-rw-r--r--desktop/test/deployment/update/defect/fail1.oxtbin0 -> 2189 bytes-rw-r--r--desktop/test/deployment/update/defect/fail2.oxtbin0 -> 2188 bytes-rw-r--r--desktop/test/deployment/update/defect/fail3.oxtbin0 -> 2188 bytes-rw-r--r--desktop/test/deployment/update/defect/fail4.oxtbin0 -> 2189 bytes-rw-r--r--desktop/test/deployment/update/defect/info1.oxtbin0 -> 2188 bytes-rw-r--r--desktop/test/deployment/update/defect/info2.oxtbin0 -> 2187 bytes-rw-r--r--desktop/test/deployment/update/defect/info3.oxtbin0 -> 2187 bytes-rw-r--r--desktop/test/deployment/update/defect/readme.txt15
-rw-r--r--desktop/test/deployment/update/defect/update/fail1.oxtbin0 -> 2193 bytes-rw-r--r--desktop/test/deployment/update/defect/update/fail1.update.xml10
-rw-r--r--desktop/test/deployment/update/defect/update/fail2.oxtbin0 -> 2436 bytes-rw-r--r--desktop/test/deployment/update/defect/update/fail2.update.xml10
-rw-r--r--desktop/test/deployment/update/defect/update/fail3.oxtbin0 -> 2396 bytes-rw-r--r--desktop/test/deployment/update/defect/update/fail3.update.xml10
-rw-r--r--desktop/test/deployment/update/defect/update/fail4.oxt0
-rw-r--r--desktop/test/deployment/update/defect/update/fail4.update.xml10
-rw-r--r--desktop/test/deployment/update/defect/update/info1.update.xml0
-rw-r--r--desktop/test/deployment/update/defect/update/info2.update.xml1
-rw-r--r--desktop/test/deployment/update/defect/update/info3.oxtbin0 -> 2189 bytes-rw-r--r--desktop/test/deployment/update/defect/update/info3.update.xml10
-rw-r--r--desktop/test/deployment/update/dependencies/publisher_en.html9
-rw-r--r--desktop/test/deployment/update/dependencies/readme.txt32
-rw-r--r--desktop/test/deployment/update/dependencies/release-notes_en.html8
-rw-r--r--desktop/test/deployment/update/dependencies/update-dependencies.oxtbin0 -> 1751 bytes-rw-r--r--desktop/test/deployment/update/dependencies/update/update-dependencies.update.xml71
-rw-r--r--desktop/test/deployment/update/license/lic1.oxtbin0 -> 3608 bytes-rw-r--r--desktop/test/deployment/update/license/lic2.oxtbin0 -> 3625 bytes-rw-r--r--desktop/test/deployment/update/license/lic3.oxtbin0 -> 3624 bytes-rw-r--r--desktop/test/deployment/update/license/readme.txt9
-rw-r--r--desktop/test/deployment/update/license/update/lic1.oxtbin0 -> 3610 bytes-rw-r--r--desktop/test/deployment/update/license/update/lic1.update.xml10
-rw-r--r--desktop/test/deployment/update/license/update/lic2.oxtbin0 -> 3627 bytes-rw-r--r--desktop/test/deployment/update/license/update/lic2.update.xml10
-rw-r--r--desktop/test/deployment/update/license/update/lic3.oxtbin0 -> 3626 bytes-rw-r--r--desktop/test/deployment/update/license/update/lic3.update.xml10
-rw-r--r--desktop/test/deployment/update/platform/all1.oxtbin0 -> 692 bytes-rw-r--r--desktop/test/deployment/update/platform/all2.oxtbin0 -> 702 bytes-rw-r--r--desktop/test/deployment/update/platform/all3.oxtbin0 -> 297 bytes-rw-r--r--desktop/test/deployment/update/platform/freebsd_x86.oxtbin0 -> 706 bytes-rw-r--r--desktop/test/deployment/update/platform/freebsd_x86_64.oxtbin0 -> 711 bytes-rw-r--r--desktop/test/deployment/update/platform/invalid1.oxtbin0 -> 653 bytes-rw-r--r--desktop/test/deployment/update/platform/invalid2.oxtbin0 -> 653 bytes-rw-r--r--desktop/test/deployment/update/platform/invalid3.oxtbin0 -> 655 bytes-rw-r--r--desktop/test/deployment/update/platform/linux_arm_eabi.oxtbin0 -> 709 bytes-rw-r--r--desktop/test/deployment/update/platform/linux_arm_oabi.oxtbin0 -> 710 bytes-rw-r--r--desktop/test/deployment/update/platform/linux_ia64.oxtbin0 -> 706 bytes-rw-r--r--desktop/test/deployment/update/platform/linux_mips_eb.oxtbin0 -> 709 bytes-rw-r--r--desktop/test/deployment/update/platform/linux_mips_el.oxtbin0 -> 708 bytes-rw-r--r--desktop/test/deployment/update/platform/linux_powerpc.oxtbin0 -> 708 bytes-rw-r--r--desktop/test/deployment/update/platform/linux_powerpc64.oxtbin0 -> 710 bytes-rw-r--r--desktop/test/deployment/update/platform/linux_s390.oxtbin0 -> 705 bytes-rw-r--r--desktop/test/deployment/update/platform/linux_s390x.oxtbin0 -> 706 bytes-rw-r--r--desktop/test/deployment/update/platform/linux_sparc.oxtbin0 -> 706 bytes-rw-r--r--desktop/test/deployment/update/platform/linux_x86.oxtbin0 -> 705 bytes-rw-r--r--desktop/test/deployment/update/platform/linux_x86_64.oxtbin0 -> 708 bytes-rw-r--r--desktop/test/deployment/update/platform/macosx_powerpc.oxtbin0 -> 710 bytes-rw-r--r--desktop/test/deployment/update/platform/macosx_x86.oxtbin0 -> 707 bytes-rw-r--r--desktop/test/deployment/update/platform/mul1.oxtbin0 -> 952 bytes-rw-r--r--desktop/test/deployment/update/platform/os2_x86.oxtbin0 -> 706 bytes-rw-r--r--desktop/test/deployment/update/platform/readme.txt49
-rw-r--r--desktop/test/deployment/update/platform/solaris_sparc.oxtbin0 -> 709 bytes-rw-r--r--desktop/test/deployment/update/platform/solaris_x86.oxtbin0 -> 706 bytes-rw-r--r--desktop/test/deployment/update/platform/windows_x86.oxtbin0 -> 707 bytes-rw-r--r--desktop/test/deployment/update/publisher/pub1.oxtbin0 -> 1882 bytes-rw-r--r--desktop/test/deployment/update/publisher/pub10.oxtbin0 -> 1742 bytes-rw-r--r--desktop/test/deployment/update/publisher/pub11.oxtbin0 -> 1601 bytes-rw-r--r--desktop/test/deployment/update/publisher/pub2.oxtbin0 -> 1866 bytes-rw-r--r--desktop/test/deployment/update/publisher/pub3.oxtbin0 -> 1829 bytes-rw-r--r--desktop/test/deployment/update/publisher/pub4.oxtbin0 -> 1812 bytes-rw-r--r--desktop/test/deployment/update/publisher/pub5.oxtbin0 -> 1769 bytes-rw-r--r--desktop/test/deployment/update/publisher/pub6.oxtbin0 -> 1814 bytes-rw-r--r--desktop/test/deployment/update/publisher/pub7.oxtbin0 -> 1769 bytes-rw-r--r--desktop/test/deployment/update/publisher/pub8.oxtbin0 -> 1853 bytes-rw-r--r--desktop/test/deployment/update/publisher/pub9.oxtbin0 -> 1779 bytes-rw-r--r--desktop/test/deployment/update/publisher/publisher_de-DE-altmark.html9
-rw-r--r--desktop/test/deployment/update/publisher/publisher_de-DE.html9
-rw-r--r--desktop/test/deployment/update/publisher/publisher_de.html9
-rw-r--r--desktop/test/deployment/update/publisher/publisher_en-GB.html9
-rw-r--r--desktop/test/deployment/update/publisher/publisher_en-US-region1.html9
-rw-r--r--desktop/test/deployment/update/publisher/publisher_en-US-region2.html9
-rw-r--r--desktop/test/deployment/update/publisher/publisher_en-US.html9
-rw-r--r--desktop/test/deployment/update/publisher/publisher_en-region3.html9
-rw-r--r--desktop/test/deployment/update/publisher/publisher_en.html9
-rw-r--r--desktop/test/deployment/update/publisher/readme.txt212
-rw-r--r--desktop/test/deployment/update/publisher/release-notes_de-DE-altmark.html8
-rw-r--r--desktop/test/deployment/update/publisher/release-notes_de-DE.html8
-rw-r--r--desktop/test/deployment/update/publisher/release-notes_de.html8
-rw-r--r--desktop/test/deployment/update/publisher/release-notes_en-GB.html8
-rw-r--r--desktop/test/deployment/update/publisher/release-notes_en-US-region1.html8
-rw-r--r--desktop/test/deployment/update/publisher/release-notes_en-US-region2.html8
-rw-r--r--desktop/test/deployment/update/publisher/release-notes_en-US.html8
-rw-r--r--desktop/test/deployment/update/publisher/release-notes_en-region3.html8
-rw-r--r--desktop/test/deployment/update/publisher/release-notes_en.html8
-rw-r--r--desktop/test/deployment/update/publisher/update/pub1.oxtbin0 -> 1885 bytes-rw-r--r--desktop/test/deployment/update/publisher/update/pub1.update.xml36
-rw-r--r--desktop/test/deployment/update/publisher/update/pub10.oxtbin0 -> 1744 bytes-rw-r--r--desktop/test/deployment/update/publisher/update/pub11.oxtbin0 -> 1603 bytes-rw-r--r--desktop/test/deployment/update/publisher/update/pub2.oxtbin0 -> 1871 bytes-rw-r--r--desktop/test/deployment/update/publisher/update/pub2.update.xml34
-rw-r--r--desktop/test/deployment/update/publisher/update/pub3.oxtbin0 -> 1833 bytes-rw-r--r--desktop/test/deployment/update/publisher/update/pub3.update.xml30
-rw-r--r--desktop/test/deployment/update/publisher/update/pub4.oxtbin0 -> 1815 bytes-rw-r--r--desktop/test/deployment/update/publisher/update/pub4.update.xml28
-rw-r--r--desktop/test/deployment/update/publisher/update/pub5.oxtbin0 -> 1774 bytes-rw-r--r--desktop/test/deployment/update/publisher/update/pub5.update.xml24
-rw-r--r--desktop/test/deployment/update/publisher/update/pub6.oxtbin0 -> 1816 bytes-rw-r--r--desktop/test/deployment/update/publisher/update/pub6.update.xml24
-rw-r--r--desktop/test/deployment/update/publisher/update/pub7.oxtbin0 -> 1771 bytes-rw-r--r--desktop/test/deployment/update/publisher/update/pub7.update.xml24
-rw-r--r--desktop/test/deployment/update/publisher/update/pub8.oxtbin0 -> 1855 bytes-rw-r--r--desktop/test/deployment/update/publisher/update/pub9.oxtbin0 -> 1781 bytes-rw-r--r--desktop/test/deployment/update/readme.txt68
-rw-r--r--desktop/test/deployment/update/simple/plain1.oxtbin0 -> 1642 bytes-rw-r--r--desktop/test/deployment/update/simple/plain2.oxtbin0 -> 1643 bytes-rw-r--r--desktop/test/deployment/update/simple/plain3.oxtbin0 -> 1643 bytes-rw-r--r--desktop/test/deployment/update/simple/readme.txt31
-rw-r--r--desktop/test/deployment/update/simple/update/plain1.oxtbin0 -> 1645 bytes-rw-r--r--desktop/test/deployment/update/simple/update/plain1.update.xml10
-rw-r--r--desktop/test/deployment/update/simple/update/plain2.oxtbin0 -> 1645 bytes-rw-r--r--desktop/test/deployment/update/simple/update/plain2.update.xml10
-rw-r--r--desktop/test/deployment/update/simple/update/plain3.oxtbin0 -> 1645 bytes-rw-r--r--desktop/test/deployment/update/simple/update/plain3.update.xml10
-rw-r--r--desktop/test/deployment/update/updatefeed/feed1.oxtbin0 -> 2184 bytes-rw-r--r--desktop/test/deployment/update/updatefeed/feed2.oxtbin0 -> 2184 bytes-rw-r--r--desktop/test/deployment/update/updatefeed/update/feed1.oxtbin0 -> 2184 bytes-rw-r--r--desktop/test/deployment/update/updatefeed/update/feed1.update.xml10
-rw-r--r--desktop/test/deployment/update/updatefeed/update/feed1.xml33
-rw-r--r--desktop/test/deployment/update/updatefeed/update/feed2.oxtbin0 -> 2184 bytes-rw-r--r--desktop/test/deployment/update/updatefeed/update/feed2.update.xml10
-rwxr-xr-xdesktop/test/deployment/update/updateinfocreation/build/MANIFEST.MF2
-rwxr-xr-xdesktop/test/deployment/update/updateinfocreation/build/TestExtension.idl40
-rwxr-xr-xdesktop/test/deployment/update/updateinfocreation/build/TestExtension.java165
-rwxr-xr-xdesktop/test/deployment/update/updateinfocreation/build/delzip1
-rw-r--r--desktop/test/deployment/update/updateinfocreation/build/description.xml13
-rwxr-xr-xdesktop/test/deployment/update/updateinfocreation/build/makefile.mk88
-rwxr-xr-xdesktop/test/deployment/update/updateinfocreation/build/manifest.xml5
-rw-r--r--desktop/test/deployment/update/updateinfocreation/readme.txt38
-rw-r--r--desktop/test/deployment/update/updateinfocreation/update/updateinfo.oxtbin0 -> 4295 bytes-rw-r--r--desktop/test/deployment/update/updateinfocreation/updateinfo.oxtbin0 -> 4295 bytes-rw-r--r--desktop/test/deployment/update/website_update/readme.txt133
-rw-r--r--desktop/test/deployment/update/website_update/update/web1.oxtbin0 -> 1695 bytes-rw-r--r--desktop/test/deployment/update/website_update/update/web1.update.xml20
-rw-r--r--desktop/test/deployment/update/website_update/update/web1_de-DE-altmark.html18
-rw-r--r--desktop/test/deployment/update/website_update/update/web1_de-DE.html18
-rw-r--r--desktop/test/deployment/update/website_update/update/web1_de.html19
-rw-r--r--desktop/test/deployment/update/website_update/update/web1_en-GB.html19
-rw-r--r--desktop/test/deployment/update/website_update/update/web1_en-US-region1.html19
-rw-r--r--desktop/test/deployment/update/website_update/update/web1_en-US-region2.html19
-rw-r--r--desktop/test/deployment/update/website_update/update/web1_en-US.html20
-rw-r--r--desktop/test/deployment/update/website_update/update/web1_en-region3.html19
-rw-r--r--desktop/test/deployment/update/website_update/update/web1_en.html19
-rw-r--r--desktop/test/deployment/update/website_update/update/web2.oxtbin0 -> 1695 bytes-rw-r--r--desktop/test/deployment/update/website_update/update/web2.update.xml19
-rw-r--r--desktop/test/deployment/update/website_update/update/web3.oxtbin0 -> 1695 bytes-rw-r--r--desktop/test/deployment/update/website_update/update/web3.update.xml17
-rw-r--r--desktop/test/deployment/update/website_update/update/web4.oxtbin0 -> 1695 bytes-rw-r--r--desktop/test/deployment/update/website_update/update/web4.update.xml16
-rw-r--r--desktop/test/deployment/update/website_update/update/web5.oxtbin0 -> 1695 bytes-rw-r--r--desktop/test/deployment/update/website_update/update/web5.update.xml14
-rw-r--r--desktop/test/deployment/update/website_update/update/web6.oxtbin0 -> 1640 bytes-rw-r--r--desktop/test/deployment/update/website_update/update/web6/description.xml11
-rw-r--r--desktop/test/deployment/update/website_update/update/web6/readme.txt5
-rw-r--r--desktop/test/deployment/update/website_update/update/web7.oxtbin0 -> 1897 bytes-rw-r--r--desktop/test/deployment/update/website_update/update/web7/description.xml36
-rw-r--r--desktop/test/deployment/update/website_update/update/web7/readme.txt5
-rw-r--r--desktop/test/deployment/update/website_update/web1.oxtbin0 -> 1693 bytes-rw-r--r--desktop/test/deployment/update/website_update/web2.oxtbin0 -> 1693 bytes-rw-r--r--desktop/test/deployment/update/website_update/web3.oxtbin0 -> 1693 bytes-rw-r--r--desktop/test/deployment/update/website_update/web4.oxtbin0 -> 1693 bytes-rw-r--r--desktop/test/deployment/update/website_update/web5.oxtbin0 -> 1693 bytes-rw-r--r--desktop/test/deployment/update/website_update/web6.oxtbin0 -> 1638 bytes-rw-r--r--desktop/test/deployment/update/website_update/web7.oxtbin0 -> 1894 bytes-rw-r--r--desktop/test/deployment/update/wrong_url/readme.txt18
-rw-r--r--desktop/test/deployment/update/wrong_url/update/url1.oxtbin0 -> 2192 bytes-rw-r--r--desktop/test/deployment/update/wrong_url/update/url1.update.xml11
-rw-r--r--desktop/test/deployment/update/wrong_url/update/url2.oxtbin0 -> 2206 bytes-rw-r--r--desktop/test/deployment/update/wrong_url/update/url2.update.xml10
-rw-r--r--desktop/test/deployment/update/wrong_url/update/wrongdownload1.update.xml11
-rw-r--r--desktop/test/deployment/update/wrong_url/update/wrongdownload2.update.xml11
-rw-r--r--desktop/test/deployment/update/wrong_url/update/wrongdownload3.update.xml11
-rw-r--r--desktop/test/deployment/update/wrong_url/url1.oxtbin0 -> 2190 bytes-rw-r--r--desktop/test/deployment/update/wrong_url/url2.oxtbin0 -> 2205 bytes-rw-r--r--desktop/test/deployment/update/wrong_url/url3.oxtbin0 -> 2204 bytes-rw-r--r--desktop/test/deployment/update/wrong_url/wrongdownload1.oxtbin0 -> 2194 bytes-rw-r--r--desktop/test/deployment/update/wrong_url/wrongdownload2.oxtbin0 -> 2194 bytes-rw-r--r--desktop/test/deployment/update/wrong_url/wrongdownload3.oxtbin0 -> 2194 bytes-rw-r--r--desktop/test/deployment/version/readme.txt85
-rw-r--r--desktop/test/deployment/version/version_0.0/dependency.oxtbin0 -> 1657 bytes-rw-r--r--desktop/test/deployment/version/version_0.0/license.oxtbin0 -> 1733 bytes-rw-r--r--desktop/test/deployment/version/version_0.0/plain.oxtbin0 -> 1618 bytes-rw-r--r--desktop/test/deployment/version/version_1.02.4.7.0/dependency.oxtbin0 -> 1662 bytes-rw-r--r--desktop/test/deployment/version/version_1.02.4.7.0/license.oxtbin0 -> 1738 bytes-rw-r--r--desktop/test/deployment/version/version_1.02.4.7.0/plain.oxtbin0 -> 1624 bytes-rw-r--r--desktop/test/deployment/version/version_1.2.15.3/dependency.oxtbin0 -> 1662 bytes-rw-r--r--desktop/test/deployment/version/version_1.2.15.3/license.oxtbin0 -> 1738 bytes-rw-r--r--desktop/test/deployment/version/version_1.2.15.3/plain.oxtbin0 -> 1624 bytes-rw-r--r--desktop/test/deployment/version/version_1.2.3/dependency.oxtbin0 -> 1659 bytes-rw-r--r--desktop/test/deployment/version/version_1.2.3/license.oxtbin0 -> 1735 bytes-rw-r--r--desktop/test/deployment/version/version_1.2.3/plain.oxtbin0 -> 1620 bytes-rw-r--r--desktop/test/deployment/version/version_1.2.4.7/dependency.oxtbin0 -> 1661 bytes-rw-r--r--desktop/test/deployment/version/version_1.2.4.7/license.oxtbin0 -> 1737 bytes-rw-r--r--desktop/test/deployment/version/version_1.2.4.7/plain.oxtbin0 -> 1623 bytes-rw-r--r--desktop/test/deployment/version/version_badelement/dependency.oxtbin0 -> 1654 bytes-rw-r--r--desktop/test/deployment/version/version_badelement/license.oxtbin0 -> 1731 bytes-rw-r--r--desktop/test/deployment/version/version_badelement/plain.oxtbin0 -> 1616 bytes-rw-r--r--desktop/test/deployment/version/version_badvalue/dependency.oxtbin0 -> 1657 bytes-rw-r--r--desktop/test/deployment/version/version_badvalue/license.oxtbin0 -> 1733 bytes-rw-r--r--desktop/test/deployment/version/version_badvalue/plain.oxtbin0 -> 1618 bytes-rw-r--r--desktop/test/deployment/version/version_nodependencies_0.0/dependency.oxtbin0 -> 1618 bytes-rw-r--r--desktop/test/deployment/version/version_nodependencies_1.02.4.7.0/dependency.oxtbin0 -> 1624 bytes-rw-r--r--desktop/test/deployment/version/version_nodependencies_1.2.15.3/dependency.oxtbin0 -> 1624 bytes-rw-r--r--desktop/test/deployment/version/version_nodependencies_1.2.3/dependency.oxtbin0 -> 1620 bytes-rw-r--r--desktop/test/deployment/version/version_nodependencies_1.2.4.7/dependency.oxtbin0 -> 1623 bytes-rw-r--r--desktop/test/deployment/version/version_nodependencies_badelement/dependency.oxtbin0 -> 1616 bytes-rw-r--r--desktop/test/deployment/version/version_nodependencies_badvalue/dependency.oxtbin0 -> 1618 bytes-rw-r--r--desktop/test/deployment/version/version_nodependencies_none/dependency.oxtbin0 -> 1598 bytes-rw-r--r--desktop/test/deployment/version/version_none/dependency.oxtbin0 -> 1645 bytes-rw-r--r--desktop/test/deployment/version/version_none/license.oxtbin0 -> 1722 bytes-rw-r--r--desktop/test/deployment/version/version_none/plain.oxtbin0 -> 1598 bytes-rw-r--r--desktop/unx/source/officeloader/makefile.mk47
-rwxr-xr-xdesktop/unx/source/officeloader/officeloader.cxx110
-rw-r--r--desktop/util/hidother.src54
-rw-r--r--desktop/util/makefile.mk277
-rw-r--r--desktop/util/ooverinfo.rc138
-rw-r--r--desktop/util/ooverinfo2.rc90
-rw-r--r--desktop/util/soffice.icobin0 -> 4990 bytes-rw-r--r--desktop/util/template.manifest10
-rw-r--r--desktop/util/verinfo.rc142
-rw-r--r--desktop/util/writer.r1
-rw-r--r--desktop/win32/source/applauncher/launcher.cxx146
-rw-r--r--desktop/win32/source/applauncher/launcher.hxx21
-rw-r--r--desktop/win32/source/applauncher/makefile.mk148
-rw-r--r--desktop/win32/source/applauncher/ooo/makefile.mk130
-rw-r--r--desktop/win32/source/applauncher/ooo/verinfo.rc97
-rw-r--r--desktop/win32/source/applauncher/sbase.cxx34
-rw-r--r--desktop/win32/source/applauncher/scalc.cxx34
-rw-r--r--desktop/win32/source/applauncher/sdraw.cxx34
-rw-r--r--desktop/win32/source/applauncher/simpress.cxx34
-rw-r--r--desktop/win32/source/applauncher/smath.cxx34
-rw-r--r--desktop/win32/source/applauncher/sweb.cxx34
-rw-r--r--desktop/win32/source/applauncher/swriter.cxx32
-rw-r--r--desktop/win32/source/applauncher/verinfo.rc102
-rw-r--r--desktop/win32/source/extendloaderenvironment.cxx182
-rw-r--r--desktop/win32/source/extendloaderenvironment.hxx95
-rw-r--r--desktop/win32/source/guiloader/genericloader.cxx176
-rw-r--r--desktop/win32/source/guiloader/makefile.mk64
-rw-r--r--desktop/win32/source/guistdio/guistdio.cxx30
-rw-r--r--desktop/win32/source/guistdio/guistdio.inc453
-rw-r--r--desktop/win32/source/guistdio/makefile.mk58
-rw-r--r--desktop/win32/source/guistdio/unopkgio.cxx31
-rw-r--r--desktop/win32/source/lwrapa.cxx32
-rw-r--r--desktop/win32/source/lwrapw.cxx33
-rw-r--r--desktop/win32/source/main.h13
-rw-r--r--desktop/win32/source/makefile.mk63
-rw-r--r--desktop/win32/source/officeloader/makefile.mk63
-rw-r--r--desktop/win32/source/officeloader/officeloader.cxx424
-rw-r--r--desktop/win32/source/rebase/Resource.h38
-rw-r--r--desktop/win32/source/rebase/makefile.mk89
-rw-r--r--desktop/win32/source/rebase/rcfooter.txt2
-rw-r--r--desktop/win32/source/rebase/rcheader.txt39
-rw-r--r--desktop/win32/source/rebase/rctmpl.txt9
-rw-r--r--desktop/win32/source/rebase/rebase.cxx187
-rw-r--r--desktop/win32/source/rebase/rebasegui.cxx197
-rw-r--r--desktop/win32/source/rebase/rebasegui.ulf11
-rw-r--r--desktop/win32/source/rwrapa.cxx32
-rw-r--r--desktop/win32/source/rwrapw.cxx33
-rw-r--r--desktop/win32/source/setup/Resource.h79
-rw-r--r--desktop/win32/source/setup/makefile.mk91
-rw-r--r--desktop/win32/source/setup/rcfooter.txt2
-rw-r--r--desktop/win32/source/setup/rcheader.txt43
-rw-r--r--desktop/win32/source/setup/rctmpl.txt49
-rwxr-xr-xdesktop/win32/source/setup/setup.cpp2066
-rw-r--r--desktop/win32/source/setup/setup.hxx154
-rw-r--r--desktop/win32/source/setup/setup.icobin0 -> 4710 bytes-rw-r--r--desktop/win32/source/setup/setup.ulf162
-rw-r--r--desktop/win32/source/setup/setup_a.cxx31
-rw-r--r--desktop/win32/source/setup/setup_help.hxx47
-rw-r--r--desktop/win32/source/setup/setup_main.cxx147
-rw-r--r--desktop/win32/source/setup/setup_main.hxx74
-rw-r--r--desktop/win32/source/setup/setup_w.cxx35
-rw-r--r--desktop/win32/source/sowrapper.cxx47
-rw-r--r--desktop/win32/source/unoinfo.cxx148
-rw-r--r--desktop/win32/source/wrapper.h173
-rw-r--r--desktop/win32/source/wrappera.cxx31
-rw-r--r--desktop/win32/source/wrapperw.cxx32
-rw-r--r--desktop/zipintro/delzip1
-rw-r--r--desktop/zipintro/makefile.mk134
-rwxr-xr-xdmake/AUTHORS0
-rwxr-xr-xdmake/COPYING37
-rwxr-xr-xdmake/ChangeLog4259
-rwxr-xr-xdmake/INSTALL3
-rwxr-xr-xdmake/Makefile.am64
-rwxr-xr-xdmake/Makefile.in869
-rwxr-xr-xdmake/NEWS316
-rwxr-xr-xdmake/acinclude.m43
-rwxr-xr-xdmake/aclocal.m4908
-rw-r--r--dmake/alloc.h59
-rwxr-xr-xdmake/autogen.sh63
-rwxr-xr-xdmake/compile142
-rwxr-xr-xdmake/config.guess1463
-rw-r--r--dmake/config.h.in184
-rwxr-xr-xdmake/config.sub1579
-rwxr-xr-xdmake/configure9000
-rwxr-xr-xdmake/configure.in220
-rw-r--r--dmake/dag.c697
-rw-r--r--dmake/db.h66
-rw-r--r--dmake/dbug/dbug.mk66
-rw-r--r--dmake/dbug/dbug/dbug.c1845
-rw-r--r--dmake/dbug/dbug/dbug.h164
-rwxr-xr-xdmake/dbug/dbug/dbug.txt1452
-rw-r--r--dmake/dbug/dbug/dbug.uue368
-rwxr-xr-xdmake/dbug/dbug/example1.c12
-rwxr-xr-xdmake/dbug/dbug/example2.c17
-rwxr-xr-xdmake/dbug/dbug/example3.c16
-rwxr-xr-xdmake/dbug/dbug/factorial.c15
-rwxr-xr-xdmake/dbug/dbug/main.c27
-rwxr-xr-xdmake/dbug/dbug/makeman.sh18
-rw-r--r--dmake/dbug/dbug/readme52
-rwxr-xr-xdmake/dbug/dbug/user.r938
-rw-r--r--dmake/dbug/getwd.c6
-rw-r--r--dmake/dbug/malloc/_changes9
-rw-r--r--dmake/dbug/malloc/_readme133
-rw-r--r--dmake/dbug/malloc/calloc.c49
-rw-r--r--dmake/dbug/malloc/debug.h99
-rw-r--r--dmake/dbug/malloc/dump.c103
-rw-r--r--dmake/dbug/malloc/free.c150
-rw-r--r--dmake/dbug/malloc/m_init.c79
-rw-r--r--dmake/dbug/malloc/m_perror.c73
-rw-r--r--dmake/dbug/malloc/makefile77
-rw-r--r--dmake/dbug/malloc/malloc.3223
-rw-r--r--dmake/dbug/malloc/malloc.c627
-rw-r--r--dmake/dbug/malloc/malloc.h85
-rw-r--r--dmake/dbug/malloc/mallopt.c98
-rw-r--r--dmake/dbug/malloc/memory.c195
-rw-r--r--dmake/dbug/malloc/mlc_chk.c256
-rw-r--r--dmake/dbug/malloc/mlc_chn.c188
-rw-r--r--dmake/dbug/malloc/patchlev1
-rw-r--r--dmake/dbug/malloc/realloc.c180
-rw-r--r--dmake/dbug/malloc/string.c533
-rw-r--r--dmake/dbug/malloc/testmem.c646
-rw-r--r--dmake/dbug/malloc/testmlc.c176
-rw-r--r--dmake/dbug/malloc/tostring.c132
-rw-r--r--dmake/dbug/malloc/tostring.h13
-rw-r--r--dmake/dbug/readme13
-rwxr-xr-xdmake/depcomp530
-rw-r--r--dmake/dmake.c959
-rw-r--r--dmake/dmake.h230
-rw-r--r--dmake/dmakeroot.h.in6
-rw-r--r--dmake/dmdump.c287
-rw-r--r--dmake/dmstring.c300
-rw-r--r--dmake/dstdarg.h43
-rw-r--r--dmake/expand.c1204
-rw-r--r--dmake/extern.h192
-rw-r--r--dmake/function.c726
-rw-r--r--dmake/getinp.c848
-rw-r--r--dmake/hash.c54
-rw-r--r--dmake/imacs.c206
-rw-r--r--dmake/infer.c904
-rwxr-xr-xdmake/install-sh323
-rw-r--r--dmake/itypes.h82
-rw-r--r--dmake/mac/arlib.c56
-rw-r--r--dmake/mac/bogus.c99
-rw-r--r--dmake/mac/config.mk44
-rw-r--r--dmake/mac/dirbrk.c42
-rw-r--r--dmake/mac/directry.c264
-rw-r--r--dmake/mac/dompwmak67
-rw-r--r--dmake/mac/environ.c231
-rw-r--r--dmake/mac/eold.c119
-rw-r--r--dmake/mac/main.c43
-rw-r--r--dmake/mac/make.sh107
-rw-r--r--dmake/mac/make_mac.sh105
-rw-r--r--dmake/mac/public.h173
-rw-r--r--dmake/mac/rmprq.c38
-rw-r--r--dmake/mac/ruletab.c43
-rw-r--r--dmake/mac/startup.h28
-rw-r--r--dmake/mac/sysintf.h41
-rw-r--r--dmake/mac/template.mk7
-rw-r--r--dmake/mac/tempnam.c65
-rw-r--r--dmake/mac/tomacfil.c38
-rw-r--r--dmake/macparse.c232
-rwxr-xr-xdmake/make.bat273
-rw-r--r--dmake/make.c1774
-rwxr-xr-xdmake/make.cmd115
-rw-r--r--dmake/makefile.mk432
-rw-r--r--dmake/man/dmake.nc3644
-rw-r--r--dmake/man/dmake.tf3480
-rw-r--r--dmake/man/readme12
-rwxr-xr-xdmake/missing360
-rwxr-xr-xdmake/mkinstalldirs158
-rw-r--r--dmake/msdos/arlib.c56
-rw-r--r--dmake/msdos/borland/bcc30/config.h48
-rw-r--r--dmake/msdos/borland/bcc30/config.mk8
-rw-r--r--dmake/msdos/borland/bcc30/lib.rsp1
-rw-r--r--dmake/msdos/borland/bcc30/libswp.rsp1
-rwxr-xr-xdmake/msdos/borland/bcc30/mkswp.bat107
-rw-r--r--dmake/msdos/borland/bcc30/obj.rsp34
-rw-r--r--dmake/msdos/borland/bcc30/objswp.rsp36
-rw-r--r--dmake/msdos/borland/bcc30/public.h170
-rw-r--r--dmake/msdos/borland/bcc30/template.mk7
-rw-r--r--dmake/msdos/borland/bcc40/config.h51
-rw-r--r--dmake/msdos/borland/bcc40/config.mk7
-rw-r--r--dmake/msdos/borland/bcc40/lib.rsp2
-rw-r--r--dmake/msdos/borland/bcc40/libswp.rsp1
-rwxr-xr-xdmake/msdos/borland/bcc40/mkswp.bat107
-rw-r--r--dmake/msdos/borland/bcc40/obj.rsp34
-rw-r--r--dmake/msdos/borland/bcc40/objswp.rsp36
-rw-r--r--dmake/msdos/borland/bcc40/public.h170
-rw-r--r--dmake/msdos/borland/bcc40/template.mk7
-rw-r--r--dmake/msdos/borland/bcc45/config.h51
-rw-r--r--dmake/msdos/borland/bcc45/config.mk7
-rw-r--r--dmake/msdos/borland/bcc45/lib.rsp2
-rw-r--r--dmake/msdos/borland/bcc45/libswp.rsp1
-rwxr-xr-xdmake/msdos/borland/bcc45/mkswp.bat107
-rw-r--r--dmake/msdos/borland/bcc45/obj.rsp34
-rw-r--r--dmake/msdos/borland/bcc45/objswp.rsp36
-rw-r--r--dmake/msdos/borland/bcc45/public.h170
-rw-r--r--dmake/msdos/borland/bcc45/template.mk7
-rw-r--r--dmake/msdos/borland/bcc50/config.h51
-rw-r--r--dmake/msdos/borland/bcc50/config.mk7
-rw-r--r--dmake/msdos/borland/bcc50/lib.rsp2
-rw-r--r--dmake/msdos/borland/bcc50/libswp.rsp1
-rwxr-xr-xdmake/msdos/borland/bcc50/mkswp.bat107
-rw-r--r--dmake/msdos/borland/bcc50/obj.rsp34
-rw-r--r--dmake/msdos/borland/bcc50/objswp.rsp36
-rw-r--r--dmake/msdos/borland/bcc50/public.h170
-rw-r--r--dmake/msdos/borland/bcc50/template.mk7
-rw-r--r--dmake/msdos/borland/config.mk46
-rw-r--r--dmake/msdos/borland/tcc20/config.h48
-rw-r--r--dmake/msdos/borland/tcc20/config.mk10
-rw-r--r--dmake/msdos/borland/tcc20/libswp.rsp1
-rwxr-xr-xdmake/msdos/borland/tcc20/mkswp.bat107
-rw-r--r--dmake/msdos/borland/tcc20/objswp.rsp36
-rw-r--r--dmake/msdos/borland/tcc20/public.h170
-rw-r--r--dmake/msdos/borland/tcc20/template.mk7
-rw-r--r--dmake/msdos/borland/tempnam.c109
-rw-r--r--dmake/msdos/borland/utime.c66
-rw-r--r--dmake/msdos/config.mk71
-rw-r--r--dmake/msdos/dchdir.c47
-rw-r--r--dmake/msdos/dirbrk.c42
-rw-r--r--dmake/msdos/dirent.h32
-rw-r--r--dmake/msdos/dirlib.c285
-rw-r--r--dmake/msdos/dosdta.h16
-rw-r--r--dmake/msdos/dstrlwr.c49
-rw-r--r--dmake/msdos/exec.asm1234
-rw-r--r--dmake/msdos/exec.h43
-rw-r--r--dmake/msdos/exec.uue63
-rw-r--r--dmake/msdos/find.c130
-rw-r--r--dmake/msdos/microsft/config.h77
-rw-r--r--dmake/msdos/microsft/config.mk59
-rw-r--r--dmake/msdos/microsft/msc51/config.mk11
-rw-r--r--dmake/msdos/microsft/msc51/lib.rsp1
-rw-r--r--dmake/msdos/microsft/msc51/libswp.rsp1
-rwxr-xr-xdmake/msdos/microsft/msc51/mk.bat102
-rwxr-xr-xdmake/msdos/microsft/msc51/mkswp.bat104
-rw-r--r--dmake/msdos/microsft/msc51/obj.rsp33
-rw-r--r--dmake/msdos/microsft/msc51/objswp.rsp34
-rw-r--r--dmake/msdos/microsft/msc51/public.h170
-rw-r--r--dmake/msdos/microsft/msc51/template.mk7
-rw-r--r--dmake/msdos/microsft/msc60/config.mk11
-rw-r--r--dmake/msdos/microsft/msc60/lib.rsp1
-rw-r--r--dmake/msdos/microsft/msc60/libswp.rsp1
-rwxr-xr-xdmake/msdos/microsft/msc60/mk.bat102
-rwxr-xr-xdmake/msdos/microsft/msc60/mkswp.bat104
-rw-r--r--dmake/msdos/microsft/msc60/obj.rsp33
-rw-r--r--dmake/msdos/microsft/msc60/objswp.rsp34
-rw-r--r--dmake/msdos/microsft/msc60/public.h170
-rw-r--r--dmake/msdos/microsft/msc60/template.mk7
-rw-r--r--dmake/msdos/microsft/optoff.h27
-rw-r--r--dmake/msdos/microsft/tempnam.c110
-rw-r--r--dmake/msdos/rmprq.c44
-rw-r--r--dmake/msdos/ruletab.c45
-rw-r--r--dmake/msdos/runargv.c188
-rw-r--r--dmake/msdos/spawn.c415
-rw-r--r--dmake/msdos/startup.h26
-rw-r--r--dmake/msdos/switchar.c55
-rw-r--r--dmake/msdos/sysintf.h52
-rw-r--r--dmake/msdos/tee.c31
-rw-r--r--dmake/msdos/zortech/config.h52
-rw-r--r--dmake/msdos/zortech/config.mk73
-rw-r--r--dmake/msdos/zortech/environ.c59
-rw-r--r--dmake/msdos/zortech/lib.rsp1
-rw-r--r--dmake/msdos/zortech/libswp.rsp1
-rwxr-xr-xdmake/msdos/zortech/mkswp.bat36
-rw-r--r--dmake/msdos/zortech/obj.rsp34
-rw-r--r--dmake/msdos/zortech/objswp.rsp35
-rw-r--r--dmake/msdos/zortech/public.h169
-rw-r--r--dmake/msdos/zortech/startup.mk153
-rw-r--r--dmake/msdos/zortech/tempnam.c106
-rw-r--r--dmake/os2/config.mk54
-rw-r--r--dmake/os2/dchdir.c41
-rw-r--r--dmake/os2/dirent.h36
-rw-r--r--dmake/os2/ibm/config.h78
-rw-r--r--dmake/os2/ibm/config.mk54
-rw-r--r--dmake/os2/ibm/icc/config.mk11
-rw-r--r--dmake/os2/ibm/icc/lib.rsp1
-rwxr-xr-xdmake/os2/ibm/icc/mk.cmd96
-rw-r--r--dmake/os2/ibm/icc/obj.rsp31
-rw-r--r--dmake/os2/ibm/icc/public.h169
-rw-r--r--dmake/os2/ibm/icc/template.mk7
-rw-r--r--dmake/os2/ibm/icc3/config.mk11
-rw-r--r--dmake/os2/ibm/icc3/lib.rsp1
-rwxr-xr-xdmake/os2/ibm/icc3/mk.cmd192
-rw-r--r--dmake/os2/ibm/icc3/obj.rsp30
-rw-r--r--dmake/os2/ibm/icc3/public.h169
-rw-r--r--dmake/os2/ibm/icc3/template.mk7
-rw-r--r--dmake/os2/ibm/tempnam.c111
-rw-r--r--dmake/os2/ruletab.c47
-rw-r--r--dmake/os2/startup.h27
-rw-r--r--dmake/os2/switchar.c43
-rw-r--r--dmake/os2/sysintf.h62
-rw-r--r--dmake/parse.c176
-rw-r--r--dmake/path.c337
-rw-r--r--dmake/percent.c251
-rw-r--r--dmake/posix.h66
-rw-r--r--dmake/qssl/config.mk43
-rw-r--r--dmake/qssl/make.sh62
-rw-r--r--dmake/qssl/public.h166
-rw-r--r--dmake/qssl/ruletab.c41
-rw-r--r--dmake/qssl/runargv.c298
-rw-r--r--dmake/qssl/setup40
-rw-r--r--dmake/qssl/startup.h28
-rw-r--r--dmake/qssl/stdlib.h48
-rw-r--r--dmake/qssl/sysintf.h42
-rw-r--r--dmake/qssl/template.mk7
-rw-r--r--dmake/qssl/tempnam.c102
-rw-r--r--dmake/qssl/time.h32
-rw-r--r--dmake/quit.c116
-rw-r--r--dmake/rcsclean.awk57
-rw-r--r--dmake/readme/intro.txt40
-rw-r--r--dmake/readme/license.txt248
-rw-r--r--dmake/readme/public/install.txt203
-rw-r--r--dmake/readme/public/mac.txt43
-rw-r--r--dmake/readme/public/msdos.txt124
-rw-r--r--dmake/readme/public/os2.txt76
-rw-r--r--dmake/readme/public/qssl-qnx.txt5
-rw-r--r--dmake/readme/public/srcorg.txt74
-rw-r--r--dmake/readme/public/tos.txt31
-rw-r--r--dmake/readme/public/unix.txt171
-rw-r--r--dmake/readme/read1st.txt58
-rw-r--r--dmake/readme/release.txt196
-rw-r--r--dmake/rulparse.c1740
-rwxr-xr-xdmake/stamp-h1
-rwxr-xr-xdmake/startup/Makefile.am7
-rw-r--r--dmake/startup/Makefile.in492
-rw-r--r--dmake/startup/config.mk.in5
-rw-r--r--dmake/startup/mac/macros.mk41
-rw-r--r--dmake/startup/msdos/borland/bcc30/macros.mk4
-rw-r--r--dmake/startup/msdos/borland/bcc40/macros.mk4
-rw-r--r--dmake/startup/msdos/borland/bcc45/macros.mk4
-rw-r--r--dmake/startup/msdos/borland/bcc50.32/macros.mk4
-rw-r--r--dmake/startup/msdos/borland/bcc50/macros.mk4
-rw-r--r--dmake/startup/msdos/borland/macros.mk33
-rw-r--r--dmake/startup/msdos/borland/tcc20/macros.mk4
-rw-r--r--dmake/startup/msdos/macros.mk62
-rw-r--r--dmake/startup/msdos/microsft/macros.mk34
-rw-r--r--dmake/startup/msdos/recipes.mk9
-rw-r--r--dmake/startup/msdos/zortech/macros.mk30
-rw-r--r--dmake/startup/os2/ibm/macros.mk30
-rw-r--r--dmake/startup/os2/macros.mk60
-rw-r--r--dmake/startup/qssl/macros.mk11
-rw-r--r--dmake/startup/qssl/qnx/macros.mk11
-rw-r--r--dmake/startup/qssl/qnx/recipes.mk8
-rw-r--r--dmake/startup/qssl/recipes.mk8
-rw-r--r--dmake/startup/startup.mk211
-rw-r--r--dmake/startup/summary3
-rw-r--r--dmake/startup/template.mk7
-rw-r--r--dmake/startup/templates/mac/template.mk7
-rw-r--r--dmake/startup/templates/msdos/borland/bcc30/template.mk7
-rw-r--r--dmake/startup/templates/msdos/borland/bcc40/template.mk7
-rw-r--r--dmake/startup/templates/msdos/borland/bcc45/template.mk7
-rw-r--r--dmake/startup/templates/msdos/borland/bcc50/template.mk7
-rw-r--r--dmake/startup/templates/msdos/borland/tcc20/template.mk7
-rw-r--r--dmake/startup/templates/msdos/microsft/msc51/template.mk7
-rw-r--r--dmake/startup/templates/msdos/microsft/msc60/template.mk7
-rw-r--r--dmake/startup/templates/os2/ibm/icc/template.mk7
-rw-r--r--dmake/startup/templates/qssl/template.mk7
-rw-r--r--dmake/startup/templates/tos/template.mk7
-rw-r--r--dmake/startup/templates/unix/386ix/template.mk7
-rw-r--r--dmake/startup/templates/unix/bsd43/template.mk7
-rw-r--r--dmake/startup/templates/unix/bsd43/uw/template.mk7
-rw-r--r--dmake/startup/templates/unix/bsd43/vf/template.mk7
-rw-r--r--dmake/startup/templates/unix/coherent/ver40/template.mk7
-rw-r--r--dmake/startup/templates/unix/coherent/ver42/template.mk7
-rw-r--r--dmake/startup/templates/unix/linux/gnu/template.mk7
-rw-r--r--dmake/startup/templates/unix/solaris/gnu/template.mk7
-rw-r--r--dmake/startup/templates/unix/solaris/template.mk7
-rw-r--r--dmake/startup/templates/unix/sysvr1/template.mk7
-rw-r--r--dmake/startup/templates/unix/sysvr3/pwd/template.mk7
-rw-r--r--dmake/startup/templates/unix/sysvr3/template.mk7
-rw-r--r--dmake/startup/templates/unix/sysvr4/template.mk7
-rw-r--r--dmake/startup/templates/unix/xenix/pwd/template.mk7
-rw-r--r--dmake/startup/templates/unix/xenix/template.mk7
-rw-r--r--dmake/startup/templates/win95/borland/bcc50/template.mk7
-rw-r--r--dmake/startup/templates/win95/microsft/vpp40/template.mk7
-rw-r--r--dmake/startup/templates/winnt/borland/bcc50/template.mk7
-rw-r--r--dmake/startup/templates/winnt/microsft/vpp40/template.mk7
-rw-r--r--dmake/startup/tos/macros.mk24
-rw-r--r--dmake/startup/unix/386ix/macros.mk6
-rwxr-xr-xdmake/startup/unix/Makefile.am8
-rw-r--r--dmake/startup/unix/Makefile.in489
-rw-r--r--dmake/startup/unix/bsd43/macros.mk11
-rw-r--r--dmake/startup/unix/bsd43/recipes.mk13
-rw-r--r--dmake/startup/unix/coherent/macros.mk6
-rw-r--r--dmake/startup/unix/coherent/recipes.mk6
-rw-r--r--dmake/startup/unix/cygwin/Makefile.am6
-rw-r--r--dmake/startup/unix/cygwin/Makefile.in331
-rw-r--r--dmake/startup/unix/cygwin/macros.mk10
-rwxr-xr-xdmake/startup/unix/linux/Makefile.am6
-rw-r--r--dmake/startup/unix/linux/Makefile.in331
-rw-r--r--dmake/startup/unix/linux/gnu/macros.mk6
-rw-r--r--dmake/startup/unix/linux/macros.mk10
-rwxr-xr-xdmake/startup/unix/macosx/Makefile.am6
-rw-r--r--dmake/startup/unix/macosx/Makefile.in331
-rw-r--r--dmake/startup/unix/macosx/gnu/macros.mk6
-rw-r--r--dmake/startup/unix/macosx/macros.mk10
-rw-r--r--dmake/startup/unix/macros.mk5
-rw-r--r--dmake/startup/unix/os2/Makefile.am6
-rw-r--r--dmake/startup/unix/os2/Makefile.in331
-rw-r--r--dmake/startup/unix/os2/macros.mk60
-rw-r--r--dmake/startup/unix/recipes.mk15
-rwxr-xr-xdmake/startup/unix/solaris/Makefile.am6
-rw-r--r--dmake/startup/unix/solaris/Makefile.in331
-rw-r--r--dmake/startup/unix/solaris/macros.mk6
-rw-r--r--dmake/startup/unix/sysvr1/macros.mk6
-rw-r--r--dmake/startup/unix/sysvr3/gnu/macros.mk12
-rw-r--r--dmake/startup/unix/sysvr3/macros.mk7
-rwxr-xr-xdmake/startup/unix/sysvr4/Makefile.am6
-rw-r--r--dmake/startup/unix/sysvr4/Makefile.in331
-rw-r--r--dmake/startup/unix/sysvr4/macros.mk6
-rw-r--r--dmake/startup/unix/xenix/macros.mk6
-rw-r--r--dmake/startup/win95/borland/macros.mk34
-rw-r--r--dmake/startup/win95/macros.mk75
-rw-r--r--dmake/startup/win95/microsft/macros.mk38
-rw-r--r--dmake/startup/win95/recipes.mk9
-rw-r--r--dmake/startup/winnt/Makefile.am8
-rw-r--r--dmake/startup/winnt/Makefile.in489
-rw-r--r--dmake/startup/winnt/borland/macros.mk34
-rw-r--r--dmake/startup/winnt/macros.mk75
-rw-r--r--dmake/startup/winnt/microsft/macros.mk37
-rw-r--r--dmake/startup/winnt/mingw/Makefile.am6
-rw-r--r--dmake/startup/winnt/mingw/Makefile.in331
-rw-r--r--dmake/startup/winnt/mingw/macros.mk10
-rw-r--r--dmake/startup/winnt/msvc6/Makefile.am6
-rw-r--r--dmake/startup/winnt/msvc6/Makefile.in331
-rw-r--r--dmake/startup/winnt/msvc6/macros.mk37
-rw-r--r--dmake/startup/winnt/recipes.mk9
-rw-r--r--dmake/stat.c278
-rw-r--r--dmake/state.c231
-rw-r--r--dmake/stdmacs.h60
-rw-r--r--dmake/struct.h261
-rw-r--r--dmake/sysintf.c1157
-rw-r--r--dmake/tests/Makefile.am22
-rw-r--r--dmake/tests/Makefile.in392
-rw-r--r--dmake/tests/README12
-rwxr-xr-xdmake/tests/function_macros-196
-rwxr-xr-xdmake/tests/function_macros-10122
-rwxr-xr-xdmake/tests/function_macros-264
-rwxr-xr-xdmake/tests/function_macros-340
-rwxr-xr-xdmake/tests/function_macros-435
-rwxr-xr-xdmake/tests/function_macros-546
-rwxr-xr-xdmake/tests/function_macros-642
-rwxr-xr-xdmake/tests/function_macros-739
-rwxr-xr-xdmake/tests/function_macros-8101
-rwxr-xr-xdmake/tests/function_macros-970
-rwxr-xr-xdmake/tests/infra-044
-rwxr-xr-xdmake/tests/macros-141
-rwxr-xr-xdmake/tests/macros-1099
-rwxr-xr-xdmake/tests/macros-11147
-rwxr-xr-xdmake/tests/macros-262
-rwxr-xr-xdmake/tests/macros-371
-rwxr-xr-xdmake/tests/macros-492
-rwxr-xr-xdmake/tests/macros-568
-rwxr-xr-xdmake/tests/macros-662
-rwxr-xr-xdmake/tests/macros-776
-rwxr-xr-xdmake/tests/macros-8157
-rwxr-xr-xdmake/tests/macros-9141
-rwxr-xr-xdmake/tests/misc-135
-rwxr-xr-xdmake/tests/misc-1041
-rwxr-xr-xdmake/tests/misc-1142
-rwxr-xr-xdmake/tests/misc-1240
-rwxr-xr-xdmake/tests/misc-1351
-rwxr-xr-xdmake/tests/misc-1444
-rwxr-xr-xdmake/tests/misc-1553
-rwxr-xr-xdmake/tests/misc-1648
-rwxr-xr-xdmake/tests/misc-1742
-rwxr-xr-xdmake/tests/misc-18169
-rwxr-xr-xdmake/tests/misc-1945
-rwxr-xr-xdmake/tests/misc-240
-rwxr-xr-xdmake/tests/misc-20121
-rwxr-xr-xdmake/tests/misc-2141
-rwxr-xr-xdmake/tests/misc-344
-rwxr-xr-xdmake/tests/misc-462
-rwxr-xr-xdmake/tests/misc-549
-rwxr-xr-xdmake/tests/misc-665
-rwxr-xr-xdmake/tests/misc-747
-rwxr-xr-xdmake/tests/misc-839
-rwxr-xr-xdmake/tests/misc-953
-rwxr-xr-xdmake/tests/recipes-138
-rwxr-xr-xdmake/tests/recipes-241
-rwxr-xr-xdmake/tests/recipes-340
-rwxr-xr-xdmake/tests/recipes-438
-rwxr-xr-xdmake/tests/recipes-562
-rwxr-xr-xdmake/tests/recipes-666
-rwxr-xr-xdmake/tests/recipes-738
-rwxr-xr-xdmake/tests/recipes-8104
-rwxr-xr-xdmake/tests/recipes-9117
-rw-r--r--dmake/tests/targets-178
-rw-r--r--dmake/tests/targets-1050
-rw-r--r--dmake/tests/targets-1138
-rw-r--r--dmake/tests/targets-1247
-rwxr-xr-xdmake/tests/targets-1349
-rwxr-xr-xdmake/tests/targets-1453
-rwxr-xr-xdmake/tests/targets-1556
-rwxr-xr-xdmake/tests/targets-1649
-rwxr-xr-xdmake/tests/targets-1738
-rwxr-xr-xdmake/tests/targets-1852
-rwxr-xr-xdmake/tests/targets-1968
-rw-r--r--dmake/tests/targets-270
-rwxr-xr-xdmake/tests/targets-2065
-rwxr-xr-xdmake/tests/targets-2155
-rwxr-xr-xdmake/tests/targets-2255
-rwxr-xr-xdmake/tests/targets-2356
-rwxr-xr-xdmake/tests/targets-2461
-rwxr-xr-xdmake/tests/targets-2551
-rwxr-xr-xdmake/tests/targets-2657
-rwxr-xr-xdmake/tests/targets-2759
-rwxr-xr-xdmake/tests/targets-28175
-rwxr-xr-xdmake/tests/targets-2959
-rw-r--r--dmake/tests/targets-349
-rwxr-xr-xdmake/tests/targets-3064
-rw-r--r--dmake/tests/targets-470
-rw-r--r--dmake/tests/targets-551
-rw-r--r--dmake/tests/targets-652
-rw-r--r--dmake/tests/targets-754
-rw-r--r--dmake/tests/targets-850
-rw-r--r--dmake/tests/targets-949
-rw-r--r--dmake/tos/config.mk49
-rw-r--r--dmake/tos/make.sh57
-rw-r--r--dmake/tos/public.h166
-rw-r--r--dmake/tos/putenv.c78
-rw-r--r--dmake/tos/ruletab.c42
-rw-r--r--dmake/tos/startup.h28
-rw-r--r--dmake/tos/sysintf.h45
-rw-r--r--dmake/tos/template.mk7
-rw-r--r--dmake/tos/tempnam.c104
-rw-r--r--dmake/unix/386ix/ar.h27
-rw-r--r--dmake/unix/386ix/config.mk27
-rw-r--r--dmake/unix/386ix/make.sh60
-rw-r--r--dmake/unix/386ix/public.h167
-rw-r--r--dmake/unix/386ix/stdlib.h44
-rw-r--r--dmake/unix/386ix/template.mk7
-rw-r--r--dmake/unix/386ix/time.h35
-rwxr-xr-xdmake/unix/Makefile.am7
-rwxr-xr-xdmake/unix/Makefile.in396
-rw-r--r--dmake/unix/arlib.c610
-rw-r--r--dmake/unix/bsd43/config.mk27
-rw-r--r--dmake/unix/bsd43/dirent.h28
-rw-r--r--dmake/unix/bsd43/limits.h32
-rw-r--r--dmake/unix/bsd43/make.sh69
-rw-r--r--dmake/unix/bsd43/public.h167
-rw-r--r--dmake/unix/bsd43/putenv.c78
-rw-r--r--dmake/unix/bsd43/setvbuf.c40
-rw-r--r--dmake/unix/bsd43/stdlib.h44
-rw-r--r--dmake/unix/bsd43/string.h43
-rw-r--r--dmake/unix/bsd43/template.mk7
-rw-r--r--dmake/unix/bsd43/tempnam.c103
-rw-r--r--dmake/unix/bsd43/utime.c70
-rw-r--r--dmake/unix/bsd43/uw/config.mk17
-rw-r--r--dmake/unix/bsd43/uw/make.sh69
-rw-r--r--dmake/unix/bsd43/uw/public.h167
-rw-r--r--dmake/unix/bsd43/uw/template.mk7
-rw-r--r--dmake/unix/bsd43/vf/config.mk11
-rw-r--r--dmake/unix/bsd43/vf/ctype.h51
-rw-r--r--dmake/unix/bsd43/vf/make.sh73
-rw-r--r--dmake/unix/bsd43/vf/memcpy.c36
-rw-r--r--dmake/unix/bsd43/vf/public.h167
-rw-r--r--dmake/unix/bsd43/vf/template.mk7
-rw-r--r--dmake/unix/bsd43/vf/vfprintf.c48
-rw-r--r--dmake/unix/bsdarm32/config.mk27
-rw-r--r--dmake/unix/bsdarm32/dirent.h30
-rw-r--r--dmake/unix/bsdarm32/limits.h29
-rw-r--r--dmake/unix/bsdarm32/make.sh67
-rw-r--r--dmake/unix/bsdarm32/public.h167
-rw-r--r--dmake/unix/bsdarm32/putenv.c78
-rw-r--r--dmake/unix/bsdarm32/stdlib.h44
-rw-r--r--dmake/unix/bsdarm32/string.h42
-rw-r--r--dmake/unix/bsdarm32/template.mk7
-rw-r--r--dmake/unix/bsdarm32/tempnam.c105
-rw-r--r--dmake/unix/bsdarm32/utime.c70
-rw-r--r--dmake/unix/coherent/config.mk26
-rw-r--r--dmake/unix/coherent/stdlib.h44
-rw-r--r--dmake/unix/coherent/time.h32
-rw-r--r--dmake/unix/coherent/ver40/config.mk11
-rw-r--r--dmake/unix/coherent/ver40/getcwd.c49
-rw-r--r--dmake/unix/coherent/ver40/make.sh64
-rw-r--r--dmake/unix/coherent/ver40/public.h167
-rw-r--r--dmake/unix/coherent/ver40/template.mk7
-rw-r--r--dmake/unix/coherent/ver40/vfprintf.c190
-rw-r--r--dmake/unix/coherent/ver42/config.mk11
-rw-r--r--dmake/unix/coherent/ver42/make.sh60
-rw-r--r--dmake/unix/coherent/ver42/public.h167
-rw-r--r--dmake/unix/coherent/ver42/template.mk7
-rw-r--r--dmake/unix/config.mk39
-rw-r--r--dmake/unix/cygwin/public.h172
-rw-r--r--dmake/unix/dcache.c223
-rw-r--r--dmake/unix/dirbrk.c53
-rw-r--r--dmake/unix/linux/config.mk27
-rw-r--r--dmake/unix/linux/gnu/config.mk4
-rw-r--r--dmake/unix/linux/gnu/make.sh193
-rw-r--r--dmake/unix/linux/gnu/public.h172
-rw-r--r--dmake/unix/linux/gnu/template.mk7
-rw-r--r--dmake/unix/macosx/config.mk27
-rw-r--r--dmake/unix/macosx/gnu/config.mk4
-rw-r--r--dmake/unix/macosx/gnu/make.sh63
-rw-r--r--dmake/unix/macosx/gnu/public.h167
-rw-r--r--dmake/unix/macosx/gnu/template.mk7
-rw-r--r--dmake/unix/macosx/tempnam.c102
-rw-r--r--dmake/unix/os2/public.h172
-rw-r--r--dmake/unix/rmprq.c121
-rw-r--r--dmake/unix/ruletab.c44
-rw-r--r--dmake/unix/runargv.c1101
-rw-r--r--dmake/unix/solaris/config.mk27
-rw-r--r--dmake/unix/solaris/getcwd.c231
-rw-r--r--dmake/unix/solaris/gnu/config.mk8
-rw-r--r--dmake/unix/solaris/gnu/make.sh64
-rw-r--r--dmake/unix/solaris/gnu/public.h167
-rw-r--r--dmake/unix/solaris/gnu/template.mk7
-rw-r--r--dmake/unix/solaris/make.sh64
-rw-r--r--dmake/unix/solaris/public.h166
-rw-r--r--dmake/unix/solaris/template.mk7
-rw-r--r--dmake/unix/solaris/tempnam.c103
-rw-r--r--dmake/unix/startup.h27
-rw-r--r--dmake/unix/sysintf.h50
-rw-r--r--dmake/unix/sysvr1/config.mk28
-rw-r--r--dmake/unix/sysvr1/make.sh62
-rw-r--r--dmake/unix/sysvr1/public.h167
-rw-r--r--dmake/unix/sysvr1/putenv.c78
-rw-r--r--dmake/unix/sysvr1/stdlib.h44
-rw-r--r--dmake/unix/sysvr1/template.mk7
-rw-r--r--dmake/unix/sysvr1/time.h32
-rw-r--r--dmake/unix/sysvr1/vfprintf.c58
-rw-r--r--dmake/unix/sysvr3/config.mk27
-rw-r--r--dmake/unix/sysvr3/gnu/public.h165
-rw-r--r--dmake/unix/sysvr3/make.sh60
-rw-r--r--dmake/unix/sysvr3/public.h167
-rw-r--r--dmake/unix/sysvr3/pwd/config.mk20
-rw-r--r--dmake/unix/sysvr3/pwd/getcwd.c231
-rw-r--r--dmake/unix/sysvr3/pwd/make.sh62
-rw-r--r--dmake/unix/sysvr3/pwd/public.h167
-rw-r--r--dmake/unix/sysvr3/pwd/template.mk7
-rw-r--r--dmake/unix/sysvr3/stdlib.h55
-rw-r--r--dmake/unix/sysvr3/template.mk7
-rw-r--r--dmake/unix/sysvr3/time.h32
-rw-r--r--dmake/unix/sysvr4/config.mk27
-rw-r--r--dmake/unix/sysvr4/make.sh60
-rw-r--r--dmake/unix/sysvr4/public.h167
-rw-r--r--dmake/unix/sysvr4/template.mk7
-rw-r--r--dmake/unix/tempnam.c106
-rw-r--r--dmake/unix/xenix/config.mk27
-rw-r--r--dmake/unix/xenix/make.sh60
-rw-r--r--dmake/unix/xenix/public.h167
-rw-r--r--dmake/unix/xenix/pwd/config.mk23
-rw-r--r--dmake/unix/xenix/pwd/getcwd.c231
-rw-r--r--dmake/unix/xenix/pwd/make.sh62
-rw-r--r--dmake/unix/xenix/pwd/public.h167
-rw-r--r--dmake/unix/xenix/pwd/template.mk7
-rw-r--r--dmake/unix/xenix/stdlib.h50
-rw-r--r--dmake/unix/xenix/template.mk7
-rw-r--r--dmake/unix/xenix/time.h32
-rw-r--r--dmake/vextern.h129
-rw-r--r--dmake/win95/borland/bcc50/config.h44
-rw-r--r--dmake/win95/borland/bcc50/config.mk14
-rw-r--r--dmake/win95/borland/bcc50/lib.rsp2
-rwxr-xr-xdmake/win95/borland/bcc50/mk.bat96
-rw-r--r--dmake/win95/borland/bcc50/obj.rsp32
-rw-r--r--dmake/win95/borland/bcc50/public.h168
-rw-r--r--dmake/win95/borland/bcc50/template.mk7
-rw-r--r--dmake/win95/borland/config.mk51
-rw-r--r--dmake/win95/borland/ruletab.c44
-rw-r--r--dmake/win95/borland/sysintf.h55
-rw-r--r--dmake/win95/borland/tempnam.c114
-rw-r--r--dmake/win95/config.mk53
-rw-r--r--dmake/win95/dchdir.c49
-rw-r--r--dmake/win95/microsft/config.h122
-rw-r--r--dmake/win95/microsft/config.mk62
-rw-r--r--dmake/win95/microsft/optoff.h27
-rw-r--r--dmake/win95/microsft/ruletab.c56
-rw-r--r--dmake/win95/microsft/sysintf.h57
-rw-r--r--dmake/win95/microsft/tempnam.c110
-rw-r--r--dmake/win95/microsft/vpp40/config.mk14
-rw-r--r--dmake/win95/microsft/vpp40/lib.rsp1
-rwxr-xr-xdmake/win95/microsft/vpp40/mk.bat41
-rw-r--r--dmake/win95/microsft/vpp40/obj.rsp28
-rw-r--r--dmake/win95/microsft/vpp40/public.h167
-rw-r--r--dmake/win95/microsft/vpp40/runargv.c288
-rw-r--r--dmake/win95/microsft/vpp40/template.mk7
-rw-r--r--dmake/win95/microsft/vpp40/tempnam.c110
-rw-r--r--dmake/win95/startup.h28
-rw-r--r--dmake/win95/switchar.c43
-rw-r--r--dmake/winnt/borland/bcc50/config.h44
-rw-r--r--dmake/winnt/borland/bcc50/config.mk12
-rw-r--r--dmake/winnt/borland/bcc50/lib.rsp2
-rwxr-xr-xdmake/winnt/borland/bcc50/mk.bat95
-rwxr-xr-xdmake/winnt/borland/bcc50/mk.cmd93
-rw-r--r--dmake/winnt/borland/bcc50/obj.rsp31
-rw-r--r--dmake/winnt/borland/bcc50/public.h168
-rw-r--r--dmake/winnt/borland/bcc50/template.mk7
-rw-r--r--dmake/winnt/borland/config.mk51
-rw-r--r--dmake/winnt/borland/ruletab.c44
-rw-r--r--dmake/winnt/borland/sysintf.h55
-rw-r--r--dmake/winnt/borland/tempnam.c114
-rw-r--r--dmake/winnt/config.mk57
-rw-r--r--dmake/winnt/dchdir.c47
-rw-r--r--dmake/winnt/microsft/config.h85
-rw-r--r--dmake/winnt/microsft/config.mk61
-rw-r--r--dmake/winnt/microsft/optoff.h27
-rw-r--r--dmake/winnt/microsft/ruletab.c45
-rw-r--r--dmake/winnt/microsft/sysintf.h57
-rw-r--r--dmake/winnt/microsft/tempnam.c110
-rw-r--r--dmake/winnt/microsft/vpp40/config.mk14
-rw-r--r--dmake/winnt/microsft/vpp40/lib.rsp1
-rwxr-xr-xdmake/winnt/microsft/vpp40/mk.bat32
-rwxr-xr-xdmake/winnt/microsft/vpp40/mk.cmd31
-rw-r--r--dmake/winnt/microsft/vpp40/obj.rsp28
-rw-r--r--dmake/winnt/microsft/vpp40/public.h167
-rw-r--r--dmake/winnt/microsft/vpp40/runargv.c288
-rw-r--r--dmake/winnt/microsft/vpp40/template.mk7
-rw-r--r--dmake/winnt/microsft/vpp40/tempnam.c110
-rw-r--r--dmake/winnt/mingw/public.h167
-rw-r--r--dmake/winnt/mingw/sysintf.h62
-rw-r--r--dmake/winnt/msvc6/public.h167
-rw-r--r--dmake/winnt/msvc6/sysintf.h62
-rw-r--r--dmake/winnt/startup.h29
-rw-r--r--drawinglayer/inc/drawinglayer/animation/animationtiming.hxx148
-rw-r--r--drawinglayer/inc/drawinglayer/attribute/fillbitmapattribute.hxx89
-rw-r--r--drawinglayer/inc/drawinglayer/attribute/fillgradientattribute.hxx121
-rw-r--r--drawinglayer/inc/drawinglayer/attribute/fillhatchattribute.hxx112
-rw-r--r--drawinglayer/inc/drawinglayer/attribute/fontattribute.hxx100
-rw-r--r--drawinglayer/inc/drawinglayer/attribute/lineattribute.hxx84
-rw-r--r--drawinglayer/inc/drawinglayer/attribute/linestartendattribute.hxx85
-rw-r--r--drawinglayer/inc/drawinglayer/attribute/materialattribute3d.hxx89
-rw-r--r--drawinglayer/inc/drawinglayer/attribute/sdrallattribute3d.hxx86
-rw-r--r--drawinglayer/inc/drawinglayer/attribute/sdrfillattribute.hxx99
-rw-r--r--drawinglayer/inc/drawinglayer/attribute/sdrfillbitmapattribute.hxx101
-rw-r--r--drawinglayer/inc/drawinglayer/attribute/sdrlightattribute3d.hxx96
-rw-r--r--drawinglayer/inc/drawinglayer/attribute/sdrlightingattribute3d.hxx99
-rw-r--r--drawinglayer/inc/drawinglayer/attribute/sdrlineattribute.hxx104
-rw-r--r--drawinglayer/inc/drawinglayer/attribute/sdrlinestartendattribute.hxx102
-rw-r--r--drawinglayer/inc/drawinglayer/attribute/sdrobjectattribute3d.hxx111
-rw-r--r--drawinglayer/inc/drawinglayer/attribute/sdrsceneattribute3d.hxx94
-rw-r--r--drawinglayer/inc/drawinglayer/attribute/sdrshadowattribute.hxx93
-rw-r--r--drawinglayer/inc/drawinglayer/attribute/strokeattribute.hxx79
-rw-r--r--drawinglayer/inc/drawinglayer/geometry/viewinformation2d.hxx183
-rw-r--r--drawinglayer/inc/drawinglayer/geometry/viewinformation3d.hxx177
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/animatedprimitive2d.hxx178
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/backgroundcolorprimitive2d.hxx93
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/baseprimitive2d.hxx299
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/bitmapprimitive2d.hxx87
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/borderlineprimitive2d.hxx164
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/chartprimitive2d.hxx79
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/controlprimitive2d.hxx120
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/discretebitmapprimitive2d.hxx85
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/discreteshadowprimitive2d.hxx128
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/drawinglayer_primitivetypes2d.hxx112
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/embedded3dprimitive2d.hxx129
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/epsprimitive2d.hxx88
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/fillbitmapprimitive2d.hxx95
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/fillgradientprimitive2d.hxx116
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/fillhatchprimitive2d.hxx96
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/graphicprimitive2d.hxx105
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/gridprimitive2d.hxx126
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/groupprimitive2d.hxx102
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/helplineprimitive2d.hxx121
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/hiddengeometryprimitive2d.hxx79
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/invertprimitive2d.hxx66
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/markerarrayprimitive2d.hxx95
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/maskprimitive2d.hxx86
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/mediaprimitive2d.hxx100
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/metafileprimitive2d.hxx101
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/modifiedcolorprimitive2d.hxx86
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/pagepreviewprimitive2d.hxx111
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/pointarrayprimitive2d.hxx90
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/polygonprimitive2d.hxx324
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/polypolygonprimitive2d.hxx446
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/primitivetools2d.hxx199
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/sceneprimitive2d.hxx166
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/sdrdecompositiontools2d.hxx85
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/shadowprimitive2d.hxx95
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/structuretagprimitive2d.hxx78
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/textdecoratedprimitive2d.hxx157
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/texteffectprimitive2d.hxx113
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/textenumsprimitive2d.hxx111
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/texthierarchyprimitive2d.hxx219
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/textlayoutdevice.hxx164
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/textlineprimitive2d.hxx91
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/textprimitive2d.hxx186
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/textstrikeoutprimitive2d.hxx159
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/transformprimitive2d.hxx91
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/transparenceprimitive2d.hxx103
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/unifiedtransparenceprimitive2d.hxx91
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/wallpaperprimitive2d.hxx94
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/wrongspellprimitive2d.hxx99
-rw-r--r--drawinglayer/inc/drawinglayer/primitive3d/baseprimitive3d.hxx220
-rw-r--r--drawinglayer/inc/drawinglayer/primitive3d/drawinglayer_primitivetypes3d.hxx65
-rw-r--r--drawinglayer/inc/drawinglayer/primitive3d/groupprimitive3d.hxx88
-rw-r--r--drawinglayer/inc/drawinglayer/primitive3d/hatchtextureprimitive3d.hxx93
-rw-r--r--drawinglayer/inc/drawinglayer/primitive3d/hiddengeometryprimitive3d.hxx81
-rw-r--r--drawinglayer/inc/drawinglayer/primitive3d/modifiedcolorprimitive3d.hxx76
-rw-r--r--drawinglayer/inc/drawinglayer/primitive3d/polygonprimitive3d.hxx141
-rw-r--r--drawinglayer/inc/drawinglayer/primitive3d/polygontubeprimitive3d.hxx111
-rw-r--r--drawinglayer/inc/drawinglayer/primitive3d/polypolygonprimitive3d.hxx90
-rw-r--r--drawinglayer/inc/drawinglayer/primitive3d/sdrcubeprimitive3d.hxx76
-rw-r--r--drawinglayer/inc/drawinglayer/primitive3d/sdrdecompositiontools3d.hxx104
-rw-r--r--drawinglayer/inc/drawinglayer/primitive3d/sdrextrudelathetools3d.hxx143
-rw-r--r--drawinglayer/inc/drawinglayer/primitive3d/sdrextrudeprimitive3d.hxx136
-rw-r--r--drawinglayer/inc/drawinglayer/primitive3d/sdrlatheprimitive3d.hxx154
-rw-r--r--drawinglayer/inc/drawinglayer/primitive3d/sdrpolypolygonprimitive3d.hxx88
-rw-r--r--drawinglayer/inc/drawinglayer/primitive3d/sdrprimitive3d.hxx95
-rw-r--r--drawinglayer/inc/drawinglayer/primitive3d/sdrsphereprimitive3d.hxx87
-rw-r--r--drawinglayer/inc/drawinglayer/primitive3d/shadowprimitive3d.hxx91
-rw-r--r--drawinglayer/inc/drawinglayer/primitive3d/textureprimitive3d.hxx237
-rw-r--r--drawinglayer/inc/drawinglayer/primitive3d/transformprimitive3d.hxx81
-rw-r--r--drawinglayer/inc/drawinglayer/processor2d/baseprocessor2d.hxx240
-rw-r--r--drawinglayer/inc/drawinglayer/processor2d/canvasprocessor.hxx132
-rw-r--r--drawinglayer/inc/drawinglayer/processor2d/contourextractor2d.hxx68
-rw-r--r--drawinglayer/inc/drawinglayer/processor2d/hittestprocessor2d.hxx114
-rw-r--r--drawinglayer/inc/drawinglayer/processor2d/linegeometryextractor2d.hxx71
-rw-r--r--drawinglayer/inc/drawinglayer/processor2d/textaspolygonextractor2d.hxx104
-rw-r--r--drawinglayer/inc/drawinglayer/processor2d/vclmetafileprocessor2d.hxx154
-rw-r--r--drawinglayer/inc/drawinglayer/processor2d/vclpixelprocessor2d.hxx77
-rw-r--r--drawinglayer/inc/drawinglayer/processor2d/vclprocessor2d.hxx138
-rw-r--r--drawinglayer/inc/drawinglayer/processor3d/baseprocessor3d.hxx119
-rw-r--r--drawinglayer/inc/drawinglayer/processor3d/cutfindprocessor3d.hxx97
-rw-r--r--drawinglayer/inc/drawinglayer/processor3d/defaultprocessor3d.hxx164
-rw-r--r--drawinglayer/inc/drawinglayer/processor3d/geometry2dextractor.hxx81
-rw-r--r--drawinglayer/inc/drawinglayer/processor3d/shadow3dextractor.hxx123
-rw-r--r--drawinglayer/inc/drawinglayer/processor3d/zbufferprocessor3d.hxx119
-rw-r--r--drawinglayer/inc/drawinglayer/texture/texture.hxx266
-rw-r--r--drawinglayer/inc/drawinglayer/texture/texture3d.hxx165
-rw-r--r--drawinglayer/inc/makefile.mk47
-rw-r--r--drawinglayer/inc/pch/precompiled_drawinglayer.cxx29
-rw-r--r--drawinglayer/inc/pch/precompiled_drawinglayer.hxx32
-rw-r--r--drawinglayer/prj/build.lst13
-rw-r--r--drawinglayer/prj/d.lst121
-rw-r--r--drawinglayer/source/animation/animationtiming.cxx370
-rw-r--r--drawinglayer/source/animation/makefile.mk44
-rw-r--r--drawinglayer/source/attribute/fillbitmapattribute.cxx199
-rw-r--r--drawinglayer/source/attribute/fillgradientattribute.cxx250
-rw-r--r--drawinglayer/source/attribute/fillhatchattribute.cxx219
-rw-r--r--drawinglayer/source/attribute/fontattribute.cxx253
-rw-r--r--drawinglayer/source/attribute/lineattribute.cxx185
-rw-r--r--drawinglayer/source/attribute/linestartendattribute.cxx194
-rw-r--r--drawinglayer/source/attribute/makefile.mk61
-rw-r--r--drawinglayer/source/attribute/materialattribute3d.cxx207
-rw-r--r--drawinglayer/source/attribute/sdrallattribute3d.cxx83
-rw-r--r--drawinglayer/source/attribute/sdrfillattribute.cxx221
-rw-r--r--drawinglayer/source/attribute/sdrfillbitmapattribute.cxx404
-rw-r--r--drawinglayer/source/attribute/sdrlightattribute3d.cxx196
-rw-r--r--drawinglayer/source/attribute/sdrlightingattribute3d.cxx235
-rw-r--r--drawinglayer/source/attribute/sdrlineattribute.cxx250
-rw-r--r--drawinglayer/source/attribute/sdrlinestartendattribute.cxx254
-rw-r--r--drawinglayer/source/attribute/sdrobjectattribute3d.cxx292
-rw-r--r--drawinglayer/source/attribute/sdrsceneattribute3d.cxx218
-rw-r--r--drawinglayer/source/attribute/sdrshadowattribute.cxx193
-rw-r--r--drawinglayer/source/attribute/strokeattribute.cxx182
-rw-r--r--drawinglayer/source/geometry/makefile.mk44
-rw-r--r--drawinglayer/source/geometry/viewinformation2d.cxx592
-rw-r--r--drawinglayer/source/geometry/viewinformation3d.cxx599
-rw-r--r--drawinglayer/source/primitive2d/animatedprimitive2d.cxx224
-rw-r--r--drawinglayer/source/primitive2d/backgroundcolorprimitive2d.cxx116
-rw-r--r--drawinglayer/source/primitive2d/baseprimitive2d.cxx278
-rw-r--r--drawinglayer/source/primitive2d/bitmapprimitive2d.cxx81
-rw-r--r--drawinglayer/source/primitive2d/borderlineprimitive2d.cxx235
-rw-r--r--drawinglayer/source/primitive2d/chartprimitive2d.cxx82
-rw-r--r--drawinglayer/source/primitive2d/controlprimitive2d.cxx383
-rw-r--r--drawinglayer/source/primitive2d/discretebitmapprimitive2d.cxx116
-rw-r--r--drawinglayer/source/primitive2d/discreteshadowprimitive2d.cxx339
-rw-r--r--drawinglayer/source/primitive2d/embedded3dprimitive2d.cxx168
-rw-r--r--drawinglayer/source/primitive2d/epsprimitive2d.cxx103
-rw-r--r--drawinglayer/source/primitive2d/fillbitmapprimitive2d.cxx142
-rw-r--r--drawinglayer/source/primitive2d/fillgradientprimitive2d.cxx298
-rw-r--r--drawinglayer/source/primitive2d/fillhatchprimitive2d.cxx161
-rw-r--r--drawinglayer/source/primitive2d/graphicprimitive2d.cxx942
-rw-r--r--drawinglayer/source/primitive2d/gridprimitive2d.cxx320
-rw-r--r--drawinglayer/source/primitive2d/groupprimitive2d.cxx79
-rw-r--r--drawinglayer/source/primitive2d/helplineprimitive2d.cxx222
-rw-r--r--drawinglayer/source/primitive2d/hiddengeometryprimitive2d.cxx75
-rw-r--r--drawinglayer/source/primitive2d/invertprimitive2d.cxx57
-rw-r--r--drawinglayer/source/primitive2d/makefile.mk90
-rw-r--r--drawinglayer/source/primitive2d/markerarrayprimitive2d.cxx157
-rw-r--r--drawinglayer/source/primitive2d/maskprimitive2d.cxx76
-rw-r--r--drawinglayer/source/primitive2d/mediaprimitive2d.cxx163
-rw-r--r--drawinglayer/source/primitive2d/metafileprimitive2d.cxx3252
-rw-r--r--drawinglayer/source/primitive2d/modifiedcolorprimitive2d.cxx71
-rw-r--r--drawinglayer/source/primitive2d/pagepreviewprimitive2d.cxx183
-rw-r--r--drawinglayer/source/primitive2d/pointarrayprimitive2d.cxx93
-rw-r--r--drawinglayer/source/primitive2d/polygonprimitive2d.cxx638
-rw-r--r--drawinglayer/source/primitive2d/polypolygonprimitive2d.cxx572
-rw-r--r--drawinglayer/source/primitive2d/primitivetools2d.cxx170
-rw-r--r--drawinglayer/source/primitive2d/sceneprimitive2d.cxx480
-rw-r--r--drawinglayer/source/primitive2d/sdrdecompositiontools2d.cxx130
-rw-r--r--drawinglayer/source/primitive2d/shadowprimitive2d.cxx106
-rw-r--r--drawinglayer/source/primitive2d/structuretagprimitive2d.cxx59
-rw-r--r--drawinglayer/source/primitive2d/textdecoratedprimitive2d.cxx606
-rw-r--r--drawinglayer/source/primitive2d/texteffectprimitive2d.cxx239
-rw-r--r--drawinglayer/source/primitive2d/textenumsprimitive2d.cxx121
-rw-r--r--drawinglayer/source/primitive2d/texthierarchyprimitive2d.cxx158
-rw-r--r--drawinglayer/source/primitive2d/textlayoutdevice.cxx491
-rw-r--r--drawinglayer/source/primitive2d/textlineprimitive2d.cxx309
-rw-r--r--drawinglayer/source/primitive2d/textprimitive2d.cxx339
-rw-r--r--drawinglayer/source/primitive2d/textstrikeoutprimitive2d.cxx286
-rw-r--r--drawinglayer/source/primitive2d/transformprimitive2d.cxx79
-rw-r--r--drawinglayer/source/primitive2d/transparenceprimitive2d.cxx78
-rw-r--r--drawinglayer/source/primitive2d/unifiedtransparenceprimitive2d.cxx136
-rw-r--r--drawinglayer/source/primitive2d/wallpaperprimitive2d.cxx269
-rw-r--r--drawinglayer/source/primitive2d/wrongspellprimitive2d.cxx122
-rw-r--r--drawinglayer/source/primitive3d/baseprimitive3d.cxx278
-rw-r--r--drawinglayer/source/primitive3d/groupprimitive3d.cxx79
-rw-r--r--drawinglayer/source/primitive3d/hatchtextureprimitive3d.cxx319
-rw-r--r--drawinglayer/source/primitive3d/hiddengeometryprimitive3d.cxx76
-rw-r--r--drawinglayer/source/primitive3d/makefile.mk62
-rw-r--r--drawinglayer/source/primitive3d/modifiedcolorprimitive3d.cxx71
-rw-r--r--drawinglayer/source/primitive3d/polygonprimitive3d.cxx178
-rw-r--r--drawinglayer/source/primitive3d/polygontubeprimitive3d.cxx579
-rw-r--r--drawinglayer/source/primitive3d/polypolygonprimitive3d.cxx83
-rw-r--r--drawinglayer/source/primitive3d/sdrcubeprimitive3d.cxx222
-rw-r--r--drawinglayer/source/primitive3d/sdrdecompositiontools3d.cxx339
-rw-r--r--drawinglayer/source/primitive3d/sdrextrudelathetools3d.cxx991
-rw-r--r--drawinglayer/source/primitive3d/sdrextrudeprimitive3d.cxx526
-rw-r--r--drawinglayer/source/primitive3d/sdrlatheprimitive3d.cxx387
-rw-r--r--drawinglayer/source/primitive3d/sdrpolypolygonprimitive3d.cxx194
-rw-r--r--drawinglayer/source/primitive3d/sdrprimitive3d.cxx125
-rw-r--r--drawinglayer/source/primitive3d/sdrsphereprimitive3d.cxx224
-rw-r--r--drawinglayer/source/primitive3d/shadowprimitive3d.cxx80
-rw-r--r--drawinglayer/source/primitive3d/textureprimitive3d.cxx227
-rw-r--r--drawinglayer/source/primitive3d/transformprimitive3d.cxx79
-rw-r--r--drawinglayer/source/processor2d/baseprocessor2d.cxx91
-rw-r--r--drawinglayer/source/processor2d/canvasprocessor.cxx2218
-rw-r--r--drawinglayer/source/processor2d/contourextractor2d.cxx203
-rw-r--r--drawinglayer/source/processor2d/helperchartrenderer.cxx155
-rw-r--r--drawinglayer/source/processor2d/helperchartrenderer.hxx60
-rw-r--r--drawinglayer/source/processor2d/helperwrongspellrenderer.cxx96
-rw-r--r--drawinglayer/source/processor2d/helperwrongspellrenderer.hxx65
-rw-r--r--drawinglayer/source/processor2d/hittestprocessor2d.cxx605
-rw-r--r--drawinglayer/source/processor2d/linegeometryextractor2d.cxx144
-rw-r--r--drawinglayer/source/processor2d/makefile.mk58
-rw-r--r--drawinglayer/source/processor2d/textaspolygonextractor2d.cxx247
-rw-r--r--drawinglayer/source/processor2d/vclhelperbitmaprender.cxx280
-rw-r--r--drawinglayer/source/processor2d/vclhelperbitmaprender.hxx66
-rw-r--r--drawinglayer/source/processor2d/vclhelperbitmaptransform.cxx431
-rw-r--r--drawinglayer/source/processor2d/vclhelperbitmaptransform.hxx60
-rw-r--r--drawinglayer/source/processor2d/vclhelperbufferdevice.cxx182
-rw-r--r--drawinglayer/source/processor2d/vclhelperbufferdevice.hxx70
-rw-r--r--drawinglayer/source/processor2d/vclhelpergradient.cxx285
-rw-r--r--drawinglayer/source/processor2d/vclhelpergradient.hxx62
-rw-r--r--drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx2012
-rw-r--r--drawinglayer/source/processor2d/vclpixelprocessor2d.cxx613
-rw-r--r--drawinglayer/source/processor2d/vclprocessor2d.cxx1492
-rw-r--r--drawinglayer/source/processor3d/baseprocessor3d.cxx114
-rw-r--r--drawinglayer/source/processor3d/cutfindprocessor3d.cxx225
-rw-r--r--drawinglayer/source/processor3d/defaultprocessor3d.cxx566
-rw-r--r--drawinglayer/source/processor3d/geometry2dextractor.cxx170
-rw-r--r--drawinglayer/source/processor3d/makefile.mk50
-rw-r--r--drawinglayer/source/processor3d/shadow3dextractor.cxx342
-rw-r--r--drawinglayer/source/processor3d/zbufferprocessor3d.cxx840
-rw-r--r--drawinglayer/source/texture/makefile.mk45
-rw-r--r--drawinglayer/source/texture/texture.cxx644
-rw-r--r--drawinglayer/source/texture/texture3d.cxx262
-rw-r--r--drawinglayer/util/drawinglayer.flt4
-rw-r--r--drawinglayer/util/makefile.mk85
-rw-r--r--dtrans/inc/makefile.mk47
-rw-r--r--dtrans/inc/pch/precompiled_dtrans.cxx29
-rw-r--r--dtrans/inc/pch/precompiled_dtrans.hxx32
-rw-r--r--dtrans/prj/build.lst15
-rw-r--r--dtrans/prj/d.lst9
-rw-r--r--dtrans/source/cnttype/exports.dxp3
-rw-r--r--dtrans/source/cnttype/makefile.mk53
-rw-r--r--dtrans/source/cnttype/mcnttfactory.cxx123
-rw-r--r--dtrans/source/cnttype/mcnttfactory.hxx85
-rw-r--r--dtrans/source/cnttype/mcnttype.cxx427
-rw-r--r--dtrans/source/cnttype/mcnttype.hxx97
-rw-r--r--dtrans/source/cnttype/mcnttype.xml35
-rw-r--r--dtrans/source/cnttype/mctfentry.cxx160
-rw-r--r--dtrans/source/cnttype/wbench/makefile.mk53
-rw-r--r--dtrans/source/cnttype/wbench/testcnttype.cxx269
-rw-r--r--dtrans/source/generic/clipboardmanager.cxx266
-rw-r--r--dtrans/source/generic/clipboardmanager.hxx127
-rw-r--r--dtrans/source/generic/dtrans.cxx131
-rw-r--r--dtrans/source/generic/dtrans.xml44
-rw-r--r--dtrans/source/generic/exports.dxp3
-rw-r--r--dtrans/source/generic/generic_clipboard.cxx205
-rw-r--r--dtrans/source/generic/generic_clipboard.hxx135
-rw-r--r--dtrans/source/generic/makefile.mk67
-rw-r--r--dtrans/source/inc/DtObjFactory.hxx54
-rw-r--r--dtrans/source/inc/MtaOleClipb.hxx134
-rw-r--r--dtrans/source/os2/clipb/OS2Bitmap.cxx248
-rw-r--r--dtrans/source/os2/clipb/Os2Clipboard.cxx447
-rw-r--r--dtrans/source/os2/clipb/Os2Clipboard.hxx136
-rw-r--r--dtrans/source/os2/clipb/Os2Service.cxx106
-rw-r--r--dtrans/source/os2/clipb/Os2Transferable.cxx176
-rw-r--r--dtrans/source/os2/clipb/Os2Transferable.hxx99
-rw-r--r--dtrans/source/os2/clipb/exports.dxp4
-rw-r--r--dtrans/source/os2/clipb/makefile.mk59
-rw-r--r--dtrans/source/os2/clipb/sysdtrans.xml43
-rw-r--r--dtrans/source/test/makefile.mk53
-rw-r--r--dtrans/source/test/test_dtrans.cxx512
-rw-r--r--dtrans/source/win32/clipb/APNDataObject.hxx87
-rw-r--r--dtrans/source/win32/clipb/WinClipbImpl.cxx273
-rw-r--r--dtrans/source/win32/clipb/WinClipbImpl.hxx125
-rw-r--r--dtrans/source/win32/clipb/WinClipboard.cxx322
-rw-r--r--dtrans/source/win32/clipb/WinClipboard.hxx157
-rw-r--r--dtrans/source/win32/clipb/exports.dxp4
-rw-r--r--dtrans/source/win32/clipb/makefile.mk59
-rw-r--r--dtrans/source/win32/clipb/sysdtrans.xml43
-rw-r--r--dtrans/source/win32/clipb/wcbentry.cxx159
-rw-r--r--dtrans/source/win32/dnd/dnd.xml46
-rw-r--r--dtrans/source/win32/dnd/dndentry.cxx153
-rw-r--r--dtrans/source/win32/dnd/exports.dxp3
-rw-r--r--dtrans/source/win32/dnd/globals.cxx139
-rw-r--r--dtrans/source/win32/dnd/globals.hxx94
-rw-r--r--dtrans/source/win32/dnd/idroptarget.cxx114
-rw-r--r--dtrans/source/win32/dnd/idroptarget.hxx74
-rw-r--r--dtrans/source/win32/dnd/makefile.mk66
-rw-r--r--dtrans/source/win32/dnd/source.cxx431
-rw-r--r--dtrans/source/win32/dnd/source.hxx151
-rw-r--r--dtrans/source/win32/dnd/sourcecontext.cxx156
-rw-r--r--dtrans/source/win32/dnd/sourcecontext.hxx89
-rw-r--r--dtrans/source/win32/dnd/target.cxx661
-rw-r--r--dtrans/source/win32/dnd/target.hxx213
-rw-r--r--dtrans/source/win32/dnd/targetdragcontext.cxx59
-rw-r--r--dtrans/source/win32/dnd/targetdragcontext.hxx62
-rw-r--r--dtrans/source/win32/dnd/targetdropcontext.cxx69
-rw-r--r--dtrans/source/win32/dnd/targetdropcontext.hxx72
-rw-r--r--dtrans/source/win32/dtobj/APNDataObject.cxx378
-rw-r--r--dtrans/source/win32/dtobj/APNDataObject.hxx89
-rwxr-xr-xdtrans/source/win32/dtobj/DOTransferable.cxx614
-rw-r--r--dtrans/source/win32/dtobj/DOTransferable.hxx133
-rw-r--r--dtrans/source/win32/dtobj/DTransHelper.cxx239
-rw-r--r--dtrans/source/win32/dtobj/DTransHelper.hxx214
-rw-r--r--dtrans/source/win32/dtobj/DataFmtTransl.cxx336
-rw-r--r--dtrans/source/win32/dtobj/DataFmtTransl.hxx83
-rw-r--r--dtrans/source/win32/dtobj/DtObjFactory.cxx74
-rw-r--r--dtrans/source/win32/dtobj/Fetc.cxx259
-rw-r--r--dtrans/source/win32/dtobj/Fetc.hxx93
-rw-r--r--dtrans/source/win32/dtobj/FetcList.cxx480
-rw-r--r--dtrans/source/win32/dtobj/FetcList.hxx156
-rwxr-xr-xdtrans/source/win32/dtobj/FmtFilter.cxx579
-rwxr-xr-xdtrans/source/win32/dtobj/FmtFilter.hxx96
-rw-r--r--dtrans/source/win32/dtobj/MimeAttrib.hxx50
-rw-r--r--dtrans/source/win32/dtobj/TxtCnvtHlp.cxx145
-rw-r--r--dtrans/source/win32/dtobj/TxtCnvtHlp.hxx63
-rw-r--r--dtrans/source/win32/dtobj/XNotifyingDataObject.cxx163
-rw-r--r--dtrans/source/win32/dtobj/XNotifyingDataObject.hxx105
-rw-r--r--dtrans/source/win32/dtobj/XTDataObject.cxx848
-rw-r--r--dtrans/source/win32/dtobj/XTDataObject.hxx177
-rw-r--r--dtrans/source/win32/dtobj/makefile.mk76
-rw-r--r--dtrans/source/win32/ftransl/exports.dxp3
-rwxr-xr-xdtrans/source/win32/ftransl/ftransl.cxx649
-rw-r--r--dtrans/source/win32/ftransl/ftransl.hxx132
-rw-r--r--dtrans/source/win32/ftransl/ftransl.xml33
-rw-r--r--dtrans/source/win32/ftransl/ftranslentry.cxx163
-rw-r--r--dtrans/source/win32/ftransl/makefile.mk51
-rw-r--r--dtrans/source/win32/misc/ImplHelper.cxx489
-rw-r--r--dtrans/source/win32/misc/ImplHelper.hxx106
-rw-r--r--dtrans/source/win32/misc/WinClip.hxx45
-rw-r--r--dtrans/source/win32/misc/makefile.mk60
-rw-r--r--dtrans/source/win32/mtaole/MtaOleClipb.cxx893
-rw-r--r--dtrans/source/win32/mtaole/makefile.mk54
-rw-r--r--dtrans/source/win32/workbench/XTDo.cxx431
-rw-r--r--dtrans/source/win32/workbench/XTDo.hxx134
-rw-r--r--dtrans/source/win32/workbench/makefile.mk96
-rw-r--r--dtrans/source/win32/workbench/test_wincb.cxx348
-rw-r--r--dtrans/source/win32/workbench/testmarshal.cxx243
-rw-r--r--dtrans/test/win32/dnd/atlwindow.cxx262
-rw-r--r--dtrans/test/win32/dnd/atlwindow.hxx100
-rw-r--r--dtrans/test/win32/dnd/dndTest.cxx210
-rw-r--r--dtrans/test/win32/dnd/makefile.mk83
-rw-r--r--dtrans/test/win32/dnd/sourcelistener.cxx73
-rw-r--r--dtrans/test/win32/dnd/sourcelistener.hxx65
-rw-r--r--dtrans/test/win32/dnd/targetlistener.cxx103
-rw-r--r--dtrans/test/win32/dnd/targetlistener.hxx74
-rw-r--r--dtrans/test/win32/dnd/transferable.cxx126
-rw-r--r--dtrans/test/win32/dnd/transferable.hxx124
-rw-r--r--dtrans/util/exports.dxp3
-rw-r--r--dtrans/util/makefile.mk182
-rw-r--r--editeng/inc/editeng.hrc43
-rw-r--r--editeng/inc/editeng/AccessibleComponentBase.hxx147
-rw-r--r--editeng/inc/editeng/AccessibleContextBase.hxx400
-rw-r--r--editeng/inc/editeng/AccessibleEditableTextPara.hxx419
-rw-r--r--editeng/inc/editeng/AccessibleImageBullet.hxx237
-rw-r--r--editeng/inc/editeng/AccessibleParaManager.hxx347
-rw-r--r--editeng/inc/editeng/AccessibleSelectionBase.hxx73
-rw-r--r--editeng/inc/editeng/AccessibleStaticTextBase.hxx283
-rw-r--r--editeng/inc/editeng/AccessibleStringWrap.hxx63
-rw-r--r--editeng/inc/editeng/SpellPortions.hxx95
-rw-r--r--editeng/inc/editeng/UnoForbiddenCharsTable.hxx65
-rw-r--r--editeng/inc/editeng/acorrcfg.hxx133
-rw-r--r--editeng/inc/editeng/adjitem.hxx143
-rw-r--r--editeng/inc/editeng/akrnitem.hxx74
-rw-r--r--editeng/inc/editeng/blnkitem.hxx72
-rw-r--r--editeng/inc/editeng/bolnitem.hxx83
-rw-r--r--editeng/inc/editeng/borderline.hxx134
-rw-r--r--editeng/inc/editeng/boxitem.hxx226
-rw-r--r--editeng/inc/editeng/brkitem.hxx103
-rw-r--r--editeng/inc/editeng/brshitem.hxx140
-rw-r--r--editeng/inc/editeng/bulitem.hxx160
-rw-r--r--editeng/inc/editeng/charhiddenitem.hxx61
-rw-r--r--editeng/inc/editeng/charreliefitem.hxx80
-rw-r--r--editeng/inc/editeng/charrotateitem.hxx92
-rw-r--r--editeng/inc/editeng/charscaleitem.hxx78
-rw-r--r--editeng/inc/editeng/cmapitem.hxx89
-rw-r--r--editeng/inc/editeng/cntritem.hxx68
-rw-r--r--editeng/inc/editeng/colritem.hxx95
-rw-r--r--editeng/inc/editeng/crsditem.hxx93
-rw-r--r--editeng/inc/editeng/cscoitem.hxx75
-rw-r--r--editeng/inc/editeng/editdata.hxx388
-rwxr-xr-xediteng/inc/editeng/editeng.hxx487
-rw-r--r--editeng/inc/editeng/editengdllapi.h43
-rw-r--r--editeng/inc/editeng/editerr.hxx39
-rw-r--r--editeng/inc/editeng/editids.hrc245
-rw-r--r--editeng/inc/editeng/editobj.hxx126
-rw-r--r--editeng/inc/editeng/editrids.hrc432
-rw-r--r--editeng/inc/editeng/editstat.hxx150
-rw-r--r--editeng/inc/editeng/editund2.hxx76
-rw-r--r--editeng/inc/editeng/editview.hxx250
-rw-r--r--editeng/inc/editeng/edtdlg.hxx114
-rw-r--r--editeng/inc/editeng/eedata.hxx74
-rw-r--r--editeng/inc/editeng/eeitem.hxx99
-rw-r--r--editeng/inc/editeng/eeitemid.hxx136
-rw-r--r--editeng/inc/editeng/eerdll.hxx61
-rw-r--r--editeng/inc/editeng/emphitem.hxx88
-rw-r--r--editeng/inc/editeng/escpitem.hxx114
-rw-r--r--editeng/inc/editeng/fhgtitem.hxx116
-rw-r--r--editeng/inc/editeng/flditem.hxx427
-rw-r--r--editeng/inc/editeng/flstitem.hxx79
-rw-r--r--editeng/inc/editeng/fontitem.hxx118
-rw-r--r--editeng/inc/editeng/forbiddencharacterstable.hxx70
-rw-r--r--editeng/inc/editeng/forbiddenruleitem.hxx69
-rw-r--r--editeng/inc/editeng/frmdir.hxx60
-rw-r--r--editeng/inc/editeng/frmdiritem.hxx80
-rw-r--r--editeng/inc/editeng/fwdtitem.hxx108
-rw-r--r--editeng/inc/editeng/hangulhanja.hxx302
-rw-r--r--editeng/inc/editeng/hngpnctitem.hxx69
-rw-r--r--editeng/inc/editeng/hyznitem.hxx106
-rw-r--r--editeng/inc/editeng/itemtype.hxx75
-rw-r--r--editeng/inc/editeng/keepitem.hxx78
-rw-r--r--editeng/inc/editeng/kernitem.hxx80
-rw-r--r--editeng/inc/editeng/langitem.hxx84
-rw-r--r--editeng/inc/editeng/lcolitem.hxx65
-rw-r--r--editeng/inc/editeng/lrspitem.hxx179
-rw-r--r--editeng/inc/editeng/lspcitem.hxx123
-rw-r--r--editeng/inc/editeng/measfld.hxx66
-rw-r--r--editeng/inc/editeng/memberids.hrc196
-rw-r--r--editeng/inc/editeng/mutxhelp.hxx44
-rw-r--r--editeng/inc/editeng/nhypitem.hxx68
-rw-r--r--editeng/inc/editeng/nlbkitem.hxx73
-rw-r--r--editeng/inc/editeng/numdef.hxx30
-rw-r--r--editeng/inc/editeng/numitem.hxx396
-rw-r--r--editeng/inc/editeng/opaqitem.hxx81
-rw-r--r--editeng/inc/editeng/optitems.hxx111
-rw-r--r--editeng/inc/editeng/orphitem.hxx74
-rw-r--r--editeng/inc/editeng/outliner.hxx1053
-rw-r--r--editeng/inc/editeng/outlobj.hxx96
-rw-r--r--editeng/inc/editeng/paperinf.hxx73
-rw-r--r--editeng/inc/editeng/paragraphdata.hxx72
-rw-r--r--editeng/inc/editeng/paravertalignitem.hxx80
-rw-r--r--editeng/inc/editeng/pbinitem.hxx77
-rw-r--r--editeng/inc/editeng/pgrditem.hxx64
-rw-r--r--editeng/inc/editeng/pmdlitem.hxx86
-rw-r--r--editeng/inc/editeng/postitem.hxx89
-rw-r--r--editeng/inc/editeng/prntitem.hxx79
-rw-r--r--editeng/inc/editeng/protitem.hxx105
-rw-r--r--editeng/inc/editeng/prszitem.hxx68
-rw-r--r--editeng/inc/editeng/scriptspaceitem.hxx70
-rw-r--r--editeng/inc/editeng/scripttypeitem.hxx91
-rw-r--r--editeng/inc/editeng/shaditem.hxx111
-rw-r--r--editeng/inc/editeng/shdditem.hxx74
-rw-r--r--editeng/inc/editeng/sizeitem.hxx83
-rw-r--r--editeng/inc/editeng/spltitem.hxx81
-rwxr-xr-xediteng/inc/editeng/splwrap.hxx160
-rw-r--r--editeng/inc/editeng/svxacorr.hxx399
-rw-r--r--editeng/inc/editeng/svxenum.hxx218
-rw-r--r--editeng/inc/editeng/svxfont.hxx126
-rw-r--r--editeng/inc/editeng/svxrtf.hxx475
-rw-r--r--editeng/inc/editeng/swafopt.hxx105
-rw-r--r--editeng/inc/editeng/tstpitem.hxx185
-rw-r--r--editeng/inc/editeng/twolinesitem.hxx90
-rw-r--r--editeng/inc/editeng/txtrange.hxx118
-rw-r--r--editeng/inc/editeng/udlnitem.hxx133
-rw-r--r--editeng/inc/editeng/ulspitem.hxx113
-rw-r--r--editeng/inc/editeng/unoedhlp.hxx189
-rw-r--r--editeng/inc/editeng/unoedprx.hxx179
-rw-r--r--editeng/inc/editeng/unoedsrc.hxx552
-rw-r--r--editeng/inc/editeng/unofdesc.hxx54
-rw-r--r--editeng/inc/editeng/unofield.hxx137
-rw-r--r--editeng/inc/editeng/unofored.hxx100
-rw-r--r--editeng/inc/editeng/unoforou.hxx129
-rw-r--r--editeng/inc/editeng/unoipset.hxx83
-rw-r--r--editeng/inc/editeng/unolingu.hxx236
-rw-r--r--editeng/inc/editeng/unonrule.hxx95
-rw-r--r--editeng/inc/editeng/unopracc.hxx73
-rw-r--r--editeng/inc/editeng/unoprnms.hxx376
-rw-r--r--editeng/inc/editeng/unotext.hxx677
-rw-r--r--editeng/inc/editeng/unoviwed.hxx62
-rw-r--r--editeng/inc/editeng/unoviwou.hxx68
-rw-r--r--editeng/inc/editeng/wghtitem.hxx89
-rw-r--r--editeng/inc/editeng/widwitem.hxx74
-rw-r--r--editeng/inc/editeng/writingmodeitem.hxx68
-rw-r--r--editeng/inc/editeng/wrlmitem.hxx75
-rw-r--r--editeng/inc/editeng/xmlcnitm.hxx91
-rw-r--r--editeng/inc/editxml.hxx43
-rw-r--r--editeng/inc/helpid.hrc81
-rw-r--r--editeng/inc/makefile.mk52
-rw-r--r--editeng/inc/pch/precompiled_editeng.cxx32
-rw-r--r--editeng/inc/pch/precompiled_editeng.hxx897
-rw-r--r--editeng/prj/build.lst13
-rw-r--r--editeng/prj/d.lst14
-rw-r--r--editeng/source/accessibility/AccessibleComponentBase.cxx237
-rw-r--r--editeng/source/accessibility/AccessibleContextBase.cxx715
-rw-r--r--editeng/source/accessibility/AccessibleEditableTextPara.cxx2311
-rw-r--r--editeng/source/accessibility/AccessibleHyperlink.cxx146
-rw-r--r--editeng/source/accessibility/AccessibleHyperlink.hxx82
-rw-r--r--editeng/source/accessibility/AccessibleImageBullet.cxx651
-rw-r--r--editeng/source/accessibility/AccessibleParaManager.cxx420
-rw-r--r--editeng/source/accessibility/AccessibleSelectionBase.cxx108
-rw-r--r--editeng/source/accessibility/AccessibleStaticTextBase.cxx1047
-rw-r--r--editeng/source/accessibility/AccessibleStringWrap.cxx100
-rw-r--r--editeng/source/accessibility/accessibility.src43
-rw-r--r--editeng/source/accessibility/makefile.mk59
-rw-r--r--editeng/source/editeng/editattr.cxx445
-rw-r--r--editeng/source/editeng/editattr.hxx426
-rw-r--r--editeng/source/editeng/editdbg.cxx586
-rw-r--r--editeng/source/editeng/editdbg.hxx57
-rw-r--r--editeng/source/editeng/editdoc.cxx2314
-rw-r--r--editeng/source/editeng/editdoc.hxx802
-rw-r--r--editeng/source/editeng/editdoc2.cxx544
-rw-r--r--editeng/source/editeng/editeng.cxx2950
-rw-r--r--editeng/source/editeng/editeng.src124
-rw-r--r--editeng/source/editeng/editobj.cxx1725
-rw-r--r--editeng/source/editeng/editobj2.hxx309
-rw-r--r--editeng/source/editeng/editsel.cxx121
-rw-r--r--editeng/source/editeng/editsel.hxx75
-rw-r--r--editeng/source/editeng/editstt2.hxx130
-rw-r--r--editeng/source/editeng/editundo.cxx750
-rw-r--r--editeng/source/editeng/editundo.hxx315
-rwxr-xr-xediteng/source/editeng/editview.cxx1655
-rw-r--r--editeng/source/editeng/edtspell.cxx758
-rw-r--r--editeng/source/editeng/edtspell.hxx179
-rw-r--r--editeng/source/editeng/eehtml.cxx859
-rw-r--r--editeng/source/editeng/eehtml.hxx99
-rw-r--r--editeng/source/editeng/eeng_pch.cxx30
-rw-r--r--editeng/source/editeng/eeng_pch.hxx34
-rw-r--r--editeng/source/editeng/eeobj.cxx112
-rw-r--r--editeng/source/editeng/eeobj.hxx72
-rw-r--r--editeng/source/editeng/eerdll.cxx237
-rw-r--r--editeng/source/editeng/eerdll2.hxx61
-rw-r--r--editeng/source/editeng/eertfpar.cxx632
-rw-r--r--editeng/source/editeng/eertfpar.hxx128
-rwxr-xr-xediteng/source/editeng/impedit.cxx2005
-rwxr-xr-xediteng/source/editeng/impedit.hxx1211
-rwxr-xr-xediteng/source/editeng/impedit2.cxx4644
-rw-r--r--editeng/source/editeng/impedit3.cxx4677
-rw-r--r--editeng/source/editeng/impedit4.cxx3002
-rw-r--r--editeng/source/editeng/impedit5.cxx911
-rw-r--r--editeng/source/editeng/makefile.mk80
-rw-r--r--editeng/source/editeng/textconv.cxx629
-rw-r--r--editeng/source/editeng/textconv.hxx122
-rw-r--r--editeng/source/items/bulitem.cxx534
-rw-r--r--editeng/source/items/charhiddenitem.cxx82
-rw-r--r--editeng/source/items/flditem.cxx1098
-rw-r--r--editeng/source/items/frmitems.cxx4467
-rw-r--r--editeng/source/items/itemtype.cxx239
-rw-r--r--editeng/source/items/makefile.mk79
-rw-r--r--editeng/source/items/numitem.cxx1273
-rw-r--r--editeng/source/items/optitems.cxx203
-rw-r--r--editeng/source/items/page.src255
-rw-r--r--editeng/source/items/paperinf.cxx185
-rw-r--r--editeng/source/items/paraitem.cxx1757
-rw-r--r--editeng/source/items/svdfield.cxx65
-rw-r--r--editeng/source/items/svxfont.cxx857
-rw-r--r--editeng/source/items/svxitems.src1027
-rw-r--r--editeng/source/items/textitem.cxx3843
-rw-r--r--editeng/source/items/writingmodeitem.cxx153
-rw-r--r--editeng/source/items/xmlcnitm.cxx248
-rw-r--r--editeng/source/misc/SvXMLAutoCorrectExport.cxx117
-rw-r--r--editeng/source/misc/SvXMLAutoCorrectExport.hxx75
-rw-r--r--editeng/source/misc/SvXMLAutoCorrectImport.cxx266
-rw-r--r--editeng/source/misc/SvXMLAutoCorrectImport.hxx148
-rw-r--r--editeng/source/misc/acorrcfg.cxx675
-rwxr-xr-xediteng/source/misc/edtdlg.cxx43
-rw-r--r--editeng/source/misc/forbiddencharacterstable.cxx92
-rw-r--r--editeng/source/misc/hangulhanja.cxx1171
-rw-r--r--editeng/source/misc/lingu.src104
-rw-r--r--editeng/source/misc/makefile.mk71
-rw-r--r--editeng/source/misc/splwrap.cxx632
-rw-r--r--editeng/source/misc/svxacorr.cxx2788
-rw-r--r--editeng/source/misc/swafopt.cxx158
-rw-r--r--editeng/source/misc/txtrange.cxx711
-rwxr-xr-xediteng/source/misc/unolingu.cxx1377
-rw-r--r--editeng/source/outliner/makefile.mk60
-rw-r--r--editeng/source/outliner/outl_pch.cxx31
-rw-r--r--editeng/source/outliner/outl_pch.hxx33
-rw-r--r--editeng/source/outliner/outleeng.cxx244
-rw-r--r--editeng/source/outliner/outleeng.hxx93
-rw-r--r--editeng/source/outliner/outlin2.cxx813
-rw-r--r--editeng/source/outliner/outliner.cxx2181
-rw-r--r--editeng/source/outliner/outliner.src84
-rw-r--r--editeng/source/outliner/outlobj.cxx271
-rw-r--r--editeng/source/outliner/outlundo.cxx234
-rw-r--r--editeng/source/outliner/outlundo.hxx140
-rwxr-xr-xediteng/source/outliner/outlvw.cxx1734
-rw-r--r--editeng/source/outliner/paralist.cxx287
-rw-r--r--editeng/source/outliner/paralist.hxx71
-rw-r--r--editeng/source/rtf/makefile.mk51
-rw-r--r--editeng/source/rtf/rtfgrf.cxx558
-rw-r--r--editeng/source/rtf/rtfitem.cxx2101
-rw-r--r--editeng/source/rtf/segincr.asm39
-rw-r--r--editeng/source/rtf/svxrtf.cxx1514
-rw-r--r--editeng/source/uno/UnoForbiddenCharsTable.cxx145
-rw-r--r--editeng/source/uno/makefile.mk61
-rw-r--r--editeng/source/uno/unoedhlp.cxx197
-rw-r--r--editeng/source/uno/unoedprx.cxx1316
-rw-r--r--editeng/source/uno/unoedsrc.cxx90
-rw-r--r--editeng/source/uno/unofdesc.cxx266
-rw-r--r--editeng/source/uno/unofield.cxx1180
-rw-r--r--editeng/source/uno/unofored.cxx557
-rw-r--r--editeng/source/uno/unoforou.cxx615
-rw-r--r--editeng/source/uno/unoipset.cxx391
-rw-r--r--editeng/source/uno/unonrule.cxx615
-rw-r--r--editeng/source/uno/unopracc.cxx171
-rw-r--r--editeng/source/uno/unotext.cxx2724
-rw-r--r--editeng/source/uno/unotext2.cxx711
-rw-r--r--editeng/source/uno/unoviwed.cxx137
-rw-r--r--editeng/source/uno/unoviwou.cxx173
-rw-r--r--editeng/source/xml/editsource.hxx52
-rw-r--r--editeng/source/xml/makefile.mk50
-rw-r--r--editeng/source/xml/xmltxtexp.cxx500
-rw-r--r--editeng/source/xml/xmltxtimp.cxx260
-rw-r--r--editeng/util/editeng.dxp3
-rw-r--r--editeng/util/hidother.src52
-rw-r--r--editeng/util/makefile.mk102
-rw-r--r--editeng/util/makefile.pmk47
-rw-r--r--embeddedobj/inc/makefile.mk47
-rw-r--r--embeddedobj/inc/pch/precompiled_embeddedobj.cxx29
-rw-r--r--embeddedobj/inc/pch/precompiled_embeddedobj.hxx32
-rw-r--r--embeddedobj/prj/build.lst7
-rw-r--r--embeddedobj/prj/d.lst6
-rw-r--r--embeddedobj/prj/l10n1
-rw-r--r--embeddedobj/qa/embedding/EmbeddingTest.java7
-rw-r--r--embeddedobj/qa/embedding/EmbeddingUnitTest.java91
-rw-r--r--embeddedobj/qa/embedding/Test01.java135
-rw-r--r--embeddedobj/qa/embedding/TestHelper.java36
-rw-r--r--embeddedobj/qa/embedding/makefile.mk84
-rw-r--r--embeddedobj/source/commonembedding/embedobj.cxx701
-rw-r--r--embeddedobj/source/commonembedding/inplaceobj.cxx89
-rw-r--r--embeddedobj/source/commonembedding/makefile.mk56
-rw-r--r--embeddedobj/source/commonembedding/miscobj.cxx700
-rw-r--r--embeddedobj/source/commonembedding/persistence.cxx1918
-rw-r--r--embeddedobj/source/commonembedding/register.cxx133
-rw-r--r--embeddedobj/source/commonembedding/specialobject.cxx245
-rw-r--r--embeddedobj/source/commonembedding/visobj.cxx236
-rw-r--r--embeddedobj/source/commonembedding/xfactory.cxx579
-rw-r--r--embeddedobj/source/commonembedding/xfactory.hxx125
-rw-r--r--embeddedobj/source/general/docholder.cxx1360
-rw-r--r--embeddedobj/source/general/dummyobject.cxx722
-rw-r--r--embeddedobj/source/general/intercept.cxx426
-rw-r--r--embeddedobj/source/general/makefile.mk60
-rw-r--r--embeddedobj/source/general/xcreator.cxx491
-rw-r--r--embeddedobj/source/inc/closepreventer.hxx38
-rw-r--r--embeddedobj/source/inc/commonembobj.hxx521
-rw-r--r--embeddedobj/source/inc/docholder.hxx213
-rw-r--r--embeddedobj/source/inc/dummyobject.hxx297
-rw-r--r--embeddedobj/source/inc/intercept.hxx167
-rw-r--r--embeddedobj/source/inc/oleembobj.hxx546
-rw-r--r--embeddedobj/source/inc/specialobject.hxx90
-rw-r--r--embeddedobj/source/inc/targetstatecontrol.hxx48
-rw-r--r--embeddedobj/source/inc/xcreator.hxx91
-rw-r--r--embeddedobj/source/msole/advisesink.cxx134
-rw-r--r--embeddedobj/source/msole/advisesink.hxx56
-rw-r--r--embeddedobj/source/msole/closepreventer.cxx52
-rw-r--r--embeddedobj/source/msole/exports.dxp3
-rw-r--r--embeddedobj/source/msole/graphconvert.cxx133
-rw-r--r--embeddedobj/source/msole/makefile.mk132
-rw-r--r--embeddedobj/source/msole/mtnotification.hxx55
-rw-r--r--embeddedobj/source/msole/olecomponent.cxx1801
-rw-r--r--embeddedobj/source/msole/olecomponent.hxx194
-rw-r--r--embeddedobj/source/msole/oleembed.cxx1131
-rw-r--r--embeddedobj/source/msole/olemisc.cxx704
-rw-r--r--embeddedobj/source/msole/olepersist.cxx2201
-rw-r--r--embeddedobj/source/msole/oleregister.cxx123
-rw-r--r--embeddedobj/source/msole/olevisual.cxx444
-rw-r--r--embeddedobj/source/msole/olewrapclient.cxx158
-rw-r--r--embeddedobj/source/msole/olewrapclient.hxx56
-rw-r--r--embeddedobj/source/msole/ownview.cxx665
-rw-r--r--embeddedobj/source/msole/ownview.hxx90
-rw-r--r--embeddedobj/source/msole/platform.h49
-rw-r--r--embeddedobj/source/msole/xdialogcreator.cxx385
-rw-r--r--embeddedobj/source/msole/xdialogcreator.hxx77
-rw-r--r--embeddedobj/source/msole/xolefactory.cxx342
-rw-r--r--embeddedobj/source/msole/xolefactory.hxx84
-rw-r--r--embeddedobj/test/Container1/BitmapPainter.java286
-rw-r--r--embeddedobj/test/Container1/EmbedContApp.java1687
-rw-r--r--embeddedobj/test/Container1/EmbedContFrame.java118
-rw-r--r--embeddedobj/test/Container1/JavaWindowPeerFake.java109
-rw-r--r--embeddedobj/test/Container1/NativeView.java177
-rw-r--r--embeddedobj/test/Container1/PaintThread.java153
-rw-r--r--embeddedobj/test/Container1/WindowHelper.java137
-rw-r--r--embeddedobj/test/Container1/makefile.mk87
-rw-r--r--embeddedobj/test/Container1/nativelib/exports.dxp3
-rw-r--r--embeddedobj/test/Container1/nativelib/makefile.mk78
-rw-r--r--embeddedobj/test/Container1/nativelib/nativeview.c186
-rw-r--r--embeddedobj/test/Container1/nativelib/nativeview.h57
-rw-r--r--embeddedobj/test/MainThreadExecutor/exports.dxp3
-rw-r--r--embeddedobj/test/MainThreadExecutor/makefile.mk67
-rw-r--r--embeddedobj/test/MainThreadExecutor/register.cxx101
-rw-r--r--embeddedobj/test/MainThreadExecutor/xexecutor.cxx142
-rw-r--r--embeddedobj/test/MainThreadExecutor/xexecutor.hxx87
-rw-r--r--embeddedobj/test/mtexecutor/bitmapcreator.cxx123
-rw-r--r--embeddedobj/test/mtexecutor/bitmapcreator.hxx69
-rw-r--r--embeddedobj/test/mtexecutor/exports.dxp3
-rw-r--r--embeddedobj/test/mtexecutor/mainthreadexecutor.cxx139
-rw-r--r--embeddedobj/test/mtexecutor/mainthreadexecutor.hxx83
-rw-r--r--embeddedobj/test/mtexecutor/makefile.mk78
-rw-r--r--embeddedobj/test/mtexecutor/mteregister.cxx123
-rw-r--r--embeddedobj/util/exports.dxp3
-rw-r--r--embeddedobj/util/makefile.mk89
-rwxr-xr-xembedserv/prj/build.lst5
-rwxr-xr-xembedserv/prj/d.lst1
-rw-r--r--embedserv/regentries/calc.reg103
-rw-r--r--embedserv/regentries/draw.reg104
-rw-r--r--embedserv/regentries/impress.reg103
-rw-r--r--embedserv/regentries/math.reg103
-rw-r--r--embedserv/regentries/writer.reg103
-rw-r--r--embedserv/source/embed/docholder.cxx1646
-rwxr-xr-xembedserv/source/embed/ed_idataobj.cxx326
-rw-r--r--embedserv/source/embed/ed_iinplace.cxx100
-rwxr-xr-xembedserv/source/embed/ed_ioleobject.cxx504
-rwxr-xr-xembedserv/source/embed/ed_ipersiststr.cxx1018
-rwxr-xr-xembedserv/source/embed/esdll.cxx92
-rwxr-xr-xembedserv/source/embed/guid.cxx213
-rw-r--r--embedserv/source/embed/iipaobj.cxx130
-rw-r--r--embedserv/source/embed/intercept.cxx589
-rwxr-xr-xembedserv/source/embed/makefile.mk81
-rwxr-xr-xembedserv/source/embed/register.cxx133
-rwxr-xr-xembedserv/source/embed/servprov.cxx305
-rwxr-xr-xembedserv/source/embed/stdafx.cpp14
-rw-r--r--embedserv/source/embed/syswinwrapper.cxx477
-rw-r--r--embedserv/source/embed/tracker.cxx838
-rw-r--r--embedserv/source/embed/xwin.cxx346
-rwxr-xr-xembedserv/source/inc/common.h56
-rw-r--r--embedserv/source/inc/docholder.hxx290
-rwxr-xr-xembedserv/source/inc/embeddoc.hxx210
-rw-r--r--embedserv/source/inc/embeddocaccess.hxx85
-rw-r--r--embedserv/source/inc/embservconst.h81
-rw-r--r--embedserv/source/inc/iipaobj.hxx74
-rw-r--r--embedserv/source/inc/intercept.hxx195
-rwxr-xr-xembedserv/source/inc/servprov.hxx100
-rwxr-xr-xembedserv/source/inc/stdafx.h42
-rw-r--r--embedserv/source/inc/syswinwrapper.hxx177
-rw-r--r--embedserv/source/inc/xwin.hxx252
-rw-r--r--embedserv/source/inprocserv/advisesink.cxx187
-rw-r--r--embedserv/source/inprocserv/advisesink.hxx95
-rw-r--r--embedserv/source/inprocserv/dllentry.cxx349
-rw-r--r--embedserv/source/inprocserv/exports.dxp5
-rw-r--r--embedserv/source/inprocserv/inprocembobj.cxx1982
-rw-r--r--embedserv/source/inprocserv/inprocembobj.h242
-rw-r--r--embedserv/source/inprocserv/makefile.mk80
-rw-r--r--embedserv/source/inprocserv/smartpointer.hxx197
-rwxr-xr-xembedserv/util/exports.dxp3
-rwxr-xr-xembedserv/util/makefile.mk96
-rw-r--r--epm/epm-3.7.patch657
-rw-r--r--epm/makefile.mk62
-rw-r--r--epm/prj/build.lst2
-rw-r--r--epm/prj/d.lst3
-rw-r--r--eventattacher/prj/build.lst4
-rw-r--r--eventattacher/prj/d.lst3
-rw-r--r--eventattacher/source/eventattacher.cxx898
-rw-r--r--eventattacher/source/makefile.mk63
-rw-r--r--expat/expat-2.0.1.patch93
-rw-r--r--expat/expat-winapi.patch13
-rw-r--r--expat/makefile.mk65
-rw-r--r--expat/prj/build.lst3
-rw-r--r--expat/prj/d.lst15
-rw-r--r--extensions/inc/abpilot.hrc45
-rw-r--r--extensions/inc/appsettings.hxx45
-rw-r--r--extensions/inc/bibliography.hrc86
-rw-r--r--extensions/inc/dbpilots.hrc55
-rw-r--r--extensions/inc/extensio.hrc75
-rw-r--r--extensions/inc/makefile.mk47
-rw-r--r--extensions/inc/pch/precompiled_extensions.cxx29
-rw-r--r--extensions/inc/pch/precompiled_extensions.hxx552
-rw-r--r--extensions/inc/propctrlr.hrc337
-rw-r--r--extensions/inc/ucbhelper/ext_content.hxx329
-rw-r--r--extensions/inc/update.hrc49
-rw-r--r--extensions/prj/build.lst36
-rw-r--r--extensions/prj/d.lst41
-rw-r--r--extensions/qa/complex/extensions/OfficeResourceLoader.java121
-rw-r--r--extensions/qa/complex/extensions/extensions_all.sce1
-rw-r--r--extensions/qa/complex/extensions/makefile.mk101
-rw-r--r--extensions/qa/complex/extensions/orl_de.src31
-rw-r--r--extensions/qa/complex/extensions/orl_en-US.src31
-rw-r--r--extensions/qa/integration/extensions/ComponentFactory.java106
-rw-r--r--extensions/qa/integration/extensions/ConsoleWait.java128
-rw-r--r--extensions/qa/integration/extensions/Frame.java226
-rw-r--r--extensions/qa/integration/extensions/HelpTextProvider.java50
-rw-r--r--extensions/qa/integration/extensions/MethodHandler.java239
-rw-r--r--extensions/qa/integration/extensions/ObjectInspector.java176
-rw-r--r--extensions/qa/integration/extensions/ServicesHandler.java228
-rw-r--r--extensions/qa/integration/extensions/TestSkeleton.java71
-rw-r--r--extensions/qa/integration/extensions/extensions_complex.sce1
-rw-r--r--extensions/qa/integration/extensions/makefile.mk83
-rw-r--r--extensions/qa/unoapi/Test.java50
-rw-r--r--extensions/qa/unoapi/extensions.sce5
-rw-r--r--extensions/qa/unoapi/makefile.mk48
-rw-r--r--extensions/source/abpilot/abpfinalpage.cxx229
-rw-r--r--extensions/source/abpilot/abpfinalpage.hxx92
-rw-r--r--extensions/source/abpilot/abpresid.hrc219
-rw-r--r--extensions/source/abpilot/abpservices.cxx107
-rw-r--r--extensions/source/abpilot/abptypes.hxx48
-rw-r--r--extensions/source/abpilot/abspage.cxx89
-rw-r--r--extensions/source/abpilot/abspage.hxx75
-rw-r--r--extensions/source/abpilot/abspilot.cxx500
-rw-r--r--extensions/source/abpilot/abspilot.hxx149
-rw-r--r--extensions/source/abpilot/abspilot.src376
-rw-r--r--extensions/source/abpilot/addresssettings.hxx79
-rw-r--r--extensions/source/abpilot/admininvokationimpl.cxx137
-rw-r--r--extensions/source/abpilot/admininvokationimpl.hxx70
-rw-r--r--extensions/source/abpilot/admininvokationpage.cxx114
-rw-r--r--extensions/source/abpilot/admininvokationpage.hxx73
-rw-r--r--extensions/source/abpilot/datasourcehandling.cxx637
-rw-r--r--extensions/source/abpilot/datasourcehandling.hxx215
-rw-r--r--extensions/source/abpilot/exports.dxp3
-rw-r--r--extensions/source/abpilot/fieldmappingimpl.cxx375
-rw-r--r--extensions/source/abpilot/fieldmappingimpl.hxx126
-rw-r--r--extensions/source/abpilot/fieldmappingpage.cxx119
-rw-r--r--extensions/source/abpilot/fieldmappingpage.hxx70
-rw-r--r--extensions/source/abpilot/makefile.mk106
-rw-r--r--extensions/source/abpilot/moduleabp.cxx32
-rw-r--r--extensions/source/abpilot/tableselectionpage.cxx133
-rw-r--r--extensions/source/abpilot/tableselectionpage.hxx73
-rw-r--r--extensions/source/abpilot/typeselectionpage.cxx246
-rw-r--r--extensions/source/abpilot/typeselectionpage.hxx106
-rw-r--r--extensions/source/abpilot/unodialogabp.cxx196
-rw-r--r--extensions/source/abpilot/unodialogabp.hxx101
-rw-r--r--extensions/source/activex/main/README.txt33
-rw-r--r--extensions/source/activex/main/SOActionsApproval.cpp29
-rw-r--r--extensions/source/activex/main/SOActionsApproval.h81
-rw-r--r--extensions/source/activex/main/SOActionsApproval.rgs24
-rw-r--r--extensions/source/activex/main/SOActiveX.cpp1151
-rw-r--r--extensions/source/activex/main/SOActiveX.h176
-rw-r--r--extensions/source/activex/main/SOActiveX.rgs33
-rw-r--r--extensions/source/activex/main/SOComWindowPeer.cpp28
-rw-r--r--extensions/source/activex/main/SOComWindowPeer.h133
-rw-r--r--extensions/source/activex/main/SOComWindowPeer.rgs23
-rw-r--r--extensions/source/activex/main/SODispatchInterceptor.cpp222
-rw-r--r--extensions/source/activex/main/SODispatchInterceptor.h155
-rw-r--r--extensions/source/activex/main/SODispatchInterceptor.rgs23
-rw-r--r--extensions/source/activex/main/StdAfx2.cpp18
-rw-r--r--extensions/source/activex/main/StdAfx2.h42
-rw-r--r--extensions/source/activex/main/com_uno_helper.h24
-rw-r--r--extensions/source/activex/main/example.html26
-rw-r--r--extensions/source/activex/main/makefile.mk155
-rw-r--r--extensions/source/activex/main/resource.h26
-rw-r--r--extensions/source/activex/main/so_activex.cpp690
-rw-r--r--extensions/source/activex/main/so_activex.def13
-rw-r--r--extensions/source/activex/main/so_activex.rc113
-rw-r--r--extensions/source/activex/msidl/makefile.mk62
-rw-r--r--extensions/source/activex/msidl/so_activex.idl210
-rw-r--r--extensions/source/bibliography/bib.hrc111
-rw-r--r--extensions/source/bibliography/bib.src74
-rw-r--r--extensions/source/bibliography/bibbeam.cxx321
-rw-r--r--extensions/source/bibliography/bibbeam.hxx93
-rw-r--r--extensions/source/bibliography/bibconfig.cxx389
-rw-r--r--extensions/source/bibliography/bibconfig.hxx155
-rw-r--r--extensions/source/bibliography/bibcont.cxx275
-rw-r--r--extensions/source/bibliography/bibcont.hxx114
-rw-r--r--extensions/source/bibliography/bibload.cxx807
-rw-r--r--extensions/source/bibliography/bibmod.cxx122
-rw-r--r--extensions/source/bibliography/bibmod.hxx65
-rw-r--r--extensions/source/bibliography/bibprop.hrc45
-rw-r--r--extensions/source/bibliography/bibresid.hxx44
-rw-r--r--extensions/source/bibliography/bibshortcuthandler.hxx87
-rw-r--r--extensions/source/bibliography/bibtools.hxx50
-rw-r--r--extensions/source/bibliography/bibview.cxx232
-rw-r--r--extensions/source/bibliography/bibview.hxx86
-rw-r--r--extensions/source/bibliography/datman.cxx1834
-rw-r--r--extensions/source/bibliography/datman.hrc102
-rw-r--r--extensions/source/bibliography/datman.hxx199
-rw-r--r--extensions/source/bibliography/datman.src469
-rw-r--r--extensions/source/bibliography/formcontrolcontainer.cxx180
-rw-r--r--extensions/source/bibliography/formcontrolcontainer.hxx84
-rw-r--r--extensions/source/bibliography/framectr.cxx977
-rw-r--r--extensions/source/bibliography/framectr.hxx130
-rw-r--r--extensions/source/bibliography/general.cxx892
-rw-r--r--extensions/source/bibliography/general.hxx210
-rw-r--r--extensions/source/bibliography/hidother.src61
-rw-r--r--extensions/source/bibliography/loadlisteneradapter.cxx239
-rw-r--r--extensions/source/bibliography/loadlisteneradapter.hxx185
-rw-r--r--extensions/source/bibliography/makefile.mk91
-rw-r--r--extensions/source/bibliography/menu.src45
-rw-r--r--extensions/source/bibliography/sections.hrc128
-rw-r--r--extensions/source/bibliography/sections.src584
-rw-r--r--extensions/source/bibliography/toolbar.cxx647
-rw-r--r--extensions/source/bibliography/toolbar.hrc46
-rw-r--r--extensions/source/bibliography/toolbar.hxx189
-rw-r--r--extensions/source/bibliography/toolbar.src241
-rw-r--r--extensions/source/bibliography/uiconfig/sbibliography/menubar/menubar.xml93
-rw-r--r--extensions/source/config/ldap/componentdef.cxx80
-rw-r--r--extensions/source/config/ldap/exports.dxp3
-rw-r--r--extensions/source/config/ldap/ldapaccess.cxx319
-rw-r--r--extensions/source/config/ldap/ldapaccess.hxx168
-rw-r--r--extensions/source/config/ldap/ldapuserprofilebe.cxx280
-rw-r--r--extensions/source/config/ldap/ldapuserprofilebe.hxx158
-rw-r--r--extensions/source/config/ldap/makefile.mk97
-rw-r--r--extensions/source/config/ldap/wrapldapinclude.hxx50
-rw-r--r--extensions/source/dbpilots/commonpagesdbp.cxx509
-rw-r--r--extensions/source/dbpilots/commonpagesdbp.hxx146
-rw-r--r--extensions/source/dbpilots/commonpagesdbp.src230
-rw-r--r--extensions/source/dbpilots/controlwizard.cxx777
-rw-r--r--extensions/source/dbpilots/controlwizard.hxx187
-rw-r--r--extensions/source/dbpilots/dbpilots.src78
-rw-r--r--extensions/source/dbpilots/dbpresid.hrc233
-rw-r--r--extensions/source/dbpilots/dbpservices.cxx112
-rw-r--r--extensions/source/dbpilots/dbptools.cxx70
-rw-r--r--extensions/source/dbpilots/dbptools.hxx48
-rw-r--r--extensions/source/dbpilots/dbptypes.hxx47
-rw-r--r--extensions/source/dbpilots/gridpages.src114
-rw-r--r--extensions/source/dbpilots/gridwizard.cxx485
-rw-r--r--extensions/source/dbpilots/gridwizard.hxx136
-rw-r--r--extensions/source/dbpilots/groupboxpages.src226
-rw-r--r--extensions/source/dbpilots/groupboxwiz.cxx561
-rw-r--r--extensions/source/dbpilots/groupboxwiz.hxx229
-rw-r--r--extensions/source/dbpilots/listcombopages.src203
-rw-r--r--extensions/source/dbpilots/listcombowizard.cxx562
-rw-r--r--extensions/source/dbpilots/listcombowizard.hxx227
-rw-r--r--extensions/source/dbpilots/makefile.mk103
-rw-r--r--extensions/source/dbpilots/moduledbp.cxx32
-rw-r--r--extensions/source/dbpilots/optiongrouplayouter.cxx216
-rw-r--r--extensions/source/dbpilots/optiongrouplayouter.hxx75
-rw-r--r--extensions/source/dbpilots/unoautopilot.hxx106
-rw-r--r--extensions/source/dbpilots/unoautopilot.inl134
-rw-r--r--extensions/source/dbpilots/wizardcontext.hxx92
-rw-r--r--extensions/source/dbpilots/wizardservices.cxx122
-rw-r--r--extensions/source/dbpilots/wizardservices.hxx80
-rw-r--r--extensions/source/inc/componentmodule.cxx341
-rw-r--r--extensions/source/inc/componentmodule.hxx278
-rw-r--r--extensions/source/logging/consolehandler.cxx342
-rw-r--r--extensions/source/logging/csvformatter.cxx382
-rw-r--r--extensions/source/logging/filehandler.cxx441
-rw-r--r--extensions/source/logging/log_module.cxx43
-rw-r--r--extensions/source/logging/log_module.hxx45
-rw-r--r--extensions/source/logging/log_services.cxx69
-rw-r--r--extensions/source/logging/logger.cxx404
-rw-r--r--extensions/source/logging/loggerconfig.cxx283
-rw-r--r--extensions/source/logging/loggerconfig.hxx65
-rw-r--r--extensions/source/logging/loghandler.cxx204
-rw-r--r--extensions/source/logging/loghandler.hxx154
-rw-r--r--extensions/source/logging/logrecord.cxx103
-rw-r--r--extensions/source/logging/logrecord.hxx68
-rw-r--r--extensions/source/logging/makefile.mk76
-rw-r--r--extensions/source/logging/methodguard.hxx73
-rw-r--r--extensions/source/logging/plaintextformatter.cxx226
-rw-r--r--extensions/source/macosx/spotlight/GetMetadataForFile.m70
-rw-r--r--extensions/source/macosx/spotlight/OOoContentDataParser.h58
-rw-r--r--extensions/source/macosx/spotlight/OOoContentDataParser.m133
-rw-r--r--extensions/source/macosx/spotlight/OOoMetaDataParser.h52
-rw-r--r--extensions/source/macosx/spotlight/OOoMetaDataParser.m200
-rw-r--r--extensions/source/macosx/spotlight/OOoSpotlightImporter.h42
-rw-r--r--extensions/source/macosx/spotlight/OOoSpotlightImporter.m235
-rw-r--r--extensions/source/macosx/spotlight/delzip0
-rw-r--r--extensions/source/macosx/spotlight/ioapi.h98
-rw-r--r--extensions/source/macosx/spotlight/ioapi.m204
-rw-r--r--extensions/source/macosx/spotlight/main.m225
-rw-r--r--extensions/source/macosx/spotlight/makefile.mk96
-rw-r--r--extensions/source/macosx/spotlight/mdimporter/Info.plist70
-rw-r--r--extensions/source/macosx/spotlight/mdimporter/en.lproj/schema.strings1
-rw-r--r--extensions/source/macosx/spotlight/mdimporter/schema.xml397
-rw-r--r--extensions/source/macosx/spotlight/unzip.h377
-rw-r--r--extensions/source/macosx/spotlight/unzip.m1586
-rw-r--r--extensions/source/macosx/spotlight/version.plist16
-rw-r--r--extensions/source/nsplugin/source/exports.dxp16
-rw-r--r--extensions/source/nsplugin/source/exports_wnt.dxp18
-rw-r--r--extensions/source/nsplugin/source/makefile.mk162
-rw-r--r--extensions/source/nsplugin/source/npshell.cxx930
-rw-r--r--extensions/source/nsplugin/source/npshell.hxx91
-rw-r--r--extensions/source/nsplugin/source/ns_debug.hxx40
-rw-r--r--extensions/source/nsplugin/source/nsp_func.hxx103
-rw-r--r--extensions/source/nsplugin/source/nsp_windows.cxx63
-rw-r--r--extensions/source/nsplugin/source/nsp_windows.hxx36
-rw-r--r--extensions/source/nsplugin/source/nsplugin.rc30
-rw-r--r--extensions/source/nsplugin/source/nsplugin_oo.rc30
-rw-r--r--extensions/source/nsplugin/source/so_closelistener.cxx48
-rw-r--r--extensions/source/nsplugin/source/so_closelistener.hxx54
-rw-r--r--extensions/source/nsplugin/source/so_env.cxx507
-rw-r--r--extensions/source/nsplugin/source/so_env.hxx94
-rw-r--r--extensions/source/nsplugin/source/so_instance.cxx495
-rw-r--r--extensions/source/nsplugin/source/so_instance.hxx110
-rw-r--r--extensions/source/nsplugin/source/so_main.cxx497
-rw-r--r--extensions/source/nsplugin/source/so_msg.hxx54
-rw-r--r--extensions/source/ole/comifaces.hxx69
-rw-r--r--extensions/source/ole/jscriptclasses.cxx321
-rw-r--r--extensions/source/ole/jscriptclasses.hxx161
-rw-r--r--extensions/source/ole/makefile.mk131
-rw-r--r--extensions/source/ole/ole2uno.cxx73
-rw-r--r--extensions/source/ole/ole2uno.hxx145
-rw-r--r--extensions/source/ole/oleautobridge.uno.dxp4
-rw-r--r--extensions/source/ole/oledll.cxx70
-rwxr-xr-xextensions/source/ole/oleobjw.cxx2284
-rw-r--r--extensions/source/ole/oleobjw.hxx269
-rw-r--r--extensions/source/ole/olethread.cxx77
-rw-r--r--extensions/source/ole/servprov.cxx754
-rw-r--r--extensions/source/ole/servprov.hxx280
-rw-r--r--extensions/source/ole/servreg.cxx173
-rw-r--r--extensions/source/ole/unoconversionutilities.hxx2450
-rw-r--r--extensions/source/ole/unoobjw.cxx1688
-rw-r--r--extensions/source/ole/unoobjw.hxx300
-rw-r--r--extensions/source/ole/unotypewrapper.cxx179
-rw-r--r--extensions/source/ole/unotypewrapper.hxx101
-rw-r--r--extensions/source/ole/windata.cxx40
-rw-r--r--extensions/source/ole/windata.hxx198
-rw-r--r--extensions/source/oooimprovecore/core.cxx190
-rw-r--r--extensions/source/oooimprovecore/makefile.mk77
-rw-r--r--extensions/source/oooimprovecore/oooimprovecore_module.cxx37
-rw-r--r--extensions/source/oooimprovecore/oooimprovecore_module.hxx38
-rw-r--r--extensions/source/oooimprovecore/oooimprovecore_services.cxx52
-rw-r--r--extensions/source/oooimprovement/Jobs.xcu25
-rw-r--r--extensions/source/oooimprovement/Logging.xcu8
-rw-r--r--extensions/source/oooimprovement/config.cxx296
-rw-r--r--extensions/source/oooimprovement/config.hxx68
-rw-r--r--extensions/source/oooimprovement/corecontroller.cxx89
-rw-r--r--extensions/source/oooimprovement/corecontroller.hxx84
-rw-r--r--extensions/source/oooimprovement/errormail.cxx207
-rw-r--r--extensions/source/oooimprovement/errormail.hxx54
-rw-r--r--extensions/source/oooimprovement/invite_job.cxx133
-rw-r--r--extensions/source/oooimprovement/invite_job.hxx82
-rw-r--r--extensions/source/oooimprovement/logpacker.cxx114
-rw-r--r--extensions/source/oooimprovement/logpacker.hxx51
-rw-r--r--extensions/source/oooimprovement/logstorage.cxx146
-rw-r--r--extensions/source/oooimprovement/logstorage.hxx55
-rw-r--r--extensions/source/oooimprovement/makefile.mk104
-rw-r--r--extensions/source/oooimprovement/makefile.pmk29
-rw-r--r--extensions/source/oooimprovement/myconfigurationhelper.cxx178
-rw-r--r--extensions/source/oooimprovement/myconfigurationhelper.hxx214
-rw-r--r--extensions/source/oooimprovement/onlogrotate_job.cxx202
-rw-r--r--extensions/source/oooimprovement/onlogrotate_job.hxx83
-rw-r--r--extensions/source/oooimprovement/oooimprovement_exports.cxx110
-rw-r--r--extensions/source/oooimprovement/soaprequest.cxx200
-rw-r--r--extensions/source/oooimprovement/soaprequest.hxx60
-rw-r--r--extensions/source/oooimprovement/soapsender.cxx160
-rw-r--r--extensions/source/oooimprovement/soapsender.hxx56
-rw-r--r--extensions/source/plugin/aqua/macmgr.cxx646
-rw-r--r--extensions/source/plugin/aqua/makefile.mk75
-rw-r--r--extensions/source/plugin/aqua/sysplug.cxx808
-rw-r--r--extensions/source/plugin/base/context.cxx343
-rw-r--r--extensions/source/plugin/base/evtlstnr.cxx64
-rw-r--r--extensions/source/plugin/base/makefile.mk70
-rw-r--r--extensions/source/plugin/base/manager.cxx225
-rw-r--r--extensions/source/plugin/base/multiplx.cxx332
-rw-r--r--extensions/source/plugin/base/nfuncs.cxx677
-rw-r--r--extensions/source/plugin/base/plcom.cxx71
-rw-r--r--extensions/source/plugin/base/plctrl.cxx323
-rw-r--r--extensions/source/plugin/base/plmodel.cxx203
-rw-r--r--extensions/source/plugin/base/service.cxx120
-rw-r--r--extensions/source/plugin/base/xplugin.cxx1155
-rw-r--r--extensions/source/plugin/inc/plugin/aqua/sysplug.hxx167
-rw-r--r--extensions/source/plugin/inc/plugin/impl.hxx430
-rw-r--r--extensions/source/plugin/inc/plugin/model.hxx136
-rw-r--r--extensions/source/plugin/inc/plugin/multiplx.hxx167
-rw-r--r--extensions/source/plugin/inc/plugin/plcom.hxx85
-rw-r--r--extensions/source/plugin/inc/plugin/plctrl.hxx181
-rw-r--r--extensions/source/plugin/inc/plugin/unx/mediator.hxx183
-rw-r--r--extensions/source/plugin/inc/plugin/unx/plugcon.hxx251
-rw-r--r--extensions/source/plugin/inc/plugin/unx/sysplug.hxx83
-rw-r--r--extensions/source/plugin/inc/plugin/win/sysplug.hxx125
-rw-r--r--extensions/source/plugin/unx/makefile.mk110
-rw-r--r--extensions/source/plugin/unx/mediator.cxx309
-rw-r--r--extensions/source/plugin/unx/npnapi.cxx898
-rw-r--r--extensions/source/plugin/unx/nppapi.cxx602
-rw-r--r--extensions/source/plugin/unx/npwrap.cxx515
-rw-r--r--extensions/source/plugin/unx/plugcon.cxx282
-rw-r--r--extensions/source/plugin/unx/sysplug.cxx131
-rw-r--r--extensions/source/plugin/unx/unxmgr.cxx315
-rw-r--r--extensions/source/plugin/util/makefile.mk109
-rw-r--r--extensions/source/plugin/util/makefile.pmk48
-rw-r--r--extensions/source/plugin/win/makefile.mk65
-rw-r--r--extensions/source/plugin/win/sysplug.cxx443
-rw-r--r--extensions/source/plugin/win/winmgr.cxx470
-rw-r--r--extensions/source/preload/makefile.mk85
-rw-r--r--extensions/source/preload/modulepreload.cxx32
-rw-r--r--extensions/source/preload/oemwiz.cxx471
-rw-r--r--extensions/source/preload/oemwiz.hxx156
-rw-r--r--extensions/source/preload/preload.hrc58
-rw-r--r--extensions/source/preload/preload.src282
-rw-r--r--extensions/source/preload/preloadservices.cxx71
-rw-r--r--extensions/source/preload/preloadservices.hxx55
-rw-r--r--extensions/source/preload/services.cxx107
-rw-r--r--extensions/source/preload/unoautopilot.hxx107
-rw-r--r--extensions/source/preload/unoautopilot.inl133
-rw-r--r--extensions/source/propctrlr/MasterDetailLinkDialog.cxx157
-rw-r--r--extensions/source/propctrlr/MasterDetailLinkDialog.hxx84
-rw-r--r--extensions/source/propctrlr/browserline.cxx548
-rw-r--r--extensions/source/propctrlr/browserline.hxx143
-rw-r--r--extensions/source/propctrlr/browserlistbox.cxx1312
-rw-r--r--extensions/source/propctrlr/browserlistbox.hxx250
-rw-r--r--extensions/source/propctrlr/browserpage.cxx105
-rw-r--r--extensions/source/propctrlr/browserpage.hxx68
-rw-r--r--extensions/source/propctrlr/browserview.cxx144
-rw-r--r--extensions/source/propctrlr/browserview.hxx89
-rw-r--r--extensions/source/propctrlr/buttonnavigationhandler.cxx295
-rw-r--r--extensions/source/propctrlr/buttonnavigationhandler.hxx90
-rw-r--r--extensions/source/propctrlr/cellbindinghandler.cxx504
-rw-r--r--extensions/source/propctrlr/cellbindinghandler.hxx109
-rw-r--r--extensions/source/propctrlr/cellbindinghelper.cxx565
-rw-r--r--extensions/source/propctrlr/cellbindinghelper.hxx290
-rw-r--r--extensions/source/propctrlr/commoncontrol.cxx206
-rw-r--r--extensions/source/propctrlr/commoncontrol.hxx337
-rw-r--r--extensions/source/propctrlr/composeduiupdate.cxx859
-rw-r--r--extensions/source/propctrlr/composeduiupdate.hxx231
-rw-r--r--extensions/source/propctrlr/controlfontdialog.cxx177
-rw-r--r--extensions/source/propctrlr/controlfontdialog.hxx100
-rw-r--r--extensions/source/propctrlr/controltype.hxx54
-rw-r--r--extensions/source/propctrlr/defaultforminspection.cxx270
-rw-r--r--extensions/source/propctrlr/defaultforminspection.hxx91
-rw-r--r--extensions/source/propctrlr/defaulthelpprovider.cxx206
-rw-r--r--extensions/source/propctrlr/defaulthelpprovider.hxx93
-rw-r--r--extensions/source/propctrlr/editpropertyhandler.cxx323
-rw-r--r--extensions/source/propctrlr/editpropertyhandler.hxx82
-rw-r--r--extensions/source/propctrlr/eformshelper.cxx790
-rw-r--r--extensions/source/propctrlr/eformshelper.hxx269
-rw-r--r--extensions/source/propctrlr/eformspropertyhandler.cxx616
-rw-r--r--extensions/source/propctrlr/eformspropertyhandler.hxx108
-rw-r--r--extensions/source/propctrlr/enumrepresentation.hxx76
-rw-r--r--extensions/source/propctrlr/eventhandler.cxx1285
-rw-r--r--extensions/source/propctrlr/eventhandler.hxx267
-rw-r--r--extensions/source/propctrlr/fontdialog.cxx631
-rw-r--r--extensions/source/propctrlr/fontdialog.hxx83
-rw-r--r--extensions/source/propctrlr/fontdialog.src60
-rw-r--r--extensions/source/propctrlr/fontitemids.hxx66
-rw-r--r--extensions/source/propctrlr/formbrowsertools.cxx148
-rw-r--r--extensions/source/propctrlr/formbrowsertools.hxx108
-rw-r--r--extensions/source/propctrlr/formcomponenthandler.cxx3341
-rw-r--r--extensions/source/propctrlr/formcomponenthandler.hxx479
-rw-r--r--extensions/source/propctrlr/formcontroller.cxx299
-rw-r--r--extensions/source/propctrlr/formcontroller.hxx140
-rw-r--r--extensions/source/propctrlr/formgeometryhandler.cxx826
-rw-r--r--extensions/source/propctrlr/formlinkdialog.cxx676
-rw-r--r--extensions/source/propctrlr/formlinkdialog.hrc44
-rw-r--r--extensions/source/propctrlr/formlinkdialog.hxx150
-rw-r--r--extensions/source/propctrlr/formlinkdialog.src160
-rw-r--r--extensions/source/propctrlr/formlocalid.hrc39
-rw-r--r--extensions/source/propctrlr/formmetadata.cxx706
-rw-r--r--extensions/source/propctrlr/formmetadata.hxx350
-rw-r--r--extensions/source/propctrlr/formres.src1523
-rw-r--r--extensions/source/propctrlr/formresid.hrc389
-rw-r--r--extensions/source/propctrlr/formstrings.cxx36
-rw-r--r--extensions/source/propctrlr/formstrings.hxx307
-rw-r--r--extensions/source/propctrlr/genericpropertyhandler.cxx726
-rw-r--r--extensions/source/propctrlr/genericpropertyhandler.hxx161
-rw-r--r--extensions/source/propctrlr/handlerhelper.cxx291
-rw-r--r--extensions/source/propctrlr/handlerhelper.hxx217
-rw-r--r--extensions/source/propctrlr/inspectorhelpwindow.cxx153
-rw-r--r--extensions/source/propctrlr/inspectorhelpwindow.hxx78
-rw-r--r--extensions/source/propctrlr/inspectormodelbase.cxx272
-rw-r--r--extensions/source/propctrlr/inspectormodelbase.hxx108
-rw-r--r--extensions/source/propctrlr/linedescriptor.hxx70
-rw-r--r--extensions/source/propctrlr/listselectiondlg.cxx173
-rw-r--r--extensions/source/propctrlr/listselectiondlg.hrc39
-rw-r--r--extensions/source/propctrlr/listselectiondlg.hxx89
-rw-r--r--extensions/source/propctrlr/listselectiondlg.src80
-rw-r--r--extensions/source/propctrlr/makefile.mk146
-rw-r--r--extensions/source/propctrlr/modulepcr.cxx48
-rw-r--r--extensions/source/propctrlr/modulepcr.hxx45
-rw-r--r--extensions/source/propctrlr/newdatatype.cxx109
-rw-r--r--extensions/source/propctrlr/newdatatype.hrc38
-rw-r--r--extensions/source/propctrlr/newdatatype.hxx77
-rw-r--r--extensions/source/propctrlr/newdatatype.src77
-rw-r--r--extensions/source/propctrlr/objectinspectormodel.cxx242
-rw-r--r--extensions/source/propctrlr/pcr.xml146
-rw-r--r--extensions/source/propctrlr/pcrcommon.cxx73
-rw-r--r--extensions/source/propctrlr/pcrcommon.hxx153
-rw-r--r--extensions/source/propctrlr/pcrcommontypes.hxx51
-rw-r--r--extensions/source/propctrlr/pcrcomponentcontext.cxx106
-rw-r--r--extensions/source/propctrlr/pcrcomponentcontext.hxx168
-rw-r--r--extensions/source/propctrlr/pcrmiscres.src189
-rw-r--r--extensions/source/propctrlr/pcrservices.cxx145
-rw-r--r--extensions/source/propctrlr/pcrstrings.cxx36
-rw-r--r--extensions/source/propctrlr/pcrstrings.hxx46
-rw-r--r--extensions/source/propctrlr/pcrunodialogs.cxx146
-rw-r--r--extensions/source/propctrlr/pcrunodialogs.hxx94
-rw-r--r--extensions/source/propctrlr/propcontroller.cxx1778
-rw-r--r--extensions/source/propctrlr/propcontroller.hxx430
-rw-r--r--extensions/source/propctrlr/propcontrolobserver.hxx56
-rw-r--r--extensions/source/propctrlr/propertycomposer.cxx516
-rw-r--r--extensions/source/propctrlr/propertycomposer.hxx157
-rw-r--r--extensions/source/propctrlr/propertycontrolextender.cxx145
-rw-r--r--extensions/source/propctrlr/propertycontrolextender.hxx74
-rw-r--r--extensions/source/propctrlr/propertyeditor.cxx542
-rw-r--r--extensions/source/propctrlr/propertyeditor.hxx163
-rw-r--r--extensions/source/propctrlr/propertyhandler.cxx464
-rw-r--r--extensions/source/propctrlr/propertyhandler.hxx457
-rw-r--r--extensions/source/propctrlr/propertyinfo.hxx65
-rw-r--r--extensions/source/propctrlr/propeventtranslation.cxx105
-rw-r--r--extensions/source/propctrlr/propeventtranslation.hxx84
-rw-r--r--extensions/source/propctrlr/proplinelistener.hxx51
-rw-r--r--extensions/source/propctrlr/propres.src68
-rw-r--r--extensions/source/propctrlr/propresid.hrc48
-rw-r--r--extensions/source/propctrlr/pushbuttonnavigation.cxx306
-rw-r--r--extensions/source/propctrlr/pushbuttonnavigation.hxx108
-rw-r--r--extensions/source/propctrlr/selectlabeldialog.cxx313
-rw-r--r--extensions/source/propctrlr/selectlabeldialog.hxx91
-rw-r--r--extensions/source/propctrlr/selectlabeldialog.src83
-rw-r--r--extensions/source/propctrlr/sqlcommanddesign.cxx393
-rw-r--r--extensions/source/propctrlr/sqlcommanddesign.hxx223
-rw-r--r--extensions/source/propctrlr/standardcontrol.cxx1442
-rw-r--r--extensions/source/propctrlr/standardcontrol.hxx445
-rw-r--r--extensions/source/propctrlr/stlops.hxx70
-rw-r--r--extensions/source/propctrlr/stringdefine.hxx99
-rw-r--r--extensions/source/propctrlr/stringrepresentation.cxx650
-rw-r--r--extensions/source/propctrlr/submissionhandler.cxx448
-rw-r--r--extensions/source/propctrlr/submissionhandler.hxx125
-rw-r--r--extensions/source/propctrlr/taborder.cxx424
-rw-r--r--extensions/source/propctrlr/taborder.hrc45
-rw-r--r--extensions/source/propctrlr/taborder.hxx132
-rw-r--r--extensions/source/propctrlr/taborder.src103
-rw-r--r--extensions/source/propctrlr/unourl.cxx70
-rw-r--r--extensions/source/propctrlr/unourl.hxx65
-rw-r--r--extensions/source/propctrlr/usercontrol.cxx370
-rw-r--r--extensions/source/propctrlr/usercontrol.hxx172
-rw-r--r--extensions/source/propctrlr/xsddatatypes.cxx250
-rw-r--r--extensions/source/propctrlr/xsddatatypes.hxx114
-rw-r--r--extensions/source/propctrlr/xsdvalidationhelper.cxx412
-rw-r--r--extensions/source/propctrlr/xsdvalidationhelper.hxx150
-rw-r--r--extensions/source/propctrlr/xsdvalidationpropertyhandler.cxx692
-rw-r--r--extensions/source/propctrlr/xsdvalidationpropertyhandler.hxx103
-rw-r--r--extensions/source/resource/exports.dxp3
-rw-r--r--extensions/source/resource/makefile.mk76
-rw-r--r--extensions/source/resource/oooresourceloader.cxx489
-rw-r--r--extensions/source/resource/res_services.cxx128
-rw-r--r--extensions/source/resource/res_services.hxx64
-rw-r--r--extensions/source/resource/resource.cxx471
-rw-r--r--extensions/source/scanner/exports.dxp3
-rw-r--r--extensions/source/scanner/grid.cxx608
-rw-r--r--extensions/source/scanner/grid.hrc42
-rw-r--r--extensions/source/scanner/grid.hxx149
-rw-r--r--extensions/source/scanner/grid.src112
-rw-r--r--extensions/source/scanner/makefile.mk100
-rw-r--r--extensions/source/scanner/sane.cxx1004
-rw-r--r--extensions/source/scanner/sane.hxx200
-rw-r--r--extensions/source/scanner/sanedlg.cxx1430
-rw-r--r--extensions/source/scanner/sanedlg.hrc82
-rw-r--r--extensions/source/scanner/sanedlg.hxx152
-rw-r--r--extensions/source/scanner/sanedlg.src301
-rw-r--r--extensions/source/scanner/scanner.cxx104
-rw-r--r--extensions/source/scanner/scanner.hxx116
-rw-r--r--extensions/source/scanner/scanunx.cxx383
-rw-r--r--extensions/source/scanner/scanwin.cxx1054
-rw-r--r--extensions/source/scanner/scnserv.cxx104
-rw-r--r--extensions/source/scanner/twain.cxx529
-rw-r--r--extensions/source/scanner/twain.hxx98
-rw-r--r--extensions/source/svg/makefile.mk67
-rw-r--r--extensions/source/svg/svgaction.cxx1458
-rw-r--r--extensions/source/svg/svgaction.hxx164
-rw-r--r--extensions/source/svg/svgcom.hxx82
-rw-r--r--extensions/source/svg/svgprinter.cxx328
-rw-r--r--extensions/source/svg/svgprinter.hxx67
-rw-r--r--extensions/source/svg/svguno.cxx128
-rw-r--r--extensions/source/svg/svgwriter.cxx175
-rw-r--r--extensions/source/svg/svgwriter.hxx60
-rw-r--r--extensions/source/unoactivex/main/initwindowpeer.cxx87
-rw-r--r--extensions/source/update/check/Addons.xcu26
-rw-r--r--extensions/source/update/check/Jobs.xcu42
-rw-r--r--extensions/source/update/check/actionlistener.hxx46
-rwxr-xr-xextensions/source/update/check/download.cxx460
-rw-r--r--extensions/source/update/check/download.hxx84
-rw-r--r--extensions/source/update/check/makefile.mk134
-rw-r--r--extensions/source/update/check/transform.pl61
-rwxr-xr-xextensions/source/update/check/updatecheck.cxx1690
-rw-r--r--extensions/source/update/check/updatecheck.hxx194
-rwxr-xr-xextensions/source/update/check/updatecheckconfig.cxx763
-rw-r--r--extensions/source/update/check/updatecheckconfig.hxx238
-rw-r--r--extensions/source/update/check/updatecheckconfiglistener.hxx43
-rwxr-xr-xextensions/source/update/check/updatecheckjob.cxx411
-rw-r--r--extensions/source/update/check/updatehdl.cxx1419
-rw-r--r--extensions/source/update/check/updatehdl.hrc83
-rw-r--r--extensions/source/update/check/updatehdl.hxx221
-rw-r--r--extensions/source/update/check/updatehdl.src264
-rw-r--r--extensions/source/update/check/updateinfo.hxx86
-rw-r--r--extensions/source/update/check/updateprotocol.cxx333
-rw-r--r--extensions/source/update/check/updateprotocol.hxx56
-rw-r--r--extensions/source/update/check/updateprotocoltest.cxx94
-rw-r--r--extensions/source/update/check/updchk.xml49
-rw-r--r--extensions/source/update/feed/makefile.mk64
-rw-r--r--extensions/source/update/feed/test/makefile.mk58
-rw-r--r--extensions/source/update/feed/test/updatefeedtest.cxx106
-rw-r--r--extensions/source/update/feed/updatefeed.cxx875
-rw-r--r--extensions/source/update/feed/updatefeed.xml49
-rw-r--r--extensions/source/update/tools/makefile.mk68
-rw-r--r--extensions/source/update/tools/ztool.cxx63
-rw-r--r--extensions/source/update/ui/makefile.mk74
-rw-r--r--extensions/source/update/ui/updatecheckui.cxx1083
-rw-r--r--extensions/source/update/ui/updatecheckui.hrc36
-rw-r--r--extensions/source/update/ui/updatecheckui.src51
-rw-r--r--extensions/source/update/ui/updchkui.xml34
-rw-r--r--extensions/source/xmlextract/makefile.mk65
-rw-r--r--extensions/source/xmlextract/xmxcom.hxx65
-rw-r--r--extensions/source/xmlextract/xmxtrct.cxx197
-rw-r--r--extensions/source/xmlextract/xmxtrct.hxx54
-rw-r--r--extensions/source/xmlextract/xmxuno.cxx100
-rw-r--r--extensions/stardiv/fontest/fontest.idl111
-rw-r--r--extensions/stardiv/fontest/makefile.mk48
-rw-r--r--extensions/stardiv/oinstchk/makefile.mk47
-rw-r--r--extensions/stardiv/oinstchk/oinstchk.idl108
-rw-r--r--extensions/stardiv/pgp/makefile.mk53
-rw-r--r--extensions/test/ole/AxTestComponents/AxTestComponents.cpp100
-rw-r--r--extensions/test/ole/AxTestComponents/AxTestComponents.def9
-rw-r--r--extensions/test/ole/AxTestComponents/AxTestComponents.dsp325
-rw-r--r--extensions/test/ole/AxTestComponents/AxTestComponents.idl257
-rw-r--r--extensions/test/ole/AxTestComponents/AxTestComponents.rc164
-rw-r--r--extensions/test/ole/AxTestComponents/AxTestComponents.sln31
-rw-r--r--extensions/test/ole/AxTestComponents/AxTestComponents.vcproj819
-rw-r--r--extensions/test/ole/AxTestComponents/Basic.cpp1364
-rw-r--r--extensions/test/ole/AxTestComponents/Basic.h269
-rw-r--r--extensions/test/ole/AxTestComponents/Basic.rgs50
-rw-r--r--extensions/test/ole/AxTestComponents/Foo.cpp47
-rw-r--r--extensions/test/ole/AxTestComponents/Foo.h65
-rw-r--r--extensions/test/ole/AxTestComponents/StdAfx.cpp35
-rw-r--r--extensions/test/ole/AxTestComponents/StdAfx.h56
-rw-r--r--extensions/test/ole/AxTestComponents/readme.txt4
-rw-r--r--extensions/test/ole/AxTestComponents/resource.h44
-rw-r--r--extensions/test/ole/DCOM/Clients/WriterDemo/Module1.bas8
-rw-r--r--extensions/test/ole/DCOM/Clients/WriterDemo/client_writerdemo.vbp33
-rw-r--r--extensions/test/ole/DCOM/Clients/WriterDemo/client_writerdemo.vbw1
-rw-r--r--extensions/test/ole/DCOM/Clients/WriterDemo/readme.txt4
-rw-r--r--extensions/test/ole/DCOM/dcom_test/Module1.bas38
-rw-r--r--extensions/test/ole/DCOM/dcom_test/dcom_test.vbp37
-rw-r--r--extensions/test/ole/DCOM/dcom_test/dcom_test.vbw1
-rw-r--r--extensions/test/ole/DCOM/dcom_test/readme.txt5
-rw-r--r--extensions/test/ole/DCOM/scriptComponents/WriterDemo.wsc186
-rw-r--r--extensions/test/ole/DCOM/scriptComponents/readme.txt13
-rw-r--r--extensions/test/ole/EventListenerSample/EventListener/EventListener.cpp72
-rw-r--r--extensions/test/ole/EventListenerSample/EventListener/EventListener.def9
-rw-r--r--extensions/test/ole/EventListenerSample/EventListener/EventListener.idl39
-rw-r--r--extensions/test/ole/EventListenerSample/EventListener/EventListener.rc136
-rw-r--r--extensions/test/ole/EventListenerSample/EventListener/EventListener.sln32
-rw-r--r--extensions/test/ole/EventListenerSample/EventListener/EventListener.vcproj927
-rw-r--r--extensions/test/ole/EventListenerSample/EventListener/EvtListener.cpp19
-rw-r--r--extensions/test/ole/EventListenerSample/EventListener/EvtListener.h35
-rw-r--r--extensions/test/ole/EventListenerSample/EventListener/EvtListener.rgs26
-rw-r--r--extensions/test/ole/EventListenerSample/EventListener/StdAfx.cpp12
-rw-r--r--extensions/test/ole/EventListenerSample/EventListener/StdAfx.h27
-rw-r--r--extensions/test/ole/EventListenerSample/EventListener/resource.h17
-rw-r--r--extensions/test/ole/EventListenerSample/VBEventListener/Module1.bas9
-rw-r--r--extensions/test/ole/EventListenerSample/VBEventListener/VBEventListener.cls78
-rw-r--r--extensions/test/ole/EventListenerSample/VBEventListener/VBasicEventListener.dllbin0 -> 24576 bytes-rw-r--r--extensions/test/ole/EventListenerSample/VBEventListener/VBasicEventListener.vbp38
-rw-r--r--extensions/test/ole/EventListenerSample/VBEventListener/VBasicEventListener.vbw2
-rw-r--r--extensions/test/ole/EventListenerSample/VBEventListener/readme.txt7
-rw-r--r--extensions/test/ole/EventListenerSample/events.htm98
-rw-r--r--extensions/test/ole/EventListenerSample/readme.txt20
-rw-r--r--extensions/test/ole/JScriptNewStyle.htm1054
-rw-r--r--extensions/test/ole/MfcControl/MfcControl.cpp79
-rw-r--r--extensions/test/ole/MfcControl/MfcControl.def9
-rw-r--r--extensions/test/ole/MfcControl/MfcControl.dsp265
-rw-r--r--extensions/test/ole/MfcControl/MfcControl.h33
-rw-r--r--extensions/test/ole/MfcControl/MfcControl.odl82
-rw-r--r--extensions/test/ole/MfcControl/MfcControl.rc145
-rw-r--r--extensions/test/ole/MfcControl/MfcControl.sln25
-rw-r--r--extensions/test/ole/MfcControl/MfcControl.vcproj581
-rw-r--r--extensions/test/ole/MfcControl/MfcControlCtl.cpp344
-rw-r--r--extensions/test/ole/MfcControl/MfcControlCtl.h96
-rw-r--r--extensions/test/ole/MfcControl/MfcControlCtl.pngbin0 -> 204 bytes-rw-r--r--extensions/test/ole/MfcControl/MfcControlPpg.cpp76
-rw-r--r--extensions/test/ole/MfcControl/MfcControlPpg.h46
-rw-r--r--extensions/test/ole/MfcControl/Resource.h20
-rw-r--r--extensions/test/ole/MfcControl/StdAfx.cpp5
-rw-r--r--extensions/test/ole/MfcControl/StdAfx.h30
-rw-r--r--extensions/test/ole/OleClient/OleClient.ini5
-rw-r--r--extensions/test/ole/OleClient/axhost.cxx56
-rw-r--r--extensions/test/ole/OleClient/axhost.hxx61
-rw-r--r--extensions/test/ole/OleClient/clientTest.cxx1325
-rw-r--r--extensions/test/ole/OleClient/funcs.cxx354
-rw-r--r--extensions/test/ole/OleClient/makefile.mk72
-rw-r--r--extensions/test/ole/OleClient/readme.txt10
-rw-r--r--extensions/test/ole/OleConverterVar1/convTest.cxx656
-rw-r--r--extensions/test/ole/OleConverterVar1/makefile.mk66
-rw-r--r--extensions/test/ole/OleConverterVar1/readme.txt10
-rw-r--r--extensions/test/ole/OleConverterVar1/smartarray.h233
-rw-r--r--extensions/test/ole/OleTest.htm1063
-rw-r--r--extensions/test/ole/ScriptTest.html1555
-rw-r--r--extensions/test/ole/StarBasic_OleClient/oleclient.bas609
-rw-r--r--extensions/test/ole/StarBasic_OleClient/readme.txt10
-rw-r--r--extensions/test/ole/VisualBasic/AssemblyInfo.vb33
-rw-r--r--extensions/test/ole/VisualBasic/Module1.vb853
-rw-r--r--extensions/test/ole/VisualBasic/Project1.sln20
-rw-r--r--extensions/test/ole/VisualBasic/Project1.vbproj90
-rw-r--r--extensions/test/ole/VisualBasic/readme.txt18
-rw-r--r--extensions/test/ole/callUnoToJava.htm538
-rw-r--r--extensions/test/ole/cpnt/cpnt.cxx2124
-rw-r--r--extensions/test/ole/cpnt/exports.dxp3
-rw-r--r--extensions/test/ole/cpnt/makefile.mk103
-rw-r--r--extensions/test/ole/cpnt/readme.txt21
-rw-r--r--extensions/test/ole/cppToUno/makefile.mk65
-rw-r--r--extensions/test/ole/cppToUno/readme.txt9
-rw-r--r--extensions/test/ole/cppToUno/testcppuno.cxx219
-rw-r--r--extensions/test/ole/cpptest/cpptest.cxx113
-rw-r--r--extensions/test/ole/cpptest/makefile.mk64
-rw-r--r--extensions/test/ole/cpptest/readme.txt6
-rw-r--r--extensions/test/ole/idl/oletest.idl308
-rw-r--r--extensions/test/ole/unloading/makefile.mk70
-rw-r--r--extensions/test/ole/unloading/readme.txt6
-rw-r--r--extensions/test/ole/unloading/unloadTest.cxx226
-rw-r--r--extensions/test/ole/unoTocomCalls/Test/StdAfx.cpp35
-rw-r--r--extensions/test/ole/unoTocomCalls/Test/StdAfx.h56
-rw-r--r--extensions/test/ole/unoTocomCalls/Test/Test.cpp246
-rw-r--r--extensions/test/ole/unoTocomCalls/Test/Test.dsp114
-rw-r--r--extensions/test/ole/unoTocomCalls/Test/Test.sln19
-rw-r--r--extensions/test/ole/unoTocomCalls/Test/Test.vcproj247
-rw-r--r--extensions/test/ole/unoTocomCalls/XCallback_Impl/Basic.rgs27
-rw-r--r--extensions/test/ole/unoTocomCalls/XCallback_Impl/BasicTest.rgs27
-rw-r--r--extensions/test/ole/unoTocomCalls/XCallback_Impl/Callback.cpp512
-rw-r--r--extensions/test/ole/unoTocomCalls/XCallback_Impl/Callback.h135
-rw-r--r--extensions/test/ole/unoTocomCalls/XCallback_Impl/Callback.rgs27
-rw-r--r--extensions/test/ole/unoTocomCalls/XCallback_Impl/Simple.cpp80
-rw-r--r--extensions/test/ole/unoTocomCalls/XCallback_Impl/Simple.h65
-rw-r--r--extensions/test/ole/unoTocomCalls/XCallback_Impl/Simple.rgs27
-rw-r--r--extensions/test/ole/unoTocomCalls/XCallback_Impl/StdAfx.cpp39
-rw-r--r--extensions/test/ole/unoTocomCalls/XCallback_Impl/StdAfx.h57
-rw-r--r--extensions/test/ole/unoTocomCalls/XCallback_Impl/XCallback_Impl.cpp101
-rw-r--r--extensions/test/ole/unoTocomCalls/XCallback_Impl/XCallback_Impl.def10
-rw-r--r--extensions/test/ole/unoTocomCalls/XCallback_Impl/XCallback_Impl.dsp337
-rw-r--r--extensions/test/ole/unoTocomCalls/XCallback_Impl/XCallback_Impl.idl151
-rw-r--r--extensions/test/ole/unoTocomCalls/XCallback_Impl/XCallback_Impl.rc163
-rw-r--r--extensions/test/ole/unoTocomCalls/XCallback_Impl/XCallback_Impl.sln31
-rw-r--r--extensions/test/ole/unoTocomCalls/XCallback_Impl/XCallback_Impl.vcproj816
-rw-r--r--extensions/test/ole/unoTocomCalls/XCallback_Impl/resource.h46
-rw-r--r--extensions/test/ole/unoTocomCalls/readme.txt9
-rw-r--r--extensions/test/pgp/TestPGP.java146
-rw-r--r--extensions/test/pgp/makefile.mk124
-rw-r--r--extensions/test/pgp/readme.txt33
-rw-r--r--extensions/test/sax/exports.dxp2
-rw-r--r--extensions/test/sax/factory.hxx31
-rw-r--r--extensions/test/sax/makefile.mk65
-rw-r--r--extensions/test/sax/testsax.cxx911
-rw-r--r--extensions/test/sax/testwriter.cxx772
-rw-r--r--extensions/test/stm/datatest.cxx1070
-rw-r--r--extensions/test/stm/exports.dxp2
-rw-r--r--extensions/test/stm/makefile.mk62
-rw-r--r--extensions/test/stm/marktest.cxx679
-rw-r--r--extensions/test/stm/pipetest.cxx446
-rw-r--r--extensions/test/stm/testfactreg.cxx170
-rw-r--r--extensions/test/stm/testfactreg.hxx110
-rw-r--r--extensions/util/hidother.src427
-rw-r--r--extensions/util/makefile.mk39
-rw-r--r--extensions/util/makefile.pmk29
-rw-r--r--extensions/util/target.pmk35
-rw-r--r--extensions/workben/makefile.mk174
-rw-r--r--extensions/workben/pythonautotest.cxx623
-rw-r--r--extensions/workben/pythontest.cxx557
-rw-r--r--extensions/workben/testcomponent.cxx222
-rw-r--r--extensions/workben/testframecontrol.cxx320
-rw-r--r--extensions/workben/testpgp.cxx844
-rw-r--r--extensions/workben/testresource.cxx92
-rw-r--r--extensions/workben/testresource.src30
-rw-r--r--external/gcc3_specific/makefile.mk69
-rw-r--r--external/glibc-2.1.3.patch210
-rw-r--r--external/glibc/makefile.mk70
-rw-r--r--external/mingwheaders/makefile.mk210
-rw-r--r--external/mingwheaders/mingw_atl_headers.patch1654
-rw-r--r--external/mingwheaders/mingw_headers.patch2130
-rw-r--r--external/prj/build.lst5
-rw-r--r--external/prj/d.lst65
-rw-r--r--external/unowinreg/README2
-rw-r--r--extras/prj/build.lst30
-rw-r--r--extras/prj/d.lst12
-rw-r--r--extras/source/autotext/delzip1
-rw-r--r--extras/source/autotext/lang/af-ZA/acor_af-ZA.datbin0 -> 5241 bytes-rw-r--r--extras/source/autotext/lang/bg/acor_bg-BG.datbin0 -> 3410 bytes-rw-r--r--extras/source/autotext/lang/bg/crdbus50.baubin0 -> 14598 bytes-rw-r--r--extras/source/autotext/lang/bg/standard.baubin0 -> 56036 bytes-rw-r--r--extras/source/autotext/lang/bg/template.baubin0 -> 59956 bytes-rw-r--r--extras/source/autotext/lang/cs/acor_cs-CZ.datbin0 -> 99637 bytes-rw-r--r--extras/source/autotext/lang/cs/crdbus50.baubin0 -> 34953 bytes-rw-r--r--extras/source/autotext/lang/cs/crdbus54.baubin0 -> 34910 bytes-rw-r--r--extras/source/autotext/lang/cs/standard.baubin0 -> 86365 bytes-rw-r--r--extras/source/autotext/lang/cs/template.baubin0 -> 58306 bytes-rw-r--r--extras/source/autotext/lang/da/acor_da-DK.datbin0 -> 7470 bytes-rw-r--r--extras/source/autotext/lang/da/crdbus50.baubin0 -> 28865 bytes-rw-r--r--extras/source/autotext/lang/da/standard.baubin0 -> 55464 bytes-rw-r--r--extras/source/autotext/lang/da/template.baubin0 -> 45130 bytes-rw-r--r--extras/source/autotext/lang/de/acor_de-DE.datbin0 -> 52613 bytes-rw-r--r--extras/source/autotext/lang/de/crdbus50.baubin0 -> 20777 bytes-rw-r--r--extras/source/autotext/lang/de/standard.baubin0 -> 48317 bytes-rw-r--r--extras/source/autotext/lang/de/template.baubin0 -> 49052 bytes-rw-r--r--extras/source/autotext/lang/delzip1
-rw-r--r--extras/source/autotext/lang/en-AU/acor_en-AU.datbin0 -> 79211 bytes-rw-r--r--extras/source/autotext/lang/en-GB/acor_en-GB.datbin0 -> 79212 bytes-rw-r--r--extras/source/autotext/lang/en-GB/crdbus50.baubin0 -> 30564 bytes-rw-r--r--extras/source/autotext/lang/en-GB/standard.baubin0 -> 68960 bytes-rw-r--r--extras/source/autotext/lang/en-GB/template.baubin0 -> 49042 bytes-rw-r--r--extras/source/autotext/lang/en-US/acor_en-US.datbin0 -> 78472 bytes-rw-r--r--extras/source/autotext/lang/en-US/crdbus50.baubin0 -> 29311 bytes-rw-r--r--extras/source/autotext/lang/en-US/standard.baubin0 -> 57462 bytes-rw-r--r--extras/source/autotext/lang/en-US/template.baubin0 -> 45671 bytes-rw-r--r--extras/source/autotext/lang/en-ZA/acor_en-ZA.datbin0 -> 8244 bytes-rw-r--r--extras/source/autotext/lang/es/acor_es-ES.datbin0 -> 39611 bytes-rw-r--r--extras/source/autotext/lang/es/crdbus50.baubin0 -> 29126 bytes-rw-r--r--extras/source/autotext/lang/es/standard.baubin0 -> 43448 bytes-rw-r--r--extras/source/autotext/lang/es/template.baubin0 -> 45738 bytes-rw-r--r--extras/source/autotext/lang/eu/acor_eu.datbin0 -> 78988 bytes-rwxr-xr-xextras/source/autotext/lang/eu/crdbus50.baubin0 -> 29311 bytes-rwxr-xr-xextras/source/autotext/lang/eu/standard.baubin0 -> 57462 bytes-rwxr-xr-xextras/source/autotext/lang/eu/template.baubin0 -> 45671 bytes-rw-r--r--extras/source/autotext/lang/fa/acor_fa-IR.datbin0 -> 629744 bytes-rw-r--r--extras/source/autotext/lang/fi/acor_fi-FI.datbin0 -> 5810 bytes-rw-r--r--extras/source/autotext/lang/fr/acor_fr-FR.datbin0 -> 31897 bytes-rw-r--r--extras/source/autotext/lang/fr/crdbus50.baubin0 -> 29255 bytes-rw-r--r--extras/source/autotext/lang/fr/standard.baubin0 -> 48704 bytes-rw-r--r--extras/source/autotext/lang/fr/template.baubin0 -> 45856 bytes-rw-r--r--extras/source/autotext/lang/ga-IE/acor_ga-IE.datbin0 -> 13750 bytes-rw-r--r--extras/source/autotext/lang/hu/acor_hu-HU.datbin0 -> 96683 bytes-rw-r--r--extras/source/autotext/lang/hu/crdbus50.baubin0 -> 29629 bytes-rw-r--r--extras/source/autotext/lang/hu/crdbus54.baubin0 -> 29564 bytes-rw-r--r--extras/source/autotext/lang/hu/mytexts.baubin0 -> 577 bytes-rw-r--r--extras/source/autotext/lang/hu/standard.baubin0 -> 44813 bytes-rw-r--r--extras/source/autotext/lang/hu/template.baubin0 -> 53009 bytes-rw-r--r--extras/source/autotext/lang/it/acor_it-IT.datbin0 -> 13337 bytes-rw-r--r--extras/source/autotext/lang/it/crdbus50.baubin0 -> 29144 bytes-rw-r--r--extras/source/autotext/lang/it/standard.baubin0 -> 44669 bytes-rw-r--r--extras/source/autotext/lang/it/template.baubin0 -> 45994 bytes-rw-r--r--extras/source/autotext/lang/ja/acor_ja-JP.datbin0 -> 77736 bytes-rw-r--r--extras/source/autotext/lang/ja/crdbus50.baubin0 -> 15065 bytes-rw-r--r--extras/source/autotext/lang/ja/standard.baubin0 -> 36137 bytes-rw-r--r--extras/source/autotext/lang/ja/template.baubin0 -> 46244 bytes-rw-r--r--extras/source/autotext/lang/km/crdbus50.baubin0 -> 29311 bytes-rw-r--r--extras/source/autotext/lang/km/standard.baubin0 -> 57462 bytes-rw-r--r--extras/source/autotext/lang/km/template.baubin0 -> 45671 bytes-rw-r--r--extras/source/autotext/lang/ko/acor_ko-KR.datbin0 -> 77736 bytes-rw-r--r--extras/source/autotext/lang/ko/crdbus50.baubin0 -> 15587 bytes-rw-r--r--extras/source/autotext/lang/ko/standard.baubin0 -> 40482 bytes-rw-r--r--extras/source/autotext/lang/ko/template.baubin0 -> 46406 bytes-rw-r--r--extras/source/autotext/lang/lb-LU/acor_lb-LU.datbin0 -> 45098 bytes-rw-r--r--extras/source/autotext/lang/makefile.mk50
-rw-r--r--extras/source/autotext/lang/mn/acor_mn-MN.datbin0 -> 4249 bytes-rw-r--r--extras/source/autotext/lang/mn/crdbus50.baubin0 -> 31760 bytes-rw-r--r--extras/source/autotext/lang/mn/standard.baubin0 -> 64482 bytes-rw-r--r--extras/source/autotext/lang/mn/template.baubin0 -> 50850 bytes-rw-r--r--extras/source/autotext/lang/nl/acor_nl-NL.datbin0 -> 18708 bytes-rw-r--r--extras/source/autotext/lang/nl/crdbus50.baubin0 -> 34228 bytes-rw-r--r--extras/source/autotext/lang/nl/standard.baubin0 -> 40557 bytes-rw-r--r--extras/source/autotext/lang/nl/template.baubin0 -> 39676 bytes-rw-r--r--extras/source/autotext/lang/pl/acor_pl-PL.datbin0 -> 7913 bytes-rw-r--r--extras/source/autotext/lang/pl/crdbus50.baubin0 -> 16633 bytes-rw-r--r--extras/source/autotext/lang/pl/standard.baubin0 -> 33032 bytes-rw-r--r--extras/source/autotext/lang/pl/template.baubin0 -> 7581 bytes-rw-r--r--extras/source/autotext/lang/pt-BR/acor_pt-BR.datbin0 -> 469488 bytes-rw-r--r--extras/source/autotext/lang/pt-BR/crdbus50.baubin0 -> 14627 bytes-rw-r--r--extras/source/autotext/lang/pt-BR/standard.baubin0 -> 36413 bytes-rw-r--r--extras/source/autotext/lang/pt-BR/template.baubin0 -> 46270 bytes-rw-r--r--extras/source/autotext/lang/pt/acor_pt-PT.datbin0 -> 15141 bytes-rw-r--r--extras/source/autotext/lang/pt/crdbus50.baubin0 -> 36662 bytes-rw-r--r--extras/source/autotext/lang/pt/standard.baubin0 -> 61444 bytes-rw-r--r--extras/source/autotext/lang/pt/template.baubin0 -> 7042 bytes-rw-r--r--extras/source/autotext/lang/ru/acor_ru-RU.datbin0 -> 25673 bytes-rw-r--r--extras/source/autotext/lang/ru/crdbus50.baubin0 -> 29311 bytes-rw-r--r--extras/source/autotext/lang/ru/standard.baubin0 -> 57462 bytes-rw-r--r--extras/source/autotext/lang/ru/template.baubin0 -> 45671 bytes-rw-r--r--extras/source/autotext/lang/sh-ME/acor_sh-ME.datbin0 -> 1631 bytes-rw-r--r--extras/source/autotext/lang/sh-RS/acor_sh-RS.datbin0 -> 1631 bytes-rw-r--r--extras/source/autotext/lang/sh-YU/acor_sh-YU.datbin0 -> 1631 bytes-rw-r--r--extras/source/autotext/lang/sk/acor_sk-SK.datbin0 -> 5641 bytes-rw-r--r--extras/source/autotext/lang/sk/crdbus50.baubin0 -> 30465 bytes-rw-r--r--extras/source/autotext/lang/sk/crdbus54.baubin0 -> 30842 bytes-rw-r--r--extras/source/autotext/lang/sk/standard.baubin0 -> 92337 bytes-rw-r--r--extras/source/autotext/lang/sk/template.baubin0 -> 60907 bytes-rw-r--r--extras/source/autotext/lang/sl/acor_sl-SI.datbin0 -> 46882 bytes-rw-r--r--extras/source/autotext/lang/sl/crdbus50.baubin0 -> 30684 bytes-rw-r--r--extras/source/autotext/lang/sl/crdbus54.baubin0 -> 30620 bytes-rw-r--r--extras/source/autotext/lang/sl/mytexts.baubin0 -> 570 bytes-rw-r--r--extras/source/autotext/lang/sl/standard.baubin0 -> 59934 bytes-rw-r--r--extras/source/autotext/lang/sl/template.baubin0 -> 61243 bytes-rw-r--r--extras/source/autotext/lang/sr-ME/acor_sr-ME.datbin0 -> 1683 bytes-rw-r--r--extras/source/autotext/lang/sr-RS/acor_sr-RS.datbin0 -> 1683 bytes-rw-r--r--extras/source/autotext/lang/sr-YU/acor_sr-YU.datbin0 -> 1683 bytes-rw-r--r--extras/source/autotext/lang/sv/acor_sv-SE.datbin0 -> 15453 bytes-rw-r--r--extras/source/autotext/lang/sv/crdbus50.baubin0 -> 29241 bytes-rw-r--r--extras/source/autotext/lang/sv/standard.baubin0 -> 38778 bytes-rw-r--r--extras/source/autotext/lang/sv/template.baubin0 -> 45349 bytes-rw-r--r--extras/source/autotext/lang/tr/acor_tr-TR.datbin0 -> 16444 bytes-rw-r--r--extras/source/autotext/lang/tr/crdbus50.baubin0 -> 143872 bytes-rw-r--r--extras/source/autotext/lang/tr/template.baubin0 -> 28672 bytes-rw-r--r--extras/source/autotext/lang/vi/acor_vi-VN.datbin0 -> 77337 bytes-rw-r--r--extras/source/autotext/lang/zh-CN/acor_zh-CN.datbin0 -> 14211 bytes-rw-r--r--extras/source/autotext/lang/zh-CN/crdbus50.baubin0 -> 15356 bytes-rw-r--r--extras/source/autotext/lang/zh-CN/standard.baubin0 -> 38238 bytes-rw-r--r--extras/source/autotext/lang/zh-CN/template.baubin0 -> 46139 bytes-rw-r--r--extras/source/autotext/lang/zh-TW/acor_zh-TW.datbin0 -> 14211 bytes-rw-r--r--extras/source/autotext/lang/zh-TW/crdbus50.baubin0 -> 15481 bytes-rw-r--r--extras/source/autotext/lang/zh-TW/standard.baubin0 -> 35426 bytes-rw-r--r--extras/source/autotext/lang/zh-TW/template.baubin0 -> 47136 bytes-rw-r--r--extras/source/autotext/makefile.mk53
-rw-r--r--extras/source/autotext/mytexts.baubin0 -> 567 bytes-rw-r--r--extras/source/database/biblio.dbfbin0 -> 343909 bytes-rw-r--r--extras/source/database/biblio.dbtbin0 -> 564226 bytes-rw-r--r--extras/source/database/biblio.odbbin0 -> 1661 bytes-rw-r--r--extras/source/database/delzip1
-rw-r--r--extras/source/database/makefile.mk53
-rw-r--r--extras/source/gallery/apples.gifbin0 -> 6197 bytes-rw-r--r--extras/source/gallery/bigapple.gifbin0 -> 35287 bytes-rw-r--r--extras/source/gallery/bullets/blkpearl.gifbin0 -> 929 bytes-rw-r--r--extras/source/gallery/bullets/bluarrow.gifbin0 -> 93 bytes-rw-r--r--extras/source/gallery/bullets/bluball.gifbin0 -> 103 bytes-rw-r--r--extras/source/gallery/bullets/bludiamd.gifbin0 -> 111 bytes-rw-r--r--extras/source/gallery/bullets/bluered.gifbin0 -> 507 bytes-rw-r--r--extras/source/gallery/bullets/blusqare.gifbin0 -> 96 bytes-rw-r--r--extras/source/gallery/bullets/blustar.gifbin0 -> 146 bytes-rw-r--r--extras/source/gallery/bullets/coffee_1.gifbin0 -> 644 bytes-rw-r--r--extras/source/gallery/bullets/coffee_2.gifbin0 -> 656 bytes-rw-r--r--extras/source/gallery/bullets/coffee_3.gifbin0 -> 625 bytes-rw-r--r--extras/source/gallery/bullets/coffee_4.gifbin0 -> 605 bytes-rw-r--r--extras/source/gallery/bullets/coffee_5.gifbin0 -> 671 bytes-rw-r--r--extras/source/gallery/bullets/con-blue.gifbin0 -> 594 bytes-rw-r--r--extras/source/gallery/bullets/con-cyan.gifbin0 -> 614 bytes-rw-r--r--extras/source/gallery/bullets/con-green.gifbin0 -> 393 bytes-rw-r--r--extras/source/gallery/bullets/con-lilac.gifbin0 -> 600 bytes-rw-r--r--extras/source/gallery/bullets/con-oran.gifbin0 -> 594 bytes-rw-r--r--extras/source/gallery/bullets/con-pink.gifbin0 -> 394 bytes-rw-r--r--extras/source/gallery/bullets/con-red.gifbin0 -> 388 bytes-rw-r--r--extras/source/gallery/bullets/con-yellow.gifbin0 -> 375 bytes-rw-r--r--extras/source/gallery/bullets/corner_1.gifbin0 -> 399 bytes-rw-r--r--extras/source/gallery/bullets/corner_2.gifbin0 -> 399 bytes-rw-r--r--extras/source/gallery/bullets/corner_3.gifbin0 -> 402 bytes-rw-r--r--extras/source/gallery/bullets/corner_4.gifbin0 -> 408 bytes-rw-r--r--extras/source/gallery/bullets/darkball.gifbin0 -> 924 bytes-rw-r--r--extras/source/gallery/bullets/darkblue.gifbin0 -> 527 bytes-rw-r--r--extras/source/gallery/bullets/delzip1
-rw-r--r--extras/source/gallery/bullets/gldpearl.gifbin0 -> 929 bytes-rw-r--r--extras/source/gallery/bullets/golfball.gifbin0 -> 960 bytes-rw-r--r--extras/source/gallery/bullets/grnarrow.gifbin0 -> 94 bytes-rw-r--r--extras/source/gallery/bullets/grnball.gifbin0 -> 101 bytes-rw-r--r--extras/source/gallery/bullets/grndiamd.gifbin0 -> 111 bytes-rw-r--r--extras/source/gallery/bullets/grnpearl.gifbin0 -> 935 bytes-rw-r--r--extras/source/gallery/bullets/grnsqare.gifbin0 -> 97 bytes-rw-r--r--extras/source/gallery/bullets/grnstar.gifbin0 -> 144 bytes-rw-r--r--extras/source/gallery/bullets/gryarrow.gifbin0 -> 94 bytes-rw-r--r--extras/source/gallery/bullets/gryball.gifbin0 -> 103 bytes-rw-r--r--extras/source/gallery/bullets/grydiamd.gifbin0 -> 113 bytes-rw-r--r--extras/source/gallery/bullets/grysqare.gifbin0 -> 98 bytes-rw-r--r--extras/source/gallery/bullets/grystar.gifbin0 -> 144 bytes-rw-r--r--extras/source/gallery/bullets/makefile.mk49
-rw-r--r--extras/source/gallery/bullets/orgarrow.gifbin0 -> 96 bytes-rw-r--r--extras/source/gallery/bullets/orgball.gifbin0 -> 104 bytes-rw-r--r--extras/source/gallery/bullets/orgdiamd.gifbin0 -> 149 bytes-rw-r--r--extras/source/gallery/bullets/orgsqare.gifbin0 -> 99 bytes-rw-r--r--extras/source/gallery/bullets/orgstar.gifbin0 -> 143 bytes-rw-r--r--extras/source/gallery/bullets/pebble_1.gifbin0 -> 434 bytes-rw-r--r--extras/source/gallery/bullets/pebble_2.gifbin0 -> 460 bytes-rw-r--r--extras/source/gallery/bullets/pebble_3.gifbin0 -> 463 bytes-rw-r--r--extras/source/gallery/bullets/poliball.gifbin0 -> 945 bytes-rw-r--r--extras/source/gallery/bullets/popcorn_1.gifbin0 -> 1005 bytes-rw-r--r--extras/source/gallery/bullets/popcorn_2.gifbin0 -> 1249 bytes-rw-r--r--extras/source/gallery/bullets/rainbow.gifbin0 -> 527 bytes-rw-r--r--extras/source/gallery/bullets/redarrow.gifbin0 -> 97 bytes-rw-r--r--extras/source/gallery/bullets/redball.gifbin0 -> 103 bytes-rw-r--r--extras/source/gallery/bullets/reddiamd.gifbin0 -> 111 bytes-rw-r--r--extras/source/gallery/bullets/redsqare.gifbin0 -> 97 bytes-rw-r--r--extras/source/gallery/bullets/redstar.gifbin0 -> 145 bytes-rw-r--r--extras/source/gallery/bullets/whtpearl.gifbin0 -> 931 bytes-rw-r--r--extras/source/gallery/bullets/ylwarrow.gifbin0 -> 126 bytes-rw-r--r--extras/source/gallery/bullets/ylwball.gifbin0 -> 133 bytes-rw-r--r--extras/source/gallery/bullets/ylwdiamd.gifbin0 -> 145 bytes-rw-r--r--extras/source/gallery/bullets/ylwsqare.gifbin0 -> 96 bytes-rw-r--r--extras/source/gallery/bullets/ylwstar.gifbin0 -> 145 bytes-rw-r--r--extras/source/gallery/delzip0
-rw-r--r--extras/source/gallery/flower.gifbin0 -> 6073 bytes-rw-r--r--extras/source/gallery/flowers.gifbin0 -> 9333 bytes-rw-r--r--extras/source/gallery/gallery_sound/delzip1
-rw-r--r--extras/source/gallery/gallery_sound/makefile.mk49
-rw-r--r--extras/source/gallery/gallery_sound/sg100.sdvbin0 -> 2048 bytes-rw-r--r--extras/source/gallery/gallery_sound/sg100.thmbin0 -> 538 bytes-rw-r--r--extras/source/gallery/gallery_sound/sg30.sdvbin0 -> 2048 bytes-rw-r--r--extras/source/gallery/gallery_sound/sg30.thmbin0 -> 565 bytes-rw-r--r--extras/source/gallery/gallery_system/delzip1
-rw-r--r--extras/source/gallery/gallery_system/makefile.mk49
-rw-r--r--extras/source/gallery/gallery_system/sg1.sdgbin0 -> 29872 bytes-rw-r--r--extras/source/gallery/gallery_system/sg1.sdvbin0 -> 2048 bytes-rw-r--r--extras/source/gallery/gallery_system/sg1.thmbin0 -> 2432 bytes-rw-r--r--extras/source/gallery/gallery_system/sg2.sdgbin0 -> 25785 bytes-rw-r--r--extras/source/gallery/gallery_system/sg2.sdvbin0 -> 2048 bytes-rw-r--r--extras/source/gallery/gallery_system/sg2.thmbin0 -> 1266 bytes-rw-r--r--extras/source/gallery/gallery_system/sg24.sdgbin0 -> 49161 bytes-rw-r--r--extras/source/gallery/gallery_system/sg24.sdvbin0 -> 359424 bytes-rw-r--r--extras/source/gallery/gallery_system/sg24.thmbin0 -> 1236 bytes-rw-r--r--extras/source/gallery/gallery_system/sg25.sdgbin0 -> 55650 bytes-rw-r--r--extras/source/gallery/gallery_system/sg25.sdvbin0 -> 2048 bytes-rw-r--r--extras/source/gallery/gallery_system/sg25.thmbin0 -> 2016 bytes-rw-r--r--extras/source/gallery/gallery_system/sg3.sdgbin0 -> 270058 bytes-rw-r--r--extras/source/gallery/gallery_system/sg3.sdvbin0 -> 2048 bytes-rw-r--r--extras/source/gallery/gallery_system/sg3.thmbin0 -> 2503 bytes-rw-r--r--extras/source/gallery/gallery_system/sg36.sdgbin0 -> 65354 bytes-rw-r--r--extras/source/gallery/gallery_system/sg36.sdvbin0 -> 589312 bytes-rw-r--r--extras/source/gallery/gallery_system/sg36.thmbin0 -> 1163 bytes-rw-r--r--extras/source/gallery/gallery_system/sg4.sdgbin0 -> 60533 bytes-rw-r--r--extras/source/gallery/gallery_system/sg4.sdvbin0 -> 2048 bytes-rw-r--r--extras/source/gallery/gallery_system/sg4.thmbin0 -> 3323 bytes-rw-r--r--extras/source/gallery/gallery_system/sg9.sdgbin0 -> 5331 bytes-rw-r--r--extras/source/gallery/gallery_system/sg9.sdvbin0 -> 2048 bytes-rw-r--r--extras/source/gallery/gallery_system/sg9.thmbin0 -> 1458 bytes-rw-r--r--extras/source/gallery/htmlexpo/bludown.gifbin0 -> 873 bytes-rw-r--r--extras/source/gallery/htmlexpo/blufirs.gifbin0 -> 906 bytes-rw-r--r--extras/source/gallery/htmlexpo/blufirs_.gifbin0 -> 884 bytes-rw-r--r--extras/source/gallery/htmlexpo/blulast.gifbin0 -> 909 bytes-rw-r--r--extras/source/gallery/htmlexpo/blulast_.gifbin0 -> 898 bytes-rw-r--r--extras/source/gallery/htmlexpo/blunav.gifbin0 -> 1441 bytes-rw-r--r--extras/source/gallery/htmlexpo/blunext.gifbin0 -> 886 bytes-rw-r--r--extras/source/gallery/htmlexpo/blunext_.gifbin0 -> 841 bytes-rw-r--r--extras/source/gallery/htmlexpo/bluprev.gifbin0 -> 893 bytes-rw-r--r--extras/source/gallery/htmlexpo/bluprev_.gifbin0 -> 841 bytes-rw-r--r--extras/source/gallery/htmlexpo/blutext.gifbin0 -> 1390 bytes-rw-r--r--extras/source/gallery/htmlexpo/bluup.gifbin0 -> 874 bytes-rw-r--r--extras/source/gallery/htmlexpo/cubdown.gifbin0 -> 1628 bytes-rw-r--r--extras/source/gallery/htmlexpo/cubfirs.gifbin0 -> 1704 bytes-rw-r--r--extras/source/gallery/htmlexpo/cubfirs_.gifbin0 -> 1320 bytes-rw-r--r--extras/source/gallery/htmlexpo/cublast.gifbin0 -> 1712 bytes-rw-r--r--extras/source/gallery/htmlexpo/cublast_.gifbin0 -> 1282 bytes-rw-r--r--extras/source/gallery/htmlexpo/cubnav.gifbin0 -> 1719 bytes-rw-r--r--extras/source/gallery/htmlexpo/cubnext.gifbin0 -> 1651 bytes-rw-r--r--extras/source/gallery/htmlexpo/cubnext_.gifbin0 -> 1244 bytes-rw-r--r--extras/source/gallery/htmlexpo/cubprev.gifbin0 -> 1648 bytes-rw-r--r--extras/source/gallery/htmlexpo/cubprev_.gifbin0 -> 1239 bytes-rw-r--r--extras/source/gallery/htmlexpo/cubtext.gifbin0 -> 1687 bytes-rw-r--r--extras/source/gallery/htmlexpo/cubup.gifbin0 -> 1646 bytes-rw-r--r--extras/source/gallery/htmlexpo/delzip1
-rw-r--r--extras/source/gallery/htmlexpo/gredown.gifbin0 -> 1360 bytes-rw-r--r--extras/source/gallery/htmlexpo/grefirs.gifbin0 -> 1517 bytes-rw-r--r--extras/source/gallery/htmlexpo/grefirs_.gifbin0 -> 1442 bytes-rw-r--r--extras/source/gallery/htmlexpo/grelast.gifbin0 -> 1457 bytes-rw-r--r--extras/source/gallery/htmlexpo/grelast_.gifbin0 -> 1290 bytes-rw-r--r--extras/source/gallery/htmlexpo/grenav.gifbin0 -> 1582 bytes-rw-r--r--extras/source/gallery/htmlexpo/grenext.gifbin0 -> 1372 bytes-rw-r--r--extras/source/gallery/htmlexpo/grenext_.gifbin0 -> 1184 bytes-rw-r--r--extras/source/gallery/htmlexpo/greprev.gifbin0 -> 1370 bytes-rw-r--r--extras/source/gallery/htmlexpo/greprev_.gifbin0 -> 1180 bytes-rw-r--r--extras/source/gallery/htmlexpo/gretext.gifbin0 -> 1433 bytes-rw-r--r--extras/source/gallery/htmlexpo/greup.gifbin0 -> 1365 bytes-rw-r--r--extras/source/gallery/htmlexpo/makefile.mk49
-rw-r--r--extras/source/gallery/htmlexpo/simdown.gifbin0 -> 439 bytes-rw-r--r--extras/source/gallery/htmlexpo/simfirs.gifbin0 -> 477 bytes-rw-r--r--extras/source/gallery/htmlexpo/simfirs_.gifbin0 -> 477 bytes-rw-r--r--extras/source/gallery/htmlexpo/simlast.gifbin0 -> 483 bytes-rw-r--r--extras/source/gallery/htmlexpo/simlast_.gifbin0 -> 624 bytes-rw-r--r--extras/source/gallery/htmlexpo/simnav.gifbin0 -> 483 bytes-rw-r--r--extras/source/gallery/htmlexpo/simnext.gifbin0 -> 448 bytes-rw-r--r--extras/source/gallery/htmlexpo/simnext_.gifbin0 -> 445 bytes-rw-r--r--extras/source/gallery/htmlexpo/simprev.gifbin0 -> 444 bytes-rw-r--r--extras/source/gallery/htmlexpo/simprev_.gifbin0 -> 446 bytes-rw-r--r--extras/source/gallery/htmlexpo/simtext.gifbin0 -> 646 bytes-rw-r--r--extras/source/gallery/htmlexpo/simup.gifbin0 -> 439 bytes-rw-r--r--extras/source/gallery/makefile.mk49
-rw-r--r--extras/source/gallery/rulers/blkballs.gifbin0 -> 2272 bytes-rw-r--r--extras/source/gallery/rulers/blurulr1.gifbin0 -> 6583 bytes-rw-r--r--extras/source/gallery/rulers/blurulr2.gifbin0 -> 2965 bytes-rw-r--r--extras/source/gallery/rulers/blurulr3.gifbin0 -> 2011 bytes-rw-r--r--extras/source/gallery/rulers/blurulr4.gifbin0 -> 2561 bytes-rw-r--r--extras/source/gallery/rulers/blurulr5.gifbin0 -> 5708 bytes-rw-r--r--extras/source/gallery/rulers/blurulr6.gifbin0 -> 1878 bytes-rw-r--r--extras/source/gallery/rulers/delzip1
-rw-r--r--extras/source/gallery/rulers/gldballs.gifbin0 -> 2240 bytes-rw-r--r--extras/source/gallery/rulers/grnballs.gifbin0 -> 3702 bytes-rw-r--r--extras/source/gallery/rulers/grnrulr1.gifbin0 -> 2409 bytes-rw-r--r--extras/source/gallery/rulers/grnrulr2.gifbin0 -> 2759 bytes-rw-r--r--extras/source/gallery/rulers/grnrulr3.gifbin0 -> 2599 bytes-rw-r--r--extras/source/gallery/rulers/grnrulr4.gifbin0 -> 3172 bytes-rw-r--r--extras/source/gallery/rulers/gryrulr1.gifbin0 -> 2144 bytes-rw-r--r--extras/source/gallery/rulers/gryrulr2.gifbin0 -> 3014 bytes-rw-r--r--extras/source/gallery/rulers/gryrulr3.gifbin0 -> 1479 bytes-rw-r--r--extras/source/gallery/rulers/makefile.mk49
-rw-r--r--extras/source/gallery/rulers/orgrulr1.gifbin0 -> 2667 bytes-rw-r--r--extras/source/gallery/rulers/redrulr1.gifbin0 -> 2138 bytes-rw-r--r--extras/source/gallery/rulers/redrulr2.gifbin0 -> 2037 bytes-rw-r--r--extras/source/gallery/rulers/redrulr3.gifbin0 -> 2192 bytes-rw-r--r--extras/source/gallery/rulers/redrulr4.gifbin0 -> 2089 bytes-rw-r--r--extras/source/gallery/rulers/redrulr5.gifbin0 -> 1343 bytes-rw-r--r--extras/source/gallery/rulers/striped.gifbin0 -> 1553 bytes-rw-r--r--extras/source/gallery/rulers/whtballs.gifbin0 -> 3616 bytes-rw-r--r--extras/source/gallery/rulers/ylwrulr1.gifbin0 -> 2667 bytes-rw-r--r--extras/source/gallery/sky.gifbin0 -> 7517 bytes-rw-r--r--extras/source/gallery/sounds/apert.wavbin0 -> 47760 bytes-rw-r--r--extras/source/gallery/sounds/apert2.wavbin0 -> 60904 bytes-rw-r--r--extras/source/gallery/sounds/applause.wavbin0 -> 90472 bytes-rw-r--r--extras/source/gallery/sounds/beam.wavbin0 -> 43728 bytes-rw-r--r--extras/source/gallery/sounds/beam2.wavbin0 -> 73456 bytes-rw-r--r--extras/source/gallery/sounds/cow.wavbin0 -> 37546 bytes-rw-r--r--extras/source/gallery/sounds/curve.wavbin0 -> 134660 bytes-rw-r--r--extras/source/gallery/sounds/delzip1
-rw-r--r--extras/source/gallery/sounds/drama.wavbin0 -> 162366 bytes-rw-r--r--extras/source/gallery/sounds/explos.wavbin0 -> 47532 bytes-rw-r--r--extras/source/gallery/sounds/falling.wavbin0 -> 87008 bytes-rw-r--r--extras/source/gallery/sounds/glasses.wavbin0 -> 36270 bytes-rw-r--r--extras/source/gallery/sounds/gong.wavbin0 -> 191292 bytes-rw-r--r--extras/source/gallery/sounds/horse.wavbin0 -> 41958 bytes-rw-r--r--extras/source/gallery/sounds/kling.wavbin0 -> 46376 bytes-rw-r--r--extras/source/gallery/sounds/kongas.wavbin0 -> 54866 bytes-rw-r--r--extras/source/gallery/sounds/laser.wavbin0 -> 8408 bytes-rw-r--r--extras/source/gallery/sounds/left.wavbin0 -> 29788 bytes-rw-r--r--extras/source/gallery/sounds/makefile.mk49
-rw-r--r--extras/source/gallery/sounds/nature1.wavbin0 -> 83102 bytes-rw-r--r--extras/source/gallery/sounds/nature2.wavbin0 -> 37164 bytes-rw-r--r--extras/source/gallery/sounds/ok.wavbin0 -> 8862 bytes-rw-r--r--extras/source/gallery/sounds/pluck.wavbin0 -> 28510 bytes-rw-r--r--extras/source/gallery/sounds/roll.wavbin0 -> 242648 bytes-rw-r--r--extras/source/gallery/sounds/romans.wavbin0 -> 90466 bytes-rw-r--r--extras/source/gallery/sounds/soft.wavbin0 -> 185752 bytes-rw-r--r--extras/source/gallery/sounds/space.wavbin0 -> 133758 bytes-rw-r--r--extras/source/gallery/sounds/space2.wavbin0 -> 192686 bytes-rw-r--r--extras/source/gallery/sounds/space3.wavbin0 -> 144748 bytes-rw-r--r--extras/source/gallery/sounds/sparcle.wavbin0 -> 65580 bytes-rw-r--r--extras/source/gallery/sounds/strom.wavbin0 -> 85106 bytes-rw-r--r--extras/source/gallery/sounds/theetone.wavbin0 -> 49506 bytes-rw-r--r--extras/source/gallery/sounds/top.wavbin0 -> 69242 bytes-rw-r--r--extras/source/gallery/sounds/train.wavbin0 -> 56716 bytes-rw-r--r--extras/source/gallery/sounds/untie.wavbin0 -> 190884 bytes-rw-r--r--extras/source/gallery/sounds/ups.wavbin0 -> 28682 bytes-rw-r--r--extras/source/gallery/sounds/wallewal.wavbin0 -> 104018 bytes-rw-r--r--extras/source/gallery/www-back/aqua.jpgbin0 -> 5511 bytes-rw-r--r--extras/source/gallery/www-back/bathroom.jpgbin0 -> 4473 bytes-rw-r--r--extras/source/gallery/www-back/blocks.jpgbin0 -> 5664 bytes-rw-r--r--extras/source/gallery/www-back/blow_green.jpgbin0 -> 3159 bytes-rw-r--r--extras/source/gallery/www-back/blueblop.jpgbin0 -> 4469 bytes-rw-r--r--extras/source/gallery/www-back/bulging.jpgbin0 -> 4523 bytes-rw-r--r--extras/source/gallery/www-back/canvas_blue.jpgbin0 -> 5961 bytes-rw-r--r--extras/source/gallery/www-back/cheese.jpgbin0 -> 3029 bytes-rw-r--r--extras/source/gallery/www-back/chocolate.jpgbin0 -> 4316 bytes-rw-r--r--extras/source/gallery/www-back/citrus.jpgbin0 -> 7669 bytes-rw-r--r--extras/source/gallery/www-back/confetti.jpgbin0 -> 11733 bytes-rw-r--r--extras/source/gallery/www-back/daisy.jpgbin0 -> 8197 bytes-rw-r--r--extras/source/gallery/www-back/delzip1
-rw-r--r--extras/source/gallery/www-back/fluffy-grey.jpgbin0 -> 4314 bytes-rw-r--r--extras/source/gallery/www-back/fluffy.jpgbin0 -> 6890 bytes-rw-r--r--extras/source/gallery/www-back/fuzzy-blue.jpgbin0 -> 11472 bytes-rw-r--r--extras/source/gallery/www-back/fuzzy-darkgrey.jpgbin0 -> 7293 bytes-rw-r--r--extras/source/gallery/www-back/fuzzy-grey.jpgbin0 -> 6340 bytes-rw-r--r--extras/source/gallery/www-back/fuzzy-lightgrey.jpgbin0 -> 4321 bytes-rw-r--r--extras/source/gallery/www-back/fuzzy_light.jpgbin0 -> 4880 bytes-rw-r--r--extras/source/gallery/www-back/gregre.gifbin0 -> 2326 bytes-rw-r--r--extras/source/gallery/www-back/grey.gifbin0 -> 8529 bytes-rw-r--r--extras/source/gallery/www-back/grypaws.gifbin0 -> 3537 bytes-rw-r--r--extras/source/gallery/www-back/ice-blue.jpgbin0 -> 4675 bytes-rw-r--r--extras/source/gallery/www-back/ice-light.jpgbin0 -> 3182 bytes-rw-r--r--extras/source/gallery/www-back/imitation_leather.jpgbin0 -> 4207 bytes-rw-r--r--extras/source/gallery/www-back/interstices.jpgbin0 -> 3964 bytes-rw-r--r--extras/source/gallery/www-back/jeans.jpgbin0 -> 7002 bytes-rw-r--r--extras/source/gallery/www-back/jeansblk.jpgbin0 -> 5436 bytes-rw-r--r--extras/source/gallery/www-back/lawn-artificial.jpgbin0 -> 13522 bytes-rw-r--r--extras/source/gallery/www-back/lawn.jpgbin0 -> 11635 bytes-rw-r--r--extras/source/gallery/www-back/lightblue-wet.jpgbin0 -> 5235 bytes-rw-r--r--extras/source/gallery/www-back/linen-fine.jpgbin0 -> 5580 bytes-rw-r--r--extras/source/gallery/www-back/lino-green.jpgbin0 -> 6275 bytes-rw-r--r--extras/source/gallery/www-back/liquid-blue.jpgbin0 -> 3497 bytes-rw-r--r--extras/source/gallery/www-back/makefile.mk49
-rw-r--r--extras/source/gallery/www-back/marble.jpgbin0 -> 4161 bytes-rw-r--r--extras/source/gallery/www-back/marble_dark.jpgbin0 -> 6805 bytes-rw-r--r--extras/source/gallery/www-back/mazes.jpgbin0 -> 9817 bytes-rw-r--r--extras/source/gallery/www-back/mint.gifbin0 -> 4469 bytes-rw-r--r--extras/source/gallery/www-back/notes.gifbin0 -> 1429 bytes-rw-r--r--extras/source/gallery/www-back/pattern.jpgbin0 -> 13299 bytes-rw-r--r--extras/source/gallery/www-back/pebble-light.jpgbin0 -> 5816 bytes-rw-r--r--extras/source/gallery/www-back/pink.gifbin0 -> 4687 bytes-rw-r--r--extras/source/gallery/www-back/pool.jpgbin0 -> 6005 bytes-rw-r--r--extras/source/gallery/www-back/popcorn.jpgbin0 -> 12694 bytes-rw-r--r--extras/source/gallery/www-back/purple.jpgbin0 -> 4257 bytes-rw-r--r--extras/source/gallery/www-back/reddark.jpgbin0 -> 4968 bytes-rw-r--r--extras/source/gallery/www-back/rings-green.jpgbin0 -> 5094 bytes-rw-r--r--extras/source/gallery/www-back/rings-orange.jpgbin0 -> 6445 bytes-rw-r--r--extras/source/gallery/www-back/roses.jpgbin0 -> 8323 bytes-rw-r--r--extras/source/gallery/www-back/sand-light.jpgbin0 -> 4049 bytes-rw-r--r--extras/source/gallery/www-back/sand.jpgbin0 -> 5402 bytes-rw-r--r--extras/source/gallery/www-back/sky.jpgbin0 -> 1969 bytes-rw-r--r--extras/source/gallery/www-back/soft-structure_grey.jpgbin0 -> 4818 bytes-rw-r--r--extras/source/gallery/www-back/space.jpgbin0 -> 3011 bytes-rw-r--r--extras/source/gallery/www-back/stone-dark.jpgbin0 -> 6351 bytes-rw-r--r--extras/source/gallery/www-back/stone.jpgbin0 -> 7011 bytes-rw-r--r--extras/source/gallery/www-back/structure.jpgbin0 -> 3834 bytes-rw-r--r--extras/source/gallery/www-back/structure_darkgreen.gifbin0 -> 3782 bytes-rw-r--r--extras/source/gallery/www-back/structure_green.jpgbin0 -> 4035 bytes-rw-r--r--extras/source/gallery/www-back/wall-grey.jpgbin0 -> 5414 bytes-rw-r--r--extras/source/gallery/www-back/wet-turquoise.jpgbin0 -> 3119 bytes-rw-r--r--extras/source/gallery/www-back/wood.jpgbin0 -> 10382 bytes-rw-r--r--extras/source/gallery/www-graf/bluat.gifbin0 -> 1330 bytes-rw-r--r--extras/source/gallery/www-graf/bluback.gifbin0 -> 1016 bytes-rw-r--r--extras/source/gallery/www-graf/bludisk.gifbin0 -> 1016 bytes-rw-r--r--extras/source/gallery/www-graf/bludown.gifbin0 -> 1010 bytes-rw-r--r--extras/source/gallery/www-graf/bluhome.gifbin0 -> 1031 bytes-rw-r--r--extras/source/gallery/www-graf/bluinfo.gifbin0 -> 1000 bytes-rw-r--r--extras/source/gallery/www-graf/bluleft.gifbin0 -> 1017 bytes-rw-r--r--extras/source/gallery/www-graf/blumail.gifbin0 -> 1017 bytes-rw-r--r--extras/source/gallery/www-graf/bluminus.gifbin0 -> 989 bytes-rw-r--r--extras/source/gallery/www-graf/bluplus.gifbin0 -> 1009 bytes-rw-r--r--extras/source/gallery/www-graf/bluquest.gifbin0 -> 1041 bytes-rw-r--r--extras/source/gallery/www-graf/bluright.gifbin0 -> 1020 bytes-rw-r--r--extras/source/gallery/www-graf/bluup.gifbin0 -> 1011 bytes-rw-r--r--extras/source/gallery/www-graf/delzip1
-rw-r--r--extras/source/gallery/www-graf/gredisk.gifbin0 -> 1016 bytes-rw-r--r--extras/source/gallery/www-graf/gredown.gifbin0 -> 1010 bytes-rw-r--r--extras/source/gallery/www-graf/grehome.gifbin0 -> 1031 bytes-rw-r--r--extras/source/gallery/www-graf/greinfo.gifbin0 -> 1000 bytes-rw-r--r--extras/source/gallery/www-graf/greleft.gifbin0 -> 1017 bytes-rw-r--r--extras/source/gallery/www-graf/gremail.gifbin0 -> 1017 bytes-rw-r--r--extras/source/gallery/www-graf/greminus.gifbin0 -> 989 bytes-rw-r--r--extras/source/gallery/www-graf/greplus.gifbin0 -> 1009 bytes-rw-r--r--extras/source/gallery/www-graf/grequest.gifbin0 -> 1041 bytes-rw-r--r--extras/source/gallery/www-graf/greright.gifbin0 -> 1020 bytes-rw-r--r--extras/source/gallery/www-graf/greup.gifbin0 -> 1011 bytes-rw-r--r--extras/source/gallery/www-graf/grnat.gifbin0 -> 1264 bytes-rw-r--r--extras/source/gallery/www-graf/grnback.gifbin0 -> 1073 bytes-rw-r--r--extras/source/gallery/www-graf/grndisk.gifbin0 -> 1219 bytes-rw-r--r--extras/source/gallery/www-graf/grndown.gifbin0 -> 1231 bytes-rw-r--r--extras/source/gallery/www-graf/grnexcla.gifbin0 -> 1206 bytes-rw-r--r--extras/source/gallery/www-graf/grnhome.gifbin0 -> 872 bytes-rw-r--r--extras/source/gallery/www-graf/grninfo.gifbin0 -> 1200 bytes-rw-r--r--extras/source/gallery/www-graf/grnleft.gifbin0 -> 1227 bytes-rw-r--r--extras/source/gallery/www-graf/grnmail.gifbin0 -> 1222 bytes-rw-r--r--extras/source/gallery/www-graf/grnminus.gifbin0 -> 1187 bytes-rw-r--r--extras/source/gallery/www-graf/grnplus.gifbin0 -> 1204 bytes-rw-r--r--extras/source/gallery/www-graf/grnquest.gifbin0 -> 1226 bytes-rw-r--r--extras/source/gallery/www-graf/grnright.gifbin0 -> 1201 bytes-rw-r--r--extras/source/gallery/www-graf/grnup.gifbin0 -> 1220 bytes-rw-r--r--extras/source/gallery/www-graf/gryat.gifbin0 -> 1052 bytes-rw-r--r--extras/source/gallery/www-graf/gryback.gifbin0 -> 1032 bytes-rw-r--r--extras/source/gallery/www-graf/grydisk.gifbin0 -> 1044 bytes-rw-r--r--extras/source/gallery/www-graf/grydown.gifbin0 -> 1022 bytes-rw-r--r--extras/source/gallery/www-graf/gryhome.gifbin0 -> 1050 bytes-rw-r--r--extras/source/gallery/www-graf/gryinfo.gifbin0 -> 1017 bytes-rw-r--r--extras/source/gallery/www-graf/gryleft.gifbin0 -> 1030 bytes-rw-r--r--extras/source/gallery/www-graf/grymail.gifbin0 -> 1036 bytes-rw-r--r--extras/source/gallery/www-graf/gryminus.gifbin0 -> 1012 bytes-rw-r--r--extras/source/gallery/www-graf/gryplus.gifbin0 -> 1030 bytes-rw-r--r--extras/source/gallery/www-graf/gryquest.gifbin0 -> 1023 bytes-rw-r--r--extras/source/gallery/www-graf/gryright.gifbin0 -> 1033 bytes-rw-r--r--extras/source/gallery/www-graf/gryup.gifbin0 -> 1027 bytes-rw-r--r--extras/source/gallery/www-graf/makefile.mk23
-rw-r--r--extras/source/gallery/www-graf/men@work.gifbin0 -> 1287 bytes-rw-r--r--extras/source/gallery/www-graf/orgat.gifbin0 -> 606 bytes-rw-r--r--extras/source/gallery/www-graf/orgback.gifbin0 -> 1259 bytes-rw-r--r--extras/source/gallery/www-graf/orgdisk.gifbin0 -> 421 bytes-rw-r--r--extras/source/gallery/www-graf/orgdown.gifbin0 -> 560 bytes-rw-r--r--extras/source/gallery/www-graf/orghome.gifbin0 -> 808 bytes-rw-r--r--extras/source/gallery/www-graf/orginfo.gifbin0 -> 341 bytes-rw-r--r--extras/source/gallery/www-graf/orgleft.gifbin0 -> 285 bytes-rw-r--r--extras/source/gallery/www-graf/orgmail.gifbin0 -> 517 bytes-rw-r--r--extras/source/gallery/www-graf/orgminus.gifbin0 -> 272 bytes-rw-r--r--extras/source/gallery/www-graf/orgplus.gifbin0 -> 289 bytes-rw-r--r--extras/source/gallery/www-graf/orgquest.gifbin0 -> 281 bytes-rw-r--r--extras/source/gallery/www-graf/orgright.gifbin0 -> 293 bytes-rw-r--r--extras/source/gallery/www-graf/orgup.gifbin0 -> 1042 bytes-rw-r--r--extras/source/gallery/www-graf/redat.gifbin0 -> 1413 bytes-rw-r--r--extras/source/gallery/www-graf/redback.gifbin0 -> 1040 bytes-rw-r--r--extras/source/gallery/www-graf/reddisk.gifbin0 -> 1019 bytes-rw-r--r--extras/source/gallery/www-graf/reddown.gifbin0 -> 1015 bytes-rw-r--r--extras/source/gallery/www-graf/redhome.gifbin0 -> 1032 bytes-rw-r--r--extras/source/gallery/www-graf/redinfo.gifbin0 -> 1002 bytes-rw-r--r--extras/source/gallery/www-graf/redleft.gifbin0 -> 1018 bytes-rw-r--r--extras/source/gallery/www-graf/redmail.gifbin0 -> 1018 bytes-rw-r--r--extras/source/gallery/www-graf/redminus.gifbin0 -> 993 bytes-rw-r--r--extras/source/gallery/www-graf/redplus.gifbin0 -> 1015 bytes-rw-r--r--extras/source/gallery/www-graf/redquest.gifbin0 -> 1045 bytes-rw-r--r--extras/source/gallery/www-graf/redright.gifbin0 -> 1019 bytes-rw-r--r--extras/source/gallery/www-graf/redup.gifbin0 -> 1015 bytes-rw-r--r--extras/source/gallery/www-graf/turdown.gifbin0 -> 669 bytes-rw-r--r--extras/source/gallery/www-graf/turhome.gifbin0 -> 474 bytes-rw-r--r--extras/source/gallery/www-graf/turleft.gifbin0 -> 663 bytes-rw-r--r--extras/source/gallery/www-graf/turright.gifbin0 -> 667 bytes-rw-r--r--extras/source/gallery/www-graf/turup.gifbin0 -> 663 bytes-rw-r--r--extras/source/gallery/www-graf/viohome.gifbin0 -> 249 bytes-rw-r--r--extras/source/gallery/www-graf/violeft.gifbin0 -> 236 bytes-rw-r--r--extras/source/gallery/www-graf/vioright.gifbin0 -> 238 bytes-rw-r--r--extras/source/gallery/www-graf/vioup.gifbin0 -> 230 bytes-rw-r--r--extras/source/gallery/www-graf/ylwdown.gifbin0 -> 149 bytes-rw-r--r--extras/source/gallery/www-graf/ylwhome.gifbin0 -> 221 bytes-rw-r--r--extras/source/gallery/www-graf/ylwleft.gifbin0 -> 177 bytes-rw-r--r--extras/source/gallery/www-graf/ylwmail.gifbin0 -> 208 bytes-rw-r--r--extras/source/gallery/www-graf/ylwright.gifbin0 -> 177 bytes-rw-r--r--extras/source/gallery/www-graf/ylwup.gifbin0 -> 150 bytes-rw-r--r--extras/source/misc_config/autotbl.fmtbin0 -> 48408 bytes-rw-r--r--extras/source/misc_config/delzip0
-rw-r--r--extras/source/misc_config/makefile.mk49
-rwxr-xr-xextras/source/misc_config/wizard/form/styles/beige.css79
-rwxr-xr-xextras/source/misc_config/wizard/form/styles/bgr.css79
-rwxr-xr-xextras/source/misc_config/wizard/form/styles/dark.css79
-rwxr-xr-xextras/source/misc_config/wizard/form/styles/grey.css79
-rwxr-xr-xextras/source/misc_config/wizard/form/styles/ibg.css79
-rwxr-xr-xextras/source/misc_config/wizard/form/styles/ice.css79
-rwxr-xr-xextras/source/misc_config/wizard/form/styles/orange.css79
-rwxr-xr-xextras/source/misc_config/wizard/form/styles/red.css79
-rwxr-xr-xextras/source/misc_config/wizard/form/styles/violet.css79
-rwxr-xr-xextras/source/misc_config/wizard/form/styles/water.css79
-rw-r--r--extras/source/misc_config/wizard/web/images/calc.gifbin0 -> 1252 bytes-rw-r--r--extras/source/misc_config/wizard/web/images/draw.gifbin0 -> 1386 bytes-rw-r--r--extras/source/misc_config/wizard/web/images/fls.gifbin0 -> 1488 bytes-rw-r--r--extras/source/misc_config/wizard/web/images/graphics.gifbin0 -> 1533 bytes-rw-r--r--extras/source/misc_config/wizard/web/images/html.gifbin0 -> 1366 bytes-rw-r--r--extras/source/misc_config/wizard/web/images/impress.gifbin0 -> 1311 bytes-rw-r--r--extras/source/misc_config/wizard/web/images/media.gifbin0 -> 1407 bytes-rw-r--r--extras/source/misc_config/wizard/web/images/other.gifbin0 -> 1356 bytes-rw-r--r--extras/source/misc_config/wizard/web/images/pdf.gifbin0 -> 1485 bytes-rw-r--r--extras/source/misc_config/wizard/web/images/writer.gifbin0 -> 1376 bytes-rw-r--r--extras/source/misc_config/wizard/web/layouts/diagonal/index.html.xsl104
-rw-r--r--extras/source/misc_config/wizard/web/layouts/frame_bottom/index.html.xsl71
-rw-r--r--extras/source/misc_config/wizard/web/layouts/frame_bottom/mainframe.html7
-rw-r--r--extras/source/misc_config/wizard/web/layouts/frame_bottom/tocframe.html.xsl100
-rw-r--r--extras/source/misc_config/wizard/web/layouts/frame_left/index.html.xsl71
-rw-r--r--extras/source/misc_config/wizard/web/layouts/frame_left/mainframe.html7
-rw-r--r--extras/source/misc_config/wizard/web/layouts/frame_left/tocframe.html.xsl96
-rw-r--r--extras/source/misc_config/wizard/web/layouts/frame_right/index.html.xsl71
-rw-r--r--extras/source/misc_config/wizard/web/layouts/frame_right/mainframe.html7
-rw-r--r--extras/source/misc_config/wizard/web/layouts/frame_right/tocframe.html.xsl99
-rw-r--r--extras/source/misc_config/wizard/web/layouts/frame_top/index.html.xsl71
-rw-r--r--extras/source/misc_config/wizard/web/layouts/frame_top/mainframe.html7
-rw-r--r--extras/source/misc_config/wizard/web/layouts/frame_top/tocframe.html.xsl99
-rw-r--r--extras/source/misc_config/wizard/web/layouts/layout.xsl204
-rw-r--r--extras/source/misc_config/wizard/web/layouts/layoutF.xsl122
-rw-r--r--extras/source/misc_config/wizard/web/layouts/layoutX.xsl291
-rw-r--r--extras/source/misc_config/wizard/web/layouts/simple/index.html.xsl131
-rw-r--r--extras/source/misc_config/wizard/web/layouts/source.xml.xsl55
-rw-r--r--extras/source/misc_config/wizard/web/layouts/table_2/index.html.xsl185
-rw-r--r--extras/source/misc_config/wizard/web/layouts/table_3/index.html.xsl191
-rw-r--r--extras/source/misc_config/wizard/web/layouts/zigzag/index.html.xsl190
-rwxr-xr-xextras/source/misc_config/wizard/web/preview.html41
-rw-r--r--extras/source/misc_config/wizard/web/styles/beige.css79
-rw-r--r--extras/source/misc_config/wizard/web/styles/bg.css79
-rw-r--r--extras/source/misc_config/wizard/web/styles/bgr.css79
-rw-r--r--extras/source/misc_config/wizard/web/styles/bgrey.css79
-rw-r--r--extras/source/misc_config/wizard/web/styles/bwb.css79
-rw-r--r--extras/source/misc_config/wizard/web/styles/bwo.css79
-rw-r--r--extras/source/misc_config/wizard/web/styles/dark.css79
-rw-r--r--extras/source/misc_config/wizard/web/styles/dp.css79
-rw-r--r--extras/source/misc_config/wizard/web/styles/forest.css79
-rw-r--r--extras/source/misc_config/wizard/web/styles/green.css79
-rw-r--r--extras/source/misc_config/wizard/web/styles/greenred.css79
-rw-r--r--extras/source/misc_config/wizard/web/styles/grey.css79
-rw-r--r--extras/source/misc_config/wizard/web/styles/ibg.css79
-rw-r--r--extras/source/misc_config/wizard/web/styles/ice.css79
-rw-r--r--extras/source/misc_config/wizard/web/styles/marine.css79
-rw-r--r--extras/source/misc_config/wizard/web/styles/orange.css79
-rw-r--r--extras/source/misc_config/wizard/web/styles/pc_old.css91
-rw-r--r--extras/source/misc_config/wizard/web/styles/red.css79
-rw-r--r--extras/source/misc_config/wizard/web/styles/rgb.css91
-rw-r--r--extras/source/misc_config/wizard/web/styles/strange.css79
-rw-r--r--extras/source/misc_config/wizard/web/styles/violet.css79
-rw-r--r--extras/source/misc_config/wizard/web/styles/water.css79
-rw-r--r--extras/source/palettes/cmyk.soc220
-rw-r--r--extras/source/palettes/delzip3
-rw-r--r--extras/source/palettes/gallery.soc65
-rw-r--r--extras/source/palettes/html.soc135
-rw-r--r--extras/source/palettes/lang/bg/arrowhd_bg.soe28
-rw-r--r--extras/source/palettes/lang/bg/classic_bg.sog141
-rw-r--r--extras/source/palettes/lang/bg/hatching_bg.soh39
-rw-r--r--extras/source/palettes/lang/bg/modern_bg.sog31
-rw-r--r--extras/source/palettes/lang/bg/palette_bg.soc81
-rw-r--r--extras/source/palettes/lang/bg/styles_bg.sod10
-rw-r--r--extras/source/palettes/lang/cs/arrowhd_cs.soe28
-rw-r--r--extras/source/palettes/lang/cs/classic_cs.sog141
-rw-r--r--extras/source/palettes/lang/cs/hatching_cs.soh39
-rw-r--r--extras/source/palettes/lang/cs/modern_cs.sog31
-rw-r--r--extras/source/palettes/lang/cs/palette_cs.soc81
-rw-r--r--extras/source/palettes/lang/cs/styles_cs.sod2
-rw-r--r--extras/source/palettes/lang/da/arrowhd_da.soe26
-rw-r--r--extras/source/palettes/lang/da/classic_da.sog139
-rw-r--r--extras/source/palettes/lang/da/hatching_da.soh37
-rw-r--r--extras/source/palettes/lang/da/modern_da.sog29
-rw-r--r--extras/source/palettes/lang/da/palette_da.soc81
-rw-r--r--extras/source/palettes/lang/da/styles_da.sod8
-rw-r--r--extras/source/palettes/lang/de/arrowhd_de.soe28
-rw-r--r--extras/source/palettes/lang/de/classic_de.sog141
-rw-r--r--extras/source/palettes/lang/de/hatching_de.soh39
-rw-r--r--extras/source/palettes/lang/de/modern_de.sog31
-rw-r--r--extras/source/palettes/lang/de/palette_de.soc81
-rw-r--r--extras/source/palettes/lang/de/styles_de.sod10
-rw-r--r--extras/source/palettes/lang/delzip0
-rw-r--r--extras/source/palettes/lang/en-GB/arrowhd_en-GB.soe28
-rw-r--r--extras/source/palettes/lang/en-GB/classic_en-GB.sog141
-rw-r--r--extras/source/palettes/lang/en-GB/hatching_en-GB.soh39
-rw-r--r--extras/source/palettes/lang/en-GB/modern_en-GB.sog31
-rw-r--r--extras/source/palettes/lang/en-GB/palette_en-GB.soc81
-rw-r--r--extras/source/palettes/lang/en-GB/styles_en-GB.sod10
-rw-r--r--extras/source/palettes/lang/en-US/arrowhd_en-US.soe28
-rw-r--r--extras/source/palettes/lang/en-US/classic_en-US.sog141
-rw-r--r--extras/source/palettes/lang/en-US/hatching_en-US.soh39
-rw-r--r--extras/source/palettes/lang/en-US/modern_en-US.sog31
-rw-r--r--extras/source/palettes/lang/en-US/palette_en-US.soc81
-rw-r--r--extras/source/palettes/lang/en-US/styles_en-US.sod10
-rw-r--r--extras/source/palettes/lang/es/arrowhd_es.soe28
-rw-r--r--extras/source/palettes/lang/es/classic_es.sog141
-rw-r--r--extras/source/palettes/lang/es/hatching_es.soh39
-rw-r--r--extras/source/palettes/lang/es/modern_es.sog31
-rw-r--r--extras/source/palettes/lang/es/palette_es.soc81
-rw-r--r--extras/source/palettes/lang/es/styles_es.sod10
-rwxr-xr-xextras/source/palettes/lang/eu/arrowhd_eu.soe28
-rwxr-xr-xextras/source/palettes/lang/eu/classic_eu.sog141
-rwxr-xr-xextras/source/palettes/lang/eu/hatching_eu.soh39
-rwxr-xr-xextras/source/palettes/lang/eu/modern_eu.sog31
-rwxr-xr-xextras/source/palettes/lang/eu/palette_eu.soc81
-rwxr-xr-xextras/source/palettes/lang/eu/styles_eu.sod10
-rw-r--r--extras/source/palettes/lang/fr/arrowhd_fr.soe28
-rw-r--r--extras/source/palettes/lang/fr/classic_fr.sog141
-rw-r--r--extras/source/palettes/lang/fr/hatching_fr.soh39
-rw-r--r--extras/source/palettes/lang/fr/modern_fr.sog31
-rw-r--r--extras/source/palettes/lang/fr/palette_fr.soc81
-rw-r--r--extras/source/palettes/lang/fr/styles_fr.sod10
-rw-r--r--extras/source/palettes/lang/hu/arrowhd_hu.soe28
-rw-r--r--extras/source/palettes/lang/hu/classic_hu.sog141
-rw-r--r--extras/source/palettes/lang/hu/hatching_hu.soh39
-rw-r--r--extras/source/palettes/lang/hu/modern_hu.sog31
-rw-r--r--extras/source/palettes/lang/hu/palette_hu.soc81
-rw-r--r--extras/source/palettes/lang/hu/styles_hu.sod10
-rw-r--r--extras/source/palettes/lang/it/arrowhd_it.soe28
-rw-r--r--extras/source/palettes/lang/it/classic_it.sog141
-rw-r--r--extras/source/palettes/lang/it/hatching_it.soh39
-rw-r--r--extras/source/palettes/lang/it/modern_it.sog31
-rw-r--r--extras/source/palettes/lang/it/palette_it.soc81
-rw-r--r--extras/source/palettes/lang/it/styles_it.sod10
-rw-r--r--extras/source/palettes/lang/ja/arrowhd_ja.soe28
-rw-r--r--extras/source/palettes/lang/ja/classic_ja.sog2
-rw-r--r--extras/source/palettes/lang/ja/hatching_ja.soh39
-rw-r--r--extras/source/palettes/lang/ja/modern_ja.sog31
-rw-r--r--extras/source/palettes/lang/ja/palette_ja.soc81
-rw-r--r--extras/source/palettes/lang/ja/styles_ja.sod10
-rw-r--r--extras/source/palettes/lang/km/arrowhd_km.soe28
-rw-r--r--extras/source/palettes/lang/km/classic_km.sog141
-rw-r--r--extras/source/palettes/lang/km/hatching_km.soh39
-rw-r--r--extras/source/palettes/lang/km/modern_km.sog31
-rw-r--r--extras/source/palettes/lang/km/palette_km.soc81
-rw-r--r--extras/source/palettes/lang/km/styles_km.sod10
-rw-r--r--extras/source/palettes/lang/ko/arrowhd_ko.soe28
-rw-r--r--extras/source/palettes/lang/ko/classic_ko.sog2
-rw-r--r--extras/source/palettes/lang/ko/hatching_ko.soh39
-rw-r--r--extras/source/palettes/lang/ko/modern_ko.sog31
-rw-r--r--extras/source/palettes/lang/ko/palette_ko.soc81
-rw-r--r--extras/source/palettes/lang/ko/styles_ko.sod10
-rw-r--r--extras/source/palettes/lang/makefile.mk47
-rw-r--r--extras/source/palettes/lang/nl/arrowhd_nl.soe28
-rw-r--r--extras/source/palettes/lang/nl/classic_nl.sog141
-rw-r--r--extras/source/palettes/lang/nl/hatching_nl.soh39
-rw-r--r--extras/source/palettes/lang/nl/modern_nl.sog31
-rw-r--r--extras/source/palettes/lang/nl/palette_nl.soc81
-rw-r--r--extras/source/palettes/lang/nl/styles_nl.sod10
-rw-r--r--extras/source/palettes/lang/pl/arrowhd_pl.soebin0 -> 2846 bytes-rw-r--r--extras/source/palettes/lang/pl/classic_pl.sogbin0 -> 9006 bytes-rw-r--r--extras/source/palettes/lang/pl/hatching_pl.sohbin0 -> 1300 bytes-rw-r--r--extras/source/palettes/lang/pl/modern_pl.sogbin0 -> 1598 bytes-rw-r--r--extras/source/palettes/lang/pl/palette_pl.socbin0 -> 2078 bytes-rw-r--r--extras/source/palettes/lang/pl/styles_pl.sodbin0 -> 278 bytes-rw-r--r--extras/source/palettes/lang/pt-BR/arrowhd_pt-BR.soe28
-rw-r--r--extras/source/palettes/lang/pt-BR/classic_pt-BR.sog31
-rw-r--r--extras/source/palettes/lang/pt-BR/hatching_pt-BR.soh39
-rw-r--r--extras/source/palettes/lang/pt-BR/modern_pt-BR.sog31
-rw-r--r--extras/source/palettes/lang/pt-BR/palette_pt-BR.soc81
-rw-r--r--extras/source/palettes/lang/pt-BR/styles_pt-BR.sod3
-rw-r--r--extras/source/palettes/lang/pt/arrowhd_pt.soe28
-rw-r--r--extras/source/palettes/lang/pt/classic_pt.sog141
-rw-r--r--extras/source/palettes/lang/pt/hatching_pt.soh39
-rw-r--r--extras/source/palettes/lang/pt/modern_pt.sog32
-rw-r--r--extras/source/palettes/lang/pt/palette_pt.soc81
-rw-r--r--extras/source/palettes/lang/pt/styles_pt.sod11
-rw-r--r--extras/source/palettes/lang/ru/arrowhd_ru.soebin0 -> 2846 bytes-rw-r--r--extras/source/palettes/lang/ru/classic_ru.sogbin0 -> 9006 bytes-rw-r--r--extras/source/palettes/lang/ru/hatching_ru.sohbin0 -> 1300 bytes-rw-r--r--extras/source/palettes/lang/ru/modern_ru.sogbin0 -> 1598 bytes-rw-r--r--extras/source/palettes/lang/ru/palette_ru.socbin0 -> 2078 bytes-rw-r--r--extras/source/palettes/lang/ru/styles_ru.sodbin0 -> 278 bytes-rw-r--r--extras/source/palettes/lang/sk/arrowhd_sk.soe28
-rw-r--r--extras/source/palettes/lang/sk/classic_sk.sog141
-rw-r--r--extras/source/palettes/lang/sk/hatching_sk.soh39
-rw-r--r--extras/source/palettes/lang/sk/modern_sk.sog31
-rw-r--r--extras/source/palettes/lang/sk/palette_sk.soc81
-rw-r--r--extras/source/palettes/lang/sk/styles_sk.sod10
-rw-r--r--extras/source/palettes/lang/sl/arrowhd_sl.soe28
-rw-r--r--extras/source/palettes/lang/sl/classic_sl.sog141
-rw-r--r--extras/source/palettes/lang/sl/hatching_sl.soh39
-rw-r--r--extras/source/palettes/lang/sl/modern_sl.sog31
-rw-r--r--extras/source/palettes/lang/sl/palette_sl.soc81
-rw-r--r--extras/source/palettes/lang/sl/styles_sl.sod10
-rw-r--r--extras/source/palettes/lang/sv/arrowhd_sv.soe28
-rw-r--r--extras/source/palettes/lang/sv/classic_sv.sog141
-rw-r--r--extras/source/palettes/lang/sv/hatching_sv.soh39
-rw-r--r--extras/source/palettes/lang/sv/modern_sv.sog32
-rw-r--r--extras/source/palettes/lang/sv/palette_sv.soc81
-rw-r--r--extras/source/palettes/lang/sv/styles_sv.sod10
-rw-r--r--extras/source/palettes/lang/tr/arrowhd_tr.soe28
-rw-r--r--extras/source/palettes/lang/tr/classic_tr.sog141
-rw-r--r--extras/source/palettes/lang/tr/hatching_tr.soh39
-rw-r--r--extras/source/palettes/lang/tr/modern_tr.sog31
-rw-r--r--extras/source/palettes/lang/tr/palette_tr.soc81
-rw-r--r--extras/source/palettes/lang/tr/styles_tr.sod10
-rw-r--r--extras/source/palettes/lang/zh-CN/arrowhd_zh-CN.soe28
-rw-r--r--extras/source/palettes/lang/zh-CN/classic_zh-CN.sog2
-rw-r--r--extras/source/palettes/lang/zh-CN/hatching_zh-CN.soh39
-rw-r--r--extras/source/palettes/lang/zh-CN/modern_zh-CN.sog31
-rw-r--r--extras/source/palettes/lang/zh-CN/palette_zh-CN.soc81
-rw-r--r--extras/source/palettes/lang/zh-CN/styles_zh-CN.sod10
-rw-r--r--extras/source/palettes/lang/zh-TW/arrowhd_zh-TW.soe28
-rw-r--r--extras/source/palettes/lang/zh-TW/classic_zh-TW.sog2
-rw-r--r--extras/source/palettes/lang/zh-TW/hatching_zh-TW.soh39
-rw-r--r--extras/source/palettes/lang/zh-TW/modern_zh-TW.sog31
-rw-r--r--extras/source/palettes/lang/zh-TW/palette_zh-TW.soc81
-rw-r--r--extras/source/palettes/lang/zh-TW/styles_zh-TW.sod10
-rw-r--r--extras/source/palettes/makefile.mk51
-rw-r--r--extras/source/palettes/scribus.soc548
-rw-r--r--extras/source/palettes/standard.sobbin0 -> 155895 bytes-rw-r--r--extras/source/palettes/standard.soc103
-rw-r--r--extras/source/palettes/standard.sod15
-rw-r--r--extras/source/palettes/standard.soe16
-rw-r--r--extras/source/palettes/standard.sog19
-rw-r--r--extras/source/palettes/standard.soh14
-rw-r--r--extras/source/palettes/web.soc236
-rw-r--r--extras/source/shellnew/soffice.html12
-rw-r--r--extras/source/shellnew/soffice.odgbin0 -> 8428 bytes-rw-r--r--extras/source/shellnew/soffice.odpbin0 -> 9026 bytes-rw-r--r--extras/source/shellnew/soffice.odsbin0 -> 6598 bytes-rw-r--r--extras/source/shellnew/soffice.odtbin0 -> 7334 bytes-rw-r--r--extras/source/symbols/delzip1
-rw-r--r--extras/source/symbols/l_2people.bmpbin0 -> 2136 bytes-rw-r--r--extras/source/symbols/l_attention1.bmpbin0 -> 2136 bytes-rw-r--r--extras/source/symbols/l_attention2.bmpbin0 -> 2136 bytes-rw-r--r--extras/source/symbols/l_attention3.bmpbin0 -> 2136 bytes-rw-r--r--extras/source/symbols/l_candy.bmpbin0 -> 2136 bytes-rw-r--r--extras/source/symbols/l_face.bmpbin0 -> 2136 bytes-rw-r--r--extras/source/symbols/l_flower.bmpbin0 -> 2136 bytes-rw-r--r--extras/source/symbols/l_ghost.bmpbin0 -> 2136 bytes-rw-r--r--extras/source/symbols/l_halloween.bmpbin0 -> 2136 bytes-rw-r--r--extras/source/symbols/l_home.bmpbin0 -> 2136 bytes-rw-r--r--extras/source/symbols/l_lamp.bmpbin0 -> 2136 bytes-rw-r--r--extras/source/symbols/l_lock.bmpbin0 -> 2136 bytes-rw-r--r--extras/source/symbols/l_page_b.bmpbin0 -> 2136 bytes-rw-r--r--extras/source/symbols/l_page_g.bmpbin0 -> 2136 bytes-rw-r--r--extras/source/symbols/l_page_y.bmpbin0 -> 2136 bytes-rw-r--r--extras/source/symbols/l_people.bmpbin0 -> 2136 bytes-rw-r--r--extras/source/symbols/l_rose.bmpbin0 -> 2136 bytes-rw-r--r--extras/source/symbols/l_save.bmpbin0 -> 2136 bytes-rw-r--r--extras/source/symbols/l_smiley_1.bmpbin0 -> 2136 bytes-rw-r--r--extras/source/symbols/l_smiley_oh.bmpbin0 -> 2136 bytes-rw-r--r--extras/source/symbols/l_smiley_sad.bmpbin0 -> 2136 bytes-rw-r--r--extras/source/symbols/l_snow.bmpbin0 -> 2136 bytes-rw-r--r--extras/source/symbols/l_star.bmpbin0 -> 2136 bytes-rw-r--r--extras/source/symbols/makefile.mk51
-rw-r--r--extras/source/symbols/s_arrow-1.bmpbin0 -> 824 bytes-rw-r--r--extras/source/symbols/s_arrow-2.bmpbin0 -> 824 bytes-rw-r--r--extras/source/symbols/s_arrow-3.bmpbin0 -> 824 bytes-rw-r--r--extras/source/symbols/s_arrow-4.bmpbin0 -> 824 bytes-rw-r--r--extras/source/symbols/s_attention1.bmpbin0 -> 824 bytes-rw-r--r--extras/source/symbols/s_attention2.bmpbin0 -> 824 bytes-rw-r--r--extras/source/symbols/s_attention3.bmpbin0 -> 824 bytes-rw-r--r--extras/source/symbols/s_ball-b.bmpbin0 -> 824 bytes-rw-r--r--extras/source/symbols/s_ball-g.bmpbin0 -> 824 bytes-rw-r--r--extras/source/symbols/s_ball-r.bmpbin0 -> 824 bytes-rw-r--r--extras/source/symbols/s_ball.bmpbin0 -> 824 bytes-rw-r--r--extras/source/symbols/s_bug.bmpbin0 -> 824 bytes-rw-r--r--extras/source/symbols/s_clover.bmpbin0 -> 824 bytes-rw-r--r--extras/source/symbols/s_egg.bmpbin0 -> 824 bytes-rw-r--r--extras/source/symbols/s_face.bmpbin0 -> 824 bytes-rw-r--r--extras/source/symbols/s_flower.bmpbin0 -> 344 bytes-rw-r--r--extras/source/symbols/s_ghost.bmpbin0 -> 824 bytes-rw-r--r--extras/source/symbols/s_group.bmpbin0 -> 824 bytes-rw-r--r--extras/source/symbols/s_halloween.bmpbin0 -> 824 bytes-rw-r--r--extras/source/symbols/s_heart.bmpbin0 -> 824 bytes-rw-r--r--extras/source/symbols/s_home.bmpbin0 -> 824 bytes-rw-r--r--extras/source/symbols/s_lock.bmpbin0 -> 824 bytes-rw-r--r--extras/source/symbols/s_ok-g.bmpbin0 -> 824 bytes-rw-r--r--extras/source/symbols/s_ok-r.bmpbin0 -> 824 bytes-rw-r--r--extras/source/symbols/s_ok.bmpbin0 -> 824 bytes-rw-r--r--extras/source/symbols/s_page_b.bmpbin0 -> 824 bytes-rw-r--r--extras/source/symbols/s_page_g.bmpbin0 -> 824 bytes-rw-r--r--extras/source/symbols/s_page_y.bmpbin0 -> 824 bytes-rw-r--r--extras/source/symbols/s_pen-b.bmpbin0 -> 824 bytes-rw-r--r--extras/source/symbols/s_pen-g.bmpbin0 -> 824 bytes-rw-r--r--extras/source/symbols/s_pen-r.bmpbin0 -> 824 bytes-rw-r--r--extras/source/symbols/s_people.bmpbin0 -> 824 bytes-rw-r--r--extras/source/symbols/s_smily_1.bmpbin0 -> 824 bytes-rw-r--r--extras/source/symbols/s_smily_oh.bmpbin0 -> 824 bytes-rw-r--r--extras/source/symbols/s_smily_sad.bmpbin0 -> 824 bytes-rw-r--r--extras/source/symbols/s_snow.bmpbin0 -> 824 bytes-rw-r--r--extras/source/symbols/s_star.bmpbin0 -> 824 bytes-rw-r--r--extras/source/symbols/s_team.bmpbin0 -> 824 bytes-rw-r--r--extras/source/symbols/s_x-g.bmpbin0 -> 824 bytes-rw-r--r--extras/source/symbols/s_x-r.bmpbin0 -> 824 bytes-rw-r--r--extras/source/symbols/s_x.bmpbin0 -> 824 bytes-rw-r--r--extras/source/templates/lang/delzip1
-rw-r--r--extras/source/templates/lang/makefile.mk49
-rw-r--r--extras/source/templates/layout/lang/bg/lyt-cool.otpbin0 -> 10997 bytes-rw-r--r--extras/source/templates/layout/lang/bg/lyt-darkblue.otpbin0 -> 10639 bytes-rw-r--r--extras/source/templates/layout/lang/cs/lyt-cool.otpbin0 -> 10978 bytes-rw-r--r--extras/source/templates/layout/lang/cs/lyt-darkblue.otpbin0 -> 10725 bytes-rw-r--r--extras/source/templates/layout/lang/da/lyt-cool.otpbin0 -> 8697 bytes-rw-r--r--extras/source/templates/layout/lang/da/lyt-darkblue.otpbin0 -> 8699 bytes-rw-r--r--extras/source/templates/layout/lang/de/lyt-aqua.otpbin0 -> 32080 bytes-rw-r--r--extras/source/templates/layout/lang/de/lyt-blackandwhite.otpbin0 -> 197893 bytes-rw-r--r--extras/source/templates/layout/lang/de/lyt-bluegrey.otpbin0 -> 292522 bytes-rw-r--r--extras/source/templates/layout/lang/de/lyt-bluelinesgrad.otpbin0 -> 47929 bytes-rw-r--r--extras/source/templates/layout/lang/de/lyt-bluetitledown.otpbin0 -> 75992 bytes-rwxr-xr-xextras/source/templates/layout/lang/de/lyt-book.otpbin0 -> 1144700 bytes-rw-r--r--extras/source/templates/layout/lang/de/lyt-brown.otpbin0 -> 59365 bytes-rw-r--r--extras/source/templates/layout/lang/de/lyt-charglow.otpbin0 -> 85088 bytes-rw-r--r--extras/source/templates/layout/lang/de/lyt-forest.otpbin0 -> 721934 bytes-rwxr-xr-xextras/source/templates/layout/lang/de/lyt-frepa.otpbin0 -> 68215 bytes-rw-r--r--extras/source/templates/layout/lang/de/lyt-glacier.otpbin0 -> 652859 bytes-rwxr-xr-xextras/source/templates/layout/lang/de/lyt-greengradlines.otpbin0 -> 72050 bytes-rw-r--r--extras/source/templates/layout/lang/de/lyt-keyboard.otpbin0 -> 516411 bytes-rw-r--r--extras/source/templates/layout/lang/de/lyt-movwaves.otpbin0 -> 58336 bytes-rw-r--r--extras/source/templates/layout/lang/de/lyt-numdark.otpbin0 -> 311234 bytes-rw-r--r--extras/source/templates/layout/lang/de/lyt-ocean.otpbin0 -> 14038 bytes-rwxr-xr-xextras/source/templates/layout/lang/de/lyt-organic.otpbin0 -> 64341 bytes-rwxr-xr-xextras/source/templates/layout/lang/de/lyt-paper.otpbin0 -> 706360 bytes-rw-r--r--extras/source/templates/layout/lang/de/lyt-rededges.otpbin0 -> 502732 bytes-rw-r--r--extras/source/templates/layout/lang/de/lyt-roundedrect.otpbin0 -> 125420 bytes-rw-r--r--extras/source/templates/layout/lang/de/lyt-sunrise.otpbin0 -> 115779 bytes-rw-r--r--extras/source/templates/layout/lang/de/lyt-techpoly.otpbin0 -> 312486 bytes-rwxr-xr-xextras/source/templates/layout/lang/de/lyt-tunnel.otpbin0 -> 52444 bytes-rw-r--r--extras/source/templates/layout/lang/de/lyt-water.otpbin0 -> 505912 bytes-rw-r--r--extras/source/templates/layout/lang/de/lyt-wine.otpbin0 -> 652370 bytes-rw-r--r--extras/source/templates/layout/lang/delzip1
-rw-r--r--extras/source/templates/layout/lang/en-GB/lyt-cool.otpbin0 -> 10052 bytes-rw-r--r--extras/source/templates/layout/lang/en-GB/lyt-darkblue.otpbin0 -> 10429 bytes-rw-r--r--extras/source/templates/layout/lang/en-US/lyt-aqua.otpbin0 -> 32050 bytes-rw-r--r--extras/source/templates/layout/lang/en-US/lyt-blackandwhite.otpbin0 -> 198973 bytes-rw-r--r--extras/source/templates/layout/lang/en-US/lyt-bluegrey.otpbin0 -> 292498 bytes-rw-r--r--extras/source/templates/layout/lang/en-US/lyt-bluelinesgrad.otpbin0 -> 47900 bytes-rw-r--r--extras/source/templates/layout/lang/en-US/lyt-bluetitledown.otpbin0 -> 75772 bytes-rw-r--r--extras/source/templates/layout/lang/en-US/lyt-book.otpbin0 -> 1144672 bytes-rw-r--r--extras/source/templates/layout/lang/en-US/lyt-brown.otpbin0 -> 59337 bytes-rw-r--r--extras/source/templates/layout/lang/en-US/lyt-charglow.otpbin0 -> 85053 bytes-rw-r--r--extras/source/templates/layout/lang/en-US/lyt-forest.otpbin0 -> 721971 bytes-rwxr-xr-xextras/source/templates/layout/lang/en-US/lyt-frepa.otpbin0 -> 68188 bytes-rw-r--r--extras/source/templates/layout/lang/en-US/lyt-glacier.otpbin0 -> 654229 bytes-rw-r--r--extras/source/templates/layout/lang/en-US/lyt-greengradlines.otpbin0 -> 71713 bytes-rw-r--r--extras/source/templates/layout/lang/en-US/lyt-keyboard.otpbin0 -> 517689 bytes-rwxr-xr-xextras/source/templates/layout/lang/en-US/lyt-movwaves.otpbin0 -> 56012 bytes-rwxr-xr-xextras/source/templates/layout/lang/en-US/lyt-numdark.otpbin0 -> 327978 bytes-rwxr-xr-xextras/source/templates/layout/lang/en-US/lyt-ocean.otpbin0 -> 14004 bytes-rw-r--r--extras/source/templates/layout/lang/en-US/lyt-organic.otpbin0 -> 64322 bytes-rw-r--r--extras/source/templates/layout/lang/en-US/lyt-paper.otpbin0 -> 706327 bytes-rw-r--r--extras/source/templates/layout/lang/en-US/lyt-rededges.otpbin0 -> 502708 bytes-rwxr-xr-xextras/source/templates/layout/lang/en-US/lyt-roundedrect.otpbin0 -> 125387 bytes-rwxr-xr-xextras/source/templates/layout/lang/en-US/lyt-sunrise.otpbin0 -> 115754 bytes-rwxr-xr-xextras/source/templates/layout/lang/en-US/lyt-techpoly.otpbin0 -> 312460 bytes-rw-r--r--extras/source/templates/layout/lang/en-US/lyt-tunnel.otpbin0 -> 52416 bytes-rw-r--r--extras/source/templates/layout/lang/en-US/lyt-water.otpbin0 -> 507283 bytes-rw-r--r--extras/source/templates/layout/lang/en-US/lyt-wine.otpbin0 -> 652454 bytes-rw-r--r--extras/source/templates/layout/lang/es/lyt-cool.otpbin0 -> 8464 bytes-rw-r--r--extras/source/templates/layout/lang/es/lyt-darkblue.otpbin0 -> 8457 bytes-rwxr-xr-xextras/source/templates/layout/lang/eu/lyt-cool.otpbin0 -> 13206 bytes-rwxr-xr-xextras/source/templates/layout/lang/eu/lyt-darkblue.otpbin0 -> 13637 bytes-rw-r--r--extras/source/templates/layout/lang/fr/lyt-cool.otpbin0 -> 8443 bytes-rw-r--r--extras/source/templates/layout/lang/fr/lyt-darkblue.otpbin0 -> 8426 bytes-rwxr-xr-xextras/source/templates/layout/lang/hu/lyt-cool.otpbin0 -> 10314 bytes-rwxr-xr-xextras/source/templates/layout/lang/hu/lyt-darkblue.otpbin0 -> 10962 bytes-rw-r--r--extras/source/templates/layout/lang/it/lyt-cool.otpbin0 -> 8463 bytes-rw-r--r--extras/source/templates/layout/lang/it/lyt-darkblue.otpbin0 -> 8443 bytes-rw-r--r--extras/source/templates/layout/lang/ja/lyt-cool.otpbin0 -> 10390 bytes-rw-r--r--extras/source/templates/layout/lang/ja/lyt-darkblue.otpbin0 -> 10761 bytes-rw-r--r--extras/source/templates/layout/lang/km/lyt-cool.otpbin0 -> 8957 bytes-rw-r--r--extras/source/templates/layout/lang/km/lyt-darkblue.otpbin0 -> 8938 bytes-rw-r--r--extras/source/templates/layout/lang/ko/lyt-cool.otpbin0 -> 9759 bytes-rw-r--r--extras/source/templates/layout/lang/ko/lyt-darkblue.otpbin0 -> 9322 bytes-rw-r--r--extras/source/templates/layout/lang/makefile.mk49
-rw-r--r--extras/source/templates/layout/lang/nl/lyt-cool.otpbin0 -> 10136 bytes-rw-r--r--extras/source/templates/layout/lang/nl/lyt-darkblue.otpbin0 -> 10344 bytes-rw-r--r--extras/source/templates/layout/lang/pl/lyt-cool.otpbin0 -> 10606 bytes-rw-r--r--extras/source/templates/layout/lang/pl/lyt-darkblue.otpbin0 -> 10165 bytes-rw-r--r--extras/source/templates/layout/lang/pt-BR/lyt-cool.otpbin0 -> 9249 bytes-rw-r--r--extras/source/templates/layout/lang/pt-BR/lyt-darkblue.otpbin0 -> 9155 bytes-rw-r--r--extras/source/templates/layout/lang/pt/lyt-cool.otpbin0 -> 12067 bytes-rw-r--r--extras/source/templates/layout/lang/pt/lyt-darkblue.otpbin0 -> 12024 bytes-rw-r--r--extras/source/templates/layout/lang/ru/lyt-cool.otpbin0 -> 10987 bytes-rw-r--r--extras/source/templates/layout/lang/ru/lyt-darkblue.otpbin0 -> 11071 bytes-rw-r--r--extras/source/templates/layout/lang/sk/lyt-cool.otpbin0 -> 9650 bytes-rw-r--r--extras/source/templates/layout/lang/sk/lyt-darkblue.otpbin0 -> 10832 bytes-rw-r--r--extras/source/templates/layout/lang/sl/lyt-cool.otpbin0 -> 9895 bytes-rw-r--r--extras/source/templates/layout/lang/sl/lyt-darkblue.otpbin0 -> 9914 bytes-rw-r--r--extras/source/templates/layout/lang/sv/lyt-cool.otpbin0 -> 8466 bytes-rw-r--r--extras/source/templates/layout/lang/sv/lyt-darkblue.otpbin0 -> 8460 bytes-rw-r--r--extras/source/templates/layout/lang/tr/lyt-cool.otpbin0 -> 8957 bytes-rw-r--r--extras/source/templates/layout/lang/tr/lyt-darkblue.otpbin0 -> 8938 bytes-rwxr-xr-xextras/source/templates/layout/lang/vi/lyt-cool.otpbin0 -> 8957 bytes-rwxr-xr-xextras/source/templates/layout/lang/vi/lyt-darkblue.otpbin0 -> 8938 bytes-rwxr-xr-xextras/source/templates/layout/lang/vi/lyt-darkblue_new.otpbin0 -> 16607 bytes-rwxr-xr-xextras/source/templates/layout/lang/vi/lyt_cool_new.otpbin0 -> 16114 bytes-rw-r--r--extras/source/templates/layout/lang/zh-CN/lyt-cool.otpbin0 -> 9439 bytes-rw-r--r--extras/source/templates/layout/lang/zh-CN/lyt-darkblue.otpbin0 -> 9330 bytes-rw-r--r--extras/source/templates/layout/lang/zh-TW/lyt-cool.otpbin0 -> 9837 bytes-rw-r--r--extras/source/templates/layout/lang/zh-TW/lyt-darkblue.otpbin0 -> 9309 bytes-rw-r--r--extras/source/templates/presnt/lang/bg/prs-novelty.otpbin0 -> 54229 bytes-rw-r--r--extras/source/templates/presnt/lang/bg/prs-strategy.otpbin0 -> 68781 bytes-rw-r--r--extras/source/templates/presnt/lang/cs/prs-novelty.otpbin0 -> 54784 bytes-rw-r--r--extras/source/templates/presnt/lang/cs/prs-strategy.otpbin0 -> 69075 bytes-rw-r--r--extras/source/templates/presnt/lang/da/prs-novelty.otpbin0 -> 25093 bytes-rw-r--r--extras/source/templates/presnt/lang/da/prs-strategy.otpbin0 -> 66669 bytes-rw-r--r--extras/source/templates/presnt/lang/de/prs-novelty.otpbin0 -> 25464 bytes-rw-r--r--extras/source/templates/presnt/lang/de/prs-strategy.otpbin0 -> 66954 bytes-rw-r--r--extras/source/templates/presnt/lang/delzip0
-rw-r--r--extras/source/templates/presnt/lang/en-GB/prs-novelty.otpbin0 -> 54731 bytes-rw-r--r--extras/source/templates/presnt/lang/en-GB/prs-strategy.otpbin0 -> 69725 bytes-rw-r--r--extras/source/templates/presnt/lang/en-US/prs-novelty.otpbin0 -> 25355 bytes-rw-r--r--extras/source/templates/presnt/lang/en-US/prs-strategy.otpbin0 -> 66860 bytes-rw-r--r--extras/source/templates/presnt/lang/es/prs-novelty.otpbin0 -> 52743 bytes-rw-r--r--extras/source/templates/presnt/lang/es/prs-strategy.otpbin0 -> 66884 bytes-rwxr-xr-xextras/source/templates/presnt/lang/eu/prs-novelty.otpbin0 -> 58417 bytes-rwxr-xr-xextras/source/templates/presnt/lang/eu/prs-strategy.otpbin0 -> 70690 bytes-rw-r--r--extras/source/templates/presnt/lang/fr/prs-novelty.otpbin0 -> 53725 bytes-rw-r--r--extras/source/templates/presnt/lang/fr/prs-strategy.otpbin0 -> 66912 bytes-rwxr-xr-xextras/source/templates/presnt/lang/hu/prs-novelty.otpbin0 -> 54529 bytes-rwxr-xr-xextras/source/templates/presnt/lang/hu/prs-strategy.otpbin0 -> 68672 bytes-rw-r--r--extras/source/templates/presnt/lang/it/prs-novelty.otpbin0 -> 52801 bytes-rw-r--r--extras/source/templates/presnt/lang/it/prs-strategy.otpbin0 -> 66817 bytes-rw-r--r--extras/source/templates/presnt/lang/ja/prs-novelty.otpbin0 -> 25351 bytes-rw-r--r--extras/source/templates/presnt/lang/ja/prs-strategy.otpbin0 -> 68096 bytes-rw-r--r--extras/source/templates/presnt/lang/km/prs-novelty.otpbin0 -> 57314 bytes-rw-r--r--extras/source/templates/presnt/lang/km/prs-strategy.otpbin0 -> 72026 bytes-rw-r--r--extras/source/templates/presnt/lang/ko/prs-novelty.otpbin0 -> 53586 bytes-rw-r--r--extras/source/templates/presnt/lang/ko/prs-strategy.otpbin0 -> 67730 bytes-rw-r--r--extras/source/templates/presnt/lang/makefile.mk49
-rw-r--r--extras/source/templates/presnt/lang/nl/prs-novelty.otpbin0 -> 54675 bytes-rw-r--r--extras/source/templates/presnt/lang/nl/prs-strategy.otpbin0 -> 68327 bytes-rw-r--r--extras/source/templates/presnt/lang/pl/prs-novelty.otpbin0 -> 55915 bytes-rw-r--r--extras/source/templates/presnt/lang/pl/prs-strategy.otpbin0 -> 68238 bytes-rw-r--r--extras/source/templates/presnt/lang/pt-BR/prs-novelty.otpbin0 -> 53726 bytes-rw-r--r--extras/source/templates/presnt/lang/pt-BR/prs-strategy.otpbin0 -> 67814 bytes-rw-r--r--extras/source/templates/presnt/lang/pt/prs-novelty.otpbin0 -> 55945 bytes-rw-r--r--extras/source/templates/presnt/lang/pt/prs-strategy.otpbin0 -> 70038 bytes-rw-r--r--extras/source/templates/presnt/lang/ru/prs-novelty.otpbin0 -> 55520 bytes-rw-r--r--extras/source/templates/presnt/lang/ru/prs-strategy.otpbin0 -> 69043 bytes-rw-r--r--extras/source/templates/presnt/lang/sk/prs-novelty.otpbin0 -> 13106 bytes-rw-r--r--extras/source/templates/presnt/lang/sk/prs-strategy.otpbin0 -> 69109 bytes-rw-r--r--extras/source/templates/presnt/lang/sl/prs-novelty.otpbin0 -> 53634 bytes-rw-r--r--extras/source/templates/presnt/lang/sl/prs-strategy.otpbin0 -> 68143 bytes-rw-r--r--extras/source/templates/presnt/lang/sv/prs-novelty.otpbin0 -> 52672 bytes-rw-r--r--extras/source/templates/presnt/lang/sv/prs-strategy.otpbin0 -> 66833 bytes-rw-r--r--extras/source/templates/presnt/lang/tr/prs-novelty.otpbin0 -> 54712 bytes-rw-r--r--extras/source/templates/presnt/lang/tr/prs-strategy.otpbin0 -> 68733 bytes-rwxr-xr-xextras/source/templates/presnt/lang/vi/prs-novelty.otpbin0 -> 25355 bytes-rwxr-xr-xextras/source/templates/presnt/lang/vi/prs-novelty_new.otpbin0 -> 63417 bytes-rwxr-xr-xextras/source/templates/presnt/lang/vi/prs-strategy.otpbin0 -> 77744 bytes-rw-r--r--extras/source/templates/presnt/lang/zh-CN/prs-novelty.otpbin0 -> 53205 bytes-rw-r--r--extras/source/templates/presnt/lang/zh-CN/prs-strategy.otpbin0 -> 67504 bytes-rw-r--r--extras/source/templates/presnt/lang/zh-TW/prs-novelty.otpbin0 -> 53171 bytes-rw-r--r--extras/source/templates/presnt/lang/zh-TW/prs-strategy.otpbin0 -> 67522 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/bg/10grey.ottbin0 -> 11474 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/bg/1simple.ottbin0 -> 11153 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/bg/2elegant.ottbin0 -> 16078 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/bg/3modern.ottbin0 -> 11655 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/bg/4classic.ottbin0 -> 11086 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/bg/5blue.ottbin0 -> 11222 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/bg/6orange.ottbin0 -> 11759 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/bg/7red.ottbin0 -> 11614 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/bg/8green.ottbin0 -> 11363 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/bg/9colorful.ottbin0 -> 11207 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/bg/aw-10grey.ottbin0 -> 11438 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/bg/aw-1simple.ottbin0 -> 11012 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/bg/aw-2elegant.ottbin0 -> 16087 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/bg/aw-3modern.ottbin0 -> 11599 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/bg/aw-4classic.ottbin0 -> 11105 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/bg/aw-5blue.ottbin0 -> 11227 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/bg/aw-6orange.ottbin0 -> 11750 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/bg/aw-7red.ottbin0 -> 11377 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/bg/aw-8green.ottbin0 -> 11362 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/bg/aw-9colorful.ottbin0 -> 11158 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/cs/10grey.ottbin0 -> 10427 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/cs/1simple.ottbin0 -> 10232 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/cs/2elegant.ottbin0 -> 14396 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/cs/3modern.ottbin0 -> 10732 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/cs/4classic.ottbin0 -> 10193 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/cs/5blue.ottbin0 -> 10238 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/cs/6orange.ottbin0 -> 10793 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/cs/7red.ottbin0 -> 10716 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/cs/8green.ottbin0 -> 10545 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/cs/9colorful.ottbin0 -> 10192 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/cs/aw-10grey.ottbin0 -> 10427 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/cs/aw-1simple.ottbin0 -> 10232 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/cs/aw-2elegant.ottbin0 -> 14396 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/cs/aw-3modern.ottbin0 -> 10732 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/cs/aw-4classic.ottbin0 -> 10193 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/cs/aw-5blue.ottbin0 -> 10238 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/cs/aw-6orange.ottbin0 -> 10793 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/cs/aw-7red.ottbin0 -> 10716 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/cs/aw-8green.ottbin0 -> 10545 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/cs/aw-9colorful.ottbin0 -> 10192 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/da/10grey.ottbin0 -> 10031 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/da/1simple.ottbin0 -> 9789 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/da/2elegant.ottbin0 -> 13979 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/da/3modern.ottbin0 -> 10306 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/da/4classic.ottbin0 -> 9776 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/da/5blue.ottbin0 -> 9854 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/da/6orange.ottbin0 -> 10329 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/da/7red.ottbin0 -> 10274 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/da/8green.ottbin0 -> 9993 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/da/9colorful.ottbin0 -> 9821 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/da/aw-10grey.ottbin0 -> 10031 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/da/aw-1simple.ottbin0 -> 9788 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/da/aw-2elegant.ottbin0 -> 13979 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/da/aw-3modern.ottbin0 -> 10306 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/da/aw-4classic.ottbin0 -> 9776 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/da/aw-5blue.ottbin0 -> 9854 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/da/aw-6orange.ottbin0 -> 10330 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/da/aw-7red.ottbin0 -> 11424 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/da/aw-8green.ottbin0 -> 9992 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/da/aw-9colorful.ottbin0 -> 9861 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/de/10grey.ottbin0 -> 10282 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/de/1simple.ottbin0 -> 10041 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/de/2elegant.ottbin0 -> 14230 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/de/3modern.ottbin0 -> 10554 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/de/4classic.ottbin0 -> 10056 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/de/5blue.ottbin0 -> 10114 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/de/6orange.ottbin0 -> 10554 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/de/7red.ottbin0 -> 10503 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/de/8green.ottbin0 -> 10238 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/de/9colorful.ottbin0 -> 10078 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/de/aw-10grey.ottbin0 -> 10282 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/de/aw-1simple.ottbin0 -> 10041 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/de/aw-2elegant.ottbin0 -> 14230 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/de/aw-3modern.ottbin0 -> 10554 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/de/aw-4classic.ottbin0 -> 10056 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/de/aw-5blue.ottbin0 -> 10114 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/de/aw-6orange.ottbin0 -> 10554 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/de/aw-7red.ottbin0 -> 10503 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/de/aw-8green.ottbin0 -> 10238 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/de/aw-9colorful.ottbin0 -> 10078 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/delzip2
-rw-r--r--extras/source/templates/wizard/agenda/lang/en-GB/10grey.ottbin0 -> 12479 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/en-GB/1simple.ottbin0 -> 12618 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/en-GB/2elegant.ottbin0 -> 17817 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/en-GB/3modern.ottbin0 -> 13030 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/en-GB/4classic.ottbin0 -> 11232 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/en-GB/5blue.ottbin0 -> 11537 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/en-GB/6orange.ottbin0 -> 12219 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/en-GB/7red.ottbin0 -> 12256 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/en-GB/8green.ottbin0 -> 11543 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/en-GB/9colorful.ottbin0 -> 11583 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/en-GB/aw-10grey.ottbin0 -> 12416 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/en-GB/aw-1simple.ottbin0 -> 12061 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/en-GB/aw-2elegant.ottbin0 -> 16831 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/en-GB/aw-3modern.ottbin0 -> 13023 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/en-GB/aw-4classic.ottbin0 -> 11787 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/en-GB/aw-5blue.ottbin0 -> 12138 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/en-GB/aw-6orange.ottbin0 -> 12773 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/en-GB/aw-7red.ottbin0 -> 12187 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/en-GB/aw-8green.ottbin0 -> 12072 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/en-GB/aw-9colorful.ottbin0 -> 12131 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/en-US/10grey.ottbin0 -> 10240 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/en-US/1simple.ottbin0 -> 10009 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/en-US/2elegant.ottbin0 -> 14214 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/en-US/3modern.ottbin0 -> 10529 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/en-US/4classic.ottbin0 -> 10011 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/en-US/5blue.ottbin0 -> 10088 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/en-US/6orange.ottbin0 -> 10529 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/en-US/7red.ottbin0 -> 10493 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/en-US/8green.ottbin0 -> 10202 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/en-US/9colorful.ottbin0 -> 10047 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/en-US/aw-10grey.ottbin0 -> 10240 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/en-US/aw-1simple.ottbin0 -> 10009 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/en-US/aw-2elegant.ottbin0 -> 14215 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/en-US/aw-3modern.ottbin0 -> 10529 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/en-US/aw-4classic.ottbin0 -> 10011 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/en-US/aw-5blue.ottbin0 -> 10087 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/en-US/aw-6orange.ottbin0 -> 10530 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/en-US/aw-7red.ottbin0 -> 12159 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/en-US/aw-8green.ottbin0 -> 10202 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/en-US/aw-9colorful.ottbin0 -> 10087 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/es/10grey.ottbin0 -> 10132 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/es/1simple.ottbin0 -> 10132 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/es/2elegant.ottbin0 -> 11890 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/es/3modern.ottbin0 -> 10348 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/es/4classic.ottbin0 -> 9747 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/es/5blue.ottbin0 -> 9809 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/es/6orange.ottbin0 -> 10466 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/es/7red.ottbin0 -> 10515 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/es/8green.ottbin0 -> 10058 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/es/9colorful.ottbin0 -> 9853 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/es/aw-10grey.ottbin0 -> 10132 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/es/aw-1simple.ottbin0 -> 9829 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/es/aw-2elegant.ottbin0 -> 11890 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/es/aw-3modern.ottbin0 -> 10701 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/es/aw-4classic.ottbin0 -> 9747 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/es/aw-5blue.ottbin0 -> 9809 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/es/aw-6orange.ottbin0 -> 10466 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/es/aw-7red.ottbin0 -> 10132 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/es/aw-8green.ottbin0 -> 10058 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/es/aw-9colorful.ottbin0 -> 9853 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/eu/10grey.ottbin0 -> 14000 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/eu/1simple.ottbin0 -> 13888 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/eu/2elegant.ottbin0 -> 19679 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/eu/3modern.ottbin0 -> 14841 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/eu/4classic.ottbin0 -> 13315 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/eu/5blue.ottbin0 -> 13192 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/eu/6orange.ottbin0 -> 13903 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/eu/7red.ottbin0 -> 13847 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/eu/8green.ottbin0 -> 13568 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/eu/9colorful.ottbin0 -> 13214 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/eu/aw-10grey.ottbin0 -> 13957 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/eu/aw-1simple.ottbin0 -> 14397 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/eu/aw-2elegant.ottbin0 -> 18599 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/eu/aw-3modern.ottbin0 -> 14874 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/eu/aw-4classic.ottbin0 -> 13876 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/eu/aw-5blue.ottbin0 -> 13765 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/eu/aw-6orange.ottbin0 -> 14456 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/eu/aw-7red.ottbin0 -> 14196 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/eu/aw-8green.ottbin0 -> 14087 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/eu/aw-9colorful.ottbin0 -> 13735 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/fr/10grey.ottbin0 -> 10184 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/fr/1simple.ottbin0 -> 9834 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/fr/2elegant.ottbin0 -> 11884 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/fr/3modern.ottbin0 -> 10422 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/fr/4classic.ottbin0 -> 9807 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/fr/5blue.ottbin0 -> 9873 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/fr/6orange.ottbin0 -> 10435 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/fr/7red.ottbin0 -> 10170 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/fr/8green.ottbin0 -> 10129 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/fr/9colorful.ottbin0 -> 9923 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/fr/aw-10grey.ottbin0 -> 10184 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/fr/aw-1simple.ottbin0 -> 9832 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/fr/aw-2elegant.ottbin0 -> 11884 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/fr/aw-3modern.ottbin0 -> 10422 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/fr/aw-4classic.ottbin0 -> 9807 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/fr/aw-5blue.ottbin0 -> 9873 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/fr/aw-6orange.ottbin0 -> 10435 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/fr/aw-7red.ottbin0 -> 10170 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/fr/aw-8green.ottbin0 -> 10129 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/fr/aw-9colorful.ottbin0 -> 9923 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/hu/10grey.ottbin0 -> 12232 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/hu/1simple.ottbin0 -> 11858 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/hu/2elegant.ottbin0 -> 16589 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/hu/3modern.ottbin0 -> 12428 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/hu/4classic.ottbin0 -> 11631 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/hu/5blue.ottbin0 -> 11964 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/hu/6orange.ottbin0 -> 12340 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/hu/7red.ottbin0 -> 12390 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/hu/8green.ottbin0 -> 11918 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/hu/9colorful.ottbin0 -> 11942 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/hu/aw-10grey.ottbin0 -> 12232 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/hu/aw-1simple.ottbin0 -> 11858 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/hu/aw-2elegant.ottbin0 -> 16589 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/hu/aw-3modern.ottbin0 -> 12428 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/hu/aw-4classic.ottbin0 -> 11631 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/hu/aw-5blue.ottbin0 -> 11964 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/hu/aw-6orange.ottbin0 -> 12340 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/hu/aw-7red.ottbin0 -> 12390 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/hu/aw-8green.ottbin0 -> 11918 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/hu/aw-9colorful.ottbin0 -> 11942 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/it/10grey.ottbin0 -> 10174 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/it/1simple.ottbin0 -> 9822 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/it/2elegant.ottbin0 -> 11869 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/it/3modern.ottbin0 -> 10363 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/it/4classic.ottbin0 -> 9739 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/it/5blue.ottbin0 -> 9814 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/it/6orange.ottbin0 -> 10441 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/it/7red.ottbin0 -> 10155 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/it/8green.ottbin0 -> 10089 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/it/9colorful.ottbin0 -> 9851 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/it/aw-10grey.ottbin0 -> 10174 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/it/aw-1simple.ottbin0 -> 9822 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/it/aw-2elegant.ottbin0 -> 11869 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/it/aw-3modern.ottbin0 -> 10363 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/it/aw-4classic.ottbin0 -> 9739 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/it/aw-5blue.ottbin0 -> 9814 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/it/aw-6orange.ottbin0 -> 10441 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/it/aw-7red.ottbin0 -> 10684 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/it/aw-8green.ottbin0 -> 10089 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/it/aw-9colorful.ottbin0 -> 9851 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ja/10grey.ottbin0 -> 12733 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ja/1simple.ottbin0 -> 12404 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ja/2elegant.ottbin0 -> 14509 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ja/3modern.ottbin0 -> 12961 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ja/4classic.ottbin0 -> 12350 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ja/5blue.ottbin0 -> 12366 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ja/6orange.ottbin0 -> 13043 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ja/7red.ottbin0 -> 12805 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ja/8green.ottbin0 -> 12665 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ja/9colorful.ottbin0 -> 12428 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ja/aw-10grey.ottbin0 -> 12733 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ja/aw-1simple.ottbin0 -> 12404 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ja/aw-2elegant.ottbin0 -> 14509 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ja/aw-3modern.ottbin0 -> 12961 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ja/aw-4classic.ottbin0 -> 12350 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ja/aw-5blue.ottbin0 -> 12366 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ja/aw-6orange.ottbin0 -> 13043 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ja/aw-7red.ottbin0 -> 12805 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ja/aw-8green.ottbin0 -> 12665 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ja/aw-9colorful.ottbin0 -> 12428 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/km/10grey.ottbin0 -> 12935 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/km/1simple.ottbin0 -> 12448 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/km/2elegant.ottbin0 -> 17523 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/km/3modern.ottbin0 -> 13146 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/km/4classic.ottbin0 -> 12522 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/km/5blue.ottbin0 -> 12777 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/km/6orange.ottbin0 -> 13284 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/km/7red.ottbin0 -> 13099 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/km/8green.ottbin0 -> 12964 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/km/9colorful.ottbin0 -> 12807 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/km/aw-10grey.ottbin0 -> 12927 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/km/aw-1simple.ottbin0 -> 12470 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/km/aw-2elegant.ottbin0 -> 17599 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/km/aw-3modern.ottbin0 -> 13225 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/km/aw-4classic.ottbin0 -> 12542 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/km/aw-5blue.ottbin0 -> 12816 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/km/aw-6orange.ottbin0 -> 13351 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/km/aw-7red.ottbin0 -> 12882 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/km/aw-8green.ottbin0 -> 12888 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/km/aw-9colorful.ottbin0 -> 12863 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ko/10grey.ottbin0 -> 12702 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ko/1simple.ottbin0 -> 12363 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ko/2elegant.ottbin0 -> 14482 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ko/3modern.ottbin0 -> 12951 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ko/4classic.ottbin0 -> 12294 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ko/5blue.ottbin0 -> 12362 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ko/6orange.ottbin0 -> 13035 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ko/7red.ottbin0 -> 10823 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ko/8green.ottbin0 -> 12654 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ko/9colorful.ottbin0 -> 12381 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ko/aw-10grey.ottbin0 -> 12702 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ko/aw-1simple.ottbin0 -> 12363 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ko/aw-2elegant.ottbin0 -> 14482 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ko/aw-3modern.ottbin0 -> 13538 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ko/aw-4classic.ottbin0 -> 10263 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ko/aw-5blue.ottbin0 -> 12362 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ko/aw-6orange.ottbin0 -> 13035 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ko/aw-7red.ottbin0 -> 12714 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ko/aw-8green.ottbin0 -> 12654 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ko/aw-9colorful.ottbin0 -> 12381 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/makefile.mk47
-rw-r--r--extras/source/templates/wizard/agenda/lang/nl/10grey.ottbin0 -> 12008 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/nl/1simple.ottbin0 -> 11796 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/nl/2elegant.ottbin0 -> 16528 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/nl/3modern.ottbin0 -> 12231 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/nl/4classic.ottbin0 -> 11684 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/nl/5blue.ottbin0 -> 11856 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/nl/6orange.ottbin0 -> 12263 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/nl/7red.ottbin0 -> 12230 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/nl/8green.ottbin0 -> 11827 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/nl/9colorful.ottbin0 -> 11872 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/nl/aw-10grey.ottbin0 -> 12008 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/nl/aw-1simple.ottbin0 -> 11796 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/nl/aw-2elegant.ottbin0 -> 16528 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/nl/aw-3modern.ottbin0 -> 12261 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/nl/aw-4classic.ottbin0 -> 11684 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/nl/aw-5blue.ottbin0 -> 11856 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/nl/aw-6orange.ottbin0 -> 12263 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/nl/aw-7red.ottbin0 -> 12260 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/nl/aw-8green.ottbin0 -> 11857 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/nl/aw-9colorful.ottbin0 -> 11872 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pl/10grey.ottbin0 -> 11315 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pl/1simple.ottbin0 -> 12791 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pl/2elegant.ottbin0 -> 17591 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pl/3modern.ottbin0 -> 11235 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pl/4classic.ottbin0 -> 12694 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pl/5blue.ottbin0 -> 12784 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pl/6orange.ottbin0 -> 13261 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pl/7red.ottbin0 -> 11278 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pl/8green.ottbin0 -> 11109 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pl/9colorful.ottbin0 -> 12881 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pl/aw-10grey.ottbin0 -> 13107 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pl/aw-1simple.ottbin0 -> 12806 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pl/aw-2elegant.ottbin0 -> 17608 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pl/aw-3modern.ottbin0 -> 13273 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pl/aw-4classic.ottbin0 -> 12709 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pl/aw-5blue.ottbin0 -> 12799 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pl/aw-6orange.ottbin0 -> 13276 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pl/aw-7red.ottbin0 -> 13225 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pl/aw-8green.ottbin0 -> 12840 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pl/aw-9colorful.ottbin0 -> 12896 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pt-BR/10grey.ottbin0 -> 10175 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pt-BR/1simple.ottbin0 -> 9833 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pt-BR/2elegant.ottbin0 -> 11890 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pt-BR/3modern.ottbin0 -> 10395 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pt-BR/4classic.ottbin0 -> 9767 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pt-BR/5blue.ottbin0 -> 9855 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pt-BR/6orange.ottbin0 -> 10467 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pt-BR/7red.ottbin0 -> 10167 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pt-BR/8green.ottbin0 -> 10009 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pt-BR/9colorful.ottbin0 -> 9892 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pt-BR/aw-10grey.ottbin0 -> 10175 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pt-BR/aw-1simple.ottbin0 -> 9833 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pt-BR/aw-2elegant.ottbin0 -> 11890 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pt-BR/aw-3modern.ottbin0 -> 10395 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pt-BR/aw-4classic.ottbin0 -> 9767 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pt-BR/aw-5blue.ottbin0 -> 9855 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pt-BR/aw-6orange.ottbin0 -> 10467 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pt-BR/aw-7red.ottbin0 -> 10167 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pt-BR/aw-8green.ottbin0 -> 10009 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pt-BR/aw-9colorful.ottbin0 -> 9892 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pt/10grey.ottbin0 -> 12846 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pt/1simple.ottbin0 -> 12739 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pt/2elegant.ottbin0 -> 17215 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pt/3modern.ottbin0 -> 13615 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pt/4classic.ottbin0 -> 12486 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pt/5blue.ottbin0 -> 12539 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pt/6orange.ottbin0 -> 13032 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pt/7red.ottbin0 -> 12998 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pt/8green.ottbin0 -> 12685 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pt/9colorful.ottbin0 -> 12670 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pt/aw-10grey.ottbin0 -> 12846 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pt/aw-1simple.ottbin0 -> 12743 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pt/aw-2elegant.ottbin0 -> 17203 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pt/aw-3modern.ottbin0 -> 13614 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pt/aw-4classic.ottbin0 -> 12485 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pt/aw-5blue.ottbin0 -> 12539 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pt/aw-6orange.ottbin0 -> 13032 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pt/aw-7red.ottbin0 -> 12999 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pt/aw-8green.ottbin0 -> 12694 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/pt/aw-9colorful.ottbin0 -> 12671 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ru/10grey.ottbin0 -> 12347 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ru/1simple.ottbin0 -> 12120 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ru/2elegant.ottbin0 -> 16668 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ru/3modern.ottbin0 -> 13134 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ru/4classic.ottbin0 -> 11954 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ru/5blue.ottbin0 -> 12066 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ru/6orange.ottbin0 -> 12519 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ru/7red.ottbin0 -> 12502 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ru/8green.ottbin0 -> 12152 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ru/9colorful.ottbin0 -> 12217 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ru/aw-10grey.ottbin0 -> 12347 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ru/aw-1simple.ottbin0 -> 12120 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ru/aw-2elegant.ottbin0 -> 16670 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ru/aw-3modern.ottbin0 -> 13135 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ru/aw-4classic.ottbin0 -> 11954 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ru/aw-5blue.ottbin0 -> 12066 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ru/aw-6orange.ottbin0 -> 12519 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ru/aw-7red.ottbin0 -> 12501 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ru/aw-8green.ottbin0 -> 12152 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/ru/aw-9colorful.ottbin0 -> 11078 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sk/10grey.ottbin0 -> 11317 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sk/1simple.ottbin0 -> 11090 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sk/2elegant.ottbin0 -> 15913 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sk/3modern.ottbin0 -> 11699 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sk/4classic.ottbin0 -> 11077 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sk/5blue.ottbin0 -> 11138 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sk/6orange.ottbin0 -> 11662 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sk/7red.ottbin0 -> 11532 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sk/8green.ottbin0 -> 11419 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sk/9colorful.ottbin0 -> 11090 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sk/aw-10grey.ottbin0 -> 11395 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sk/aw-1simple.ottbin0 -> 11123 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sk/aw-2elegant.ottbin0 -> 15917 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sk/aw-3modern.ottbin0 -> 11704 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sk/aw-4classic.ottbin0 -> 11075 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sk/aw-5blue.ottbin0 -> 11142 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sk/aw-6orange.ottbin0 -> 11662 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sk/aw-7red.ottbin0 -> 11532 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sk/aw-8green.ottbin0 -> 11419 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sk/aw-9colorful.ottbin0 -> 11090 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sl/10grey.ottbin0 -> 10976 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sl/1simple.ottbin0 -> 10450 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sl/2elegant.ottbin0 -> 15402 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sl/3modern.ottbin0 -> 11342 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sl/4classic.ottbin0 -> 10612 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sl/5blue.ottbin0 -> 10752 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sl/6orange.ottbin0 -> 11226 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sl/7red.ottbin0 -> 11158 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sl/8green.ottbin0 -> 10914 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sl/9colorful.ottbin0 -> 10717 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sl/aw-10grey.ottbin0 -> 10946 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sl/aw-1simple.ottbin0 -> 10616 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sl/aw-2elegant.ottbin0 -> 15434 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sl/aw-3modern.ottbin0 -> 11408 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sl/aw-4classic.ottbin0 -> 10604 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sl/aw-5blue.ottbin0 -> 10731 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sl/aw-6orange.ottbin0 -> 11286 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sl/aw-7red.ottbin0 -> 11003 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sl/aw-8green.ottbin0 -> 11001 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sl/aw-9colorful.ottbin0 -> 10737 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sv/10grey.ottbin0 -> 10138 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sv/1simple.ottbin0 -> 9812 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sv/2elegant.ottbin0 -> 11839 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sv/3modern.ottbin0 -> 10410 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sv/4classic.ottbin0 -> 9722 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sv/5blue.ottbin0 -> 9798 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sv/6orange.ottbin0 -> 10389 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sv/7red.ottbin0 -> 10179 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sv/8green.ottbin0 -> 10103 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sv/9colorful.ottbin0 -> 9824 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sv/aw-10grey.ottbin0 -> 10138 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sv/aw-1simple.ottbin0 -> 9812 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sv/aw-2elegant.ottbin0 -> 11839 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sv/aw-3modern.ottbin0 -> 10410 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sv/aw-4classic.ottbin0 -> 9722 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sv/aw-5blue.ottbin0 -> 9798 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sv/aw-6orange.ottbin0 -> 10389 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sv/aw-7red.ottbin0 -> 10179 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sv/aw-8green.ottbin0 -> 10103 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/sv/aw-9colorful.ottbin0 -> 9824 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/tr/10grey.ottbin0 -> 12001 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/tr/1simple.ottbin0 -> 11939 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/tr/2elegant.ottbin0 -> 16514 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/tr/3modern.ottbin0 -> 12223 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/tr/4classic.ottbin0 -> 11486 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/tr/5blue.ottbin0 -> 11803 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/tr/6orange.ottbin0 -> 12242 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/tr/7red.ottbin0 -> 12294 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/tr/8green.ottbin0 -> 11770 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/tr/9colorful.ottbin0 -> 11806 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/tr/aw-10grey.ottbin0 -> 11998 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/tr/aw-1simple.ottbin0 -> 11748 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/tr/aw-2elegant.ottbin0 -> 16475 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/tr/aw-3modern.ottbin0 -> 12220 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/tr/aw-4classic.ottbin0 -> 11481 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/tr/aw-5blue.ottbin0 -> 11883 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/tr/aw-6orange.ottbin0 -> 12242 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/tr/aw-7red.ottbin0 -> 11772 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/tr/aw-8green.ottbin0 -> 11772 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/tr/aw-9colorful.ottbin0 -> 11853 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/vi/10grey.ottbin0 -> 12525 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/vi/1simple.ottbin0 -> 12597 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/vi/2elegant.ottbin0 -> 17620 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/vi/3modern.ottbin0 -> 12895 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/vi/4classic.ottbin0 -> 12431 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/vi/5blue.ottbin0 -> 12364 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/vi/6orange.ottbin0 -> 12871 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/vi/7red.ottbin0 -> 12743 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/vi/8green.ottbin0 -> 12661 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/vi/9colorful.ottbin0 -> 12297 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/vi/aw-10grey.ottbin0 -> 12642 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/vi/aw-1simple.ottbin0 -> 12743 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/vi/aw-2elegant.ottbin0 -> 17682 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/vi/aw-3modern.ottbin0 -> 13049 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/vi/aw-4classic.ottbin0 -> 12502 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/vi/aw-5blue.ottbin0 -> 12412 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/vi/aw-6orange.ottbin0 -> 12893 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/vi/aw-7red.ottbin0 -> 12858 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/vi/aw-8green.ottbin0 -> 12745 bytes-rwxr-xr-xextras/source/templates/wizard/agenda/lang/vi/aw-9colorful.ottbin0 -> 12315 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/zh-CN/10grey.ottbin0 -> 12735 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/zh-CN/1simple.ottbin0 -> 12394 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/zh-CN/2elegant.ottbin0 -> 16460 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/zh-CN/3modern.ottbin0 -> 12957 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/zh-CN/4classic.ottbin0 -> 12316 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/zh-CN/5blue.ottbin0 -> 12372 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/zh-CN/6orange.ottbin0 -> 13030 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/zh-CN/7red.ottbin0 -> 12780 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/zh-CN/8green.ottbin0 -> 12679 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/zh-CN/9colorful.ottbin0 -> 12406 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/zh-CN/aw-10grey.ottbin0 -> 12735 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/zh-CN/aw-1simple.ottbin0 -> 12394 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/zh-CN/aw-2elegant.ottbin0 -> 16534 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/zh-CN/aw-3modern.ottbin0 -> 12957 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/zh-CN/aw-4classic.ottbin0 -> 12316 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/zh-CN/aw-5blue.ottbin0 -> 12372 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/zh-CN/aw-6orange.ottbin0 -> 13030 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/zh-CN/aw-7red.ottbin0 -> 12780 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/zh-CN/aw-8green.ottbin0 -> 12679 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/zh-CN/aw-9colorful.ottbin0 -> 12406 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/zh-TW/10grey.ottbin0 -> 12720 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/zh-TW/1simple.ottbin0 -> 12380 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/zh-TW/2elegant.ottbin0 -> 16478 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/zh-TW/3modern.ottbin0 -> 12970 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/zh-TW/4classic.ottbin0 -> 12314 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/zh-TW/5blue.ottbin0 -> 12372 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/zh-TW/6orange.ottbin0 -> 13057 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/zh-TW/7red.ottbin0 -> 12743 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/zh-TW/8green.ottbin0 -> 12691 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/zh-TW/9colorful.ottbin0 -> 12408 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/zh-TW/aw-10grey.ottbin0 -> 12720 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/zh-TW/aw-1simple.ottbin0 -> 12380 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/zh-TW/aw-2elegant.ottbin0 -> 16559 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/zh-TW/aw-3modern.ottbin0 -> 12970 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/zh-TW/aw-4classic.ottbin0 -> 12314 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/zh-TW/aw-5blue.ottbin0 -> 12372 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/zh-TW/aw-6orange.ottbin0 -> 13057 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/zh-TW/aw-7red.ottbin0 -> 12743 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/zh-TW/aw-8green.ottbin0 -> 12691 bytes-rw-r--r--extras/source/templates/wizard/agenda/lang/zh-TW/aw-9colorful.ottbin0 -> 12408 bytes-rw-r--r--extras/source/templates/wizard/bitmap/Import_1.bmpbin0 -> 66480 bytes-rw-r--r--extras/source/templates/wizard/bitmap/Import_3.bmpbin0 -> 66480 bytes-rw-r--r--extras/source/templates/wizard/bitmap/Import_4.bmpbin0 -> 66480 bytes-rw-r--r--extras/source/templates/wizard/bitmap/MS-Import_2-1.bmpbin0 -> 66480 bytes-rw-r--r--extras/source/templates/wizard/bitmap/MS-Import_2-2.bmpbin0 -> 66480 bytes-rw-r--r--extras/source/templates/wizard/bitmap/MS-Import_2-3.bmpbin0 -> 66480 bytes-rw-r--r--extras/source/templates/wizard/bitmap/XML-Import_2-1.bmpbin0 -> 66480 bytes-rw-r--r--extras/source/templates/wizard/bitmap/XML-Import_2-2.bmpbin0 -> 66480 bytes-rw-r--r--extras/source/templates/wizard/bitmap/XML-Import_2-3.bmpbin0 -> 66480 bytes-rw-r--r--extras/source/templates/wizard/bitmap/XML-Import_2-4.bmpbin0 -> 66480 bytes-rw-r--r--extras/source/templates/wizard/bitmap/brasil.gifbin0 -> 6075 bytes-rw-r--r--extras/source/templates/wizard/bitmap/cancel_down.bmpbin0 -> 416 bytes-rw-r--r--extras/source/templates/wizard/bitmap/cancel_up.bmpbin0 -> 416 bytes-rw-r--r--extras/source/templates/wizard/bitmap/china.gifbin0 -> 10764 bytes-rw-r--r--extras/source/templates/wizard/bitmap/delzip0
-rw-r--r--extras/source/templates/wizard/bitmap/denmark.gifbin0 -> 12229 bytes-rw-r--r--extras/source/templates/wizard/bitmap/down.bmpbin0 -> 644 bytes-rw-r--r--extras/source/templates/wizard/bitmap/end.bmpbin0 -> 13190 bytes-rw-r--r--extras/source/templates/wizard/bitmap/euro_1.bmpbin0 -> 23344 bytes-rw-r--r--extras/source/templates/wizard/bitmap/euro_2.bmpbin0 -> 66480 bytes-rw-r--r--extras/source/templates/wizard/bitmap/euro_3.bmpbin0 -> 66480 bytes-rw-r--r--extras/source/templates/wizard/bitmap/finland.gifbin0 -> 9569 bytes-rw-r--r--extras/source/templates/wizard/bitmap/france.gifbin0 -> 7934 bytes-rw-r--r--extras/source/templates/wizard/bitmap/ftpconnected.gifbin0 -> 114 bytes-rw-r--r--extras/source/templates/wizard/bitmap/ftpconnecting.gifbin0 -> 166 bytes-rw-r--r--extras/source/templates/wizard/bitmap/ftperror.gifbin0 -> 123 bytes-rw-r--r--extras/source/templates/wizard/bitmap/ftpunknown.gifbin0 -> 152 bytes-rw-r--r--extras/source/templates/wizard/bitmap/germany.wmfbin0 -> 18306 bytes-rw-r--r--extras/source/templates/wizard/bitmap/greece.gifbin0 -> 13597 bytes-rw-r--r--extras/source/templates/wizard/bitmap/italia.gifbin0 -> 11213 bytes-rw-r--r--extras/source/templates/wizard/bitmap/japan.gifbin0 -> 7283 bytes-rw-r--r--extras/source/templates/wizard/bitmap/makefile.mk47
-rw-r--r--extras/source/templates/wizard/bitmap/maximize.bmpbin0 -> 822 bytes-rw-r--r--extras/source/templates/wizard/bitmap/minimize.bmpbin0 -> 726 bytes-rw-r--r--extras/source/templates/wizard/bitmap/netherlands.gifbin0 -> 8639 bytes-rw-r--r--extras/source/templates/wizard/bitmap/okay_down.bmpbin0 -> 416 bytes-rw-r--r--extras/source/templates/wizard/bitmap/okay_up.bmpbin0 -> 416 bytes-rw-r--r--extras/source/templates/wizard/bitmap/polska.gifbin0 -> 7839 bytes-rw-r--r--extras/source/templates/wizard/bitmap/portugal.gifbin0 -> 5638 bytes-rw-r--r--extras/source/templates/wizard/bitmap/report.bmpbin0 -> 15744 bytes-rw-r--r--extras/source/templates/wizard/bitmap/russia.gifbin0 -> 7711 bytes-rw-r--r--extras/source/templates/wizard/bitmap/spain.gifbin0 -> 6863 bytes-rw-r--r--extras/source/templates/wizard/bitmap/sweden.gifbin0 -> 8605 bytes-rw-r--r--extras/source/templates/wizard/bitmap/taiwan.gifbin0 -> 4900 bytes-rw-r--r--extras/source/templates/wizard/bitmap/turkey.gifbin0 -> 6000 bytes-rw-r--r--extras/source/templates/wizard/bitmap/tutorial_background.gifbin0 -> 1888 bytes-rw-r--r--extras/source/templates/wizard/bitmap/up.bmpbin0 -> 644 bytes-rw-r--r--extras/source/templates/wizard/bitmap/usa.gifbin0 -> 7208 bytes-rw-r--r--extras/source/templates/wizard/desktop/delzip1
-rw-r--r--extras/source/templates/wizard/desktop/lang/bg/html.stwbin0 -> 5305 bytes-rw-r--r--extras/source/templates/wizard/desktop/lang/bg/idxexample.odtbin0 -> 21286 bytes-rw-r--r--extras/source/templates/wizard/desktop/lang/bg/url_transfer.htm87
-rw-r--r--extras/source/templates/wizard/desktop/lang/cs/idxexample.odtbin0 -> 21272 bytes-rw-r--r--extras/source/templates/wizard/desktop/lang/cs/url_transfer.htm83
-rw-r--r--extras/source/templates/wizard/desktop/lang/da/html.stwbin0 -> 5227 bytes-rw-r--r--extras/source/templates/wizard/desktop/lang/da/idxexample.odtbin0 -> 21140 bytes-rw-r--r--extras/source/templates/wizard/desktop/lang/da/url_transfer.htm81
-rw-r--r--extras/source/templates/wizard/desktop/lang/de/html.stwbin0 -> 5335 bytes-rw-r--r--extras/source/templates/wizard/desktop/lang/de/idxexample.odtbin0 -> 21157 bytes-rw-r--r--extras/source/templates/wizard/desktop/lang/de/url_transfer.htm85
-rw-r--r--extras/source/templates/wizard/desktop/lang/delzip2
-rw-r--r--extras/source/templates/wizard/desktop/lang/en-GB/html.stwbin0 -> 6140 bytes-rw-r--r--extras/source/templates/wizard/desktop/lang/en-GB/idxexample.odtbin0 -> 21837 bytes-rw-r--r--extras/source/templates/wizard/desktop/lang/en-GB/url_transfer.htm92
-rw-r--r--extras/source/templates/wizard/desktop/lang/en-US/html.stwbin0 -> 5335 bytes-rw-r--r--extras/source/templates/wizard/desktop/lang/en-US/idxexample.odtbin0 -> 21126 bytes-rw-r--r--extras/source/templates/wizard/desktop/lang/en-US/url_transfer.htm83
-rw-r--r--extras/source/templates/wizard/desktop/lang/es/html.stwbin0 -> 5335 bytes-rw-r--r--extras/source/templates/wizard/desktop/lang/es/idxexample.odtbin0 -> 21146 bytes-rw-r--r--extras/source/templates/wizard/desktop/lang/es/url_transfer.htm85
-rwxr-xr-xextras/source/templates/wizard/desktop/lang/eu/html.stwbin0 -> 5335 bytes-rwxr-xr-xextras/source/templates/wizard/desktop/lang/eu/idxexample.odtbin0 -> 22234 bytes-rwxr-xr-xextras/source/templates/wizard/desktop/lang/eu/url_transfer.htm80
-rw-r--r--extras/source/templates/wizard/desktop/lang/fr/html.stwbin0 -> 5335 bytes-rw-r--r--extras/source/templates/wizard/desktop/lang/fr/idxexample.odtbin0 -> 21152 bytes-rw-r--r--extras/source/templates/wizard/desktop/lang/fr/url_transfer.htm86
-rwxr-xr-xextras/source/templates/wizard/desktop/lang/hu/html.stwbin0 -> 5335 bytes-rw-r--r--extras/source/templates/wizard/desktop/lang/hu/idxexample.odtbin0 -> 21196 bytes-rwxr-xr-xextras/source/templates/wizard/desktop/lang/hu/url_transfer.htm83
-rw-r--r--extras/source/templates/wizard/desktop/lang/it/html.stwbin0 -> 5335 bytes-rw-r--r--extras/source/templates/wizard/desktop/lang/it/idxexample.odtbin0 -> 21150 bytes-rw-r--r--extras/source/templates/wizard/desktop/lang/it/url_transfer.htm84
-rw-r--r--extras/source/templates/wizard/desktop/lang/ja/html.stwbin0 -> 5529 bytes-rw-r--r--extras/source/templates/wizard/desktop/lang/ja/idxexample.odtbin0 -> 24039 bytes-rw-r--r--extras/source/templates/wizard/desktop/lang/ja/url_transfer.htm100
-rw-r--r--extras/source/templates/wizard/desktop/lang/km/html.stwbin0 -> 5335 bytes-rw-r--r--extras/source/templates/wizard/desktop/lang/km/idxexample.odtbin0 -> 21643 bytes-rw-r--r--extras/source/templates/wizard/desktop/lang/km/url_transfer.htm100
-rw-r--r--extras/source/templates/wizard/desktop/lang/ko/html.stwbin0 -> 5482 bytes-rw-r--r--extras/source/templates/wizard/desktop/lang/ko/idxexample.odtbin0 -> 24086 bytes-rw-r--r--extras/source/templates/wizard/desktop/lang/ko/url_transfer.htm96
-rw-r--r--extras/source/templates/wizard/desktop/lang/makefile.mk47
-rw-r--r--extras/source/templates/wizard/desktop/lang/nl/html.stwbin0 -> 7211 bytes-rw-r--r--extras/source/templates/wizard/desktop/lang/nl/idxexample.odtbin0 -> 9361 bytes-rw-r--r--extras/source/templates/wizard/desktop/lang/nl/url_transfer.htm82
-rw-r--r--extras/source/templates/wizard/desktop/lang/pl/idxexample.odtbin0 -> 13229 bytes-rw-r--r--extras/source/templates/wizard/desktop/lang/pl/url_transfer.htm84
-rw-r--r--extras/source/templates/wizard/desktop/lang/pt-BR/html.stwbin0 -> 7141 bytes-rw-r--r--extras/source/templates/wizard/desktop/lang/pt-BR/idxexample.odtbin0 -> 21200 bytes-rw-r--r--extras/source/templates/wizard/desktop/lang/pt-BR/url_transfer.htm93
-rw-r--r--extras/source/templates/wizard/desktop/lang/pt/html.stwbin0 -> 8091 bytes-rw-r--r--extras/source/templates/wizard/desktop/lang/pt/idxexample.odtbin0 -> 9339 bytes-rw-r--r--extras/source/templates/wizard/desktop/lang/pt/url_transfer.htm83
-rw-r--r--extras/source/templates/wizard/desktop/lang/ru/idxexample.odtbin0 -> 13458 bytes-rw-r--r--extras/source/templates/wizard/desktop/lang/ru/url_transfer.htm83
-rw-r--r--extras/source/templates/wizard/desktop/lang/sk/html.stwbin0 -> 6059 bytes-rw-r--r--extras/source/templates/wizard/desktop/lang/sk/idxexample.odtbin0 -> 9399 bytes-rw-r--r--extras/source/templates/wizard/desktop/lang/sk/url_transfer.htm83
-rw-r--r--extras/source/templates/wizard/desktop/lang/sl/html.stwbin0 -> 5229 bytes-rw-r--r--extras/source/templates/wizard/desktop/lang/sl/idxexample.odtbin0 -> 21320 bytes-rw-r--r--extras/source/templates/wizard/desktop/lang/sl/idxexample.sxwbin0 -> 20352 bytes-rw-r--r--extras/source/templates/wizard/desktop/lang/sl/url_transfer.htm82
-rw-r--r--extras/source/templates/wizard/desktop/lang/sv/html.stwbin0 -> 5335 bytes-rw-r--r--extras/source/templates/wizard/desktop/lang/sv/idxexample.odtbin0 -> 21170 bytes-rw-r--r--extras/source/templates/wizard/desktop/lang/sv/url_transfer.htm83
-rwxr-xr-xextras/source/templates/wizard/desktop/lang/vi/html.stwbin0 -> 5335 bytes-rwxr-xr-xextras/source/templates/wizard/desktop/lang/vi/idxexample.odtbin0 -> 22170 bytes-rwxr-xr-xextras/source/templates/wizard/desktop/lang/vi/url_transfer.htm83
-rw-r--r--extras/source/templates/wizard/desktop/lang/zh-CN/html.stwbin0 -> 5877 bytes-rw-r--r--extras/source/templates/wizard/desktop/lang/zh-CN/idxexample.odtbin0 -> 24054 bytes-rw-r--r--extras/source/templates/wizard/desktop/lang/zh-CN/url_transfer.htm94
-rw-r--r--extras/source/templates/wizard/desktop/lang/zh-TW/html.stwbin0 -> 5930 bytes-rw-r--r--extras/source/templates/wizard/desktop/lang/zh-TW/idxexample.odtbin0 -> 24033 bytes-rw-r--r--extras/source/templates/wizard/desktop/lang/zh-TW/url_transfer.htm98
-rw-r--r--extras/source/templates/wizard/desktop/makefile.mk49
-rw-r--r--extras/source/templates/wizard/fax/lang/bg/bus-classic-pri_f.ottbin0 -> 13962 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/bg/bus-classic_f.ottbin0 -> 26328 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/bg/bus-modern-pri_f.ottbin0 -> 13895 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/bg/bus-modern_f.ottbin0 -> 26302 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/bg/pri-bottle_f.ottbin0 -> 48536 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/bg/pri-fax_f.ottbin0 -> 58797 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/bg/pri-lines_f.ottbin0 -> 12413 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/bg/pri-marine_f.ottbin0 -> 19615 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/cs/bus-classic-pri_f.ottbin0 -> 14002 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/cs/bus-classic_f.ottbin0 -> 26389 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/cs/bus-modern-pri_f.ottbin0 -> 13887 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/cs/bus-modern_f.ottbin0 -> 26295 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/cs/pri-bottle_f.ottbin0 -> 48469 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/cs/pri-fax_f.ottbin0 -> 58690 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/cs/pri-lines_f.ottbin0 -> 12506 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/cs/pri-marine_f.ottbin0 -> 19556 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/da/bus-classic-pri_f.ottbin0 -> 13247 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/da/bus-classic_f.ottbin0 -> 25604 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/da/bus-modern-pri_f.ottbin0 -> 13210 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/da/bus-modern_f.ottbin0 -> 25500 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/da/pri-bottle_f.ottbin0 -> 47905 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/da/pri-fax_f.ottbin0 -> 58181 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/da/pri-lines_f.ottbin0 -> 11991 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/da/pri-marine_f.ottbin0 -> 19005 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/de/bus-classic-pri_f.ottbin0 -> 16876 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/de/bus-classic_f.ottbin0 -> 29457 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/de/bus-modern-pri_f.ottbin0 -> 16793 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/de/bus-modern_f.ottbin0 -> 29437 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/de/pri-bottle_f.ottbin0 -> 50477 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/de/pri-fax_f.ottbin0 -> 60698 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/de/pri-lines_f.ottbin0 -> 14361 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/de/pri-marine_f.ottbin0 -> 21451 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/delzip1
-rw-r--r--extras/source/templates/wizard/fax/lang/en-GB/bus-classic-pri_f.ottbin0 -> 14266 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/en-GB/bus-classic_f.ottbin0 -> 26573 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/en-GB/bus-modern-pri_f.ottbin0 -> 14167 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/en-GB/bus-modern_f.ottbin0 -> 26458 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/en-GB/pri-bottle_f.ottbin0 -> 48319 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/en-GB/pri-fax_f.ottbin0 -> 58632 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/en-GB/pri-lines_f.ottbin0 -> 12445 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/en-GB/pri-marine_f.ottbin0 -> 19486 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/en-US/bus-classic-pri_f.ottbin0 -> 13433 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/en-US/bus-classic_f.ottbin0 -> 25806 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/en-US/bus-modern-pri_f.ottbin0 -> 13391 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/en-US/bus-modern_f.ottbin0 -> 25693 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/en-US/pri-bottle_f.ottbin0 -> 48122 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/en-US/pri-fax_f.ottbin0 -> 58398 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/en-US/pri-lines_f.ottbin0 -> 12192 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/en-US/pri-marine_f.ottbin0 -> 19214 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/es/bus-classic-pri_f.ottbin0 -> 13013 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/es/bus-classic_f.ottbin0 -> 13717 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/es/bus-modern-pri_f.ottbin0 -> 12972 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/es/bus-modern_f.ottbin0 -> 13752 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/es/pri-bottle_f.ottbin0 -> 47907 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/es/pri-fax_f.ottbin0 -> 58176 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/es/pri-lines_f.ottbin0 -> 11998 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/es/pri-marine_f.ottbin0 -> 19028 bytes-rwxr-xr-xextras/source/templates/wizard/fax/lang/eu/bus-classic-pri_f.ottbin0 -> 16130 bytes-rwxr-xr-xextras/source/templates/wizard/fax/lang/eu/bus-classic_f.ottbin0 -> 28403 bytes-rwxr-xr-xextras/source/templates/wizard/fax/lang/eu/bus-modern-pri_f.ottbin0 -> 16032 bytes-rwxr-xr-xextras/source/templates/wizard/fax/lang/eu/bus-modern_f.ottbin0 -> 28356 bytes-rwxr-xr-xextras/source/templates/wizard/fax/lang/eu/pri-bottle_f.ottbin0 -> 49792 bytes-rwxr-xr-xextras/source/templates/wizard/fax/lang/eu/pri-fax_f.ottbin0 -> 60089 bytes-rwxr-xr-xextras/source/templates/wizard/fax/lang/eu/pri-lines_f.ottbin0 -> 13823 bytes-rwxr-xr-xextras/source/templates/wizard/fax/lang/eu/pri-marine_f.ottbin0 -> 20942 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/fr/bus-classic-pri_f.ottbin0 -> 17369 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/fr/bus-classic_f.ottbin0 -> 17470 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/fr/bus-modern-pri_f.ottbin0 -> 17295 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/fr/bus-modern_f.ottbin0 -> 17445 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/fr/pri-bottle_f.ottbin0 -> 52227 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/fr/pri-fax_f.ottbin0 -> 62441 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/fr/pri-lines_f.ottbin0 -> 15884 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/fr/pri-marine_f.ottbin0 -> 23099 bytes-rwxr-xr-xextras/source/templates/wizard/fax/lang/hu/bus-classic-pri_f.ottbin0 -> 15321 bytes-rwxr-xr-xextras/source/templates/wizard/fax/lang/hu/bus-classic_f.ottbin0 -> 27827 bytes-rwxr-xr-xextras/source/templates/wizard/fax/lang/hu/bus-modern-pri_f.ottbin0 -> 15210 bytes-rwxr-xr-xextras/source/templates/wizard/fax/lang/hu/bus-modern_f.ottbin0 -> 27671 bytes-rwxr-xr-xextras/source/templates/wizard/fax/lang/hu/pri-bottle_f.ottbin0 -> 48943 bytes-rwxr-xr-xextras/source/templates/wizard/fax/lang/hu/pri-fax_f.ottbin0 -> 59204 bytes-rwxr-xr-xextras/source/templates/wizard/fax/lang/hu/pri-lines_f.ottbin0 -> 12935 bytes-rwxr-xr-xextras/source/templates/wizard/fax/lang/hu/pri-marine_f.ottbin0 -> 20155 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/it/bus-classic-pri_f.ottbin0 -> 15872 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/it/bus-classic_f.ottbin0 -> 16076 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/it/bus-modern-pri_f.ottbin0 -> 15969 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/it/bus-modern_f.ottbin0 -> 16295 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/it/pri-bottle_f.ottbin0 -> 50212 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/it/pri-fax_f.ottbin0 -> 60326 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/it/pri-lines_f.ottbin0 -> 13799 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/it/pri-marine_f.ottbin0 -> 21243 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/ja/bus-classic-pri_f.ottbin0 -> 13383 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/ja/bus-classic_f.ottbin0 -> 14053 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/ja/bus-modern-pri_f.ottbin0 -> 13319 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/ja/bus-modern_f.ottbin0 -> 14128 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/ja/pri-bottle_f.ottbin0 -> 48355 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/ja/pri-fax_f.ottbin0 -> 58538 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/ja/pri-lines_f.ottbin0 -> 12319 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/ja/pri-marine_f.ottbin0 -> 19373 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/km/bus-classic-pri_f.ottbin0 -> 15539 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/km/bus-classic_f.ottbin0 -> 27837 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/km/bus-modern-pri_f.ottbin0 -> 15478 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/km/bus-modern_f.ottbin0 -> 27743 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/km/pri-bottle_f.ottbin0 -> 49157 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/km/pri-fax_f.ottbin0 -> 59430 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/km/pri-lines_f.ottbin0 -> 13259 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/km/pri-marine_f.ottbin0 -> 20312 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/ko/bus-classic-pri_f.ottbin0 -> 13343 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/ko/bus-classic_f.ottbin0 -> 14054 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/ko/bus-modern-pri_f.ottbin0 -> 13289 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/ko/bus-modern_f.ottbin0 -> 13576 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/ko/pri-bottle_f.ottbin0 -> 12483 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/ko/pri-fax_f.ottbin0 -> 13120 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/ko/pri-lines_f.ottbin0 -> 12292 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/ko/pri-marine_f.ottbin0 -> 12449 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/makefile.mk49
-rw-r--r--extras/source/templates/wizard/fax/lang/nl/bus-classic-pri_f.ottbin0 -> 14349 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/nl/bus-classic_f.ottbin0 -> 26669 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/nl/bus-modern-pri_f.ottbin0 -> 14322 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/nl/bus-modern_f.ottbin0 -> 26624 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/nl/pri-bottle_f.ottbin0 -> 48410 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/nl/pri-fax_f.ottbin0 -> 58728 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/nl/pri-lines_f.ottbin0 -> 12554 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/nl/pri-marine_f.ottbin0 -> 19533 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/pl/bus-classic-pri_f.ottbin0 -> 15439 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/pl/bus-classic_f.ottbin0 -> 27785 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/pl/bus-modern-pri_f.ottbin0 -> 15409 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/pl/bus-modern_f.ottbin0 -> 27719 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/pl/pri-bottle_f.ottbin0 -> 49546 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/pl/pri-fax_f.ottbin0 -> 59823 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/pl/pri-lines_f.ottbin0 -> 12224 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/pl/pri-marine_f.ottbin0 -> 20644 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/pt-BR/bus-classic-pri_f.ottbin0 -> 15944 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/pt-BR/bus-classic_f.ottbin0 -> 16152 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/pt-BR/bus-modern-pri_f.ottbin0 -> 15899 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/pt-BR/bus-modern_f.ottbin0 -> 16225 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/pt-BR/pri-bottle_f.ottbin0 -> 50297 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/pt-BR/pri-fax_f.ottbin0 -> 60408 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/pt-BR/pri-lines_f.ottbin0 -> 13867 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/pt-BR/pri-marine_f.ottbin0 -> 21372 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/pt/bus-classic-pri_f.ottbin0 -> 15598 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/pt/bus-classic_f.ottbin0 -> 28016 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/pt/bus-modern-pri_f.ottbin0 -> 15585 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/pt/bus-modern_f.ottbin0 -> 27904 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/pt/pri-bottle_f.ottbin0 -> 49710 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/pt/pri-fax_f.ottbin0 -> 60034 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/pt/pri-lines_f.ottbin0 -> 13686 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/pt/pri-marine_f.ottbin0 -> 20846 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/ru/bus-classic-pri_f.ottbin0 -> 14856 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/ru/bus-classic_f.ottbin0 -> 27108 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/ru/bus-modern-pri_f.ottbin0 -> 14879 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/ru/bus-modern_f.ottbin0 -> 27165 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/ru/pri-bottle_f.ottbin0 -> 48761 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/ru/pri-fax_f.ottbin0 -> 59018 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/ru/pri-lines_f.ottbin0 -> 12763 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/ru/pri-marine_f.ottbin0 -> 19920 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/sk/bus-classic-pri_f.ottbin0 -> 14378 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/sk/bus-classic_f.ottbin0 -> 26780 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/sk/bus-modern-pri_f.ottbin0 -> 14281 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/sk/bus-modern_f.ottbin0 -> 26654 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/sk/pri-bottle_f.ottbin0 -> 48863 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/sk/pri-fax_f.ottbin0 -> 59103 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/sk/pri-lines_f.ottbin0 -> 12809 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/sk/pri-marine_f.ottbin0 -> 19790 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/sl/bus-classic-pri_f.ottbin0 -> 13578 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/sl/bus-classic_f.ottbin0 -> 26009 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/sl/bus-modern-pri_f.ottbin0 -> 13401 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/sl/bus-modern_f.ottbin0 -> 25879 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/sl/pri-bottle_f.ottbin0 -> 48301 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/sl/pri-fax_f.ottbin0 -> 58562 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/sl/pri-lines_f.ottbin0 -> 12202 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/sl/pri-marine_f.ottbin0 -> 19442 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/sv/bus-classic-pri_f.ottbin0 -> 13040 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/sv/bus-classic_f.ottbin0 -> 13727 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/sv/bus-modern-pri_f.ottbin0 -> 12969 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/sv/bus-modern_f.ottbin0 -> 13761 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/sv/pri-bottle_f.ottbin0 -> 47941 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/sv/pri-fax_f.ottbin0 -> 58188 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/sv/pri-lines_f.ottbin0 -> 12009 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/sv/pri-marine_f.ottbin0 -> 19049 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/tr/bus-classic-pri_f.ottbin0 -> 14762 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/tr/bus-classic_f.ottbin0 -> 27043 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/tr/bus-modern-pri_f.ottbin0 -> 14734 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/tr/bus-modern_f.ottbin0 -> 26979 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/tr/pri-bottle_f.ottbin0 -> 48657 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/tr/pri-fax_f.ottbin0 -> 58959 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/tr/pri-lines_f.ottbin0 -> 12676 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/tr/pri-marine_f.ottbin0 -> 19823 bytes-rwxr-xr-xextras/source/templates/wizard/fax/lang/vi/bus-classic-pri_f.ottbin0 -> 27437 bytes-rwxr-xr-xextras/source/templates/wizard/fax/lang/vi/bus-classic_f.ottbin0 -> 27438 bytes-rwxr-xr-xextras/source/templates/wizard/fax/lang/vi/bus-modern-pri_f.ottbin0 -> 14972 bytes-rwxr-xr-xextras/source/templates/wizard/fax/lang/vi/bus-modern_f.ottbin0 -> 27533 bytes-rwxr-xr-xextras/source/templates/wizard/fax/lang/vi/pri-bottle_f.ottbin0 -> 49902 bytes-rwxr-xr-xextras/source/templates/wizard/fax/lang/vi/pri-fax_f.ottbin0 -> 60112 bytes-rwxr-xr-xextras/source/templates/wizard/fax/lang/vi/pri-lines_f.ottbin0 -> 13539 bytes-rwxr-xr-xextras/source/templates/wizard/fax/lang/vi/pri-marine_f.ottbin0 -> 20782 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/zh-CN/bus-classic-pri_f.ottbin0 -> 13272 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/zh-CN/bus-classic_f.ottbin0 -> 13980 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/zh-CN/bus-modern-pri_f.ottbin0 -> 13219 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/zh-CN/bus-modern_f.ottbin0 -> 14028 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/zh-CN/pri-bottle_f.ottbin0 -> 48306 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/zh-CN/pri-fax_f.ottbin0 -> 58488 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/zh-CN/pri-lines_f.ottbin0 -> 12263 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/zh-CN/pri-marine_f.ottbin0 -> 19355 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/zh-TW/bus-classic-pri_f.ottbin0 -> 13489 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/zh-TW/bus-classic_f.ottbin0 -> 13990 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/zh-TW/bus-modern-pri_f.ottbin0 -> 13287 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/zh-TW/bus-modern_f.ottbin0 -> 14068 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/zh-TW/pri-bottle_f.ottbin0 -> 48327 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/zh-TW/pri-fax_f.ottbin0 -> 58507 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/zh-TW/pri-lines_f.ottbin0 -> 12286 bytes-rw-r--r--extras/source/templates/wizard/fax/lang/zh-TW/pri-marine_f.ottbin0 -> 19364 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/bg/bus-elegant_l.ottbin0 -> 33481 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/bg/bus-modern_l.ottbin0 -> 33305 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/bg/bus-office_l.ottbin0 -> 33302 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/bg/off-elegant_l.ottbin0 -> 15115 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/bg/off-modern_l.ottbin0 -> 14690 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/bg/off-office_l.ottbin0 -> 14392 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/bg/pri-bottle_l.ottbin0 -> 48155 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/bg/pri-mail_l.ottbin0 -> 24078 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/bg/pri-marine_l.ottbin0 -> 19317 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/bg/pri-redline_l.ottbin0 -> 12133 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/cs/bus-elegant_l.ottbin0 -> 35308 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/cs/bus-modern_l.ottbin0 -> 35774 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/cs/bus-office_l.ottbin0 -> 35420 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/cs/off-elegant_l.ottbin0 -> 16796 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/cs/off-modern_l.ottbin0 -> 16474 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/cs/off-office_l.ottbin0 -> 16099 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/cs/pri-bottle_l.ottbin0 -> 48166 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/cs/pri-mail_l.ottbin0 -> 24034 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/cs/pri-marine_l.ottbin0 -> 19287 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/cs/pri-redline_l.ottbin0 -> 12291 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/da/bus-elegant_l.ottbin0 -> 34076 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/da/bus-modern_l.ottbin0 -> 34201 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/da/bus-office_l.ottbin0 -> 34097 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/da/off-elegant_l.ottbin0 -> 15647 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/da/off-modern_l.ottbin0 -> 15245 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/da/off-office_l.ottbin0 -> 14769 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/da/pri-bottle_l.ottbin0 -> 47452 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/da/pri-mail_l.ottbin0 -> 23344 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/da/pri-marine_l.ottbin0 -> 18528 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/da/pri-redline_l.ottbin0 -> 11639 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/de/bus-elegant_l.ottbin0 -> 36299 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/de/bus-modern_l.ottbin0 -> 36496 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/de/bus-office_l.ottbin0 -> 36279 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/de/off-elegant_l.ottbin0 -> 15742 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/de/off-modern_l.ottbin0 -> 15315 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/de/off-office_l.ottbin0 -> 14789 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/de/pri-bottle_l.ottbin0 -> 48191 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/de/pri-mail_l.ottbin0 -> 24168 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/de/pri-marine_l.ottbin0 -> 19306 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/de/pri-redline_l.ottbin0 -> 12473 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/delzip1
-rw-r--r--extras/source/templates/wizard/letter/lang/en-GB/bus-elegant_l.ottbin0 -> 34203 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/en-GB/bus-modern_l.ottbin0 -> 34370 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/en-GB/bus-office_l.ottbin0 -> 34188 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/en-GB/off-elegant_l.ottbin0 -> 15692 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/en-GB/off-modern_l.ottbin0 -> 15332 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/en-GB/off-office_l.ottbin0 -> 14881 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/en-GB/pri-bottle_l.ottbin0 -> 47926 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/en-GB/pri-mail_l.ottbin0 -> 23854 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/en-GB/pri-marine_l.ottbin0 -> 19125 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/en-GB/pri-redline_l.ottbin0 -> 12148 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/en-US/bus-elegant_l.ottbin0 -> 33945 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/en-US/bus-modern_l.ottbin0 -> 34270 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/en-US/bus-office_l.ottbin0 -> 34041 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/en-US/off-elegant_l.ottbin0 -> 15629 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/en-US/off-modern_l.ottbin0 -> 15341 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/en-US/off-office_l.ottbin0 -> 14731 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/en-US/pri-bottle_l.ottbin0 -> 48260 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/en-US/pri-mail_l.ottbin0 -> 24144 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/en-US/pri-marine_l.ottbin0 -> 19326 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/en-US/pri-redline_l.ottbin0 -> 12423 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/es/bus-elegant_l.ottbin0 -> 35196 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/es/bus-modern_l.ottbin0 -> 35293 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/es/bus-office_l.ottbin0 -> 35288 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/es/off-elegant_l.ottbin0 -> 15714 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/es/off-modern_l.ottbin0 -> 15514 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/es/off-office_l.ottbin0 -> 14755 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/es/pri-bottle_l.ottbin0 -> 48283 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/es/pri-mail_l.ottbin0 -> 24241 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/es/pri-marine_l.ottbin0 -> 19443 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/es/pri-redline_l.ottbin0 -> 12544 bytes-rwxr-xr-xextras/source/templates/wizard/letter/lang/eu/bus-elegant_l.ottbin0 -> 33891 bytes-rwxr-xr-xextras/source/templates/wizard/letter/lang/eu/bus-modern_l.ottbin0 -> 33889 bytes-rwxr-xr-xextras/source/templates/wizard/letter/lang/eu/bus-office_l.ottbin0 -> 33857 bytes-rwxr-xr-xextras/source/templates/wizard/letter/lang/eu/off-elegant_l.ottbin0 -> 15864 bytes-rwxr-xr-xextras/source/templates/wizard/letter/lang/eu/off-modern_l.ottbin0 -> 15381 bytes-rwxr-xr-xextras/source/templates/wizard/letter/lang/eu/off-office_l.ottbin0 -> 15020 bytes-rwxr-xr-xextras/source/templates/wizard/letter/lang/eu/pri-bottle_l.ottbin0 -> 49465 bytes-rwxr-xr-xextras/source/templates/wizard/letter/lang/eu/pri-mail_l.ottbin0 -> 25367 bytes-rwxr-xr-xextras/source/templates/wizard/letter/lang/eu/pri-marine_l.ottbin0 -> 20630 bytes-rwxr-xr-xextras/source/templates/wizard/letter/lang/eu/pri-redline_l.ottbin0 -> 13539 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/fr/bus-elegant_l.ottbin0 -> 35087 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/fr/bus-modern_l.ottbin0 -> 35258 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/fr/bus-office_l.ottbin0 -> 35187 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/fr/off-elegant_l.ottbin0 -> 15706 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/fr/off-modern_l.ottbin0 -> 15517 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/fr/off-office_l.ottbin0 -> 14721 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/fr/pri-bottle_l.ottbin0 -> 48247 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/fr/pri-mail_l.ottbin0 -> 24192 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/fr/pri-marine_l.ottbin0 -> 19393 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/fr/pri-redline_l.ottbin0 -> 12485 bytes-rwxr-xr-xextras/source/templates/wizard/letter/lang/hu/bus-elegant_l.ottbin0 -> 28811 bytes-rwxr-xr-xextras/source/templates/wizard/letter/lang/hu/bus-modern_l.ottbin0 -> 29220 bytes-rwxr-xr-xextras/source/templates/wizard/letter/lang/hu/bus-office_l.ottbin0 -> 28943 bytes-rwxr-xr-xextras/source/templates/wizard/letter/lang/hu/off-elegant_l.ottbin0 -> 17014 bytes-rwxr-xr-xextras/source/templates/wizard/letter/lang/hu/off-modern_l.ottbin0 -> 16696 bytes-rwxr-xr-xextras/source/templates/wizard/letter/lang/hu/off-office_l.ottbin0 -> 16232 bytes-rwxr-xr-xextras/source/templates/wizard/letter/lang/hu/pri-bottle_l.ottbin0 -> 48573 bytes-rwxr-xr-xextras/source/templates/wizard/letter/lang/hu/pri-mail_l.ottbin0 -> 24608 bytes-rwxr-xr-xextras/source/templates/wizard/letter/lang/hu/pri-marine_l.ottbin0 -> 19848 bytes-rwxr-xr-xextras/source/templates/wizard/letter/lang/hu/pri-redline_l.ottbin0 -> 12724 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/it/bus-elegant_l.ottbin0 -> 35132 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/it/bus-modern_l.ottbin0 -> 35272 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/it/bus-office_l.ottbin0 -> 35239 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/it/off-elegant_l.ottbin0 -> 15685 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/it/off-modern_l.ottbin0 -> 15531 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/it/off-office_l.ottbin0 -> 14763 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/it/pri-bottle_l.ottbin0 -> 48251 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/it/pri-mail_l.ottbin0 -> 24212 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/it/pri-marine_l.ottbin0 -> 19414 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/it/pri-redline_l.ottbin0 -> 12505 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/ja/bus-elegant_l.ottbin0 -> 32851 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/ja/bus-modern_l.ottbin0 -> 32811 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/ja/bus-office_l.ottbin0 -> 32866 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/ja/off-elegant_l.ottbin0 -> 13980 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/ja/off-modern_l.ottbin0 -> 13542 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/ja/off-office_l.ottbin0 -> 13078 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/ja/pri-bottle_l.ottbin0 -> 48475 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/ja/pri-mail_l.ottbin0 -> 24376 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/ja/pri-marine_l.ottbin0 -> 19693 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/ja/pri-redline_l.ottbin0 -> 12690 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/km/bus-elegant_l.ottbin0 -> 33195 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/km/bus-modern_l.ottbin0 -> 33366 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/km/bus-office_l.ottbin0 -> 33297 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/km/off-elegant_l.ottbin0 -> 15136 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/km/off-modern_l.ottbin0 -> 14766 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/km/off-office_l.ottbin0 -> 14343 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/km/pri-bottle_l.ottbin0 -> 48755 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/km/pri-mail_l.ottbin0 -> 24707 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/km/pri-marine_l.ottbin0 -> 19963 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/km/pri-redline_l.ottbin0 -> 12974 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/ko/bus-elegant_l.ottbin0 -> 33016 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/ko/bus-modern_l.ottbin0 -> 32993 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/ko/bus-office_l.ottbin0 -> 33110 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/ko/off-elegant_l.ottbin0 -> 14164 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/ko/off-modern_l.ottbin0 -> 13716 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/ko/off-office_l.ottbin0 -> 13242 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/ko/pri-bottle_l.ottbin0 -> 48425 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/ko/pri-mail_l.ottbin0 -> 24371 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/ko/pri-marine_l.ottbin0 -> 19629 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/ko/pri-redline_l.ottbin0 -> 12664 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/makefile.mk56
-rw-r--r--extras/source/templates/wizard/letter/lang/nl/bus-elegant_l.ottbin0 -> 35129 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/nl/bus-modern_l.ottbin0 -> 35296 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/nl/bus-office_l.ottbin0 -> 35304 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/nl/off-elegant_l.ottbin0 -> 15686 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/nl/off-modern_l.ottbin0 -> 15300 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/nl/off-office_l.ottbin0 -> 14769 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/nl/pri-bottle_l.ottbin0 -> 48038 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/nl/pri-mail_l.ottbin0 -> 23992 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/nl/pri-marine_l.ottbin0 -> 19194 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/nl/pri-redline_l.ottbin0 -> 12272 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/pl/bus-elegant_l.ottbin0 -> 35321 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/pl/bus-modern_l.ottbin0 -> 35491 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/pl/bus-office_l.ottbin0 -> 35400 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/pl/off-elegant_l.ottbin0 -> 15723 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/pl/off-modern_l.ottbin0 -> 15361 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/pl/off-office_l.ottbin0 -> 14779 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/pl/pri-bottle_l.ottbin0 -> 48075 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/pl/pri-mail_l.ottbin0 -> 24013 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/pl/pri-marine_l.ottbin0 -> 19287 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/pl/pri-redline_l.ottbin0 -> 12202 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/pt-BR/bus-elegant_l.ottbin0 -> 32898 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/pt-BR/bus-modern_l.ottbin0 -> 32976 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/pt-BR/bus-office_l.ottbin0 -> 33065 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/pt-BR/off-elegant_l.ottbin0 -> 13883 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/pt-BR/off-modern_l.ottbin0 -> 13540 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/pt-BR/off-office_l.ottbin0 -> 13125 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/pt-BR/pri-bottle_l.ottbin0 -> 48298 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/pt-BR/pri-mail_l.ottbin0 -> 24283 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/pt-BR/pri-marine_l.ottbin0 -> 19487 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/pt-BR/pri-redline_l.ottbin0 -> 12581 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/pt/bus-elegant_l.ottbin0 -> 34166 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/pt/bus-modern_l.ottbin0 -> 34295 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/pt/bus-office_l.ottbin0 -> 34137 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/pt/off-elegant_l.ottbin0 -> 15666 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/pt/off-modern_l.ottbin0 -> 15271 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/pt/off-office_l.ottbin0 -> 14805 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/pt/pri-bottle_l.ottbin0 -> 49425 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/pt/pri-mail_l.ottbin0 -> 25343 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/pt/pri-marine_l.ottbin0 -> 20592 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/pt/pri-redline_l.ottbin0 -> 13497 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/ru/bus-elegant_l.ottbin0 -> 32769 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/ru/bus-modern_l.ottbin0 -> 32828 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/ru/bus-office_l.ottbin0 -> 32818 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/ru/off-elegant_l.ottbin0 -> 14608 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/ru/off-modern_l.ottbin0 -> 13644 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/ru/off-office_l.ottbin0 -> 13848 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/ru/pri-bottle_l.ottbin0 -> 48536 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/ru/pri-mail_l.ottbin0 -> 24413 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/ru/pri-marine_l.ottbin0 -> 19526 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/ru/pri-redline_l.ottbin0 -> 12568 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/sk/bus-elegant_l.ottbin0 -> 32678 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/sk/bus-modern_l.ottbin0 -> 32647 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/sk/bus-office_l.ottbin0 -> 32986 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/sk/off-elegant_l.ottbin0 -> 14478 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/sk/off-modern_l.ottbin0 -> 13966 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/sk/off-office_l.ottbin0 -> 13750 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/sk/pri-bottle_l.ottbin0 -> 48272 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/sk/pri-mail_l.ottbin0 -> 24170 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/sk/pri-marine_l.ottbin0 -> 19478 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/sk/pri-redline_l.ottbin0 -> 12598 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/sl/bus-elegant_l.ottbin0 -> 19390 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/sl/bus-modern_l.ottbin0 -> 19439 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/sl/bus-office_l.ottbin0 -> 19454 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/sl/off-elegant_l.ottbin0 -> 13944 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/sl/off-modern_l.ottbin0 -> 13501 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/sl/off-office_l.ottbin0 -> 13109 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/sl/pri-bottle_l.ottbin0 -> 47978 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/sl/pri-mail_l.ottbin0 -> 23904 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/sl/pri-marine_l.ottbin0 -> 19152 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/sl/pri-redline_l.ottbin0 -> 11951 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/sv/bus-elegant_l.ottbin0 -> 35195 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/sv/bus-modern_l.ottbin0 -> 35342 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/sv/bus-office_l.ottbin0 -> 35313 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/sv/off-elegant_l.ottbin0 -> 15768 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/sv/off-modern_l.ottbin0 -> 15347 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/sv/off-office_l.ottbin0 -> 14801 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/sv/pri-bottle_l.ottbin0 -> 48237 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/sv/pri-mail_l.ottbin0 -> 24226 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/sv/pri-marine_l.ottbin0 -> 19359 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/sv/pri-redline_l.ottbin0 -> 12522 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/tr/bus-elegant_l.ottbin0 -> 32509 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/tr/bus-modern_l.ottbin0 -> 32664 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/tr/bus-office_l.ottbin0 -> 32593 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/tr/off-elegant_l.ottbin0 -> 14371 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/tr/off-modern_l.ottbin0 -> 14067 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/tr/off-office_l.ottbin0 -> 13636 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/tr/pri-bottle_l.ottbin0 -> 48166 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/tr/pri-mail_l.ottbin0 -> 24128 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/tr/pri-marine_l.ottbin0 -> 19377 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/tr/pri-redline_l.ottbin0 -> 12290 bytes-rwxr-xr-xextras/source/templates/wizard/letter/lang/vi/bus-elegant_l.ottbin0 -> 34581 bytes-rwxr-xr-xextras/source/templates/wizard/letter/lang/vi/bus-modern_l.ottbin0 -> 34704 bytes-rwxr-xr-xextras/source/templates/wizard/letter/lang/vi/bus-office_l.ottbin0 -> 34605 bytes-rwxr-xr-xextras/source/templates/wizard/letter/lang/vi/off-elegant_l.ottbin0 -> 15318 bytes-rwxr-xr-xextras/source/templates/wizard/letter/lang/vi/off-modern_l.ottbin0 -> 14885 bytes-rwxr-xr-xextras/source/templates/wizard/letter/lang/vi/off-office_l.ottbin0 -> 14412 bytes-rwxr-xr-xextras/source/templates/wizard/letter/lang/vi/pri-bottle_l.ottbin0 -> 49511 bytes-rwxr-xr-xextras/source/templates/wizard/letter/lang/vi/pri-mail_l.ottbin0 -> 25281 bytes-rwxr-xr-xextras/source/templates/wizard/letter/lang/vi/pri-marine_l.ottbin0 -> 20477 bytes-rwxr-xr-xextras/source/templates/wizard/letter/lang/vi/pri-redline_l.ottbin0 -> 13302 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/zh-CN/bus-elegant_l.ottbin0 -> 32964 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/zh-CN/bus-modern_l.ottbin0 -> 32935 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/zh-CN/bus-office_l.ottbin0 -> 33050 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/zh-CN/off-elegant_l.ottbin0 -> 14136 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/zh-CN/off-modern_l.ottbin0 -> 13669 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/zh-CN/off-office_l.ottbin0 -> 13239 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/zh-CN/pri-bottle_l.ottbin0 -> 48484 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/zh-CN/pri-mail_l.ottbin0 -> 24392 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/zh-CN/pri-marine_l.ottbin0 -> 19680 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/zh-CN/pri-redline_l.ottbin0 -> 12693 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/zh-TW/bus-elegant_l.ottbin0 -> 32949 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/zh-TW/bus-modern_l.ottbin0 -> 32924 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/zh-TW/bus-office_l.ottbin0 -> 33059 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/zh-TW/off-elegant_l.ottbin0 -> 14096 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/zh-TW/off-modern_l.ottbin0 -> 13615 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/zh-TW/off-office_l.ottbin0 -> 13206 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/zh-TW/pri-bottle_l.ottbin0 -> 48497 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/zh-TW/pri-mail_l.ottbin0 -> 24420 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/zh-TW/pri-marine_l.ottbin0 -> 19681 bytes-rw-r--r--extras/source/templates/wizard/letter/lang/zh-TW/pri-redline_l.ottbin0 -> 12701 bytes-rw-r--r--extras/source/templates/wizard/report/lang/bg/cnt-01.ottbin0 -> 9846 bytes-rw-r--r--extras/source/templates/wizard/report/lang/bg/cnt-011.ottbin0 -> 9686 bytes-rw-r--r--extras/source/templates/wizard/report/lang/bg/cnt-012.ottbin0 -> 9640 bytes-rw-r--r--extras/source/templates/wizard/report/lang/bg/cnt-02.ottbin0 -> 9500 bytes-rw-r--r--extras/source/templates/wizard/report/lang/bg/cnt-021.ottbin0 -> 9520 bytes-rw-r--r--extras/source/templates/wizard/report/lang/bg/cnt-022.ottbin0 -> 9396 bytes-rw-r--r--extras/source/templates/wizard/report/lang/bg/cnt-03.ottbin0 -> 9951 bytes-rw-r--r--extras/source/templates/wizard/report/lang/bg/cnt-031.ottbin0 -> 10031 bytes-rw-r--r--extras/source/templates/wizard/report/lang/bg/cnt-032.ottbin0 -> 9895 bytes-rw-r--r--extras/source/templates/wizard/report/lang/bg/cnt-04.ottbin0 -> 10090 bytes-rw-r--r--extras/source/templates/wizard/report/lang/bg/cnt-041.ottbin0 -> 10224 bytes-rw-r--r--extras/source/templates/wizard/report/lang/bg/cnt-042.ottbin0 -> 9955 bytes-rw-r--r--extras/source/templates/wizard/report/lang/bg/cnt-05.ottbin0 -> 9515 bytes-rw-r--r--extras/source/templates/wizard/report/lang/bg/cnt-051.ottbin0 -> 9518 bytes-rw-r--r--extras/source/templates/wizard/report/lang/bg/cnt-052.ottbin0 -> 9561 bytes-rw-r--r--extras/source/templates/wizard/report/lang/bg/cnt-06.ottbin0 -> 9921 bytes-rw-r--r--extras/source/templates/wizard/report/lang/bg/cnt-061.ottbin0 -> 9906 bytes-rw-r--r--extras/source/templates/wizard/report/lang/bg/cnt-062.ottbin0 -> 9827 bytes-rw-r--r--extras/source/templates/wizard/report/lang/bg/cnt-default.ottbin0 -> 9657 bytes-rw-r--r--extras/source/templates/wizard/report/lang/bg/stl-01.ottbin0 -> 37043 bytes-rw-r--r--extras/source/templates/wizard/report/lang/bg/stl-02.ottbin0 -> 26176 bytes-rw-r--r--extras/source/templates/wizard/report/lang/bg/stl-03.ottbin0 -> 46632 bytes-rw-r--r--extras/source/templates/wizard/report/lang/bg/stl-04.ottbin0 -> 25021 bytes-rw-r--r--extras/source/templates/wizard/report/lang/bg/stl-05.ottbin0 -> 46527 bytes-rw-r--r--extras/source/templates/wizard/report/lang/bg/stl-06.ottbin0 -> 18351 bytes-rw-r--r--extras/source/templates/wizard/report/lang/bg/stl-07.ottbin0 -> 8793 bytes-rw-r--r--extras/source/templates/wizard/report/lang/bg/stl-08.ottbin0 -> 13368 bytes-rw-r--r--extras/source/templates/wizard/report/lang/bg/stl-09.ottbin0 -> 50528 bytes-rw-r--r--extras/source/templates/wizard/report/lang/bg/stl-default.ottbin0 -> 7693 bytes-rw-r--r--extras/source/templates/wizard/report/lang/cs/cnt-01.ottbin0 -> 8755 bytes-rw-r--r--extras/source/templates/wizard/report/lang/cs/cnt-011.ottbin0 -> 8773 bytes-rw-r--r--extras/source/templates/wizard/report/lang/cs/cnt-012.ottbin0 -> 8700 bytes-rw-r--r--extras/source/templates/wizard/report/lang/cs/cnt-02.ottbin0 -> 8648 bytes-rw-r--r--extras/source/templates/wizard/report/lang/cs/cnt-021.ottbin0 -> 8695 bytes-rw-r--r--extras/source/templates/wizard/report/lang/cs/cnt-022.ottbin0 -> 8591 bytes-rw-r--r--extras/source/templates/wizard/report/lang/cs/cnt-03.ottbin0 -> 8998 bytes-rw-r--r--extras/source/templates/wizard/report/lang/cs/cnt-031.ottbin0 -> 8994 bytes-rw-r--r--extras/source/templates/wizard/report/lang/cs/cnt-032.ottbin0 -> 8928 bytes-rw-r--r--extras/source/templates/wizard/report/lang/cs/cnt-04.ottbin0 -> 9100 bytes-rw-r--r--extras/source/templates/wizard/report/lang/cs/cnt-041.ottbin0 -> 9250 bytes-rw-r--r--extras/source/templates/wizard/report/lang/cs/cnt-042.ottbin0 -> 8949 bytes-rw-r--r--extras/source/templates/wizard/report/lang/cs/cnt-05.ottbin0 -> 8647 bytes-rw-r--r--extras/source/templates/wizard/report/lang/cs/cnt-051.ottbin0 -> 8685 bytes-rw-r--r--extras/source/templates/wizard/report/lang/cs/cnt-052.ottbin0 -> 8627 bytes-rw-r--r--extras/source/templates/wizard/report/lang/cs/cnt-06.ottbin0 -> 8911 bytes-rw-r--r--extras/source/templates/wizard/report/lang/cs/cnt-061.ottbin0 -> 8867 bytes-rw-r--r--extras/source/templates/wizard/report/lang/cs/cnt-062.ottbin0 -> 8764 bytes-rw-r--r--extras/source/templates/wizard/report/lang/cs/cnt-default.ottbin0 -> 8773 bytes-rw-r--r--extras/source/templates/wizard/report/lang/cs/stl-01.ottbin0 -> 35377 bytes-rw-r--r--extras/source/templates/wizard/report/lang/cs/stl-02.ottbin0 -> 25279 bytes-rw-r--r--extras/source/templates/wizard/report/lang/cs/stl-03.ottbin0 -> 45733 bytes-rw-r--r--extras/source/templates/wizard/report/lang/cs/stl-04.ottbin0 -> 23274 bytes-rw-r--r--extras/source/templates/wizard/report/lang/cs/stl-05.ottbin0 -> 45684 bytes-rw-r--r--extras/source/templates/wizard/report/lang/cs/stl-06.ottbin0 -> 16844 bytes-rw-r--r--extras/source/templates/wizard/report/lang/cs/stl-07.ottbin0 -> 8055 bytes-rw-r--r--extras/source/templates/wizard/report/lang/cs/stl-08.ottbin0 -> 10882 bytes-rw-r--r--extras/source/templates/wizard/report/lang/cs/stl-09.ottbin0 -> 48611 bytes-rw-r--r--extras/source/templates/wizard/report/lang/cs/stl-default.ottbin0 -> 6927 bytes-rw-r--r--extras/source/templates/wizard/report/lang/da/cnt-01.ottbin0 -> 8620 bytes-rw-r--r--extras/source/templates/wizard/report/lang/da/cnt-011.ottbin0 -> 8613 bytes-rw-r--r--extras/source/templates/wizard/report/lang/da/cnt-012.ottbin0 -> 8510 bytes-rw-r--r--extras/source/templates/wizard/report/lang/da/cnt-02.ottbin0 -> 8464 bytes-rw-r--r--extras/source/templates/wizard/report/lang/da/cnt-021.ottbin0 -> 8537 bytes-rw-r--r--extras/source/templates/wizard/report/lang/da/cnt-022.ottbin0 -> 8396 bytes-rw-r--r--extras/source/templates/wizard/report/lang/da/cnt-03.ottbin0 -> 8812 bytes-rw-r--r--extras/source/templates/wizard/report/lang/da/cnt-031.ottbin0 -> 8806 bytes-rw-r--r--extras/source/templates/wizard/report/lang/da/cnt-032.ottbin0 -> 8737 bytes-rw-r--r--extras/source/templates/wizard/report/lang/da/cnt-04.ottbin0 -> 8921 bytes-rw-r--r--extras/source/templates/wizard/report/lang/da/cnt-041.ottbin0 -> 9058 bytes-rw-r--r--extras/source/templates/wizard/report/lang/da/cnt-042.ottbin0 -> 8767 bytes-rw-r--r--extras/source/templates/wizard/report/lang/da/cnt-05.ottbin0 -> 8450 bytes-rw-r--r--extras/source/templates/wizard/report/lang/da/cnt-051.ottbin0 -> 8435 bytes-rw-r--r--extras/source/templates/wizard/report/lang/da/cnt-052.ottbin0 -> 8432 bytes-rw-r--r--extras/source/templates/wizard/report/lang/da/cnt-06.ottbin0 -> 8725 bytes-rw-r--r--extras/source/templates/wizard/report/lang/da/cnt-061.ottbin0 -> 8654 bytes-rw-r--r--extras/source/templates/wizard/report/lang/da/cnt-062.ottbin0 -> 8585 bytes-rw-r--r--extras/source/templates/wizard/report/lang/da/cnt-default.ottbin0 -> 8589 bytes-rw-r--r--extras/source/templates/wizard/report/lang/da/stl-01.ottbin0 -> 35087 bytes-rw-r--r--extras/source/templates/wizard/report/lang/da/stl-02.ottbin0 -> 24973 bytes-rw-r--r--extras/source/templates/wizard/report/lang/da/stl-03.ottbin0 -> 45383 bytes-rw-r--r--extras/source/templates/wizard/report/lang/da/stl-04.ottbin0 -> 22956 bytes-rw-r--r--extras/source/templates/wizard/report/lang/da/stl-05.ottbin0 -> 45354 bytes-rw-r--r--extras/source/templates/wizard/report/lang/da/stl-06.ottbin0 -> 16531 bytes-rw-r--r--extras/source/templates/wizard/report/lang/da/stl-07.ottbin0 -> 7616 bytes-rw-r--r--extras/source/templates/wizard/report/lang/da/stl-08.ottbin0 -> 10605 bytes-rw-r--r--extras/source/templates/wizard/report/lang/da/stl-09.ottbin0 -> 48279 bytes-rw-r--r--extras/source/templates/wizard/report/lang/da/stl-default.ottbin0 -> 6627 bytes-rw-r--r--extras/source/templates/wizard/report/lang/de/cnt-01.ottbin0 -> 8760 bytes-rw-r--r--extras/source/templates/wizard/report/lang/de/cnt-011.ottbin0 -> 8817 bytes-rw-r--r--extras/source/templates/wizard/report/lang/de/cnt-012.ottbin0 -> 8690 bytes-rw-r--r--extras/source/templates/wizard/report/lang/de/cnt-02.ottbin0 -> 8720 bytes-rw-r--r--extras/source/templates/wizard/report/lang/de/cnt-021.ottbin0 -> 8770 bytes-rw-r--r--extras/source/templates/wizard/report/lang/de/cnt-022.ottbin0 -> 8598 bytes-rw-r--r--extras/source/templates/wizard/report/lang/de/cnt-03.ottbin0 -> 9073 bytes-rw-r--r--extras/source/templates/wizard/report/lang/de/cnt-031.ottbin0 -> 9063 bytes-rw-r--r--extras/source/templates/wizard/report/lang/de/cnt-032.ottbin0 -> 8956 bytes-rw-r--r--extras/source/templates/wizard/report/lang/de/cnt-04.ottbin0 -> 9096 bytes-rw-r--r--extras/source/templates/wizard/report/lang/de/cnt-041.ottbin0 -> 9119 bytes-rw-r--r--extras/source/templates/wizard/report/lang/de/cnt-042.ottbin0 -> 8981 bytes-rw-r--r--extras/source/templates/wizard/report/lang/de/cnt-05.ottbin0 -> 8596 bytes-rw-r--r--extras/source/templates/wizard/report/lang/de/cnt-051.ottbin0 -> 8661 bytes-rw-r--r--extras/source/templates/wizard/report/lang/de/cnt-052.ottbin0 -> 8625 bytes-rw-r--r--extras/source/templates/wizard/report/lang/de/cnt-06.ottbin0 -> 8895 bytes-rw-r--r--extras/source/templates/wizard/report/lang/de/cnt-061.ottbin0 -> 8885 bytes-rw-r--r--extras/source/templates/wizard/report/lang/de/cnt-062.ottbin0 -> 8765 bytes-rw-r--r--extras/source/templates/wizard/report/lang/de/cnt-default.ottbin0 -> 8882 bytes-rw-r--r--extras/source/templates/wizard/report/lang/de/stl-01.ottbin0 -> 35301 bytes-rw-r--r--extras/source/templates/wizard/report/lang/de/stl-02.ottbin0 -> 25192 bytes-rw-r--r--extras/source/templates/wizard/report/lang/de/stl-03.ottbin0 -> 45591 bytes-rw-r--r--extras/source/templates/wizard/report/lang/de/stl-04.ottbin0 -> 22663 bytes-rw-r--r--extras/source/templates/wizard/report/lang/de/stl-05.ottbin0 -> 45398 bytes-rw-r--r--extras/source/templates/wizard/report/lang/de/stl-06.ottbin0 -> 16719 bytes-rw-r--r--extras/source/templates/wizard/report/lang/de/stl-07.ottbin0 -> 7792 bytes-rw-r--r--extras/source/templates/wizard/report/lang/de/stl-08.ottbin0 -> 11405 bytes-rw-r--r--extras/source/templates/wizard/report/lang/de/stl-09.ottbin0 -> 48416 bytes-rw-r--r--extras/source/templates/wizard/report/lang/de/stl-default.ottbin0 -> 6843 bytes-rw-r--r--extras/source/templates/wizard/report/lang/delzip2
-rw-r--r--extras/source/templates/wizard/report/lang/en-GB/cnt-01.ottbin0 -> 10277 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-GB/cnt-011.ottbin0 -> 10146 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-GB/cnt-012.ottbin0 -> 10137 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-GB/cnt-02.ottbin0 -> 10011 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-GB/cnt-021.ottbin0 -> 9997 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-GB/cnt-022.ottbin0 -> 9833 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-GB/cnt-03.ottbin0 -> 10383 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-GB/cnt-031.ottbin0 -> 10275 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-GB/cnt-032.ottbin0 -> 10174 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-GB/cnt-04.ottbin0 -> 10388 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-GB/cnt-041.ottbin0 -> 10424 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-GB/cnt-042.ottbin0 -> 10381 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-GB/cnt-05.ottbin0 -> 9725 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-GB/cnt-051.ottbin0 -> 9687 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-GB/cnt-052.ottbin0 -> 9703 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-GB/cnt-06.ottbin0 -> 10297 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-GB/cnt-061.ottbin0 -> 10196 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-GB/cnt-062.ottbin0 -> 10129 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-GB/cnt-default.ottbin0 -> 10060 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-GB/stl-01.ottbin0 -> 36755 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-GB/stl-02.ottbin0 -> 25830 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-GB/stl-03.ottbin0 -> 46351 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-GB/stl-04.ottbin0 -> 24172 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-GB/stl-05.ottbin0 -> 46261 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-GB/stl-06.ottbin0 -> 18156 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-GB/stl-07.ottbin0 -> 9121 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-GB/stl-08.ottbin0 -> 12482 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-GB/stl-09.ottbin0 -> 50141 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-GB/stl-default.ottbin0 -> 7561 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-US/cnt-01.ottbin0 -> 8813 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-US/cnt-011.ottbin0 -> 8803 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-US/cnt-012.ottbin0 -> 8707 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-US/cnt-02.ottbin0 -> 8666 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-US/cnt-021.ottbin0 -> 8738 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-US/cnt-022.ottbin0 -> 8594 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-US/cnt-03.ottbin0 -> 9003 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-US/cnt-031.ottbin0 -> 8999 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-US/cnt-032.ottbin0 -> 8931 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-US/cnt-04.ottbin0 -> 9119 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-US/cnt-041.ottbin0 -> 9264 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-US/cnt-042.ottbin0 -> 8959 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-US/cnt-05.ottbin0 -> 8651 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-US/cnt-051.ottbin0 -> 8635 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-US/cnt-052.ottbin0 -> 8633 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-US/cnt-06.ottbin0 -> 8900 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-US/cnt-061.ottbin0 -> 8831 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-US/cnt-062.ottbin0 -> 8763 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-US/cnt-default.ottbin0 -> 8777 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-US/stl-01.ottbin0 -> 35361 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-US/stl-02.ottbin0 -> 25203 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-US/stl-03.ottbin0 -> 45630 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-US/stl-04.ottbin0 -> 23224 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-US/stl-05.ottbin0 -> 45601 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-US/stl-06.ottbin0 -> 16824 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-US/stl-07.ottbin0 -> 7951 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-US/stl-08.ottbin0 -> 10871 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-US/stl-09.ottbin0 -> 48567 bytes-rw-r--r--extras/source/templates/wizard/report/lang/en-US/stl-default.ottbin0 -> 6857 bytes-rw-r--r--extras/source/templates/wizard/report/lang/es/cnt-01.ottbin0 -> 8764 bytes-rw-r--r--extras/source/templates/wizard/report/lang/es/cnt-011.ottbin0 -> 8824 bytes-rw-r--r--extras/source/templates/wizard/report/lang/es/cnt-012.ottbin0 -> 8698 bytes-rw-r--r--extras/source/templates/wizard/report/lang/es/cnt-02.ottbin0 -> 8727 bytes-rw-r--r--extras/source/templates/wizard/report/lang/es/cnt-021.ottbin0 -> 8776 bytes-rw-r--r--extras/source/templates/wizard/report/lang/es/cnt-022.ottbin0 -> 8611 bytes-rw-r--r--extras/source/templates/wizard/report/lang/es/cnt-03.ottbin0 -> 9080 bytes-rw-r--r--extras/source/templates/wizard/report/lang/es/cnt-031.ottbin0 -> 9067 bytes-rw-r--r--extras/source/templates/wizard/report/lang/es/cnt-032.ottbin0 -> 8966 bytes-rw-r--r--extras/source/templates/wizard/report/lang/es/cnt-04.ottbin0 -> 9104 bytes-rw-r--r--extras/source/templates/wizard/report/lang/es/cnt-041.ottbin0 -> 9128 bytes-rw-r--r--extras/source/templates/wizard/report/lang/es/cnt-042.ottbin0 -> 8998 bytes-rw-r--r--extras/source/templates/wizard/report/lang/es/cnt-05.ottbin0 -> 8612 bytes-rw-r--r--extras/source/templates/wizard/report/lang/es/cnt-051.ottbin0 -> 8664 bytes-rw-r--r--extras/source/templates/wizard/report/lang/es/cnt-052.ottbin0 -> 8633 bytes-rw-r--r--extras/source/templates/wizard/report/lang/es/cnt-06.ottbin0 -> 8887 bytes-rw-r--r--extras/source/templates/wizard/report/lang/es/cnt-061.ottbin0 -> 8877 bytes-rw-r--r--extras/source/templates/wizard/report/lang/es/cnt-062.ottbin0 -> 8766 bytes-rw-r--r--extras/source/templates/wizard/report/lang/es/cnt-default.ottbin0 -> 8892 bytes-rw-r--r--extras/source/templates/wizard/report/lang/es/stl-01.ottbin0 -> 38158 bytes-rw-r--r--extras/source/templates/wizard/report/lang/es/stl-02.ottbin0 -> 25281 bytes-rw-r--r--extras/source/templates/wizard/report/lang/es/stl-03.ottbin0 -> 47640 bytes-rw-r--r--extras/source/templates/wizard/report/lang/es/stl-04.ottbin0 -> 22734 bytes-rw-r--r--extras/source/templates/wizard/report/lang/es/stl-05.ottbin0 -> 47395 bytes-rw-r--r--extras/source/templates/wizard/report/lang/es/stl-06.ottbin0 -> 16709 bytes-rw-r--r--extras/source/templates/wizard/report/lang/es/stl-07.ottbin0 -> 7891 bytes-rw-r--r--extras/source/templates/wizard/report/lang/es/stl-08.ottbin0 -> 11440 bytes-rw-r--r--extras/source/templates/wizard/report/lang/es/stl-09.ottbin0 -> 51540 bytes-rw-r--r--extras/source/templates/wizard/report/lang/es/stl-default.ottbin0 -> 6941 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/eu/cnt-01.ottbin0 -> 11556 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/eu/cnt-011.ottbin0 -> 11494 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/eu/cnt-012.ottbin0 -> 11496 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/eu/cnt-02.ottbin0 -> 11432 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/eu/cnt-021.ottbin0 -> 11541 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/eu/cnt-022.ottbin0 -> 11427 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/eu/cnt-03.ottbin0 -> 11588 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/eu/cnt-031.ottbin0 -> 11591 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/eu/cnt-032.ottbin0 -> 11602 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/eu/cnt-04.ottbin0 -> 11792 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/eu/cnt-041.ottbin0 -> 11966 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/eu/cnt-042.ottbin0 -> 11725 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/eu/cnt-05.ottbin0 -> 11048 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/eu/cnt-051.ottbin0 -> 10985 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/eu/cnt-052.ottbin0 -> 11106 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/eu/cnt-06.ottbin0 -> 11808 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/eu/cnt-061.ottbin0 -> 11638 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/eu/cnt-062.ottbin0 -> 11663 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/eu/cnt-default.ottbin0 -> 11590 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/eu/stl-01.ottbin0 -> 39568 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/eu/stl-02.ottbin0 -> 27248 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/eu/stl-03.ottbin0 -> 47648 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/eu/stl-04.ottbin0 -> 25668 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/eu/stl-05.ottbin0 -> 47578 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/eu/stl-06.ottbin0 -> 19489 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/eu/stl-07.ottbin0 -> 9840 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/eu/stl-08.ottbin0 -> 13631 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/eu/stl-09.ottbin0 -> 51465 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/eu/stl-10.ottbin0 -> 38022 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/eu/stl-default.ottbin0 -> 8818 bytes-rw-r--r--extras/source/templates/wizard/report/lang/fr/cnt-01.ottbin0 -> 8761 bytes-rw-r--r--extras/source/templates/wizard/report/lang/fr/cnt-011.ottbin0 -> 8813 bytes-rw-r--r--extras/source/templates/wizard/report/lang/fr/cnt-012.ottbin0 -> 8699 bytes-rw-r--r--extras/source/templates/wizard/report/lang/fr/cnt-02.ottbin0 -> 8729 bytes-rw-r--r--extras/source/templates/wizard/report/lang/fr/cnt-021.ottbin0 -> 8786 bytes-rw-r--r--extras/source/templates/wizard/report/lang/fr/cnt-022.ottbin0 -> 8611 bytes-rw-r--r--extras/source/templates/wizard/report/lang/fr/cnt-03.ottbin0 -> 9076 bytes-rw-r--r--extras/source/templates/wizard/report/lang/fr/cnt-031.ottbin0 -> 9057 bytes-rw-r--r--extras/source/templates/wizard/report/lang/fr/cnt-032.ottbin0 -> 8968 bytes-rw-r--r--extras/source/templates/wizard/report/lang/fr/cnt-04.ottbin0 -> 9101 bytes-rw-r--r--extras/source/templates/wizard/report/lang/fr/cnt-041.ottbin0 -> 9116 bytes-rw-r--r--extras/source/templates/wizard/report/lang/fr/cnt-042.ottbin0 -> 8999 bytes-rw-r--r--extras/source/templates/wizard/report/lang/fr/cnt-05.ottbin0 -> 8608 bytes-rw-r--r--extras/source/templates/wizard/report/lang/fr/cnt-051.ottbin0 -> 8651 bytes-rw-r--r--extras/source/templates/wizard/report/lang/fr/cnt-052.ottbin0 -> 8633 bytes-rw-r--r--extras/source/templates/wizard/report/lang/fr/cnt-06.ottbin0 -> 8887 bytes-rw-r--r--extras/source/templates/wizard/report/lang/fr/cnt-061.ottbin0 -> 8868 bytes-rw-r--r--extras/source/templates/wizard/report/lang/fr/cnt-062.ottbin0 -> 8769 bytes-rw-r--r--extras/source/templates/wizard/report/lang/fr/cnt-default.ottbin0 -> 8888 bytes-rw-r--r--extras/source/templates/wizard/report/lang/fr/stl-01.ottbin0 -> 35384 bytes-rw-r--r--extras/source/templates/wizard/report/lang/fr/stl-02.ottbin0 -> 25300 bytes-rw-r--r--extras/source/templates/wizard/report/lang/fr/stl-03.ottbin0 -> 45705 bytes-rw-r--r--extras/source/templates/wizard/report/lang/fr/stl-04.ottbin0 -> 22729 bytes-rw-r--r--extras/source/templates/wizard/report/lang/fr/stl-05.ottbin0 -> 45480 bytes-rw-r--r--extras/source/templates/wizard/report/lang/fr/stl-06.ottbin0 -> 16730 bytes-rw-r--r--extras/source/templates/wizard/report/lang/fr/stl-07.ottbin0 -> 7828 bytes-rw-r--r--extras/source/templates/wizard/report/lang/fr/stl-08.ottbin0 -> 11422 bytes-rw-r--r--extras/source/templates/wizard/report/lang/fr/stl-09.ottbin0 -> 48481 bytes-rw-r--r--extras/source/templates/wizard/report/lang/fr/stl-default.ottbin0 -> 6912 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/hu/cnt-01.ottbin0 -> 9838 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/hu/cnt-011.ottbin0 -> 9870 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/hu/cnt-012.ottbin0 -> 9902 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/hu/cnt-02.ottbin0 -> 9612 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/hu/cnt-021.ottbin0 -> 9589 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/hu/cnt-022.ottbin0 -> 9601 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/hu/cnt-03.ottbin0 -> 10121 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/hu/cnt-031.ottbin0 -> 10136 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/hu/cnt-032.ottbin0 -> 10102 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/hu/cnt-04.ottbin0 -> 10161 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/hu/cnt-041.ottbin0 -> 10318 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/hu/cnt-042.ottbin0 -> 10170 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/hu/cnt-05.ottbin0 -> 9565 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/hu/cnt-051.ottbin0 -> 9577 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/hu/cnt-052.ottbin0 -> 9624 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/hu/cnt-06.ottbin0 -> 10151 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/hu/cnt-061.ottbin0 -> 10151 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/hu/cnt-062.ottbin0 -> 10182 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/hu/cnt-default.ottbin0 -> 9779 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/hu/stl-01.ottbin0 -> 36754 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/hu/stl-02.ottbin0 -> 26061 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/hu/stl-03.ottbin0 -> 46450 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/hu/stl-04.ottbin0 -> 24626 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/hu/stl-05.ottbin0 -> 46432 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/hu/stl-06.ottbin0 -> 19218 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/hu/stl-07.ottbin0 -> 9398 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/hu/stl-08.ottbin0 -> 11850 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/hu/stl-09.ottbin0 -> 50209 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/hu/stl-default.ottbin0 -> 7774 bytes-rw-r--r--extras/source/templates/wizard/report/lang/it/cnt-01.ottbin0 -> 8766 bytes-rw-r--r--extras/source/templates/wizard/report/lang/it/cnt-011.ottbin0 -> 8818 bytes-rw-r--r--extras/source/templates/wizard/report/lang/it/cnt-012.ottbin0 -> 8696 bytes-rw-r--r--extras/source/templates/wizard/report/lang/it/cnt-02.ottbin0 -> 8727 bytes-rw-r--r--extras/source/templates/wizard/report/lang/it/cnt-021.ottbin0 -> 8765 bytes-rw-r--r--extras/source/templates/wizard/report/lang/it/cnt-022.ottbin0 -> 8603 bytes-rw-r--r--extras/source/templates/wizard/report/lang/it/cnt-03.ottbin0 -> 9082 bytes-rw-r--r--extras/source/templates/wizard/report/lang/it/cnt-031.ottbin0 -> 9063 bytes-rw-r--r--extras/source/templates/wizard/report/lang/it/cnt-032.ottbin0 -> 8966 bytes-rw-r--r--extras/source/templates/wizard/report/lang/it/cnt-04.ottbin0 -> 9103 bytes-rw-r--r--extras/source/templates/wizard/report/lang/it/cnt-041.ottbin0 -> 9121 bytes-rw-r--r--extras/source/templates/wizard/report/lang/it/cnt-042.ottbin0 -> 8995 bytes-rw-r--r--extras/source/templates/wizard/report/lang/it/cnt-05.ottbin0 -> 8612 bytes-rw-r--r--extras/source/templates/wizard/report/lang/it/cnt-051.ottbin0 -> 8657 bytes-rw-r--r--extras/source/templates/wizard/report/lang/it/cnt-052.ottbin0 -> 8628 bytes-rw-r--r--extras/source/templates/wizard/report/lang/it/cnt-06.ottbin0 -> 8886 bytes-rw-r--r--extras/source/templates/wizard/report/lang/it/cnt-061.ottbin0 -> 8868 bytes-rw-r--r--extras/source/templates/wizard/report/lang/it/cnt-062.ottbin0 -> 8760 bytes-rw-r--r--extras/source/templates/wizard/report/lang/it/cnt-default.ottbin0 -> 8888 bytes-rw-r--r--extras/source/templates/wizard/report/lang/it/stl-01.ottbin0 -> 38086 bytes-rw-r--r--extras/source/templates/wizard/report/lang/it/stl-02.ottbin0 -> 25263 bytes-rw-r--r--extras/source/templates/wizard/report/lang/it/stl-03.ottbin0 -> 47639 bytes-rw-r--r--extras/source/templates/wizard/report/lang/it/stl-04.ottbin0 -> 22725 bytes-rw-r--r--extras/source/templates/wizard/report/lang/it/stl-05.ottbin0 -> 47385 bytes-rw-r--r--extras/source/templates/wizard/report/lang/it/stl-06.ottbin0 -> 16692 bytes-rw-r--r--extras/source/templates/wizard/report/lang/it/stl-07.ottbin0 -> 7857 bytes-rw-r--r--extras/source/templates/wizard/report/lang/it/stl-08.ottbin0 -> 11498 bytes-rw-r--r--extras/source/templates/wizard/report/lang/it/stl-09.ottbin0 -> 51470 bytes-rw-r--r--extras/source/templates/wizard/report/lang/it/stl-default.ottbin0 -> 6923 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ja/cnt-01.ottbin0 -> 11484 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ja/cnt-011.ottbin0 -> 11505 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ja/cnt-012.ottbin0 -> 11384 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ja/cnt-02.ottbin0 -> 11448 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ja/cnt-021.ottbin0 -> 11509 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ja/cnt-022.ottbin0 -> 11334 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ja/cnt-03.ottbin0 -> 11772 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ja/cnt-031.ottbin0 -> 11805 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ja/cnt-032.ottbin0 -> 11647 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ja/cnt-04.ottbin0 -> 11826 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ja/cnt-041.ottbin0 -> 11850 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ja/cnt-042.ottbin0 -> 11683 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ja/cnt-05.ottbin0 -> 11353 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ja/cnt-051.ottbin0 -> 11557 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ja/cnt-052.ottbin0 -> 11508 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ja/cnt-06.ottbin0 -> 11620 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ja/cnt-061.ottbin0 -> 11645 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ja/cnt-062.ottbin0 -> 11510 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ja/cnt-default.ottbin0 -> 11693 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ja/stl-01.ottbin0 -> 41044 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ja/stl-02.ottbin0 -> 28184 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ja/stl-03.ottbin0 -> 50532 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ja/stl-04.ottbin0 -> 25686 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ja/stl-05.ottbin0 -> 50380 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ja/stl-06.ottbin0 -> 19615 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ja/stl-07.ottbin0 -> 10746 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ja/stl-08.ottbin0 -> 14405 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ja/stl-09.ottbin0 -> 54354 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ja/stl-default.ottbin0 -> 9831 bytes-rw-r--r--extras/source/templates/wizard/report/lang/km/cnt-01.ottbin0 -> 11316 bytes-rw-r--r--extras/source/templates/wizard/report/lang/km/cnt-011.ottbin0 -> 11255 bytes-rw-r--r--extras/source/templates/wizard/report/lang/km/cnt-012.ottbin0 -> 11240 bytes-rw-r--r--extras/source/templates/wizard/report/lang/km/cnt-02.ottbin0 -> 11144 bytes-rw-r--r--extras/source/templates/wizard/report/lang/km/cnt-021.ottbin0 -> 11207 bytes-rw-r--r--extras/source/templates/wizard/report/lang/km/cnt-022.ottbin0 -> 11074 bytes-rw-r--r--extras/source/templates/wizard/report/lang/km/cnt-03.ottbin0 -> 11699 bytes-rw-r--r--extras/source/templates/wizard/report/lang/km/cnt-031.ottbin0 -> 11457 bytes-rw-r--r--extras/source/templates/wizard/report/lang/km/cnt-032.ottbin0 -> 11599 bytes-rw-r--r--extras/source/templates/wizard/report/lang/km/cnt-04.ottbin0 -> 11751 bytes-rw-r--r--extras/source/templates/wizard/report/lang/km/cnt-041.ottbin0 -> 11864 bytes-rw-r--r--extras/source/templates/wizard/report/lang/km/cnt-042.ottbin0 -> 11603 bytes-rw-r--r--extras/source/templates/wizard/report/lang/km/cnt-05.ottbin0 -> 11084 bytes-rw-r--r--extras/source/templates/wizard/report/lang/km/cnt-051.ottbin0 -> 10950 bytes-rw-r--r--extras/source/templates/wizard/report/lang/km/cnt-052.ottbin0 -> 11132 bytes-rw-r--r--extras/source/templates/wizard/report/lang/km/cnt-06.ottbin0 -> 11457 bytes-rw-r--r--extras/source/templates/wizard/report/lang/km/cnt-061.ottbin0 -> 11331 bytes-rw-r--r--extras/source/templates/wizard/report/lang/km/cnt-062.ottbin0 -> 11383 bytes-rw-r--r--extras/source/templates/wizard/report/lang/km/cnt-default.ottbin0 -> 11264 bytes-rw-r--r--extras/source/templates/wizard/report/lang/km/stl-01.ottbin0 -> 37328 bytes-rw-r--r--extras/source/templates/wizard/report/lang/km/stl-02.ottbin0 -> 26732 bytes-rw-r--r--extras/source/templates/wizard/report/lang/km/stl-03.ottbin0 -> 47109 bytes-rw-r--r--extras/source/templates/wizard/report/lang/km/stl-04.ottbin0 -> 25395 bytes-rw-r--r--extras/source/templates/wizard/report/lang/km/stl-05.ottbin0 -> 47104 bytes-rw-r--r--extras/source/templates/wizard/report/lang/km/stl-06.ottbin0 -> 19041 bytes-rw-r--r--extras/source/templates/wizard/report/lang/km/stl-07.ottbin0 -> 9888 bytes-rw-r--r--extras/source/templates/wizard/report/lang/km/stl-08.ottbin0 -> 12584 bytes-rw-r--r--extras/source/templates/wizard/report/lang/km/stl-09.ottbin0 -> 50780 bytes-rw-r--r--extras/source/templates/wizard/report/lang/km/stl-default.ottbin0 -> 8411 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ko/cnt-01.ottbin0 -> 11441 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ko/cnt-011.ottbin0 -> 11456 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ko/cnt-012.ottbin0 -> 11362 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ko/cnt-02.ottbin0 -> 11444 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ko/cnt-021.ottbin0 -> 11484 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ko/cnt-022.ottbin0 -> 11335 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ko/cnt-03.ottbin0 -> 11709 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ko/cnt-031.ottbin0 -> 11760 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ko/cnt-032.ottbin0 -> 11621 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ko/cnt-04.ottbin0 -> 11754 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ko/cnt-041.ottbin0 -> 11757 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ko/cnt-042.ottbin0 -> 11630 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ko/cnt-05.ottbin0 -> 11334 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ko/cnt-051.ottbin0 -> 11385 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ko/cnt-052.ottbin0 -> 11305 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ko/cnt-06.ottbin0 -> 11549 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ko/cnt-061.ottbin0 -> 11583 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ko/cnt-062.ottbin0 -> 11490 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ko/cnt-default.ottbin0 -> 11679 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ko/stl-01.ottbin0 -> 41018 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ko/stl-02.ottbin0 -> 28159 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ko/stl-03.ottbin0 -> 50596 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ko/stl-04.ottbin0 -> 25674 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ko/stl-05.ottbin0 -> 50372 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ko/stl-06.ottbin0 -> 19619 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ko/stl-07.ottbin0 -> 10853 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ko/stl-08.ottbin0 -> 14379 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ko/stl-09.ottbin0 -> 54368 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ko/stl-default.ottbin0 -> 9817 bytes-rw-r--r--extras/source/templates/wizard/report/lang/makefile.mk49
-rw-r--r--extras/source/templates/wizard/report/lang/nl/cnt-01.ottbin0 -> 10157 bytes-rw-r--r--extras/source/templates/wizard/report/lang/nl/cnt-011.ottbin0 -> 10260 bytes-rw-r--r--extras/source/templates/wizard/report/lang/nl/cnt-012.ottbin0 -> 10126 bytes-rw-r--r--extras/source/templates/wizard/report/lang/nl/cnt-02.ottbin0 -> 10062 bytes-rw-r--r--extras/source/templates/wizard/report/lang/nl/cnt-021.ottbin0 -> 10083 bytes-rw-r--r--extras/source/templates/wizard/report/lang/nl/cnt-022.ottbin0 -> 9928 bytes-rw-r--r--extras/source/templates/wizard/report/lang/nl/cnt-03.ottbin0 -> 10660 bytes-rw-r--r--extras/source/templates/wizard/report/lang/nl/cnt-031.ottbin0 -> 10609 bytes-rw-r--r--extras/source/templates/wizard/report/lang/nl/cnt-032.ottbin0 -> 10542 bytes-rw-r--r--extras/source/templates/wizard/report/lang/nl/cnt-04.ottbin0 -> 10602 bytes-rw-r--r--extras/source/templates/wizard/report/lang/nl/cnt-041.ottbin0 -> 10520 bytes-rw-r--r--extras/source/templates/wizard/report/lang/nl/cnt-042.ottbin0 -> 10439 bytes-rw-r--r--extras/source/templates/wizard/report/lang/nl/cnt-05.ottbin0 -> 9738 bytes-rw-r--r--extras/source/templates/wizard/report/lang/nl/cnt-051.ottbin0 -> 9748 bytes-rw-r--r--extras/source/templates/wizard/report/lang/nl/cnt-052.ottbin0 -> 9839 bytes-rw-r--r--extras/source/templates/wizard/report/lang/nl/cnt-06.ottbin0 -> 10356 bytes-rw-r--r--extras/source/templates/wizard/report/lang/nl/cnt-061.ottbin0 -> 10322 bytes-rw-r--r--extras/source/templates/wizard/report/lang/nl/cnt-062.ottbin0 -> 10236 bytes-rw-r--r--extras/source/templates/wizard/report/lang/nl/cnt-default.ottbin0 -> 10290 bytes-rw-r--r--extras/source/templates/wizard/report/lang/nl/stl-01.ottbin0 -> 36988 bytes-rw-r--r--extras/source/templates/wizard/report/lang/nl/stl-02.ottbin0 -> 26139 bytes-rw-r--r--extras/source/templates/wizard/report/lang/nl/stl-03.ottbin0 -> 47719 bytes-rw-r--r--extras/source/templates/wizard/report/lang/nl/stl-04.ottbin0 -> 24307 bytes-rw-r--r--extras/source/templates/wizard/report/lang/nl/stl-05.ottbin0 -> 47456 bytes-rw-r--r--extras/source/templates/wizard/report/lang/nl/stl-06.ottbin0 -> 18359 bytes-rw-r--r--extras/source/templates/wizard/report/lang/nl/stl-07.ottbin0 -> 9140 bytes-rw-r--r--extras/source/templates/wizard/report/lang/nl/stl-08.ottbin0 -> 12513 bytes-rw-r--r--extras/source/templates/wizard/report/lang/nl/stl-09.ottbin0 -> 51480 bytes-rw-r--r--extras/source/templates/wizard/report/lang/nl/stl-default.ottbin0 -> 7803 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pl/cnt-01.ottbin0 -> 9366 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pl/cnt-011.ottbin0 -> 9366 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pl/cnt-012.ottbin0 -> 9275 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pl/cnt-02.ottbin0 -> 9304 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pl/cnt-021.ottbin0 -> 9364 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pl/cnt-022.ottbin0 -> 9194 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pl/cnt-03.ottbin0 -> 10117 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pl/cnt-031.ottbin0 -> 10098 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pl/cnt-032.ottbin0 -> 10031 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pl/cnt-04.ottbin0 -> 9785 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pl/cnt-041.ottbin0 -> 9822 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pl/cnt-042.ottbin0 -> 9679 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pl/cnt-05.ottbin0 -> 9188 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pl/cnt-051.ottbin0 -> 9248 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pl/cnt-052.ottbin0 -> 9278 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pl/cnt-06.ottbin0 -> 9492 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pl/cnt-061.ottbin0 -> 9482 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pl/cnt-062.ottbin0 -> 9380 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pl/cnt-default.ottbin0 -> 9477 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pl/stl-01.ottbin0 -> 38124 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pl/stl-02.ottbin0 -> 25929 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pl/stl-03.ottbin0 -> 47641 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pl/stl-04.ottbin0 -> 22600 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pl/stl-05.ottbin0 -> 47404 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pl/stl-06.ottbin0 -> 18088 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pl/stl-07.ottbin0 -> 8434 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pl/stl-08.ottbin0 -> 11784 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pl/stl-09.ottbin0 -> 51499 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pl/stl-default.ottbin0 -> 7545 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt-BR/cnt-01.ottbin0 -> 8767 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt-BR/cnt-011.ottbin0 -> 8820 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt-BR/cnt-012.ottbin0 -> 8702 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt-BR/cnt-02.ottbin0 -> 8725 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt-BR/cnt-021.ottbin0 -> 8768 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt-BR/cnt-022.ottbin0 -> 8605 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt-BR/cnt-03.ottbin0 -> 9080 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt-BR/cnt-031.ottbin0 -> 9061 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt-BR/cnt-032.ottbin0 -> 8969 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt-BR/cnt-04.ottbin0 -> 9104 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt-BR/cnt-041.ottbin0 -> 9120 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt-BR/cnt-042.ottbin0 -> 8996 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt-BR/cnt-05.ottbin0 -> 8623 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt-BR/cnt-051.ottbin0 -> 8660 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt-BR/cnt-052.ottbin0 -> 8632 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt-BR/cnt-06.ottbin0 -> 8908 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt-BR/cnt-061.ottbin0 -> 8892 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt-BR/cnt-062.ottbin0 -> 8775 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt-BR/cnt-default.ottbin0 -> 8896 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt-BR/stl-01.ottbin0 -> 35355 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt-BR/stl-02.ottbin0 -> 25454 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt-BR/stl-03.ottbin0 -> 45704 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt-BR/stl-04.ottbin0 -> 22711 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt-BR/stl-05.ottbin0 -> 45495 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt-BR/stl-06.ottbin0 -> 16695 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt-BR/stl-07.ottbin0 -> 7943 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt-BR/stl-08.ottbin0 -> 11440 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt-BR/stl-09.ottbin0 -> 48461 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt-BR/stl-default.ottbin0 -> 6931 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt/cnt-01.ottbin0 -> 11246 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt/cnt-011.ottbin0 -> 11262 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt/cnt-012.ottbin0 -> 11183 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt/cnt-02.ottbin0 -> 11107 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt/cnt-021.ottbin0 -> 11112 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt/cnt-022.ottbin0 -> 10944 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt/cnt-03.ottbin0 -> 11683 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt/cnt-031.ottbin0 -> 11628 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt/cnt-032.ottbin0 -> 11475 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt/cnt-04.ottbin0 -> 11645 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt/cnt-041.ottbin0 -> 11749 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt/cnt-042.ottbin0 -> 11458 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt/cnt-05.ottbin0 -> 10753 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt/cnt-051.ottbin0 -> 10761 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt/cnt-052.ottbin0 -> 10814 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt/cnt-06.ottbin0 -> 11404 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt/cnt-061.ottbin0 -> 11450 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt/cnt-062.ottbin0 -> 11249 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt/cnt-default.ottbin0 -> 11240 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt/stl-01.ottbin0 -> 38394 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt/stl-02.ottbin0 -> 27286 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt/stl-03.ottbin0 -> 47749 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt/stl-04.ottbin0 -> 25528 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt/stl-05.ottbin0 -> 47677 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt/stl-06.ottbin0 -> 19547 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt/stl-07.ottbin0 -> 10488 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt/stl-08.ottbin0 -> 13932 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt/stl-09.ottbin0 -> 51649 bytes-rw-r--r--extras/source/templates/wizard/report/lang/pt/stl-default.ottbin0 -> 8912 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ru/cnt-01.ottbin0 -> 9703 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ru/cnt-011.ottbin0 -> 9772 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ru/cnt-012.ottbin0 -> 9627 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ru/cnt-02.ottbin0 -> 9703 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ru/cnt-021.ottbin0 -> 9746 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ru/cnt-022.ottbin0 -> 9572 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ru/cnt-03.ottbin0 -> 10057 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ru/cnt-031.ottbin0 -> 11196 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ru/cnt-032.ottbin0 -> 9911 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ru/cnt-04.ottbin0 -> 10140 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ru/cnt-041.ottbin0 -> 10260 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ru/cnt-042.ottbin0 -> 9964 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ru/cnt-05.ottbin0 -> 9551 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ru/cnt-051.ottbin0 -> 9589 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ru/cnt-052.ottbin0 -> 9557 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ru/cnt-06.ottbin0 -> 9847 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ru/cnt-061.ottbin0 -> 9794 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ru/cnt-062.ottbin0 -> 9684 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ru/cnt-default.ottbin0 -> 9847 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ru/stl-01.ottbin0 -> 37521 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ru/stl-02.ottbin0 -> 26592 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ru/stl-03.ottbin0 -> 47036 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ru/stl-04.ottbin0 -> 24746 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ru/stl-05.ottbin0 -> 47004 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ru/stl-06.ottbin0 -> 18766 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ru/stl-07.ottbin0 -> 9731 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ru/stl-08.ottbin0 -> 13117 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ru/stl-09.ottbin0 -> 50866 bytes-rw-r--r--extras/source/templates/wizard/report/lang/ru/stl-default.ottbin0 -> 8152 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sk/cnt-01.ottbin0 -> 9121 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sk/cnt-011.ottbin0 -> 9224 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sk/cnt-012.ottbin0 -> 9078 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sk/cnt-02.ottbin0 -> 9204 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sk/cnt-021.ottbin0 -> 9210 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sk/cnt-022.ottbin0 -> 8971 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sk/cnt-03.ottbin0 -> 9516 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sk/cnt-031.ottbin0 -> 9509 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sk/cnt-032.ottbin0 -> 9323 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sk/cnt-04.ottbin0 -> 9533 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sk/cnt-041.ottbin0 -> 9657 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sk/cnt-042.ottbin0 -> 9315 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sk/cnt-05.ottbin0 -> 8856 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sk/cnt-051.ottbin0 -> 8875 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sk/cnt-052.ottbin0 -> 8882 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sk/cnt-06.ottbin0 -> 9044 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sk/cnt-061.ottbin0 -> 8987 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sk/cnt-062.ottbin0 -> 9029 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sk/cnt-default.ottbin0 -> 9246 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sk/stl-01.ottbin0 -> 36603 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sk/stl-02.ottbin0 -> 25860 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sk/stl-03.ottbin0 -> 46251 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sk/stl-04.ottbin0 -> 23405 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sk/stl-05.ottbin0 -> 46218 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sk/stl-06.ottbin0 -> 18890 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sk/stl-07.ottbin0 -> 8333 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sk/stl-08.ottbin0 -> 11956 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sk/stl-09.ottbin0 -> 50068 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sk/stl-default.ottbin0 -> 7493 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sl/cnt-01.ottbin0 -> 9203 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sl/cnt-011.ottbin0 -> 9374 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sl/cnt-012.ottbin0 -> 9443 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sl/cnt-02.ottbin0 -> 9192 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sl/cnt-021.ottbin0 -> 9523 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sl/cnt-022.ottbin0 -> 9356 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sl/cnt-03.ottbin0 -> 9806 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sl/cnt-031.ottbin0 -> 9801 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sl/cnt-032.ottbin0 -> 9713 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sl/cnt-04.ottbin0 -> 9741 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sl/cnt-041.ottbin0 -> 9900 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sl/cnt-042.ottbin0 -> 9480 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sl/cnt-05.ottbin0 -> 9218 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sl/cnt-051.ottbin0 -> 9085 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sl/cnt-052.ottbin0 -> 9139 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sl/cnt-06.ottbin0 -> 9739 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sl/cnt-061.ottbin0 -> 9419 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sl/cnt-062.ottbin0 -> 9273 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sl/cnt-default.ottbin0 -> 9308 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sl/stl-01.ottbin0 -> 36900 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sl/stl-02.ottbin0 -> 25891 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sl/stl-03.ottbin0 -> 46338 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sl/stl-04.ottbin0 -> 24065 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sl/stl-05.ottbin0 -> 46255 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sl/stl-06.ottbin0 -> 18084 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sl/stl-07.ottbin0 -> 8470 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sl/stl-08.ottbin0 -> 12468 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sl/stl-09.ottbin0 -> 50207 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sl/stl-default.ottbin0 -> 7460 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sv/cnt-01.ottbin0 -> 8766 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sv/cnt-011.ottbin0 -> 8820 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sv/cnt-012.ottbin0 -> 8698 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sv/cnt-02.ottbin0 -> 8726 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sv/cnt-021.ottbin0 -> 8770 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sv/cnt-022.ottbin0 -> 8605 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sv/cnt-03.ottbin0 -> 9080 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sv/cnt-031.ottbin0 -> 9063 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sv/cnt-032.ottbin0 -> 8965 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sv/cnt-04.ottbin0 -> 9103 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sv/cnt-041.ottbin0 -> 9122 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sv/cnt-042.ottbin0 -> 8996 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sv/cnt-05.ottbin0 -> 8614 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sv/cnt-051.ottbin0 -> 8660 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sv/cnt-052.ottbin0 -> 8629 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sv/cnt-06.ottbin0 -> 8897 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sv/cnt-061.ottbin0 -> 8881 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sv/cnt-062.ottbin0 -> 8771 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sv/cnt-default.ottbin0 -> 8890 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sv/stl-01.ottbin0 -> 38087 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sv/stl-02.ottbin0 -> 25254 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sv/stl-03.ottbin0 -> 47673 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sv/stl-04.ottbin0 -> 22735 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sv/stl-05.ottbin0 -> 47420 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sv/stl-06.ottbin0 -> 16708 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sv/stl-07.ottbin0 -> 7867 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sv/stl-08.ottbin0 -> 11465 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sv/stl-09.ottbin0 -> 51466 bytes-rw-r--r--extras/source/templates/wizard/report/lang/sv/stl-default.ottbin0 -> 6911 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/vi/cnt-01.ottbin0 -> 11124 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/vi/cnt-011.ottbin0 -> 11124 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/vi/cnt-012.ottbin0 -> 11016 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/vi/cnt-02.ottbin0 -> 10967 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/vi/cnt-021.ottbin0 -> 10940 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/vi/cnt-022.ottbin0 -> 10790 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/vi/cnt-03.ottbin0 -> 11364 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/vi/cnt-031.ottbin0 -> 11364 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/vi/cnt-032.ottbin0 -> 11267 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/vi/cnt-04.ottbin0 -> 11449 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/vi/cnt-041.ottbin0 -> 11619 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/vi/cnt-042.ottbin0 -> 11362 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/vi/cnt-05.ottbin0 -> 10812 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/vi/cnt-051.ottbin0 -> 10685 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/vi/cnt-052.ottbin0 -> 10639 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/vi/cnt-06.ottbin0 -> 11509 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/vi/cnt-061.ottbin0 -> 11528 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/vi/cnt-062.ottbin0 -> 11336 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/vi/cnt-default.ottbin0 -> 11040 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/vi/stl-01.ottbin0 -> 38294 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/vi/stl-02.ottbin0 -> 27580 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/vi/stl-03.ottbin0 -> 48111 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/vi/stl-04.ottbin0 -> 28355 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/vi/stl-05.ottbin0 -> 48212 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/vi/stl-06.ottbin0 -> 20214 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/vi/stl-07.ottbin0 -> 9935 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/vi/stl-08.ottbin0 -> 13187 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/vi/stl-09.ottbin0 -> 51976 bytes-rwxr-xr-xextras/source/templates/wizard/report/lang/vi/stl-default.ottbin0 -> 8804 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-CN/cnt-01.ottbin0 -> 11723 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-CN/cnt-011.ottbin0 -> 11740 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-CN/cnt-012.ottbin0 -> 11646 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-CN/cnt-02.ottbin0 -> 11730 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-CN/cnt-021.ottbin0 -> 11771 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-CN/cnt-022.ottbin0 -> 11619 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-CN/cnt-03.ottbin0 -> 11929 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-CN/cnt-031.ottbin0 -> 11990 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-CN/cnt-032.ottbin0 -> 11846 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-CN/cnt-04.ottbin0 -> 11984 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-CN/cnt-041.ottbin0 -> 11983 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-CN/cnt-042.ottbin0 -> 11863 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-CN/cnt-05.ottbin0 -> 11634 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-CN/cnt-051.ottbin0 -> 11684 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-CN/cnt-052.ottbin0 -> 11599 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-CN/cnt-06.ottbin0 -> 11776 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-CN/cnt-061.ottbin0 -> 11808 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-CN/cnt-062.ottbin0 -> 11716 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-CN/cnt-default.ottbin0 -> 11859 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-CN/stl-01.ottbin0 -> 40838 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-CN/stl-02.ottbin0 -> 28127 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-CN/stl-03.ottbin0 -> 50561 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-CN/stl-04.ottbin0 -> 25631 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-CN/stl-05.ottbin0 -> 50287 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-CN/stl-06.ottbin0 -> 19586 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-CN/stl-07.ottbin0 -> 10742 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-CN/stl-08.ottbin0 -> 14293 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-CN/stl-09.ottbin0 -> 54270 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-CN/stl-default.ottbin0 -> 9777 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-TW/cnt-01.ottbin0 -> 11721 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-TW/cnt-011.ottbin0 -> 11738 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-TW/cnt-012.ottbin0 -> 11638 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-TW/cnt-02.ottbin0 -> 11728 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-TW/cnt-021.ottbin0 -> 11769 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-TW/cnt-022.ottbin0 -> 11613 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-TW/cnt-03.ottbin0 -> 11928 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-TW/cnt-031.ottbin0 -> 11987 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-TW/cnt-032.ottbin0 -> 11841 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-TW/cnt-04.ottbin0 -> 11975 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-TW/cnt-041.ottbin0 -> 11981 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-TW/cnt-042.ottbin0 -> 11853 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-TW/cnt-05.ottbin0 -> 11629 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-TW/cnt-051.ottbin0 -> 11681 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-TW/cnt-052.ottbin0 -> 11594 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-TW/cnt-06.ottbin0 -> 11783 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-TW/cnt-061.ottbin0 -> 11804 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-TW/cnt-062.ottbin0 -> 11712 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-TW/cnt-default.ottbin0 -> 11858 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-TW/stl-01.ottbin0 -> 40925 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-TW/stl-02.ottbin0 -> 28113 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-TW/stl-03.ottbin0 -> 50478 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-TW/stl-04.ottbin0 -> 25627 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-TW/stl-05.ottbin0 -> 50185 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-TW/stl-06.ottbin0 -> 19581 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-TW/stl-07.ottbin0 -> 10588 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-TW/stl-08.ottbin0 -> 14278 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-TW/stl-09.ottbin0 -> 54305 bytes-rw-r--r--extras/source/templates/wizard/report/lang/zh-TW/stl-default.ottbin0 -> 9768 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/bg/black_white.otsbin0 -> 9627 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/bg/blackberry.otsbin0 -> 9854 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/bg/default.otsbin0 -> 9500 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/bg/diner.otsbin0 -> 9522 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/bg/fall.otsbin0 -> 8860 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/bg/glacier.otsbin0 -> 9548 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/bg/green_grapes.otsbin0 -> 9634 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/bg/jeans.otsbin0 -> 9514 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/bg/marine.otsbin0 -> 8723 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/bg/millennium.otsbin0 -> 9559 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/bg/nature.otsbin0 -> 9674 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/bg/neon.otsbin0 -> 9990 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/bg/night.otsbin0 -> 9941 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/bg/nostalgic.otsbin0 -> 9267 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/bg/pastell.otsbin0 -> 9532 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/bg/pool.otsbin0 -> 9959 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/bg/pumpkin.otsbin0 -> 9728 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/bg/xos.otsbin0 -> 9301 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/cs/black_white.otsbin0 -> 8249 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/cs/blackberry.otsbin0 -> 8165 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/cs/default.otsbin0 -> 8043 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/cs/diner.otsbin0 -> 8608 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/cs/fall.otsbin0 -> 8097 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/cs/glacier.otsbin0 -> 8203 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/cs/green_grapes.otsbin0 -> 8078 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/cs/jeans.otsbin0 -> 8084 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/cs/marine.otsbin0 -> 7969 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/cs/millennium.otsbin0 -> 8207 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/cs/nature.otsbin0 -> 8126 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/cs/neon.otsbin0 -> 8438 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/cs/night.otsbin0 -> 8219 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/cs/nostalgic.otsbin0 -> 8273 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/cs/pastell.otsbin0 -> 8187 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/cs/pool.otsbin0 -> 8383 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/cs/pumpkin.otsbin0 -> 8028 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/cs/xos.otsbin0 -> 8090 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/da/black_white.otsbin0 -> 8020 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/da/blackberry.otsbin0 -> 7947 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/da/default.otsbin0 -> 7806 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/da/diner.otsbin0 -> 8413 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/da/fall.otsbin0 -> 7878 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/da/glacier.otsbin0 -> 7976 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/da/green_grapes.otsbin0 -> 7842 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/da/jeans.otsbin0 -> 7879 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/da/marine.otsbin0 -> 7721 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/da/millennium.otsbin0 -> 7993 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/da/nature.otsbin0 -> 7898 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/da/neon.otsbin0 -> 8206 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/da/night.otsbin0 -> 7990 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/da/nostalgic.otsbin0 -> 8103 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/da/pastell.otsbin0 -> 7973 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/da/pool.otsbin0 -> 8157 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/da/pumpkin.otsbin0 -> 7797 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/da/xos.otsbin0 -> 7846 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/de/black_white.otsbin0 -> 8287 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/de/blackberry.otsbin0 -> 8240 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/de/default.otsbin0 -> 8114 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/de/diner.otsbin0 -> 8821 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/de/fall.otsbin0 -> 8100 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/de/glacier.otsbin0 -> 8290 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/de/green_grapes.otsbin0 -> 8078 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/de/jeans.otsbin0 -> 8214 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/de/marine.otsbin0 -> 8040 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/de/millennium.otsbin0 -> 8327 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/de/nature.otsbin0 -> 8158 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/de/neon.otsbin0 -> 8575 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/de/night.otsbin0 -> 8325 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/de/nostalgic.otsbin0 -> 8367 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/de/pastell.otsbin0 -> 8345 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/de/pool.otsbin0 -> 8513 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/de/pumpkin.otsbin0 -> 8186 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/de/xos.otsbin0 -> 8289 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/delzip0
-rw-r--r--extras/source/templates/wizard/styles/lang/en-GB/black_white.otsbin0 -> 9710 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/en-GB/blackberry.otsbin0 -> 9774 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/en-GB/default.otsbin0 -> 9698 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/en-GB/diner.otsbin0 -> 12195 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/en-GB/fall.otsbin0 -> 9375 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/en-GB/glacier.otsbin0 -> 9857 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/en-GB/green_grapes.otsbin0 -> 9436 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/en-GB/jeans.otsbin0 -> 9713 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/en-GB/marine.otsbin0 -> 9156 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/en-GB/millennium.otsbin0 -> 9685 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/en-GB/nature.otsbin0 -> 9502 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/en-GB/neon.otsbin0 -> 10133 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/en-GB/night.otsbin0 -> 10455 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/en-GB/nostalgic.otsbin0 -> 9605 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/en-GB/pastell.otsbin0 -> 9813 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/en-GB/pool.otsbin0 -> 10222 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/en-GB/pumpkin.otsbin0 -> 9474 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/en-GB/xos.otsbin0 -> 9054 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/en-US/black_white.otsbin0 -> 8204 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/en-US/blackberry.otsbin0 -> 8150 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/en-US/default.otsbin0 -> 8018 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/en-US/diner.otsbin0 -> 8590 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/en-US/fall.otsbin0 -> 8077 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/en-US/glacier.otsbin0 -> 8185 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/en-US/green_grapes.otsbin0 -> 8055 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/en-US/jeans.otsbin0 -> 8059 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/en-US/marine.otsbin0 -> 7941 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/en-US/millennium.otsbin0 -> 8189 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/en-US/nature.otsbin0 -> 8110 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/en-US/neon.otsbin0 -> 8421 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/en-US/night.otsbin0 -> 8201 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/en-US/nostalgic.otsbin0 -> 8260 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/en-US/pastell.otsbin0 -> 8160 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/en-US/pool.otsbin0 -> 8360 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/en-US/pumpkin.otsbin0 -> 8005 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/en-US/xos.otsbin0 -> 8072 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/es/black_white.otsbin0 -> 8202 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/es/blackberry.otsbin0 -> 7934 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/es/default.otsbin0 -> 7930 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/es/diner.otsbin0 -> 8423 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/es/fall.otsbin0 -> 7886 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/es/glacier.otsbin0 -> 8083 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/es/green_grapes.otsbin0 -> 7929 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/es/jeans.otsbin0 -> 7870 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/es/marine.otsbin0 -> 7784 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/es/millennium.otsbin0 -> 8035 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/es/nature.otsbin0 -> 8012 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/es/neon.otsbin0 -> 8276 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/es/night.otsbin0 -> 8088 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/es/nostalgic.otsbin0 -> 8248 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/es/pastell.otsbin0 -> 8002 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/es/pool.otsbin0 -> 8254 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/es/pumpkin.otsbin0 -> 7928 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/es/xos.otsbin0 -> 8069 bytes-rwxr-xr-xextras/source/templates/wizard/styles/lang/eu/black_white.otsbin0 -> 11666 bytes-rwxr-xr-xextras/source/templates/wizard/styles/lang/eu/blackberry.otsbin0 -> 12259 bytes-rwxr-xr-xextras/source/templates/wizard/styles/lang/eu/default.otsbin0 -> 11939 bytes-rwxr-xr-xextras/source/templates/wizard/styles/lang/eu/diner.otsbin0 -> 14377 bytes-rwxr-xr-xextras/source/templates/wizard/styles/lang/eu/fall.otsbin0 -> 12185 bytes-rwxr-xr-xextras/source/templates/wizard/styles/lang/eu/glacier.otsbin0 -> 12233 bytes-rwxr-xr-xextras/source/templates/wizard/styles/lang/eu/green_grapes.otsbin0 -> 11853 bytes-rwxr-xr-xextras/source/templates/wizard/styles/lang/eu/jeans.otsbin0 -> 12003 bytes-rwxr-xr-xextras/source/templates/wizard/styles/lang/eu/marine.otsbin0 -> 11705 bytes-rwxr-xr-xextras/source/templates/wizard/styles/lang/eu/millennium.otsbin0 -> 12044 bytes-rwxr-xr-xextras/source/templates/wizard/styles/lang/eu/nature.otsbin0 -> 12050 bytes-rwxr-xr-xextras/source/templates/wizard/styles/lang/eu/neon.otsbin0 -> 12676 bytes-rwxr-xr-xextras/source/templates/wizard/styles/lang/eu/night.otsbin0 -> 12630 bytes-rwxr-xr-xextras/source/templates/wizard/styles/lang/eu/nostalgic.otsbin0 -> 10732 bytes-rwxr-xr-xextras/source/templates/wizard/styles/lang/eu/pastell.otsbin0 -> 12021 bytes-rwxr-xr-xextras/source/templates/wizard/styles/lang/eu/pool.otsbin0 -> 12656 bytes-rwxr-xr-xextras/source/templates/wizard/styles/lang/eu/pumpkin.otsbin0 -> 12273 bytes-rwxr-xr-xextras/source/templates/wizard/styles/lang/eu/xos.otsbin0 -> 11616 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/fr/black_white.otsbin0 -> 7968 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/fr/blackberry.otsbin0 -> 7954 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/fr/default.otsbin0 -> 7863 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/fr/diner.otsbin0 -> 8408 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/fr/fall.otsbin0 -> 7967 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/fr/glacier.otsbin0 -> 7996 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/fr/green_grapes.otsbin0 -> 7833 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/fr/jeans.otsbin0 -> 7954 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/fr/marine.otsbin0 -> 7842 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/fr/millennium.otsbin0 -> 8072 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/fr/nature.otsbin0 -> 7897 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/fr/neon.otsbin0 -> 8121 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/fr/night.otsbin0 -> 7969 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/fr/nostalgic.otsbin0 -> 8142 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/fr/pastell.otsbin0 -> 8022 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/fr/pool.otsbin0 -> 8136 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/fr/pumpkin.otsbin0 -> 7893 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/fr/xos.otsbin0 -> 8049 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/hu/black_white.otsbin0 -> 9996 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/hu/blackberry.otsbin0 -> 10256 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/hu/default.otsbin0 -> 10095 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/hu/diner.otsbin0 -> 12306 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/hu/fall.otsbin0 -> 9530 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/hu/glacier.otsbin0 -> 10259 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/hu/green_grapes.otsbin0 -> 9841 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/hu/jeans.otsbin0 -> 10116 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/hu/marine.otsbin0 -> 9467 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/hu/millennium.otsbin0 -> 10014 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/hu/nature.otsbin0 -> 9847 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/hu/neon.otsbin0 -> 10740 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/hu/night.otsbin0 -> 10616 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/hu/nostalgic.otsbin0 -> 9949 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/hu/pastell.otsbin0 -> 10129 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/hu/pool.otsbin0 -> 10620 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/hu/pumpkin.otsbin0 -> 9868 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/hu/xos.otsbin0 -> 9391 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/it/black_white.otsbin0 -> 8106 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/it/blackberry.otsbin0 -> 7696 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/it/default.otsbin0 -> 7921 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/it/diner.otsbin0 -> 8626 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/it/fall.otsbin0 -> 7961 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/it/glacier.otsbin0 -> 8181 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/it/green_grapes.otsbin0 -> 7611 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/it/jeans.otsbin0 -> 8080 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/it/marine.otsbin0 -> 7957 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/it/millennium.otsbin0 -> 7773 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/it/nature.otsbin0 -> 7684 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/it/neon.otsbin0 -> 8290 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/it/night.otsbin0 -> 8119 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/it/nostalgic.otsbin0 -> 8194 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/it/pastell.otsbin0 -> 7801 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/it/pool.otsbin0 -> 8325 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/it/pumpkin.otsbin0 -> 7655 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/it/xos.otsbin0 -> 8213 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ja/black_white.otsbin0 -> 8483 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ja/blackberry.otsbin0 -> 8308 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ja/default.otsbin0 -> 8266 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ja/diner.otsbin0 -> 8655 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ja/fall.otsbin0 -> 8310 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ja/glacier.otsbin0 -> 8458 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ja/green_grapes.otsbin0 -> 8159 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ja/jeans.otsbin0 -> 8414 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ja/marine.otsbin0 -> 8160 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ja/millennium.otsbin0 -> 8388 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ja/nature.otsbin0 -> 8213 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ja/neon.otsbin0 -> 8521 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ja/night.otsbin0 -> 8455 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ja/nostalgic.otsbin0 -> 8591 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ja/pastell.otsbin0 -> 8443 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ja/pool.otsbin0 -> 8579 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ja/pumpkin.otsbin0 -> 8186 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ja/xos.otsbin0 -> 8453 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/km/black_white.otsbin0 -> 11108 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/km/blackberry.otsbin0 -> 11416 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/km/default.otsbin0 -> 11153 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/km/diner.otsbin0 -> 12436 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/km/fall.otsbin0 -> 11223 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/km/glacier.otsbin0 -> 11499 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/km/green_grapes.otsbin0 -> 10882 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/km/jeans.otsbin0 -> 10985 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/km/marine.otsbin0 -> 11056 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/km/millennium.otsbin0 -> 11279 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/km/nature.otsbin0 -> 11016 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/km/neon.otsbin0 -> 11886 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/km/night.otsbin0 -> 11749 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/km/nostalgic.otsbin0 -> 11487 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/km/pastell.otsbin0 -> 10891 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/km/pool.otsbin0 -> 11706 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/km/pumpkin.otsbin0 -> 10942 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/km/xos.otsbin0 -> 10931 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ko/black_white.otsbin0 -> 8461 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ko/blackberry.otsbin0 -> 8361 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ko/default.otsbin0 -> 8219 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ko/diner.otsbin0 -> 8731 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ko/fall.otsbin0 -> 8256 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ko/glacier.otsbin0 -> 8409 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ko/green_grapes.otsbin0 -> 8235 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ko/jeans.otsbin0 -> 8319 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ko/marine.otsbin0 -> 8135 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ko/millennium.otsbin0 -> 8384 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ko/nature.otsbin0 -> 8263 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ko/neon.otsbin0 -> 8508 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ko/night.otsbin0 -> 8411 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ko/nostalgic.otsbin0 -> 8552 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ko/pastell.otsbin0 -> 8381 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ko/pool.otsbin0 -> 8523 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ko/pumpkin.otsbin0 -> 8258 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ko/xos.otsbin0 -> 8342 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/makefile.mk45
-rw-r--r--extras/source/templates/wizard/styles/lang/nl/black_white.otsbin0 -> 7867 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/nl/blackberry.otsbin0 -> 7814 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/nl/default.otsbin0 -> 7766 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/nl/diner.otsbin0 -> 8187 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/nl/fall.otsbin0 -> 7714 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/nl/glacier.otsbin0 -> 7902 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/nl/green_grapes.otsbin0 -> 7711 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/nl/jeans.otsbin0 -> 7750 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/nl/marine.otsbin0 -> 7605 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/nl/millennium.otsbin0 -> 7878 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/nl/nature.otsbin0 -> 7777 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/nl/neon.otsbin0 -> 8000 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/nl/night.otsbin0 -> 7894 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/nl/nostalgic.otsbin0 -> 7960 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/nl/pastell.otsbin0 -> 7890 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/nl/pool.otsbin0 -> 8118 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/nl/pumpkin.otsbin0 -> 7766 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/nl/xos.otsbin0 -> 7874 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pl/black_white.otsbin0 -> 8198 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pl/blackberry.otsbin0 -> 8017 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pl/default.otsbin0 -> 7908 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pl/diner.otsbin0 -> 8561 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pl/fall.otsbin0 -> 7908 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pl/glacier.otsbin0 -> 8021 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pl/green_grapes.otsbin0 -> 7886 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pl/jeans.otsbin0 -> 7853 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pl/marine.otsbin0 -> 7787 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pl/millennium.otsbin0 -> 7996 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pl/nature.otsbin0 -> 7895 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pl/neon.otsbin0 -> 8152 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pl/night.otsbin0 -> 8025 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pl/nostalgic.otsbin0 -> 8332 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pl/pastell.otsbin0 -> 7997 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pl/pool.otsbin0 -> 8371 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pl/pumpkin.otsbin0 -> 7920 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pl/xos.otsbin0 -> 8040 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pt-BR/black_white.otsbin0 -> 8261 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pt-BR/blackberry.otsbin0 -> 8243 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pt-BR/default.otsbin0 -> 8137 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pt-BR/diner.otsbin0 -> 8774 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pt-BR/fall.otsbin0 -> 8213 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pt-BR/glacier.otsbin0 -> 8299 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pt-BR/green_grapes.otsbin0 -> 8153 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pt-BR/jeans.otsbin0 -> 8195 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pt-BR/marine.otsbin0 -> 8123 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pt-BR/millennium.otsbin0 -> 8395 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pt-BR/nature.otsbin0 -> 8223 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pt-BR/neon.otsbin0 -> 8479 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pt-BR/night.otsbin0 -> 8315 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pt-BR/nostalgic.otsbin0 -> 8391 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pt-BR/pastell.otsbin0 -> 8329 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pt-BR/pool.otsbin0 -> 8446 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pt-BR/pumpkin.otsbin0 -> 8203 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pt-BR/xos.otsbin0 -> 8378 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pt/black_white.otsbin0 -> 8017 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pt/blackberry.otsbin0 -> 7912 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pt/default.otsbin0 -> 7842 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pt/diner.otsbin0 -> 8344 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pt/fall.otsbin0 -> 8027 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pt/glacier.otsbin0 -> 8004 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pt/green_grapes.otsbin0 -> 7845 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pt/jeans.otsbin0 -> 7885 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pt/marine.otsbin0 -> 7873 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pt/millennium.otsbin0 -> 8109 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pt/nature.otsbin0 -> 7910 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pt/neon.otsbin0 -> 8310 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pt/night.otsbin0 -> 8013 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pt/nostalgic.otsbin0 -> 8078 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pt/pastell.otsbin0 -> 7981 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pt/pool.otsbin0 -> 8203 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pt/pumpkin.otsbin0 -> 7929 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/pt/xos.otsbin0 -> 8086 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ru/black_white.otsbin0 -> 8177 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ru/blackberry.otsbin0 -> 8031 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ru/default.otsbin0 -> 7923 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ru/diner.otsbin0 -> 8515 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ru/fall.otsbin0 -> 8165 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ru/glacier.otsbin0 -> 8063 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ru/green_grapes.otsbin0 -> 7979 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ru/jeans.otsbin0 -> 8076 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ru/marine.otsbin0 -> 8054 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ru/millennium.otsbin0 -> 8210 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ru/nature.otsbin0 -> 8006 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ru/neon.otsbin0 -> 8379 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ru/night.otsbin0 -> 8075 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ru/nostalgic.otsbin0 -> 8220 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ru/pastell.otsbin0 -> 8108 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ru/pool.otsbin0 -> 8229 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ru/pumpkin.otsbin0 -> 7929 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/ru/xos.otsbin0 -> 8138 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sk/black_white.otsbin0 -> 9208 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sk/blackberry.otsbin0 -> 9339 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sk/default.otsbin0 -> 9055 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sk/diner.otsbin0 -> 11420 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sk/fall.otsbin0 -> 8635 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sk/glacier.otsbin0 -> 9298 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sk/green_grapes.otsbin0 -> 9177 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sk/jeans.otsbin0 -> 9119 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sk/marine.otsbin0 -> 8554 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sk/millennium.otsbin0 -> 9270 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sk/nature.otsbin0 -> 9275 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sk/neon.otsbin0 -> 9533 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sk/night.otsbin0 -> 9599 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sk/nostalgic.otsbin0 -> 9123 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sk/pastell.otsbin0 -> 9180 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sk/pool.otsbin0 -> 9570 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sk/pumpkin.otsbin0 -> 9264 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sk/xos.otsbin0 -> 8795 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sl/black_white.otsbin0 -> 8644 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sl/blackberry.otsbin0 -> 8499 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sl/default.otsbin0 -> 8507 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sl/diner.otsbin0 -> 8906 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sl/fall.otsbin0 -> 8566 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sl/glacier.otsbin0 -> 8590 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sl/green_grapes.otsbin0 -> 8372 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sl/jeans.otsbin0 -> 8391 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sl/marine.otsbin0 -> 8497 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sl/millennium.otsbin0 -> 8512 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sl/nature.otsbin0 -> 8433 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sl/neon.otsbin0 -> 8841 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sl/night.otsbin0 -> 8615 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sl/nostalgic.otsbin0 -> 8695 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sl/pastell.otsbin0 -> 8581 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sl/pool.otsbin0 -> 8802 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sl/pumpkin.otsbin0 -> 8388 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sl/xos.otsbin0 -> 8685 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sv/black_white.otsbin0 -> 8182 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sv/blackberry.otsbin0 -> 8199 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sv/default.otsbin0 -> 8059 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sv/diner.otsbin0 -> 8661 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sv/fall.otsbin0 -> 8010 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sv/glacier.otsbin0 -> 8237 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sv/green_grapes.otsbin0 -> 8070 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sv/jeans.otsbin0 -> 8097 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sv/marine.otsbin0 -> 7950 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sv/millennium.otsbin0 -> 8237 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sv/nature.otsbin0 -> 8096 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sv/neon.otsbin0 -> 8442 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sv/night.otsbin0 -> 8264 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sv/nostalgic.otsbin0 -> 8210 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sv/pastell.otsbin0 -> 8200 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sv/pool.otsbin0 -> 8419 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sv/pumpkin.otsbin0 -> 8109 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/sv/xos.otsbin0 -> 8237 bytes-rwxr-xr-xextras/source/templates/wizard/styles/lang/vi/black_white.otsbin0 -> 11371 bytes-rwxr-xr-xextras/source/templates/wizard/styles/lang/vi/blackberry.otsbin0 -> 11347 bytes-rwxr-xr-xextras/source/templates/wizard/styles/lang/vi/default.otsbin0 -> 11174 bytes-rwxr-xr-xextras/source/templates/wizard/styles/lang/vi/diner.otsbin0 -> 14551 bytes-rwxr-xr-xextras/source/templates/wizard/styles/lang/vi/fall.otsbin0 -> 10880 bytes-rwxr-xr-xextras/source/templates/wizard/styles/lang/vi/glacier.otsbin0 -> 11410 bytes-rwxr-xr-xextras/source/templates/wizard/styles/lang/vi/green_grapes.otsbin0 -> 11477 bytes-rwxr-xr-xextras/source/templates/wizard/styles/lang/vi/jeans.otsbin0 -> 11891 bytes-rwxr-xr-xextras/source/templates/wizard/styles/lang/vi/marine.otsbin0 -> 10849 bytes-rwxr-xr-xextras/source/templates/wizard/styles/lang/vi/millennium.otsbin0 -> 10892 bytes-rwxr-xr-xextras/source/templates/wizard/styles/lang/vi/nature.otsbin0 -> 11306 bytes-rwxr-xr-xextras/source/templates/wizard/styles/lang/vi/neon.otsbin0 -> 11900 bytes-rwxr-xr-xextras/source/templates/wizard/styles/lang/vi/night.otsbin0 -> 12036 bytes-rwxr-xr-xextras/source/templates/wizard/styles/lang/vi/nostalgic.otsbin0 -> 10889 bytes-rwxr-xr-xextras/source/templates/wizard/styles/lang/vi/pastell.otsbin0 -> 11216 bytes-rwxr-xr-xextras/source/templates/wizard/styles/lang/vi/pool.otsbin0 -> 11498 bytes-rwxr-xr-xextras/source/templates/wizard/styles/lang/vi/pumpkin.otsbin0 -> 11236 bytes-rwxr-xr-xextras/source/templates/wizard/styles/lang/vi/xos.otsbin0 -> 10864 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/zh-CN/black_white.otsbin0 -> 8351 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/zh-CN/blackberry.otsbin0 -> 8199 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/zh-CN/default.otsbin0 -> 8050 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/zh-CN/diner.otsbin0 -> 8596 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/zh-CN/fall.otsbin0 -> 8099 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/zh-CN/glacier.otsbin0 -> 8258 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/zh-CN/green_grapes.otsbin0 -> 8065 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/zh-CN/jeans.otsbin0 -> 8198 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/zh-CN/marine.otsbin0 -> 7968 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/zh-CN/millennium.otsbin0 -> 8219 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/zh-CN/nature.otsbin0 -> 8160 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/zh-CN/neon.otsbin0 -> 8383 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/zh-CN/night.otsbin0 -> 8271 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/zh-CN/nostalgic.otsbin0 -> 8336 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/zh-CN/pastell.otsbin0 -> 8221 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/zh-CN/pool.otsbin0 -> 8360 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/zh-CN/pumpkin.otsbin0 -> 8141 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/zh-CN/xos.otsbin0 -> 8201 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/zh-TW/black_white.otsbin0 -> 8311 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/zh-TW/blackberry.otsbin0 -> 8109 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/zh-TW/default.otsbin0 -> 8078 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/zh-TW/diner.otsbin0 -> 8616 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/zh-TW/fall.otsbin0 -> 8096 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/zh-TW/glacier.otsbin0 -> 8234 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/zh-TW/green_grapes.otsbin0 -> 7988 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/zh-TW/jeans.otsbin0 -> 8148 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/zh-TW/marine.otsbin0 -> 7998 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/zh-TW/millennium.otsbin0 -> 8204 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/zh-TW/nature.otsbin0 -> 8097 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/zh-TW/neon.otsbin0 -> 8301 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/zh-TW/night.otsbin0 -> 8199 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/zh-TW/nostalgic.otsbin0 -> 8288 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/zh-TW/pastell.otsbin0 -> 8190 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/zh-TW/pool.otsbin0 -> 8302 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/zh-TW/pumpkin.otsbin0 -> 8026 bytes-rw-r--r--extras/source/templates/wizard/styles/lang/zh-TW/xos.otsbin0 -> 8148 bytes-rw-r--r--extras/source/templates/wizard/web/lang/bg/cnt-album.stwbin0 -> 12433 bytes-rw-r--r--extras/source/templates/wizard/web/lang/bg/cnt-bilingual.stwbin0 -> 9428 bytes-rw-r--r--extras/source/templates/wizard/web/lang/bg/cnt-chapters.stwbin0 -> 11164 bytes-rw-r--r--extras/source/templates/wizard/web/lang/bg/cnt-empty.stwbin0 -> 7796 bytes-rw-r--r--extras/source/templates/wizard/web/lang/bg/cnt-fixonecol.stwbin0 -> 10541 bytes-rw-r--r--extras/source/templates/wizard/web/lang/bg/cnt-fixtwocol.stwbin0 -> 11025 bytes-rw-r--r--extras/source/templates/wizard/web/lang/bg/cnt-formcontact.stwbin0 -> 8553 bytes-rw-r--r--extras/source/templates/wizard/web/lang/bg/cnt-formcustomer.stwbin0 -> 8680 bytes-rw-r--r--extras/source/templates/wizard/web/lang/bg/cnt-formfix.stwbin0 -> 8747 bytes-rw-r--r--extras/source/templates/wizard/web/lang/bg/cnt-formvar.stwbin0 -> 8860 bytes-rw-r--r--extras/source/templates/wizard/web/lang/bg/cnt-list.stwbin0 -> 12060 bytes-rw-r--r--extras/source/templates/wizard/web/lang/bg/cnt-onepic.stwbin0 -> 13677 bytes-rw-r--r--extras/source/templates/wizard/web/lang/bg/cnt-standard.stwbin0 -> 9223 bytes-rw-r--r--extras/source/templates/wizard/web/lang/bg/cnt-twotitles.stwbin0 -> 10889 bytes-rw-r--r--extras/source/templates/wizard/web/lang/bg/stl-banana.stwbin0 -> 9588 bytes-rw-r--r--extras/source/templates/wizard/web/lang/bg/stl-blkjeans.stwbin0 -> 13366 bytes-rw-r--r--extras/source/templates/wizard/web/lang/bg/stl-blue.stwbin0 -> 9525 bytes-rw-r--r--extras/source/templates/wizard/web/lang/bg/stl-blueblock.stwbin0 -> 14050 bytes-rw-r--r--extras/source/templates/wizard/web/lang/bg/stl-bluejeans.stwbin0 -> 14856 bytes-rw-r--r--extras/source/templates/wizard/web/lang/bg/stl-fieryred.stwbin0 -> 13971 bytes-rw-r--r--extras/source/templates/wizard/web/lang/bg/stl-hightech.stwbin0 -> 15868 bytes-rw-r--r--extras/source/templates/wizard/web/lang/bg/stl-mint.stwbin0 -> 12165 bytes-rw-r--r--extras/source/templates/wizard/web/lang/bg/stl-music.stwbin0 -> 11264 bytes-rw-r--r--extras/source/templates/wizard/web/lang/bg/stl-nostalg.stwbin0 -> 9609 bytes-rw-r--r--extras/source/templates/wizard/web/lang/bg/stl-orange.stwbin0 -> 9798 bytes-rw-r--r--extras/source/templates/wizard/web/lang/bg/stl-petrol.stwbin0 -> 9726 bytes-rw-r--r--extras/source/templates/wizard/web/lang/bg/stl-seventies.stwbin0 -> 12802 bytes-rw-r--r--extras/source/templates/wizard/web/lang/bg/stl-standard.stwbin0 -> 13107 bytes-rw-r--r--extras/source/templates/wizard/web/lang/bg/stl-strwbryice.stwbin0 -> 12415 bytes-rw-r--r--extras/source/templates/wizard/web/lang/bg/stl-sun.stwbin0 -> 9615 bytes-rw-r--r--extras/source/templates/wizard/web/lang/bg/stl-tracks.stwbin0 -> 11798 bytes-rw-r--r--extras/source/templates/wizard/web/lang/bg/stl-turquoise.stwbin0 -> 9811 bytes-rw-r--r--extras/source/templates/wizard/web/lang/bg/stl-wetblue.stwbin0 -> 13994 bytes-rw-r--r--extras/source/templates/wizard/web/lang/delzip1
-rw-r--r--extras/source/templates/wizard/web/lang/makefile.mk46
-rw-r--r--extras/source/truetype/symbol/OpenSymbol.sfd107080
-rw-r--r--extras/source/truetype/symbol/opens___.ttfbin0 -> 198668 bytes-rw-r--r--extras/source/wordbook/delzip2
-rw-r--r--extras/source/wordbook/lang/bg/soffice.dicbin0 -> 819 bytes-rw-r--r--extras/source/wordbook/lang/cs/soffice.dicbin0 -> 819 bytes-rw-r--r--extras/source/wordbook/lang/da/soffice.dicbin0 -> 819 bytes-rw-r--r--extras/source/wordbook/lang/de/soffice.dicbin0 -> 1412 bytes-rw-r--r--extras/source/wordbook/lang/delzip1
-rw-r--r--extras/source/wordbook/lang/en-GB/soffice.dicbin0 -> 819 bytes-rw-r--r--extras/source/wordbook/lang/en-US/soffice.dicbin0 -> 819 bytes-rw-r--r--extras/source/wordbook/lang/es/soffice.dicbin0 -> 819 bytes-rwxr-xr-xextras/source/wordbook/lang/eu/soffice.dicbin0 -> 786 bytes-rw-r--r--extras/source/wordbook/lang/fr/soffice.dicbin0 -> 819 bytes-rwxr-xr-xextras/source/wordbook/lang/hu/soffice.dicbin0 -> 819 bytes-rw-r--r--extras/source/wordbook/lang/it/soffice.dicbin0 -> 819 bytes-rw-r--r--extras/source/wordbook/lang/makefile.mk47
-rw-r--r--extras/source/wordbook/lang/nl/soffice.dicbin0 -> 819 bytes-rw-r--r--extras/source/wordbook/lang/pl/soffice.dicbin0 -> 819 bytes-rw-r--r--extras/source/wordbook/lang/pt-BR/soffice.dicbin0 -> 819 bytes-rw-r--r--extras/source/wordbook/lang/pt/soffice.dicbin0 -> 819 bytes-rw-r--r--extras/source/wordbook/lang/ru/soffice.dicbin0 -> 819 bytes-rw-r--r--extras/source/wordbook/lang/sk/soffice.dicbin0 -> 819 bytes-rw-r--r--extras/source/wordbook/lang/sl/soffice.dicbin0 -> 1114 bytes-rw-r--r--extras/source/wordbook/lang/sv/soffice.dicbin0 -> 810 bytes-rw-r--r--extras/source/wordbook/makefile.mk57
-rw-r--r--extras/source/wordbook/oracle.dic626
-rw-r--r--extras/source/wordbook/standard.dic4
-rw-r--r--extras/unx/source/bitmaps/delzip1
-rw-r--r--extras/unx/source/bitmaps/makefile.mk47
-rw-r--r--extras/unx/source/bitmaps/psetup.xpm31
-rw-r--r--extras/unx/source/bitmaps/psetupl.xpm49
-rw-r--r--extras/unx/source/fonts/fonts.dir2
-rw-r--r--extras/unx/source/kde/applnk/.directory5
-rw-r--r--extras/unx/source/kde/applnk/SPAdmin.kdelnk23
-rw-r--r--extras/unx/source/kde/applnk/Setup.kdelnk14
-rw-r--r--extras/unx/source/kde/applnk/StarOffice.kdelnk14
-rw-r--r--extras/unx/source/kde/applnk/delzip1
-rw-r--r--extras/unx/source/kde/applnk/makefile.mk47
-rw-r--r--extras/unx/source/kde/icons/delzip1
-rw-r--r--extras/unx/source/kde/icons/htm.xpm52
-rw-r--r--extras/unx/source/kde/icons/html.xpm52
-rw-r--r--extras/unx/source/kde/icons/makefile.mk47
-rw-r--r--extras/unx/source/kde/icons/mini/delzip1
-rw-r--r--extras/unx/source/kde/icons/mini/htm.xpm36
-rw-r--r--extras/unx/source/kde/icons/mini/html.xpm36
-rw-r--r--extras/unx/source/kde/icons/mini/makefile.mk47
-rw-r--r--extras/unx/source/kde/icons/mini/psetup.xpm31
-rw-r--r--extras/unx/source/kde/icons/mini/sch.xpm36
-rw-r--r--extras/unx/source/kde/icons/mini/sda.xpm36
-rw-r--r--extras/unx/source/kde/icons/mini/sdc.xpm36
-rw-r--r--extras/unx/source/kde/icons/mini/sdd.xpm36
-rw-r--r--extras/unx/source/kde/icons/mini/sdf.xpm36
-rw-r--r--extras/unx/source/kde/icons/mini/sds.xpm36
-rw-r--r--extras/unx/source/kde/icons/mini/sdw.xpm36
-rw-r--r--extras/unx/source/kde/icons/mini/set52.xpm40
-rw-r--r--extras/unx/source/kde/icons/mini/sgl.xpm36
-rw-r--r--extras/unx/source/kde/icons/mini/smf.xpm36
-rw-r--r--extras/unx/source/kde/icons/mini/so52.xpm40
-rw-r--r--extras/unx/source/kde/icons/psetup.xpm49
-rw-r--r--extras/unx/source/kde/icons/sch.xpm52
-rw-r--r--extras/unx/source/kde/icons/sda.xpm52
-rw-r--r--extras/unx/source/kde/icons/sdc.xpm52
-rw-r--r--extras/unx/source/kde/icons/sdd.xpm52
-rw-r--r--extras/unx/source/kde/icons/sdf.xpm52
-rw-r--r--extras/unx/source/kde/icons/sds.xpm52
-rw-r--r--extras/unx/source/kde/icons/sdw.xpm52
-rw-r--r--extras/unx/source/kde/icons/set52.xpm52
-rw-r--r--extras/unx/source/kde/icons/sgl.xpm52
-rw-r--r--extras/unx/source/kde/icons/smf.xpm52
-rw-r--r--extras/unx/source/kde/icons/so52.xpm52
-rw-r--r--extras/unx/source/kde/mimelnk/application/delzip1
-rw-r--r--extras/unx/source/kde/mimelnk/application/makefile.mk47
-rw-r--r--extras/unx/source/kde/mimelnk/application/x-scalc.kdelnk10
-rw-r--r--extras/unx/source/kde/mimelnk/application/x-sda.kdelnk10
-rw-r--r--extras/unx/source/kde/mimelnk/application/x-sdf.kdelnk10
-rw-r--r--extras/unx/source/kde/mimelnk/application/x-sdraw.kdelnk10
-rw-r--r--extras/unx/source/kde/mimelnk/application/x-sds.kdelnk10
-rw-r--r--extras/unx/source/kde/mimelnk/application/x-sgl.kdelnk10
-rw-r--r--extras/unx/source/kde/mimelnk/application/x-smf.kdelnk10
-rw-r--r--extras/unx/source/kde/mimelnk/application/x-swriter.kdelnk21
-rw-r--r--extras/unx/source/kde/mimelnk/text/delzip1
-rw-r--r--extras/unx/source/kde/mimelnk/text/html.kdelnk10
-rw-r--r--extras/unx/source/kde/mimelnk/text/makefile.mk49
-rw-r--r--extras/util/target.pmk197
-rwxr-xr-xfetch_tarballs.sh162
-rw-r--r--fileaccess/prj/build.lst3
-rw-r--r--fileaccess/prj/d.lst5
-rw-r--r--fileaccess/source/FileAccess.cxx967
-rw-r--r--fileaccess/source/fileacc.xml62
-rw-r--r--fileaccess/source/makefile.mk68
-rw-r--r--filter/inc/filter.hrc66
-rw-r--r--filter/inc/filter/msfilter/countryid.hxx318
-rw-r--r--filter/inc/filter/msfilter/escherex.hxx1613
-rw-r--r--filter/inc/filter/msfilter/mscodec.hxx340
-rw-r--r--filter/inc/filter/msfilter/msdffimp.hxx861
-rw-r--r--filter/inc/filter/msfilter/msfilterdllapi.h41
-rw-r--r--filter/inc/filter/msfilter/msfiltertracer.hxx96
-rw-r--r--filter/inc/filter/msfilter/msocximex.hxx1420
-rw-r--r--filter/inc/filter/msfilter/msoleexp.hxx60
-rw-r--r--filter/inc/filter/msfilter/msvbahelper.hxx56
-rw-r--r--filter/inc/filter/msfilter/svdfppt.hxx1440
-rw-r--r--filter/inc/filter/msfilter/svxmsbas.hxx98
-rw-r--r--filter/inc/makefile.mk47
-rw-r--r--filter/inc/pch/precompiled_filter.cxx29
-rw-r--r--filter/inc/pch/precompiled_filter.hxx32
-rw-r--r--filter/prj/build.lst44
-rw-r--r--filter/prj/d.lst57
-rw-r--r--filter/qa/complex/filter/detection/typeDetection/Helper.java443
-rw-r--r--filter/qa/complex/filter/detection/typeDetection/TypeDetection.java559
-rw-r--r--filter/qa/complex/filter/detection/typeDetection/TypeDetection.props13
-rw-r--r--filter/qa/complex/filter/detection/typeDetection/files.csv117
-rw-r--r--filter/qa/complex/filter/detection/typeDetection/makefile.mk118
-rw-r--r--filter/qa/complex/filter/detection/typeDetection/preselectedFilter.csv6
-rw-r--r--filter/qa/complex/filter/detection/typeDetection/preselectedType.csv6
-rw-r--r--filter/qa/complex/filter/detection/typeDetection/serviceName.csv6
-rw-r--r--filter/qa/complex/filter/misc/FinalizedMandatoryTest.java307
-rw-r--r--filter/qa/complex/filter/misc/TypeDetection6FileFormat.java105
-rwxr-xr-xfilter/qa/complex/filter/misc/TypeDetection6FileFormat.xcu25
-rwxr-xr-xfilter/qa/complex/filter/misc/makefile.mk97
-rw-r--r--filter/source/config/cache/basecontainer.cxx638
-rw-r--r--filter/source/config/cache/basecontainer.hxx323
-rw-r--r--filter/source/config/cache/cacheitem.cxx443
-rw-r--r--filter/source/config/cache/cacheitem.hxx261
-rw-r--r--filter/source/config/cache/cacheupdatelistener.cxx246
-rw-r--r--filter/source/config/cache/cacheupdatelistener.hxx147
-rw-r--r--filter/source/config/cache/configflush.cxx168
-rw-r--r--filter/source/config/cache/configflush.hxx128
-rw-r--r--filter/source/config/cache/constant.hxx217
-rw-r--r--filter/source/config/cache/contenthandlerfactory.cxx201
-rw-r--r--filter/source/config/cache/contenthandlerfactory.hxx148
-rw-r--r--filter/source/config/cache/filtercache.cxx2536
-rw-r--r--filter/source/config/cache/filtercache.hxx1066
-rw-r--r--filter/source/config/cache/filterfactory.cxx724
-rw-r--r--filter/source/config/cache/filterfactory.hxx212
-rw-r--r--filter/source/config/cache/frameloaderfactory.cxx198
-rw-r--r--filter/source/config/cache/frameloaderfactory.hxx148
-rw-r--r--filter/source/config/cache/lateinitlistener.cxx136
-rw-r--r--filter/source/config/cache/lateinitlistener.hxx125
-rw-r--r--filter/source/config/cache/lateinitthread.cxx80
-rw-r--r--filter/source/config/cache/lateinitthread.hxx89
-rw-r--r--filter/source/config/cache/macros.hxx132
-rw-r--r--filter/source/config/cache/makefile.mk79
-rw-r--r--filter/source/config/cache/querytokenizer.cxx99
-rw-r--r--filter/source/config/cache/querytokenizer.hxx115
-rw-r--r--filter/source/config/cache/registration.cxx147
-rw-r--r--filter/source/config/cache/registration.hxx214
-rw-r--r--filter/source/config/cache/typedetection.cxx1257
-rw-r--r--filter/source/config/cache/typedetection.hxx459
-rw-r--r--filter/source/config/cache/versions.hxx36
-rw-r--r--filter/source/config/fragments/contenthandlers/com_sun_star_comp_framework_SoundHandler.xcu3
-rw-r--r--filter/source/config/fragments/contenthandlers/com_sun_star_comp_framework_oxt_handler.xcu3
-rw-r--r--filter/source/config/fragments/delzip0
-rw-r--r--filter/source/config/fragments/fcfg_base.mk51
-rw-r--r--filter/source/config/fragments/fcfg_calc.mk108
-rw-r--r--filter/source/config/fragments/fcfg_calc_bf.mk59
-rw-r--r--filter/source/config/fragments/fcfg_chart.mk48
-rw-r--r--filter/source/config/fragments/fcfg_chart_bf.mk47
-rw-r--r--filter/source/config/fragments/fcfg_database.mk45
-rw-r--r--filter/source/config/fragments/fcfg_draw.mk56
-rw-r--r--filter/source/config/fragments/fcfg_draw_bf.mk51
-rw-r--r--filter/source/config/fragments/fcfg_drawgraphics.mk117
-rw-r--r--filter/source/config/fragments/fcfg_global.mk59
-rw-r--r--filter/source/config/fragments/fcfg_global_bf.mk55
-rw-r--r--filter/source/config/fragments/fcfg_impress.mk75
-rw-r--r--filter/source/config/fragments/fcfg_impress_bf.mk66
-rw-r--r--filter/source/config/fragments/fcfg_impressgraphics.mk83
-rw-r--r--filter/source/config/fragments/fcfg_internalgraphics.mk109
-rw-r--r--filter/source/config/fragments/fcfg_math.mk55
-rw-r--r--filter/source/config/fragments/fcfg_math_bf.mk50
-rw-r--r--filter/source/config/fragments/fcfg_palm.mk44
-rw-r--r--filter/source/config/fragments/fcfg_pocketexcel.mk44
-rw-r--r--filter/source/config/fragments/fcfg_pocketword.mk44
-rw-r--r--filter/source/config/fragments/fcfg_w4w.mk260
-rw-r--r--filter/source/config/fragments/fcfg_web.mk65
-rw-r--r--filter/source/config/fragments/fcfg_web_bf.mk54
-rw-r--r--filter/source/config/fragments/fcfg_writer.mk106
-rw-r--r--filter/source/config/fragments/fcfg_writer_bf.mk63
-rw-r--r--filter/source/config/fragments/fcfg_xslt.mk55
-rw-r--r--filter/source/config/fragments/filters/Ami_Pro_1_x_3_1__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/AportisDoc_Palm_DB.xcu13
-rw-r--r--filter/source/config/fragments/filters/BMP___MS_Windows.xcu13
-rw-r--r--filter/source/config/fragments/filters/CGM___Computer_Graphics_Metafile.xcu13
-rw-r--r--filter/source/config/fragments/filters/CTOS_DEF__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/Claris_Works__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/DCA_FFT_Final_Form_Text__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/DCA_Revisable_Form_Text__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/DCA_with_Display_Write_5__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/DEC_DX__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/DEC_WPS_PLUS__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/DIF.xcu13
-rw-r--r--filter/source/config/fragments/filters/DXF___AutoCAD_Interchange.xcu13
-rw-r--r--filter/source/config/fragments/filters/DataGeneral_CEO_Write__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/DisplayWrite_2_0_4_x__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/DisplayWrite_5_x__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/DocBook_File.xcu13
-rw-r--r--filter/source/config/fragments/filters/EBCDIC__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/EMF___MS_Windows_Metafile.xcu13
-rw-r--r--filter/source/config/fragments/filters/EPS___Encapsulated_PostScript.xcu13
-rw-r--r--filter/source/config/fragments/filters/Enable__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/Frame_Maker_MIF_3_0__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/Frame_Maker_MIF_4_0__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/Frame_Maker_MIF_5_0__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/Frame_Work_III__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/Frame_Work_IV___W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/GIF___Graphics_Interchange.xcu13
-rw-r--r--filter/source/config/fragments/filters/HP_AdvanceWrite_Plus__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/HTML.xcu10
-rw-r--r--filter/source/config/fragments/filters/HTML_MasterDoc.xcu13
-rw-r--r--filter/source/config/fragments/filters/HTML_MasterDoc_ui.xcu5
-rw-r--r--filter/source/config/fragments/filters/HTML__StarCalc_.xcu10
-rw-r--r--filter/source/config/fragments/filters/HTML__StarCalc__ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/HTML__StarWriter_.xcu10
-rw-r--r--filter/source/config/fragments/filters/HTML__StarWriter__ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/HTML_ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/ICL_Office_Power_6__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/ICL_Office_Power_7__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/Interleaf_5___6__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/Interleaf__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/JPG___JPEG.xcu13
-rw-r--r--filter/source/config/fragments/filters/Legacy_Winstar_onGO__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/Lotus.xcu13
-rw-r--r--filter/source/config/fragments/filters/Lotus_1_2_3_1_0__DOS___StarWriter_.xcu13
-rw-r--r--filter/source/config/fragments/filters/Lotus_1_2_3_1_0__WIN___StarWriter_.xcu13
-rw-r--r--filter/source/config/fragments/filters/Lotus_Manuscript__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/MASS_11_Rel__8_0_8_3__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/MASS_11_Rel__8_5_9_0__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/MET___OS_2_Metafile.xcu13
-rw-r--r--filter/source/config/fragments/filters/MS_Excel_2003_XML.xcu10
-rw-r--r--filter/source/config/fragments/filters/MS_Excel_2003_XML_ui.xcu12
-rw-r--r--filter/source/config/fragments/filters/MS_Excel_4_0.xcu13
-rw-r--r--filter/source/config/fragments/filters/MS_Excel_4_0_Vorlage_Template.xcu10
-rw-r--r--filter/source/config/fragments/filters/MS_Excel_4_0_Vorlage_Template_ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/MS_Excel_4_0__StarWriter_.xcu13
-rw-r--r--filter/source/config/fragments/filters/MS_Excel_5_0_95.xcu13
-rw-r--r--filter/source/config/fragments/filters/MS_Excel_5_0_95_Vorlage_Template.xcu10
-rw-r--r--filter/source/config/fragments/filters/MS_Excel_5_0_95_Vorlage_Template_ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/MS_Excel_5_0__StarWriter_.xcu13
-rw-r--r--filter/source/config/fragments/filters/MS_Excel_95.xcu13
-rw-r--r--filter/source/config/fragments/filters/MS_Excel_95_Vorlage_Template.xcu10
-rw-r--r--filter/source/config/fragments/filters/MS_Excel_95_Vorlage_Template_ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/MS_Excel_95__StarWriter_.xcu13
-rw-r--r--filter/source/config/fragments/filters/MS_Excel_97.xcu13
-rw-r--r--filter/source/config/fragments/filters/MS_Excel_97_Vorlage_Template.xcu10
-rw-r--r--filter/source/config/fragments/filters/MS_Excel_97_Vorlage_Template_ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/MS_MacWord_3_0__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/MS_MacWord_4_0__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/MS_MacWord_5_x__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/MS_PowerPoint_97.xcu13
-rw-r--r--filter/source/config/fragments/filters/MS_PowerPoint_97_Vorlage.xcu10
-rw-r--r--filter/source/config/fragments/filters/MS_PowerPoint_97_Vorlage_ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/MS_WinWord_1_x__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/MS_WinWord_2_x__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/MS_WinWord_5.xcu13
-rw-r--r--filter/source/config/fragments/filters/MS_WinWord_6_0.xcu13
-rw-r--r--filter/source/config/fragments/filters/MS_Word_2003_XML.xcu10
-rw-r--r--filter/source/config/fragments/filters/MS_Word_2003_XML_ui.xcu12
-rw-r--r--filter/source/config/fragments/filters/MS_Word_2007_XML.xcu13
-rw-r--r--filter/source/config/fragments/filters/MS_Word_2007_XML_Template.xcu13
-rw-r--r--filter/source/config/fragments/filters/MS_Word_2007_XML_Template_ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/MS_Word_2007_XML_ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/MS_Word_3_x__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/MS_Word_4_x__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/MS_Word_5_x__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/MS_Word_6_x__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/MS_Word_95.xcu13
-rw-r--r--filter/source/config/fragments/filters/MS_Word_95_Vorlage.xcu10
-rw-r--r--filter/source/config/fragments/filters/MS_Word_95_Vorlage_ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/MS_Word_97.xcu13
-rw-r--r--filter/source/config/fragments/filters/MS_Word_97_Vorlage.xcu10
-rw-r--r--filter/source/config/fragments/filters/MS_Word_97_Vorlage_ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/MS_Works_2_0_DOS__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/MS_Works_3_0_Win__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/MS_Works_4_0_Mac__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/Mac_Write_4_x_5_0__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/Mac_Write_II__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/Mac_Write_Pro__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/MathML_XML__Math_.xcu13
-rw-r--r--filter/source/config/fragments/filters/MathType_3_x.xcu13
-rw-r--r--filter/source/config/fragments/filters/MiniCalc__Palm_.xcu13
-rw-r--r--filter/source/config/fragments/filters/MultiMate_3_3__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/MultiMate_4__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/MultiMate_Adv__3_6__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/MultiMate_Adv__II_3_7__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/NAVY_DIF__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/OfficeWriter_4_0__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/OfficeWriter_5_0__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/OfficeWriter_6_x__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/PBM___Portable_Bitmap.xcu13
-rw-r--r--filter/source/config/fragments/filters/PCT___Mac_Pict.xcu13
-rw-r--r--filter/source/config/fragments/filters/PCX___Zsoft_Paintbrush.xcu13
-rw-r--r--filter/source/config/fragments/filters/PFS_First_Choice_1_0__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/PFS_First_Choice_2_0__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/PFS_First_Choice_3_0__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/PFS_Write__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/PGM___Portable_Graymap.xcu13
-rw-r--r--filter/source/config/fragments/filters/PNG___Portable_Network_Graphic.xcu13
-rw-r--r--filter/source/config/fragments/filters/PPM___Portable_Pixelmap.xcu13
-rw-r--r--filter/source/config/fragments/filters/PSD___Adobe_Photoshop.xcu13
-rw-r--r--filter/source/config/fragments/filters/Peach_Text__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/PocketWord_File.xcu13
-rw-r--r--filter/source/config/fragments/filters/Pocket_Excel.xcu13
-rw-r--r--filter/source/config/fragments/filters/Professional_Write_1_0__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/Professional_Write_2_x__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/Professional_Write_Plus__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/QPro.xcu13
-rw-r--r--filter/source/config/fragments/filters/Q_A_Write_1_0_3_0__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/Q_A_Write_4_0__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/RAS___Sun_Rasterfile.xcu13
-rw-r--r--filter/source/config/fragments/filters/Rapid_File_1_0__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/Rapid_File_1_2__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/Rich_Text_Format.xcu13
-rw-r--r--filter/source/config/fragments/filters/Rich_Text_Format__StarCalc_.xcu13
-rw-r--r--filter/source/config/fragments/filters/SGF___StarOffice_Writer_SGF.xcu13
-rw-r--r--filter/source/config/fragments/filters/SGV___StarDraw_2_0.xcu13
-rw-r--r--filter/source/config/fragments/filters/SVM___StarView_Metafile.xcu13
-rw-r--r--filter/source/config/fragments/filters/SYLK.xcu13
-rw-r--r--filter/source/config/fragments/filters/Samna_Word_IV_IV_Plus__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/StarCalc_1_0.xcu13
-rw-r--r--filter/source/config/fragments/filters/StarCalc_3_0.xcu13
-rw-r--r--filter/source/config/fragments/filters/StarCalc_3_0_Vorlage_Template.xcu10
-rw-r--r--filter/source/config/fragments/filters/StarCalc_3_0_Vorlage_Template_ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/StarCalc_4_0.xcu13
-rw-r--r--filter/source/config/fragments/filters/StarCalc_4_0_Vorlage_Template.xcu10
-rw-r--r--filter/source/config/fragments/filters/StarCalc_4_0_Vorlage_Template_ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/StarCalc_5_0.xcu13
-rw-r--r--filter/source/config/fragments/filters/StarCalc_5_0_Vorlage_Template.xcu10
-rw-r--r--filter/source/config/fragments/filters/StarCalc_5_0_Vorlage_Template_ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/StarChart_3_0.xcu13
-rw-r--r--filter/source/config/fragments/filters/StarChart_4_0.xcu13
-rw-r--r--filter/source/config/fragments/filters/StarChart_5_0.xcu13
-rw-r--r--filter/source/config/fragments/filters/StarDraw_3_0.xcu13
-rw-r--r--filter/source/config/fragments/filters/StarDraw_3_0_Vorlage.xcu10
-rw-r--r--filter/source/config/fragments/filters/StarDraw_3_0_Vorlage__StarImpress_.xcu10
-rw-r--r--filter/source/config/fragments/filters/StarDraw_3_0_Vorlage__StarImpress__ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/StarDraw_3_0_Vorlage_ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/StarDraw_3_0__StarImpress_.xcu13
-rw-r--r--filter/source/config/fragments/filters/StarDraw_5_0.xcu13
-rw-r--r--filter/source/config/fragments/filters/StarDraw_5_0_Vorlage.xcu10
-rw-r--r--filter/source/config/fragments/filters/StarDraw_5_0_Vorlage__StarImpress_.xcu10
-rw-r--r--filter/source/config/fragments/filters/StarDraw_5_0_Vorlage__StarImpress__ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/StarDraw_5_0_Vorlage_ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/StarDraw_5_0__StarImpress_.xcu13
-rw-r--r--filter/source/config/fragments/filters/StarImpress_4_0.xcu13
-rw-r--r--filter/source/config/fragments/filters/StarImpress_4_0_Vorlage.xcu10
-rw-r--r--filter/source/config/fragments/filters/StarImpress_4_0_Vorlage_ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/StarImpress_5_0.xcu13
-rw-r--r--filter/source/config/fragments/filters/StarImpress_5_0_Vorlage.xcu10
-rw-r--r--filter/source/config/fragments/filters/StarImpress_5_0_Vorlage_ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/StarImpress_5_0__packed_.xcu13
-rw-r--r--filter/source/config/fragments/filters/StarImpress_5_0__packed__ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/StarMath_2_0.xcu13
-rw-r--r--filter/source/config/fragments/filters/StarMath_3_0.xcu13
-rw-r--r--filter/source/config/fragments/filters/StarMath_4_0.xcu13
-rw-r--r--filter/source/config/fragments/filters/StarMath_5_0.xcu13
-rw-r--r--filter/source/config/fragments/filters/StarOffice_XML__Base_.xcu10
-rw-r--r--filter/source/config/fragments/filters/StarOffice_XML__Base__ui.xcu5
-rw-r--r--filter/source/config/fragments/filters/StarOffice_XML__Calc_.xcu10
-rw-r--r--filter/source/config/fragments/filters/StarOffice_XML__Calc__ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/StarOffice_XML__Chart_.xcu10
-rw-r--r--filter/source/config/fragments/filters/StarOffice_XML__Chart__ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/StarOffice_XML__Draw_.xcu10
-rw-r--r--filter/source/config/fragments/filters/StarOffice_XML__Draw__ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/StarOffice_XML__Impress_.xcu10
-rw-r--r--filter/source/config/fragments/filters/StarOffice_XML__Impress__ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/StarOffice_XML__Math_.xcu10
-rw-r--r--filter/source/config/fragments/filters/StarOffice_XML__Math__ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/StarOffice_XML__Writer_.xcu10
-rw-r--r--filter/source/config/fragments/filters/StarOffice_XML__Writer__ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/StarWriter_1_0.xcu13
-rw-r--r--filter/source/config/fragments/filters/StarWriter_2_0.xcu13
-rw-r--r--filter/source/config/fragments/filters/StarWriter_3_0.xcu13
-rw-r--r--filter/source/config/fragments/filters/StarWriter_3_0_Vorlage_Template.xcu10
-rw-r--r--filter/source/config/fragments/filters/StarWriter_3_0_Vorlage_Template_ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/StarWriter_3_0__StarWriter_GlobalDocument_.xcu13
-rw-r--r--filter/source/config/fragments/filters/StarWriter_3_0__StarWriter_Web_.xcu13
-rw-r--r--filter/source/config/fragments/filters/StarWriter_4_0.xcu13
-rw-r--r--filter/source/config/fragments/filters/StarWriter_4_0_GlobalDocument.xcu10
-rw-r--r--filter/source/config/fragments/filters/StarWriter_4_0_GlobalDocument_ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/StarWriter_4_0_Vorlage_Template.xcu10
-rw-r--r--filter/source/config/fragments/filters/StarWriter_4_0_Vorlage_Template_ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/StarWriter_4_0__StarWriter_GlobalDocument_.xcu13
-rw-r--r--filter/source/config/fragments/filters/StarWriter_4_0__StarWriter_Web_.xcu13
-rw-r--r--filter/source/config/fragments/filters/StarWriter_5_0.xcu13
-rw-r--r--filter/source/config/fragments/filters/StarWriter_5_0_GlobalDocument.xcu10
-rw-r--r--filter/source/config/fragments/filters/StarWriter_5_0_GlobalDocument_ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/StarWriter_5_0_Vorlage_Template.xcu10
-rw-r--r--filter/source/config/fragments/filters/StarWriter_5_0_Vorlage_Template_ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/StarWriter_5_0__StarWriter_GlobalDocument_.xcu13
-rw-r--r--filter/source/config/fragments/filters/StarWriter_5_0__StarWriter_Web_.xcu13
-rw-r--r--filter/source/config/fragments/filters/StarWriter_DOS.xcu13
-rw-r--r--filter/source/config/fragments/filters/StarWriter_Web_4_0_Vorlage_Template.xcu10
-rw-r--r--filter/source/config/fragments/filters/StarWriter_Web_4_0_Vorlage_Template_ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/StarWriter_Web_5_0_Vorlage_Template.xcu10
-rw-r--r--filter/source/config/fragments/filters/StarWriter_Web_5_0_Vorlage_Template_ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/T602Document.xcu13
-rw-r--r--filter/source/config/fragments/filters/TGA___Truevision_TARGA.xcu13
-rw-r--r--filter/source/config/fragments/filters/TIF___Tag_Image_File.xcu13
-rw-r--r--filter/source/config/fragments/filters/Text.xcu10
-rw-r--r--filter/source/config/fragments/filters/Text__StarWriter_Web_.xcu10
-rw-r--r--filter/source/config/fragments/filters/Text__StarWriter_Web__ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/Text___txt___csv__StarCalc_.xcu10
-rw-r--r--filter/source/config/fragments/filters/Text___txt___csv__StarCalc__ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/Text__encoded_.xcu10
-rw-r--r--filter/source/config/fragments/filters/Text__encoded___StarWriter_GlobalDocument_.xcu10
-rw-r--r--filter/source/config/fragments/filters/Text__encoded___StarWriter_GlobalDocument__ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/Text__encoded___StarWriter_Web_.xcu10
-rw-r--r--filter/source/config/fragments/filters/Text__encoded___StarWriter_Web__ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/Text__encoded__ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/Text_ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/Total_Word__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/UOF_presentation.xcu13
-rw-r--r--filter/source/config/fragments/filters/UOF_presentation_ui.xcu13
-rw-r--r--filter/source/config/fragments/filters/UOF_spreadsheet.xcu13
-rw-r--r--filter/source/config/fragments/filters/UOF_spreadsheet_ui.xcu13
-rw-r--r--filter/source/config/fragments/filters/UOF_text.xcu13
-rw-r--r--filter/source/config/fragments/filters/UOF_text_ui.xcu13
-rw-r--r--filter/source/config/fragments/filters/Uniplex_V7_V8__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/Uniplex_onGO__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/VolksWriter_3_and_4__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/VolksWriter_Deluxe__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/WITA__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/WMF___MS_Windows_Metafile.xcu13
-rw-r--r--filter/source/config/fragments/filters/Wang_II_SWP__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/Wang_PC__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/Wang_WP_Plus__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/Win_Write_3_x__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/WiziWord_3_0__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/WordPerfect.xcu13
-rw-r--r--filter/source/config/fragments/filters/WordPerfect_4_1__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/WordPerfect_4_2__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/WordPerfect_5_0__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/WordPerfect_5_1__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/WordPerfect_6_0__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/WordPerfect_6_1__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/WordPerfect_Mac_1__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/WordPerfect_Mac_2__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/WordPerfect_Mac_3__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/WordPerfect__Win__5_1_5_2__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/WordPerfect__Win__6_0__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/WordPerfect__Win__6_1__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/WordPerfect__Win__7_0__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/WordStar_2000_Rel__3_0__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/WordStar_2000_Rel__3_5__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/WordStar_3_3x__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/WordStar_3_45__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/WordStar_4_0___W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/WordStar_5_0___W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/WordStar_5_5___W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/WordStar_6_0___W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/WordStar_7_0___W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/WordStar__Win__1_x_2_0__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/WriteNow_3_0__Macintosh___W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/Writing_Assistant__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/XBM___X_Consortium.xcu13
-rw-r--r--filter/source/config/fragments/filters/XEROX_XIF_5_0__Illustrator___W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/XEROX_XIF_5_0__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/XEROX_XIF_6_0__Color_Bitmap___W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/XEROX_XIF_6_0__Res_Graphic___W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/XHTML_Calc_File.xcu13
-rw-r--r--filter/source/config/fragments/filters/XHTML_Draw_File.xcu13
-rw-r--r--filter/source/config/fragments/filters/XHTML_Impress_File.xcu13
-rw-r--r--filter/source/config/fragments/filters/XHTML_Writer_File.xcu13
-rw-r--r--filter/source/config/fragments/filters/XPM.xcu13
-rw-r--r--filter/source/config/fragments/filters/XyWrite_III___W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/XyWrite_III____W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/XyWrite_IV__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/XyWrite_Sig___Win___W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/XyWrite_Signature__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/XyWrite__Win__1_0__W4W_.xcu13
-rw-r--r--filter/source/config/fragments/filters/calc8.xcu10
-rw-r--r--filter/source/config/fragments/filters/calc8_template.xcu10
-rw-r--r--filter/source/config/fragments/filters/calc8_template_ui.xcu5
-rw-r--r--filter/source/config/fragments/filters/calc8_ui.xcu5
-rw-r--r--filter/source/config/fragments/filters/calc_HTML_WebQuery.xcu10
-rw-r--r--filter/source/config/fragments/filters/calc_HTML_WebQuery_ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/calc_MS_Excel_2007_Binary.xcu10
-rw-r--r--filter/source/config/fragments/filters/calc_MS_Excel_2007_Binary_ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/calc_MS_Excel_2007_XML.xcu10
-rw-r--r--filter/source/config/fragments/filters/calc_MS_Excel_2007_XML_Template.xcu10
-rw-r--r--filter/source/config/fragments/filters/calc_MS_Excel_2007_XML_Template_ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/calc_MS_Excel_2007_XML_ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/calc_StarOffice_XML_Calc_Template.xcu10
-rw-r--r--filter/source/config/fragments/filters/calc_StarOffice_XML_Calc_Template_ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/calc_pdf_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/chart8.xcu10
-rw-r--r--filter/source/config/fragments/filters/chart8_ui.xcu5
-rw-r--r--filter/source/config/fragments/filters/dBase.xcu13
-rw-r--r--filter/source/config/fragments/filters/draw8.xcu10
-rw-r--r--filter/source/config/fragments/filters/draw8_template.xcu10
-rw-r--r--filter/source/config/fragments/filters/draw8_template_ui.xcu5
-rw-r--r--filter/source/config/fragments/filters/draw8_ui.xcu5
-rw-r--r--filter/source/config/fragments/filters/draw_PCD_Photo_CD_Base.xcu13
-rw-r--r--filter/source/config/fragments/filters/draw_PCD_Photo_CD_Base16.xcu13
-rw-r--r--filter/source/config/fragments/filters/draw_PCD_Photo_CD_Base4.xcu13
-rw-r--r--filter/source/config/fragments/filters/draw_StarOffice_XML_Draw_Template.xcu10
-rw-r--r--filter/source/config/fragments/filters/draw_StarOffice_XML_Draw_Template_ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/draw_bmp_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/draw_emf_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/draw_eps_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/draw_flash_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/draw_gif_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/draw_html_Export.xcu10
-rw-r--r--filter/source/config/fragments/filters/draw_html_Export_ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/draw_jpg_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/draw_met_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/draw_pbm_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/draw_pct_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/draw_pdf_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/draw_pgm_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/draw_png_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/draw_ppm_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/draw_ras_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/draw_svg_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/draw_svm_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/draw_tif_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/draw_wmf_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/draw_xpm_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/impress8.xcu10
-rw-r--r--filter/source/config/fragments/filters/impress8_draw.xcu10
-rw-r--r--filter/source/config/fragments/filters/impress8_draw_ui.xcu5
-rw-r--r--filter/source/config/fragments/filters/impress8_template.xcu10
-rw-r--r--filter/source/config/fragments/filters/impress8_template_ui.xcu5
-rw-r--r--filter/source/config/fragments/filters/impress8_ui.xcu5
-rw-r--r--filter/source/config/fragments/filters/impress_MS_PowerPoint_2007_XML.xcu10
-rw-r--r--filter/source/config/fragments/filters/impress_MS_PowerPoint_2007_XML_Template.xcu10
-rw-r--r--filter/source/config/fragments/filters/impress_MS_PowerPoint_2007_XML_Template_ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/impress_MS_PowerPoint_2007_XML_ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/impress_StarOffice_XML_Draw.xcu10
-rw-r--r--filter/source/config/fragments/filters/impress_StarOffice_XML_Draw_ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/impress_StarOffice_XML_Impress_Template.xcu10
-rw-r--r--filter/source/config/fragments/filters/impress_StarOffice_XML_Impress_Template_ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/impress_bmp_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/impress_emf_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/impress_eps_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/impress_flash_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/impress_gif_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/impress_html_Export.xcu10
-rw-r--r--filter/source/config/fragments/filters/impress_html_Export_ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/impress_jpg_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/impress_met_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/impress_pbm_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/impress_pct_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/impress_pdf_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/impress_pgm_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/impress_png_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/impress_ppm_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/impress_ras_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/impress_svg_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/impress_svm_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/impress_tif_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/impress_wmf_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/impress_xpm_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/makefile.mk57
-rw-r--r--filter/source/config/fragments/filters/math8.xcu10
-rw-r--r--filter/source/config/fragments/filters/math8_ui.xcu5
-rw-r--r--filter/source/config/fragments/filters/math_pdf_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/placeware_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/writer8.xcu10
-rw-r--r--filter/source/config/fragments/filters/writer8_template.xcu10
-rw-r--r--filter/source/config/fragments/filters/writer8_template_ui.xcu5
-rw-r--r--filter/source/config/fragments/filters/writer8_ui.xcu5
-rw-r--r--filter/source/config/fragments/filters/writer_MIZI_Hwp_97.xcu13
-rw-r--r--filter/source/config/fragments/filters/writer_StarOffice_XML_Writer_Template.xcu10
-rw-r--r--filter/source/config/fragments/filters/writer_StarOffice_XML_Writer_Template_ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/writer_globaldocument_StarOffice_XML_Writer.xcu10
-rw-r--r--filter/source/config/fragments/filters/writer_globaldocument_StarOffice_XML_Writer_GlobalDocument.xcu10
-rw-r--r--filter/source/config/fragments/filters/writer_globaldocument_StarOffice_XML_Writer_GlobalDocument_ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/writer_globaldocument_StarOffice_XML_Writer_ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/writer_globaldocument_pdf_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/writer_pdf_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/writer_web_HTML_help.xcu13
-rw-r--r--filter/source/config/fragments/filters/writer_web_StarOffice_XML_Writer.xcu10
-rw-r--r--filter/source/config/fragments/filters/writer_web_StarOffice_XML_Writer_Web_Template.xcu10
-rw-r--r--filter/source/config/fragments/filters/writer_web_StarOffice_XML_Writer_Web_Template_ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/writer_web_StarOffice_XML_Writer_ui.xcu6
-rw-r--r--filter/source/config/fragments/filters/writer_web_pdf_Export.xcu13
-rw-r--r--filter/source/config/fragments/filters/writerglobal8.xcu10
-rw-r--r--filter/source/config/fragments/filters/writerglobal8_HTML.xcu13
-rw-r--r--filter/source/config/fragments/filters/writerglobal8_ui.xcu5
-rw-r--r--filter/source/config/fragments/filters/writerglobal8_writer.xcu10
-rw-r--r--filter/source/config/fragments/filters/writerglobal8_writer_ui.xcu5
-rw-r--r--filter/source/config/fragments/filters/writerweb8_writer.xcu10
-rw-r--r--filter/source/config/fragments/filters/writerweb8_writer_template.xcu10
-rw-r--r--filter/source/config/fragments/filters/writerweb8_writer_template_ui.xcu5
-rw-r--r--filter/source/config/fragments/filters/writerweb8_writer_ui.xcu5
-rw-r--r--filter/source/config/fragments/frameloaders/com_sun_star_comp_chart2_ChartFrameLoader.xcu3
-rw-r--r--filter/source/config/fragments/frameloaders/com_sun_star_frame_Bibliography.xcu3
-rw-r--r--filter/source/config/fragments/frameloaders/com_sun_star_sdb_ContentLoader.xcu3
-rw-r--r--filter/source/config/fragments/frameloaders/org_openoffice_comp_dbflt_DBContentLoader2.xcu3
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/bmp_Export.xcu10
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/bmp_Import.xcu10
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/dxf_Import.xcu10
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/emf_Export.xcu10
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/emf_Import.xcu10
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/eps_Export.xcu10
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/eps_Import.xcu10
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/gif_Export.xcu10
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/gif_Import.xcu10
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/jpg_Export.xcu10
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/jpg_Import.xcu10
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/met_Export.xcu10
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/met_Import.xcu10
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/pbm_Export.xcu10
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/pbm_Import.xcu10
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/pcd_Import_Base.xcu10
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/pcd_Import_Base16.xcu10
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/pcd_Import_Base4.xcu10
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/pct_Export.xcu10
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/pct_Import.xcu10
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/pcx_Import.xcu10
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/pgm_Export.xcu10
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/pgm_Import.xcu10
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/png_Export.xcu10
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/png_Import.xcu10
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/ppm_Export.xcu10
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/ppm_Import.xcu10
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/psd_Import.xcu10
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/ras_Export.xcu10
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/ras_Import.xcu10
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/sgf_Import.xcu10
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/sgv_Import.xcu10
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/svg_Export.xcu10
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/svm_Export.xcu10
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/svm_Import.xcu10
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/tga_Import.xcu10
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/tif_Export.xcu10
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/tif_Import.xcu10
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/wmf_Export.xcu10
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/wmf_Import.xcu10
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/xbm_Import.xcu10
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/xpm_Export.xcu10
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/xpm_Import.xcu10
-rw-r--r--filter/source/config/fragments/langfilter.xsl37
-rw-r--r--filter/source/config/fragments/makefile.mk255
-rw-r--r--filter/source/config/fragments/packagedef.mk71
-rw-r--r--filter/source/config/fragments/types/MS_Excel_2007_Binary.xcu10
-rw-r--r--filter/source/config/fragments/types/MS_Excel_2007_XML.xcu10
-rw-r--r--filter/source/config/fragments/types/MS_Excel_2007_XML_Template.xcu10
-rw-r--r--filter/source/config/fragments/types/MS_PowerPoint_2007_XML.xcu10
-rw-r--r--filter/source/config/fragments/types/MS_PowerPoint_2007_XML_Template.xcu10
-rw-r--r--filter/source/config/fragments/types/StarBase.xcu12
-rw-r--r--filter/source/config/fragments/types/Unified_Office_Format_presentation.xcu12
-rw-r--r--filter/source/config/fragments/types/Unified_Office_Format_spreadsheet.xcu12
-rw-r--r--filter/source/config/fragments/types/Unified_Office_Format_text.xcu12
-rw-r--r--filter/source/config/fragments/types/XHTML_File.xcu12
-rw-r--r--filter/source/config/fragments/types/bmp_MS_Windows.xcu12
-rw-r--r--filter/source/config/fragments/types/calc8.xcu12
-rw-r--r--filter/source/config/fragments/types/calc8_template.xcu12
-rw-r--r--filter/source/config/fragments/types/calc_DIF.xcu12
-rw-r--r--filter/source/config/fragments/types/calc_Lotus.xcu12
-rw-r--r--filter/source/config/fragments/types/calc_MS_Excel_2003_XML.xcu12
-rw-r--r--filter/source/config/fragments/types/calc_MS_Excel_40.xcu12
-rw-r--r--filter/source/config/fragments/types/calc_MS_Excel_40_VorlageTemplate.xcu12
-rw-r--r--filter/source/config/fragments/types/calc_MS_Excel_5095.xcu12
-rw-r--r--filter/source/config/fragments/types/calc_MS_Excel_5095_VorlageTemplate.xcu12
-rw-r--r--filter/source/config/fragments/types/calc_MS_Excel_95.xcu12
-rw-r--r--filter/source/config/fragments/types/calc_MS_Excel_95_VorlageTemplate.xcu12
-rw-r--r--filter/source/config/fragments/types/calc_MS_Excel_97.xcu12
-rw-r--r--filter/source/config/fragments/types/calc_MS_Excel_97_VorlageTemplate.xcu12
-rw-r--r--filter/source/config/fragments/types/calc_MiniCalc_PalmDB_File.xcu12
-rw-r--r--filter/source/config/fragments/types/calc_Pocket_Excel_File.xcu12
-rw-r--r--filter/source/config/fragments/types/calc_QPro.xcu12
-rw-r--r--filter/source/config/fragments/types/calc_SYLK.xcu12
-rw-r--r--filter/source/config/fragments/types/calc_StarCalc_10.xcu12
-rw-r--r--filter/source/config/fragments/types/calc_StarCalc_30.xcu12
-rw-r--r--filter/source/config/fragments/types/calc_StarCalc_30_VorlageTemplate.xcu12
-rw-r--r--filter/source/config/fragments/types/calc_StarCalc_40.xcu12
-rw-r--r--filter/source/config/fragments/types/calc_StarCalc_40_VorlageTemplate.xcu12
-rw-r--r--filter/source/config/fragments/types/calc_StarCalc_50.xcu12
-rw-r--r--filter/source/config/fragments/types/calc_StarCalc_50_VorlageTemplate.xcu12
-rw-r--r--filter/source/config/fragments/types/calc_StarOffice_XML_Calc.xcu12
-rw-r--r--filter/source/config/fragments/types/calc_StarOffice_XML_Calc_Template.xcu12
-rw-r--r--filter/source/config/fragments/types/calc_Text_txt_csv_StarCalc.xcu12
-rw-r--r--filter/source/config/fragments/types/calc_dBase.xcu12
-rw-r--r--filter/source/config/fragments/types/chart8.xcu12
-rw-r--r--filter/source/config/fragments/types/chart_StarChart_30.xcu12
-rw-r--r--filter/source/config/fragments/types/chart_StarChart_40.xcu12
-rw-r--r--filter/source/config/fragments/types/chart_StarChart_50.xcu12
-rw-r--r--filter/source/config/fragments/types/chart_StarOffice_XML_Chart.xcu12
-rw-r--r--filter/source/config/fragments/types/component_Bibliography.xcu12
-rw-r--r--filter/source/config/fragments/types/component_DB.xcu12
-rw-r--r--filter/source/config/fragments/types/draw8.xcu12
-rw-r--r--filter/source/config/fragments/types/draw8_template.xcu12
-rw-r--r--filter/source/config/fragments/types/draw_StarDraw_30.xcu12
-rw-r--r--filter/source/config/fragments/types/draw_StarDraw_30_Vorlage.xcu12
-rw-r--r--filter/source/config/fragments/types/draw_StarDraw_50.xcu12
-rw-r--r--filter/source/config/fragments/types/draw_StarDraw_50_Vorlage.xcu12
-rw-r--r--filter/source/config/fragments/types/draw_StarOffice_XML_Draw.xcu12
-rw-r--r--filter/source/config/fragments/types/draw_StarOffice_XML_Draw_Template.xcu12
-rw-r--r--filter/source/config/fragments/types/dxf_AutoCAD_Interchange.xcu12
-rw-r--r--filter/source/config/fragments/types/emf_MS_Windows_Metafile.xcu12
-rw-r--r--filter/source/config/fragments/types/eps_Encapsulated_PostScript.xcu12
-rw-r--r--filter/source/config/fragments/types/gif_Graphics_Interchange.xcu12
-rw-r--r--filter/source/config/fragments/types/graphic_HTML.xcu12
-rw-r--r--filter/source/config/fragments/types/graphic_SWF.xcu12
-rw-r--r--filter/source/config/fragments/types/impress8.xcu12
-rw-r--r--filter/source/config/fragments/types/impress8_template.xcu12
-rw-r--r--filter/source/config/fragments/types/impress_CGM_Computer_Graphics_Metafile.xcu12
-rw-r--r--filter/source/config/fragments/types/impress_MS_PowerPoint_97.xcu12
-rw-r--r--filter/source/config/fragments/types/impress_MS_PowerPoint_97_Vorlage.xcu12
-rw-r--r--filter/source/config/fragments/types/impress_StarImpress_40.xcu12
-rw-r--r--filter/source/config/fragments/types/impress_StarImpress_40_Vorlage.xcu12
-rw-r--r--filter/source/config/fragments/types/impress_StarImpress_50.xcu12
-rw-r--r--filter/source/config/fragments/types/impress_StarImpress_50_Vorlage.xcu12
-rw-r--r--filter/source/config/fragments/types/impress_StarImpress_50_packed.xcu12
-rw-r--r--filter/source/config/fragments/types/impress_StarOffice_XML_Impress.xcu12
-rw-r--r--filter/source/config/fragments/types/impress_StarOffice_XML_Impress_Template.xcu12
-rw-r--r--filter/source/config/fragments/types/jpg_JPEG.xcu12
-rw-r--r--filter/source/config/fragments/types/makefile.mk54
-rw-r--r--filter/source/config/fragments/types/math8.xcu12
-rw-r--r--filter/source/config/fragments/types/math_MathML_XML_Math.xcu12
-rw-r--r--filter/source/config/fragments/types/math_MathType_3x.xcu12
-rw-r--r--filter/source/config/fragments/types/math_StarMath_20.xcu12
-rw-r--r--filter/source/config/fragments/types/math_StarMath_30.xcu12
-rw-r--r--filter/source/config/fragments/types/math_StarMath_40.xcu12
-rw-r--r--filter/source/config/fragments/types/math_StarMath_50.xcu12
-rw-r--r--filter/source/config/fragments/types/math_StarOffice_XML_Math.xcu12
-rw-r--r--filter/source/config/fragments/types/met_OS2_Metafile.xcu12
-rw-r--r--filter/source/config/fragments/types/oxt_OpenOffice_Extension.xcu12
-rw-r--r--filter/source/config/fragments/types/pbm_Portable_Bitmap.xcu12
-rw-r--r--filter/source/config/fragments/types/pcd_Photo_CD_Base.xcu12
-rw-r--r--filter/source/config/fragments/types/pcd_Photo_CD_Base16.xcu12
-rw-r--r--filter/source/config/fragments/types/pcd_Photo_CD_Base4.xcu12
-rw-r--r--filter/source/config/fragments/types/pct_Mac_Pict.xcu12
-rw-r--r--filter/source/config/fragments/types/pcx_Zsoft_Paintbrush.xcu12
-rw-r--r--filter/source/config/fragments/types/pdf_Portable_Document_Format.xcu12
-rw-r--r--filter/source/config/fragments/types/pgm_Portable_Graymap.xcu12
-rw-r--r--filter/source/config/fragments/types/png_Portable_Network_Graphic.xcu12
-rw-r--r--filter/source/config/fragments/types/ppm_Portable_Pixelmap.xcu12
-rw-r--r--filter/source/config/fragments/types/psd_Adobe_Photoshop.xcu12
-rw-r--r--filter/source/config/fragments/types/pwp_PlaceWare.xcu12
-rw-r--r--filter/source/config/fragments/types/ras_Sun_Rasterfile.xcu12
-rw-r--r--filter/source/config/fragments/types/sgf_StarOffice_Writer_SGF.xcu12
-rw-r--r--filter/source/config/fragments/types/sgv_StarDraw_20.xcu12
-rw-r--r--filter/source/config/fragments/types/svg_Scalable_Vector_Graphics.xcu12
-rw-r--r--filter/source/config/fragments/types/svm_StarView_Metafile.xcu12
-rw-r--r--filter/source/config/fragments/types/tga_Truevision_TARGA.xcu12
-rw-r--r--filter/source/config/fragments/types/tif_Tag_Image_File.xcu12
-rw-r--r--filter/source/config/fragments/types/wav_Wave_Audio_File.xcu12
-rw-r--r--filter/source/config/fragments/types/wmf_MS_Windows_Metafile.xcu12
-rw-r--r--filter/source/config/fragments/types/writer8.xcu12
-rw-r--r--filter/source/config/fragments/types/writer8_template.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_Ami_Pro_1x_31_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_AportisDoc_PalmDB_File.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_CTOS_DEF_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_Claris_Works_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_DCAFFT_Final_Form_Text_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_DCA_Revisable_Form_Text_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_DCA_with_Display_Write_5_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_DEC_DX_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_DEC_WPS_PLUS_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_DataGeneral_CEO_Write_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_DisplayWrite_20_4x_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_DisplayWrite_5x_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_DocBook_File.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_EBCDIC_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_Enable_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_Frame_Maker_MIF_30_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_Frame_Maker_MIF_40_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_Frame_Maker_MIF_50_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_Frame_Work_III_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_Frame_Work_IV_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_HP_AdvanceWrite_Plus_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_ICL_Office_Power_6_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_ICL_Office_Power_7_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_Interleaf_5_6_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_Interleaf_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_Legacy_Winstar_onGO_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_Lotus_1_2_3_10_DOS_StarWriter.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_Lotus_1_2_3_10_WIN_StarWriter.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_Lotus_Manuscript_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_MASS_11_Rel_80_83_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_MASS_11_Rel_85_90_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_MIZI_Hwp_97.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_MS_MacWord_30_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_MS_MacWord_40_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_MS_MacWord_5x_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_MS_WinWord_1x_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_MS_WinWord_2x_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_MS_WinWord_5.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_MS_WinWord_60.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_MS_Word_2003_XML.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_MS_Word_2007_XML.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_MS_Word_2007_XML_Template.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_MS_Word_3x_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_MS_Word_4x_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_MS_Word_5x_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_MS_Word_6x_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_MS_Word_95.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_MS_Word_95_Vorlage.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_MS_Word_97.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_MS_Word_97_Vorlage.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_MS_Works_20_DOS_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_MS_Works_30_Win_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_MS_Works_40_Mac_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_Mac_Write_4x_50_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_Mac_Write_II_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_Mac_Write_Pro_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_MultiMate_33_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_MultiMate_4_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_MultiMate_Adv_36_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_MultiMate_Adv_II_37_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_NAVY_DIF_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_OfficeWriter_40_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_OfficeWriter_50_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_OfficeWriter_6x_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_PFS_First_Choice_10_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_PFS_First_Choice_20_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_PFS_First_Choice_30_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_PFS_Write_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_Peach_Text_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_PocketWord_File.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_Professional_Write_10_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_Professional_Write_2x_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_Professional_Write_Plus_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_QA_Write_10_30_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_QA_Write_40_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_Rapid_File_10_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_Rapid_File_12_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_Rich_Text_Format.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_Samna_Word_IV_IV_Plus_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_StarOffice_XML_Writer.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_StarOffice_XML_Writer_Template.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_StarWriter_10.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_StarWriter_20.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_StarWriter_30.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_StarWriter_30_VorlageTemplate.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_StarWriter_40.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_StarWriter_40_VorlageTemplate.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_StarWriter_50.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_StarWriter_50_VorlageTemplate.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_StarWriter_DOS.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_T602_Document.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_Text.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_Text_encoded.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_Total_Word_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_Uniplex_V7_V8_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_Uniplex_onGO_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_VolksWriter_3_and_4_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_VolksWriter_Deluxe_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_WITA_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_Wang_II_SWP_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_Wang_PC_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_Wang_WP_Plus_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_Win_Write_3x_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_WiziWord_30_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_WordPerfect_41_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_WordPerfect_42_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_WordPerfect_50_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_WordPerfect_51_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_WordPerfect_60_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_WordPerfect_61_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_WordPerfect_Document.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_WordPerfect_Mac_1_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_WordPerfect_Mac_2_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_WordPerfect_Mac_3_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_WordPerfect_Win_51_52_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_WordPerfect_Win_60_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_WordPerfect_Win_61_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_WordPerfect_Win_70_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_WordStar_2000_Rel_30_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_WordStar_2000_Rel_35_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_WordStar_33x_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_WordStar_345_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_WordStar_40_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_WordStar_50_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_WordStar_55_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_WordStar_60_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_WordStar_70_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_WordStar_Win_1x_20_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_WriteNow_30_Macintosh_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_Writing_Assistant_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_XEROX_XIF_50_Illustrator_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_XEROX_XIF_50_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_XEROX_XIF_60_Color_Bitmap_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_XEROX_XIF_60_Res_Graphic_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_XyWrite_IIIP_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_XyWrite_III_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_XyWrite_IV_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_XyWrite_Sig_Win_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_XyWrite_Signature_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_XyWrite_Win_10_W4W.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_globaldocument_StarOffice_XML_Writer_GlobalDocument.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_globaldocument_StarWriter_40GlobalDocument.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_globaldocument_StarWriter_50GlobalDocument.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_web_HTML.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_web_HTML_help.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_web_StarOffice_XML_Writer_Web_Template.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_web_StarWriterWeb_40_VorlageTemplate.xcu12
-rw-r--r--filter/source/config/fragments/types/writer_web_StarWriterWeb_50_VorlageTemplate.xcu12
-rw-r--r--filter/source/config/fragments/types/writerglobal8.xcu12
-rw-r--r--filter/source/config/fragments/types/writerweb8_writer_template.xcu12
-rw-r--r--filter/source/config/fragments/types/xbm_X_Consortium.xcu12
-rw-r--r--filter/source/config/fragments/types/xpm_XPM.xcu12
-rw-r--r--filter/source/config/tools/Manifest.mf4
-rwxr-xr-xfilter/source/config/tools/merge/pyAltFCFGMerge591
-rw-r--r--filter/source/config/tools/split/FCFGSplit.cfg110
-rw-r--r--filter/source/config/tools/split/FCFGSplit.java565
-rw-r--r--filter/source/config/tools/split/Manifest.mf1
-rw-r--r--filter/source/config/tools/split/Splitter.java310
-rw-r--r--filter/source/config/tools/split/SplitterData.java87
-rw-r--r--filter/source/config/tools/split/makefile.mk88
-rw-r--r--filter/source/docbook/DocBookTemplate.stwbin0 -> 6688 bytes-rw-r--r--filter/source/docbook/docbooktosoffheadings.xsl1424
-rw-r--r--filter/source/docbook/makefile.mk51
-rw-r--r--filter/source/docbook/sofftodocbookheadings.xsl1180
-rw-r--r--filter/source/filtertracer/exports.dxp3
-rw-r--r--filter/source/filtertracer/filtertracer.cxx256
-rw-r--r--filter/source/filtertracer/filtertracer.hxx186
-rw-r--r--filter/source/filtertracer/filtertraceruno.cxx110
-rw-r--r--filter/source/filtertracer/makefile.mk63
-rw-r--r--filter/source/flash/impswfdialog.cxx125
-rw-r--r--filter/source/flash/impswfdialog.hrc48
-rw-r--r--filter/source/flash/impswfdialog.hxx85
-rw-r--r--filter/source/flash/impswfdialog.src182
-rw-r--r--filter/source/flash/makefile.mk98
-rw-r--r--filter/source/flash/swfdialog.cxx283
-rw-r--r--filter/source/flash/swfdialog.hxx89
-rw-r--r--filter/source/flash/swfexporter.cxx768
-rw-r--r--filter/source/flash/swfexporter.hxx218
-rw-r--r--filter/source/flash/swffilter.cxx526
-rw-r--r--filter/source/flash/swfuno.cxx136
-rw-r--r--filter/source/flash/swfwriter.cxx640
-rw-r--r--filter/source/flash/swfwriter.hxx462
-rw-r--r--filter/source/flash/swfwriter1.cxx2126
-rw-r--r--filter/source/flash/swfwriter2.cxx692
-rw-r--r--filter/source/graphicfilter/egif/dlgegif.cxx108
-rw-r--r--filter/source/graphicfilter/egif/dlgegif.hrc36
-rw-r--r--filter/source/graphicfilter/egif/dlgegif.hxx71
-rw-r--r--filter/source/graphicfilter/egif/dlgegif.src118
-rw-r--r--filter/source/graphicfilter/egif/egif.cxx601
-rw-r--r--filter/source/graphicfilter/egif/egifstr.src39
-rw-r--r--filter/source/graphicfilter/egif/exports.map8
-rw-r--r--filter/source/graphicfilter/egif/giflzwc.cxx256
-rw-r--r--filter/source/graphicfilter/egif/giflzwc.hxx65
-rw-r--r--filter/source/graphicfilter/egif/makefile.mk78
-rw-r--r--filter/source/graphicfilter/egif/strings.hrc28
-rw-r--r--filter/source/graphicfilter/eos2met/dlgeos2.cxx179
-rw-r--r--filter/source/graphicfilter/eos2met/dlgeos2.hrc41
-rw-r--r--filter/source/graphicfilter/eos2met/dlgeos2.hxx80
-rw-r--r--filter/source/graphicfilter/eos2met/dlgeos2.src162
-rw-r--r--filter/source/graphicfilter/eos2met/eos2met.cxx2622
-rw-r--r--filter/source/graphicfilter/eos2met/eos2mstr.src38
-rw-r--r--filter/source/graphicfilter/eos2met/exports.map8
-rw-r--r--filter/source/graphicfilter/eos2met/makefile.mk74
-rw-r--r--filter/source/graphicfilter/eos2met/strings.hrc29
-rw-r--r--filter/source/graphicfilter/epbm/dlgepbm.cxx99
-rw-r--r--filter/source/graphicfilter/epbm/dlgepbm.hrc34
-rw-r--r--filter/source/graphicfilter/epbm/dlgepbm.hxx71
-rw-r--r--filter/source/graphicfilter/epbm/dlgepbm.src106
-rw-r--r--filter/source/graphicfilter/epbm/epbm.cxx242
-rw-r--r--filter/source/graphicfilter/epbm/epbmstr.src35
-rw-r--r--filter/source/graphicfilter/epbm/exports.map8
-rw-r--r--filter/source/graphicfilter/epbm/makefile.mk75
-rw-r--r--filter/source/graphicfilter/epbm/strings.hrc27
-rw-r--r--filter/source/graphicfilter/epgm/dlgepgm.cxx97
-rw-r--r--filter/source/graphicfilter/epgm/dlgepgm.hrc34
-rw-r--r--filter/source/graphicfilter/epgm/dlgepgm.hxx71
-rw-r--r--filter/source/graphicfilter/epgm/dlgepgm.src105
-rw-r--r--filter/source/graphicfilter/epgm/epgm.cxx267
-rw-r--r--filter/source/graphicfilter/epgm/epgmstr.src35
-rw-r--r--filter/source/graphicfilter/epgm/exports.map8
-rw-r--r--filter/source/graphicfilter/epgm/makefile.mk76
-rw-r--r--filter/source/graphicfilter/epgm/strings.hrc27
-rw-r--r--filter/source/graphicfilter/epict/dlgepct.cxx183
-rw-r--r--filter/source/graphicfilter/epict/dlgepct.hrc41
-rw-r--r--filter/source/graphicfilter/epict/dlgepct.hxx80
-rw-r--r--filter/source/graphicfilter/epict/dlgepct.src163
-rw-r--r--filter/source/graphicfilter/epict/epict.cxx2358
-rw-r--r--filter/source/graphicfilter/epict/epictstr.src38
-rw-r--r--filter/source/graphicfilter/epict/exports.map8
-rw-r--r--filter/source/graphicfilter/epict/makefile.mk76
-rw-r--r--filter/source/graphicfilter/epict/strings.hrc29
-rw-r--r--filter/source/graphicfilter/eppm/dlgeppm.cxx96
-rw-r--r--filter/source/graphicfilter/eppm/dlgeppm.hrc34
-rw-r--r--filter/source/graphicfilter/eppm/dlgeppm.hxx71
-rw-r--r--filter/source/graphicfilter/eppm/dlgeppm.src106
-rw-r--r--filter/source/graphicfilter/eppm/eppm.cxx274
-rw-r--r--filter/source/graphicfilter/eppm/eppmstr.src35
-rw-r--r--filter/source/graphicfilter/eppm/exports.map8
-rw-r--r--filter/source/graphicfilter/eppm/makefile.mk76
-rw-r--r--filter/source/graphicfilter/eppm/strings.hrc27
-rw-r--r--filter/source/graphicfilter/eps/dlgeps.cxx206
-rw-r--r--filter/source/graphicfilter/eps/dlgeps.hrc43
-rw-r--r--filter/source/graphicfilter/eps/dlgeps.hxx82
-rw-r--r--filter/source/graphicfilter/eps/dlgeps.src160
-rw-r--r--filter/source/graphicfilter/eps/eps.cxx2767
-rw-r--r--filter/source/graphicfilter/eps/epsstr.src70
-rw-r--r--filter/source/graphicfilter/eps/exports.map8
-rw-r--r--filter/source/graphicfilter/eps/makefile.mk79
-rw-r--r--filter/source/graphicfilter/eps/strings.hrc29
-rw-r--r--filter/source/graphicfilter/eras/eras.cxx288
-rw-r--r--filter/source/graphicfilter/eras/exports.map7
-rw-r--r--filter/source/graphicfilter/eras/makefile.mk67
-rw-r--r--filter/source/graphicfilter/etiff/etiff.cxx618
-rw-r--r--filter/source/graphicfilter/etiff/exports.map7
-rw-r--r--filter/source/graphicfilter/etiff/makefile.mk65
-rw-r--r--filter/source/graphicfilter/expm/expm.cxx273
-rw-r--r--filter/source/graphicfilter/expm/exports.map7
-rw-r--r--filter/source/graphicfilter/expm/makefile.mk66
-rw-r--r--filter/source/graphicfilter/icgm/actimpr.cxx1134
-rw-r--r--filter/source/graphicfilter/icgm/bitmap.cxx410
-rw-r--r--filter/source/graphicfilter/icgm/bitmap.hxx87
-rw-r--r--filter/source/graphicfilter/icgm/bundles.cxx288
-rw-r--r--filter/source/graphicfilter/icgm/bundles.hxx173
-rw-r--r--filter/source/graphicfilter/icgm/cgm.cxx927
-rw-r--r--filter/source/graphicfilter/icgm/cgm.hxx178
-rw-r--r--filter/source/graphicfilter/icgm/cgmres.hrc28
-rw-r--r--filter/source/graphicfilter/icgm/cgmtypes.hxx145
-rw-r--r--filter/source/graphicfilter/icgm/chart.cxx100
-rw-r--r--filter/source/graphicfilter/icgm/chart.hxx214
-rw-r--r--filter/source/graphicfilter/icgm/class0.cxx138
-rw-r--r--filter/source/graphicfilter/icgm/class1.cxx231
-rw-r--r--filter/source/graphicfilter/icgm/class2.cxx227
-rw-r--r--filter/source/graphicfilter/icgm/class3.cxx144
-rw-r--r--filter/source/graphicfilter/icgm/class4.cxx861
-rw-r--r--filter/source/graphicfilter/icgm/class5.cxx524
-rw-r--r--filter/source/graphicfilter/icgm/class7.cxx237
-rw-r--r--filter/source/graphicfilter/icgm/classx.cxx262
-rw-r--r--filter/source/graphicfilter/icgm/elements.cxx395
-rw-r--r--filter/source/graphicfilter/icgm/elements.hxx145
-rw-r--r--filter/source/graphicfilter/icgm/exports.map7
-rw-r--r--filter/source/graphicfilter/icgm/main.hxx63
-rw-r--r--filter/source/graphicfilter/icgm/makefile.mk80
-rw-r--r--filter/source/graphicfilter/icgm/outact.cxx200
-rw-r--r--filter/source/graphicfilter/icgm/outact.hxx148
-rw-r--r--filter/source/graphicfilter/idxf/dxf2mtf.cxx980
-rw-r--r--filter/source/graphicfilter/idxf/dxf2mtf.hxx128
-rw-r--r--filter/source/graphicfilter/idxf/dxfblkrd.cxx139
-rw-r--r--filter/source/graphicfilter/idxf/dxfblkrd.hxx87
-rw-r--r--filter/source/graphicfilter/idxf/dxfentrd.cxx871
-rw-r--r--filter/source/graphicfilter/idxf/dxfentrd.hxx602
-rw-r--r--filter/source/graphicfilter/idxf/dxfgrprd.cxx361
-rw-r--r--filter/source/graphicfilter/idxf/dxfgrprd.hxx155
-rw-r--r--filter/source/graphicfilter/idxf/dxfreprd.cxx385
-rw-r--r--filter/source/graphicfilter/idxf/dxfreprd.hxx138
-rw-r--r--filter/source/graphicfilter/idxf/dxftblrd.cxx348
-rw-r--r--filter/source/graphicfilter/idxf/dxftblrd.hxx183
-rw-r--r--filter/source/graphicfilter/idxf/dxfvec.cxx254
-rw-r--r--filter/source/graphicfilter/idxf/dxfvec.hxx261
-rw-r--r--filter/source/graphicfilter/idxf/exports.map7
-rw-r--r--filter/source/graphicfilter/idxf/idxf.cxx53
-rw-r--r--filter/source/graphicfilter/idxf/makefile.mk79
-rw-r--r--filter/source/graphicfilter/ieps/exports.map7
-rw-r--r--filter/source/graphicfilter/ieps/ieps.cxx744
-rw-r--r--filter/source/graphicfilter/ieps/makefile.mk66
-rw-r--r--filter/source/graphicfilter/ios2met/exports.map7
-rw-r--r--filter/source/graphicfilter/ios2met/ios2met.cxx2757
-rw-r--r--filter/source/graphicfilter/ios2met/makefile.mk68
-rw-r--r--filter/source/graphicfilter/ipbm/exports.map7
-rw-r--r--filter/source/graphicfilter/ipbm/ipbm.cxx538
-rw-r--r--filter/source/graphicfilter/ipbm/makefile.mk68
-rw-r--r--filter/source/graphicfilter/ipcd/exports.map7
-rw-r--r--filter/source/graphicfilter/ipcd/ipcd.cxx394
-rw-r--r--filter/source/graphicfilter/ipcd/makefile.mk67
-rw-r--r--filter/source/graphicfilter/ipcx/exports.map7
-rw-r--r--filter/source/graphicfilter/ipcx/ipcx.cxx431
-rw-r--r--filter/source/graphicfilter/ipcx/makefile.mk67
-rw-r--r--filter/source/graphicfilter/ipict/exports.map7
-rw-r--r--filter/source/graphicfilter/ipict/ipict.cxx1911
-rw-r--r--filter/source/graphicfilter/ipict/makefile.mk68
-rw-r--r--filter/source/graphicfilter/ipsd/exports.map7
-rw-r--r--filter/source/graphicfilter/ipsd/ipsd.cxx737
-rw-r--r--filter/source/graphicfilter/ipsd/makefile.mk67
-rw-r--r--filter/source/graphicfilter/iras/exports.map7
-rw-r--r--filter/source/graphicfilter/iras/iras.cxx356
-rw-r--r--filter/source/graphicfilter/iras/makefile.mk67
-rw-r--r--filter/source/graphicfilter/itga/exports.map7
-rw-r--r--filter/source/graphicfilter/itga/itga.cxx731
-rw-r--r--filter/source/graphicfilter/itga/makefile.mk67
-rw-r--r--filter/source/graphicfilter/itiff/ccidecom.cxx1112
-rw-r--r--filter/source/graphicfilter/itiff/ccidecom.hxx125
-rw-r--r--filter/source/graphicfilter/itiff/exports.map7
-rw-r--r--filter/source/graphicfilter/itiff/itiff.cxx1314
-rw-r--r--filter/source/graphicfilter/itiff/lzwdecom.cxx192
-rw-r--r--filter/source/graphicfilter/itiff/lzwdecom.hxx79
-rw-r--r--filter/source/graphicfilter/itiff/makefile.mk71
-rw-r--r--filter/source/msfilter/countryid.cxx342
-rw-r--r--filter/source/msfilter/escherex.cxx4949
-rw-r--r--filter/source/msfilter/eschesdo.cxx1255
-rw-r--r--filter/source/msfilter/eschesdo.hxx206
-rw-r--r--filter/source/msfilter/makefile.mk86
-rw-r--r--filter/source/msfilter/makefile.pmk30
-rw-r--r--filter/source/msfilter/mscodec.cxx534
-rw-r--r--filter/source/msfilter/msdffimp.cxx8149
-rw-r--r--filter/source/msfilter/msfiltertracer.cxx251
-rw-r--r--filter/source/msfilter/msocximex.cxx5956
-rw-r--r--filter/source/msfilter/msoleexp.cxx364
-rw-r--r--filter/source/msfilter/msvbahelper.cxx410
-rw-r--r--filter/source/msfilter/msvbasic.cxx639
-rw-r--r--filter/source/msfilter/msvbasic.hxx120
-rw-r--r--filter/source/msfilter/powerpoint/makefile.mk65
-rw-r--r--filter/source/msfilter/powerpoint/pptcom.hxx76
-rw-r--r--filter/source/msfilter/powerpoint/pptimporter.cxx163
-rw-r--r--filter/source/msfilter/powerpoint/pptimporter.hxx91
-rw-r--r--filter/source/msfilter/powerpoint/pptimporteruno.cxx110
-rw-r--r--filter/source/msfilter/powerpoint/ppttoxml.cxx91
-rw-r--r--filter/source/msfilter/powerpoint/ppttoxml.hxx51
-rw-r--r--filter/source/msfilter/svdfppt.cxx7819
-rw-r--r--filter/source/msfilter/svxmsbas.cxx502
-rw-r--r--filter/source/msfilter/svxmsbas2.cxx85
-rw-r--r--filter/source/msfilter/viscache.hxx82
-rw-r--r--filter/source/pdf/impdialog.cxx1553
-rw-r--r--filter/source/pdf/impdialog.hrc185
-rw-r--r--filter/source/pdf/impdialog.hxx406
-rw-r--r--filter/source/pdf/impdialog.src840
-rw-r--r--filter/source/pdf/makefile.mk83
-rw-r--r--filter/source/pdf/pdf.hrc29
-rw-r--r--filter/source/pdf/pdf.src66
-rw-r--r--filter/source/pdf/pdfdialog.cxx222
-rw-r--r--filter/source/pdf/pdfdialog.hxx91
-rw-r--r--filter/source/pdf/pdfexport.cxx1975
-rw-r--r--filter/source/pdf/pdfexport.hxx141
-rw-r--r--filter/source/pdf/pdffilter.cxx267
-rw-r--r--filter/source/pdf/pdffilter.hxx133
-rw-r--r--filter/source/pdf/pdfuno.cxx124
-rw-r--r--filter/source/placeware/Base64Codec.cxx207
-rw-r--r--filter/source/placeware/Base64Codec.hxx47
-rw-r--r--filter/source/placeware/exporter.cxx516
-rw-r--r--filter/source/placeware/exporter.hxx60
-rw-r--r--filter/source/placeware/exports.dxp3
-rw-r--r--filter/source/placeware/filter.cxx217
-rw-r--r--filter/source/placeware/makefile.mk67
-rw-r--r--filter/source/placeware/placeware.xml45
-rw-r--r--filter/source/placeware/tempfile.cxx189
-rw-r--r--filter/source/placeware/tempfile.hxx48
-rw-r--r--filter/source/placeware/uno.cxx110
-rw-r--r--filter/source/placeware/zip.cxx332
-rw-r--r--filter/source/placeware/zip.hxx62
-rw-r--r--filter/source/placeware/zipfile.hxx91
-rw-r--r--filter/source/svg/SOTranscoder.java45
-rw-r--r--filter/source/svg/makefile.mk83
-rw-r--r--filter/source/svg/svgexport.cxx1007
-rw-r--r--filter/source/svg/svgfilter.cxx229
-rw-r--r--filter/source/svg/svgfilter.hxx296
-rw-r--r--filter/source/svg/svgfontexport.cxx258
-rw-r--r--filter/source/svg/svgfontexport.hxx64
-rw-r--r--filter/source/svg/svgimport.cxx188
-rw-r--r--filter/source/svg/svgscript.hxx209
-rw-r--r--filter/source/svg/svguno.cxx102
-rw-r--r--filter/source/svg/svgwriter.cxx1657
-rw-r--r--filter/source/svg/svgwriter.hxx225
-rw-r--r--filter/source/t602/filterenv.cxx128
-rw-r--r--filter/source/t602/makefile.mk62
-rw-r--r--filter/source/t602/t602filter.cxx1266
-rw-r--r--filter/source/t602/t602filter.hrc45
-rw-r--r--filter/source/t602/t602filter.hxx286
-rw-r--r--filter/source/t602/t602filter.src83
-rw-r--r--filter/source/xmlfilteradaptor/XmlFilterAdaptor.cxx437
-rw-r--r--filter/source/xmlfilteradaptor/XmlFilterAdaptor.hxx184
-rw-r--r--filter/source/xmlfilteradaptor/genericfilter.cxx180
-rw-r--r--filter/source/xmlfilteradaptor/makefile.mk62
-rwxr-xr-xfilter/source/xmlfilteradaptor/streamwrap.cxx70
-rwxr-xr-xfilter/source/xmlfilteradaptor/streamwrap.hxx78
-rw-r--r--filter/source/xmlfilterdetect/fdcomp.cxx180
-rw-r--r--filter/source/xmlfilterdetect/filterdetect.cxx309
-rw-r--r--filter/source/xmlfilterdetect/filterdetect.hxx168
-rw-r--r--filter/source/xmlfilterdetect/makefile.mk60
-rw-r--r--filter/source/xslt/common/copy.xsl9
-rw-r--r--filter/source/xslt/common/math.xsl589
-rw-r--r--filter/source/xslt/common/measure_conversion.xsl387
-rw-r--r--filter/source/xslt/export/common/ooo2ms_docpr.xsl137
-rw-r--r--filter/source/xslt/export/spreadsheetml/formular.xsl640
-rw-r--r--filter/source/xslt/export/spreadsheetml/ooo2spreadsheetml.xsl417
-rw-r--r--filter/source/xslt/export/spreadsheetml/style_mapping.xsl390
-rw-r--r--filter/source/xslt/export/spreadsheetml/styles.xsl695
-rw-r--r--filter/source/xslt/export/spreadsheetml/table.xsl937
-rw-r--r--filter/source/xslt/export/uof/odf2uof_presentation.xsl3375
-rw-r--r--filter/source/xslt/export/uof/odf2uof_spreadsheet.xsl6194
-rw-r--r--filter/source/xslt/export/uof/odf2uof_text.xsl4439
-rw-r--r--filter/source/xslt/export/wordml/ooo2wordml.xsl218
-rw-r--r--filter/source/xslt/export/wordml/ooo2wordml_border.xsl153
-rw-r--r--filter/source/xslt/export/wordml/ooo2wordml_custom_draw.xsl284
-rw-r--r--filter/source/xslt/export/wordml/ooo2wordml_draw.xsl1885
-rw-r--r--filter/source/xslt/export/wordml/ooo2wordml_field.xsl733
-rw-r--r--filter/source/xslt/export/wordml/ooo2wordml_list.xsl340
-rw-r--r--filter/source/xslt/export/wordml/ooo2wordml_page.xsl401
-rw-r--r--filter/source/xslt/export/wordml/ooo2wordml_path.xsl858
-rw-r--r--filter/source/xslt/export/wordml/ooo2wordml_settings.xsl312
-rw-r--r--filter/source/xslt/export/wordml/ooo2wordml_table.xsl416
-rw-r--r--filter/source/xslt/export/wordml/ooo2wordml_text.xsl1279
-rw-r--r--filter/source/xslt/import/common/ms2ooo_docpr.xsl101
-rw-r--r--filter/source/xslt/import/spreadsheetml/spreadsheetml2ooo.xsl9173
-rw-r--r--filter/source/xslt/import/uof/uof2odf_presentation.xsl3478
-rw-r--r--filter/source/xslt/import/uof/uof2odf_spreadsheet.xsl9054
-rw-r--r--filter/source/xslt/import/uof/uof2odf_text.xsl4650
-rw-r--r--filter/source/xslt/import/wordml/wordml2ooo.xsl348
-rw-r--r--filter/source/xslt/import/wordml/wordml2ooo_custom_draw.xsl284
-rw-r--r--filter/source/xslt/import/wordml/wordml2ooo_draw.xsl2213
-rw-r--r--filter/source/xslt/import/wordml/wordml2ooo_field.xsl1587
-rw-r--r--filter/source/xslt/import/wordml/wordml2ooo_list.xsl657
-rw-r--r--filter/source/xslt/import/wordml/wordml2ooo_page.xsl387
-rw-r--r--filter/source/xslt/import/wordml/wordml2ooo_path.xsl1818
-rw-r--r--filter/source/xslt/import/wordml/wordml2ooo_props.xsl107
-rw-r--r--filter/source/xslt/import/wordml/wordml2ooo_settings.xsl69
-rw-r--r--filter/source/xslt/import/wordml/wordml2ooo_table.xsl1286
-rw-r--r--filter/source/xslt/import/wordml/wordml2ooo_text.xsl1058
-rw-r--r--filter/source/xslt/odf2xhtml/export/common/body.xsl422
-rw-r--r--filter/source/xslt/odf2xhtml/export/common/styles/style_collector.xsl828
-rw-r--r--filter/source/xslt/odf2xhtml/export/common/styles/style_mapping_css.xsl355
-rw-r--r--filter/source/xslt/odf2xhtml/export/common/table/table.xsl164
-rw-r--r--filter/source/xslt/odf2xhtml/export/common/table/table_cells.xsl279
-rw-r--r--filter/source/xslt/odf2xhtml/export/common/table/table_columns.xsl243
-rw-r--r--filter/source/xslt/odf2xhtml/export/common/table/table_rows.xsl212
-rw-r--r--filter/source/xslt/odf2xhtml/export/common/table_of_content.xsl554
-rw-r--r--filter/source/xslt/odf2xhtml/export/xhtml/body.xsl2926
-rw-r--r--filter/source/xslt/odf2xhtml/export/xhtml/header.xsl484
-rw-r--r--filter/source/xslt/odf2xhtml/export/xhtml/opendoc2xhtml.xsl183
-rw-r--r--filter/source/xslt/odf2xhtml/export/xhtml/table.xsl222
-rw-r--r--filter/source/xsltdialog/exports.dxp3
-rw-r--r--filter/source/xsltdialog/hidother.src78
-rw-r--r--filter/source/xsltdialog/makefile.mk94
-rw-r--r--filter/source/xsltdialog/typedetectionexport.cxx298
-rw-r--r--filter/source/xsltdialog/typedetectionexport.hxx53
-rw-r--r--filter/source/xsltdialog/typedetectionimport.cxx362
-rw-r--r--filter/source/xsltdialog/typedetectionimport.hxx129
-rw-r--r--filter/source/xsltdialog/xmlfileview.cxx990
-rw-r--r--filter/source/xsltdialog/xmlfileview.hrc36
-rw-r--r--filter/source/xsltdialog/xmlfileview.hxx177
-rw-r--r--filter/source/xsltdialog/xmlfileview.src64
-rw-r--r--filter/source/xsltdialog/xmlfiltercommon.hrc41
-rw-r--r--filter/source/xsltdialog/xmlfiltercommon.hxx107
-rw-r--r--filter/source/xsltdialog/xmlfilterdialogcomponent.cxx466
-rw-r--r--filter/source/xsltdialog/xmlfilterdialogstrings.hrc72
-rw-r--r--filter/source/xsltdialog/xmlfilterdialogstrings.src203
-rw-r--r--filter/source/xsltdialog/xmlfilterhelpids.hrc88
-rw-r--r--filter/source/xsltdialog/xmlfilterjar.cxx405
-rw-r--r--filter/source/xsltdialog/xmlfilterjar.hxx65
-rw-r--r--filter/source/xsltdialog/xmlfiltersettingsdialog.cxx1799
-rw-r--r--filter/source/xsltdialog/xmlfiltersettingsdialog.hrc43
-rw-r--r--filter/source/xsltdialog/xmlfiltersettingsdialog.hxx161
-rw-r--r--filter/source/xsltdialog/xmlfiltersettingsdialog.src139
-rw-r--r--filter/source/xsltdialog/xmlfiltertabdialog.cxx373
-rw-r--r--filter/source/xsltdialog/xmlfiltertabdialog.hrc33
-rw-r--r--filter/source/xsltdialog/xmlfiltertabdialog.hxx75
-rw-r--r--filter/source/xsltdialog/xmlfiltertabdialog.src65
-rw-r--r--filter/source/xsltdialog/xmlfiltertabpagebasic.cxx153
-rw-r--r--filter/source/xsltdialog/xmlfiltertabpagebasic.hrc44
-rw-r--r--filter/source/xsltdialog/xmlfiltertabpagebasic.hxx67
-rw-r--r--filter/source/xsltdialog/xmlfiltertabpagebasic.src152
-rw-r--r--filter/source/xsltdialog/xmlfiltertabpagexslt.cxx221
-rw-r--r--filter/source/xsltdialog/xmlfiltertabpagexslt.hrc48
-rw-r--r--filter/source/xsltdialog/xmlfiltertabpagexslt.hxx82
-rw-r--r--filter/source/xsltdialog/xmlfiltertabpagexslt.src176
-rw-r--r--filter/source/xsltdialog/xmlfiltertestdialog.cxx783
-rw-r--r--filter/source/xsltdialog/xmlfiltertestdialog.hrc53
-rw-r--r--filter/source/xsltdialog/xmlfiltertestdialog.hxx107
-rw-r--r--filter/source/xsltdialog/xmlfiltertestdialog.src210
-rw-r--r--filter/source/xsltfilter/Base64.java1833
-rw-r--r--filter/source/xsltfilter/Manifest3
-rw-r--r--filter/source/xsltfilter/XSLTFilter.cxx731
-rw-r--r--filter/source/xsltfilter/XSLTFilterOLEExtracter.java393
-rw-r--r--filter/source/xsltfilter/XSLTransformer.java484
-rw-r--r--filter/source/xsltfilter/fla.cxx327
-rw-r--r--filter/source/xsltfilter/fla.hxx53
-rw-r--r--filter/source/xsltfilter/makefile.mk85
-rw-r--r--filter/source/xsltvalidate/Manifest2
-rw-r--r--filter/source/xsltvalidate/XSLTValidate.java347
-rw-r--r--filter/source/xsltvalidate/makefile.mk76
-rw-r--r--forms/inc/makefile.mk48
-rw-r--r--forms/inc/pch/precompiled_forms.cxx29
-rw-r--r--forms/inc/pch/precompiled_forms.hxx400
-rw-r--r--forms/makefile.pmk28
-rw-r--r--forms/prj/build.lst18
-rw-r--r--forms/prj/d.lst7
-rwxr-xr-xforms/qa/complex/forms/CheckOGroupBoxModel.java147
-rwxr-xr-xforms/qa/complex/forms/makefile.mk78
-rw-r--r--forms/qa/forms_all.sce8
-rw-r--r--forms/qa/integration/forms/BooleanValidator.java59
-rw-r--r--forms/qa/integration/forms/CellBinding.java560
-rw-r--r--forms/qa/integration/forms/ControlValidation.java202
-rw-r--r--forms/qa/integration/forms/ControlValidator.java61
-rw-r--r--forms/qa/integration/forms/DateValidator.java103
-rw-r--r--forms/qa/integration/forms/DocumentHelper.java404
-rw-r--r--forms/qa/integration/forms/DocumentType.java61
-rw-r--r--forms/qa/integration/forms/DocumentViewHelper.java257
-rw-r--r--forms/qa/integration/forms/FormComponent.java197
-rw-r--r--forms/qa/integration/forms/FormControlTest.java952
-rw-r--r--forms/qa/integration/forms/FormLayer.java376
-rw-r--r--forms/qa/integration/forms/FormPropertyBags.java208
-rw-r--r--forms/qa/integration/forms/ImageComparison.java73
-rw-r--r--forms/qa/integration/forms/ListBox.java290
-rw-r--r--forms/qa/integration/forms/ListSelection.java298
-rw-r--r--forms/qa/integration/forms/ListSelection.props3
-rw-r--r--forms/qa/integration/forms/ListSelectionValidator.java71
-rw-r--r--forms/qa/integration/forms/MasterDetailForms.java435
-rw-r--r--forms/qa/integration/forms/NumericValidator.java90
-rw-r--r--forms/qa/integration/forms/RadioButtons.java459
-rw-r--r--forms/qa/integration/forms/SingleControlValidation.java191
-rw-r--r--forms/qa/integration/forms/SpreadsheetDocument.java151
-rw-r--r--forms/qa/integration/forms/SpreadsheetView.java81
-rw-r--r--forms/qa/integration/forms/TableCellTextBinding.java213
-rw-r--r--forms/qa/integration/forms/TestCase.java158
-rw-r--r--forms/qa/integration/forms/TestSkeleton.java75
-rw-r--r--forms/qa/integration/forms/TextValidator.java90
-rw-r--r--forms/qa/integration/forms/TimeValidator.java95
-rw-r--r--forms/qa/integration/forms/ValueBinding.java120
-rw-r--r--forms/qa/integration/forms/WaitForInput.java66
-rw-r--r--forms/qa/integration/forms/XMLFormSettings.java229
-rw-r--r--forms/qa/integration/forms/dbfTools.java55
-rw-r--r--forms/qa/makefile.mk79
-rw-r--r--forms/qa/org/openoffice/complex/forms/tools/ResultSet.java264
-rw-r--r--forms/qa/org/openoffice/xforms/Instance.java198
-rw-r--r--forms/qa/org/openoffice/xforms/Model.java100
-rw-r--r--forms/qa/org/openoffice/xforms/XMLDocument.java96
-rw-r--r--forms/qa/unoapi/Test.java51
-rw-r--r--forms/qa/unoapi/forms.sce40
-rw-r--r--forms/qa/unoapi/knownissues.xcl129
-rw-r--r--forms/qa/unoapi/makefile.mk48
-rw-r--r--forms/qa/unoapi/testdocuments/TestDB/testDB.dbfbin0 -> 11101 bytes-rw-r--r--forms/qa/unoapi/testdocuments/TestDB/testDB.dbtbin0 -> 18435 bytes-rw-r--r--forms/source/component/BaseListBox.hxx43
-rw-r--r--forms/source/component/Button.cxx780
-rw-r--r--forms/source/component/Button.hxx210
-rw-r--r--forms/source/component/CheckBox.cxx275
-rw-r--r--forms/source/component/CheckBox.hxx91
-rw-r--r--forms/source/component/Columns.cxx602
-rw-r--r--forms/source/component/Columns.hxx221
-rw-r--r--forms/source/component/ComboBox.cxx914
-rw-r--r--forms/source/component/ComboBox.hxx178
-rw-r--r--forms/source/component/Currency.cxx267
-rw-r--r--forms/source/component/Currency.hxx101
-rw-r--r--forms/source/component/DatabaseForm.cxx4162
-rw-r--r--forms/source/component/DatabaseForm.hxx569
-rw-r--r--forms/source/component/Date.cxx363
-rw-r--r--forms/source/component/Date.hxx133
-rw-r--r--forms/source/component/Edit.cxx766
-rw-r--r--forms/source/component/Edit.hxx188
-rw-r--r--forms/source/component/EditBase.cxx363
-rw-r--r--forms/source/component/EditBase.hxx113
-rw-r--r--forms/source/component/EventThread.cxx251
-rw-r--r--forms/source/component/EventThread.hxx126
-rw-r--r--forms/source/component/File.cxx307
-rw-r--r--forms/source/component/File.hxx103
-rw-r--r--forms/source/component/Filter.cxx873
-rw-r--r--forms/source/component/Filter.hxx156
-rw-r--r--forms/source/component/FixedText.cxx138
-rw-r--r--forms/source/component/FixedText.hxx71
-rw-r--r--forms/source/component/FormComponent.cxx3116
-rw-r--r--forms/source/component/FormattedField.cxx1257
-rw-r--r--forms/source/component/FormattedField.hxx198
-rw-r--r--forms/source/component/FormattedFieldWrapper.cxx398
-rw-r--r--forms/source/component/FormattedFieldWrapper.hxx99
-rw-r--r--forms/source/component/FormsCollection.cxx186
-rw-r--r--forms/source/component/FormsCollection.hxx100
-rw-r--r--forms/source/component/Grid.cxx1163
-rw-r--r--forms/source/component/Grid.hxx219
-rw-r--r--forms/source/component/GroupBox.cxx175
-rw-r--r--forms/source/component/GroupBox.hxx84
-rw-r--r--forms/source/component/GroupManager.cxx501
-rw-r--r--forms/source/component/GroupManager.hxx228
-rw-r--r--forms/source/component/Hidden.cxx190
-rw-r--r--forms/source/component/Hidden.hxx84
-rw-r--r--forms/source/component/ImageButton.cxx273
-rw-r--r--forms/source/component/ImageButton.hxx107
-rw-r--r--forms/source/component/ImageControl.cxx960
-rw-r--r--forms/source/component/ImageControl.hxx203
-rw-r--r--forms/source/component/ListBox.cxx1846
-rw-r--r--forms/source/component/ListBox.hxx286
-rw-r--r--forms/source/component/Numeric.cxx222
-rw-r--r--forms/source/component/Numeric.hxx99
-rw-r--r--forms/source/component/Pattern.cxx262
-rw-r--r--forms/source/component/Pattern.hxx108
-rw-r--r--forms/source/component/RadioButton.cxx411
-rw-r--r--forms/source/component/RadioButton.hxx111
-rw-r--r--forms/source/component/Time.cxx365
-rw-r--r--forms/source/component/Time.hxx133
-rw-r--r--forms/source/component/cachedrowset.cxx202
-rw-r--r--forms/source/component/cachedrowset.hxx97
-rw-r--r--forms/source/component/clickableimage.cxx929
-rw-r--r--forms/source/component/clickableimage.hxx295
-rw-r--r--forms/source/component/cloneable.cxx68
-rw-r--r--forms/source/component/entrylisthelper.cxx321
-rw-r--r--forms/source/component/entrylisthelper.hxx198
-rw-r--r--forms/source/component/errorbroadcaster.cxx113
-rw-r--r--forms/source/component/errorbroadcaster.hxx74
-rw-r--r--forms/source/component/findpos.cxx57
-rw-r--r--forms/source/component/findpos.hxx45
-rw-r--r--forms/source/component/formcontrolfont.cxx551
-rw-r--r--forms/source/component/imgprod.cxx622
-rw-r--r--forms/source/component/imgprod.hxx107
-rw-r--r--forms/source/component/makefile.mk95
-rw-r--r--forms/source/component/navigationbar.cxx509
-rw-r--r--forms/source/component/navigationbar.hxx138
-rw-r--r--forms/source/component/propertybaghelper.cxx369
-rw-r--r--forms/source/component/refvaluecomponent.cxx301
-rw-r--r--forms/source/component/refvaluecomponent.hxx109
-rw-r--r--forms/source/component/scrollbar.cxx319
-rw-r--r--forms/source/component/scrollbar.hxx101
-rw-r--r--forms/source/component/spinbutton.cxx275
-rw-r--r--forms/source/component/spinbutton.hxx101
-rw-r--r--forms/source/helper/commanddescriptionprovider.cxx140
-rw-r--r--forms/source/helper/commandimageprovider.cxx181
-rw-r--r--forms/source/helper/controlfeatureinterception.cxx170
-rw-r--r--forms/source/helper/formnavigation.cxx484
-rw-r--r--forms/source/helper/makefile.mk58
-rw-r--r--forms/source/helper/resettable.cxx102
-rw-r--r--forms/source/helper/urltransformer.cxx102
-rw-r--r--forms/source/helper/windowstateguard.cxx226
-rw-r--r--forms/source/inc/FormComponent.hxx1298
-rw-r--r--forms/source/inc/InterfaceContainer.hxx328
-rw-r--r--forms/source/inc/cloneable.hxx55
-rw-r--r--forms/source/inc/commanddescriptionprovider.hxx69
-rw-r--r--forms/source/inc/commandimageprovider.hxx78
-rw-r--r--forms/source/inc/componenttools.hxx105
-rw-r--r--forms/source/inc/controlfeatureinterception.hxx100
-rw-r--r--forms/source/inc/featuredispatcher.hxx110
-rw-r--r--forms/source/inc/formcontrolfont.hxx101
-rw-r--r--forms/source/inc/formnavigation.hxx235
-rw-r--r--forms/source/inc/forms_module.hxx332
-rw-r--r--forms/source/inc/forms_module_impl.hxx209
-rw-r--r--forms/source/inc/frm_module.hxx37
-rw-r--r--forms/source/inc/frm_resource.hrc108
-rw-r--r--forms/source/inc/frm_resource.hxx77
-rw-r--r--forms/source/inc/frm_strings.hxx360
-rw-r--r--forms/source/inc/ids.hxx36
-rw-r--r--forms/source/inc/limitedformats.hxx105
-rw-r--r--forms/source/inc/listenercontainers.hxx140
-rw-r--r--forms/source/inc/property.hrc316
-rw-r--r--forms/source/inc/property.hxx236
-rw-r--r--forms/source/inc/propertybaghelper.hxx166
-rw-r--r--forms/source/inc/resettable.hxx76
-rw-r--r--forms/source/inc/services.hxx233
-rw-r--r--forms/source/inc/togglestate.hxx44
-rw-r--r--forms/source/inc/urltransformer.hxx86
-rw-r--r--forms/source/inc/windowstateguard.hxx83
-rw-r--r--forms/source/misc/InterfaceContainer.cxx1363
-rw-r--r--forms/source/misc/componenttools.cxx123
-rw-r--r--forms/source/misc/frm_module.cxx36
-rw-r--r--forms/source/misc/frm_strings.cxx34
-rw-r--r--forms/source/misc/ids.cxx36
-rw-r--r--forms/source/misc/limitedformats.cxx402
-rw-r--r--forms/source/misc/listenercontainers.cxx72
-rw-r--r--forms/source/misc/makefile.mk70
-rw-r--r--forms/source/misc/property.cxx257
-rw-r--r--forms/source/misc/services.cxx464
-rw-r--r--forms/source/resource/frm_resource.cxx89
-rw-r--r--forms/source/resource/makefile.mk49
-rw-r--r--forms/source/resource/strings.src161
-rw-r--r--forms/source/resource/xforms.src196
-rw-r--r--forms/source/richtext/attributedispatcher.cxx138
-rw-r--r--forms/source/richtext/attributedispatcher.hxx104
-rw-r--r--forms/source/richtext/clipboarddispatcher.cxx208
-rw-r--r--forms/source/richtext/clipboarddispatcher.hxx107
-rw-r--r--forms/source/richtext/featuredispatcher.cxx157
-rw-r--r--forms/source/richtext/featuredispatcher.hxx107
-rw-r--r--forms/source/richtext/makefile.mk60
-rw-r--r--forms/source/richtext/parametrizedattributedispatcher.cxx143
-rw-r--r--forms/source/richtext/parametrizedattributedispatcher.hxx75
-rw-r--r--forms/source/richtext/richtextcontrol.cxx766
-rw-r--r--forms/source/richtext/richtextcontrol.hxx163
-rw-r--r--forms/source/richtext/richtextengine.cxx162
-rw-r--r--forms/source/richtext/richtextengine.hxx91
-rw-r--r--forms/source/richtext/richtextimplcontrol.cxx680
-rw-r--r--forms/source/richtext/richtextimplcontrol.hxx196
-rw-r--r--forms/source/richtext/richtextmodel.cxx638
-rw-r--r--forms/source/richtext/richtextmodel.hxx194
-rw-r--r--forms/source/richtext/richtextunowrapper.cxx136
-rw-r--r--forms/source/richtext/richtextunowrapper.hxx98
-rw-r--r--forms/source/richtext/richtextvclcontrol.cxx392
-rw-r--r--forms/source/richtext/richtextvclcontrol.hxx143
-rw-r--r--forms/source/richtext/richtextviewport.cxx127
-rw-r--r--forms/source/richtext/richtextviewport.hxx80
-rw-r--r--forms/source/richtext/rtattributehandler.cxx532
-rw-r--r--forms/source/richtext/rtattributehandler.hxx240
-rw-r--r--forms/source/richtext/rtattributes.hxx172
-rw-r--r--forms/source/richtext/specialdispatchers.cxx200
-rw-r--r--forms/source/richtext/specialdispatchers.hxx113
-rw-r--r--forms/source/richtext/textattributelistener.hxx61
-rw-r--r--forms/source/runtime/formoperations.cxx1739
-rw-r--r--forms/source/runtime/formoperations.hxx379
-rw-r--r--forms/source/runtime/makefile.mk47
-rw-r--r--forms/source/solar/component/makefile.mk51
-rw-r--r--forms/source/solar/component/navbarcontrol.cxx564
-rw-r--r--forms/source/solar/component/navbarcontrol.hxx162
-rw-r--r--forms/source/solar/control/makefile.mk53
-rw-r--r--forms/source/solar/control/navtoolbar.cxx736
-rw-r--r--forms/source/solar/inc/navtoolbar.hxx194
-rw-r--r--forms/source/xforms/NameContainer.hxx221
-rw-r--r--forms/source/xforms/binding.cxx1409
-rw-r--r--forms/source/xforms/binding.hxx527
-rw-r--r--forms/source/xforms/boolexpression.cxx59
-rw-r--r--forms/source/xforms/boolexpression.hxx55
-rw-r--r--forms/source/xforms/collection.hxx337
-rw-r--r--forms/source/xforms/computedexpression.cxx246
-rw-r--r--forms/source/xforms/computedexpression.hxx138
-rw-r--r--forms/source/xforms/convert.cxx627
-rw-r--r--forms/source/xforms/convert.hxx113
-rw-r--r--forms/source/xforms/datatyperepository.cxx298
-rw-r--r--forms/source/xforms/datatyperepository.hxx98
-rw-r--r--forms/source/xforms/datatypes.cxx995
-rw-r--r--forms/source/xforms/datatypes.hxx424
-rw-r--r--forms/source/xforms/datatypes_impl.hxx76
-rw-r--r--forms/source/xforms/enumeration.cxx74
-rw-r--r--forms/source/xforms/enumeration.hxx63
-rw-r--r--forms/source/xforms/evaluationcontext.hxx75
-rw-r--r--forms/source/xforms/makefile.mk66
-rw-r--r--forms/source/xforms/mip.cxx126
-rw-r--r--forms/source/xforms/mip.hxx122
-rw-r--r--forms/source/xforms/model.cxx808
-rw-r--r--forms/source/xforms/model.hxx435
-rw-r--r--forms/source/xforms/model_helper.hxx167
-rw-r--r--forms/source/xforms/model_ui.cxx1066
-rw-r--r--forms/source/xforms/namedcollection.hxx142
-rw-r--r--forms/source/xforms/pathexpression.cxx154
-rw-r--r--forms/source/xforms/pathexpression.hxx91
-rw-r--r--forms/source/xforms/propertysetbase.cxx192
-rw-r--r--forms/source/xforms/propertysetbase.hxx371
-rw-r--r--forms/source/xforms/resourcehelper.cxx79
-rw-r--r--forms/source/xforms/resourcehelper.hxx52
-rw-r--r--forms/source/xforms/submission.cxx719
-rw-r--r--forms/source/xforms/submission.hxx276
-rw-r--r--forms/source/xforms/submission/makefile.mk57
-rw-r--r--forms/source/xforms/submission/replace.cxx145
-rw-r--r--forms/source/xforms/submission/serialization.hxx98
-rw-r--r--forms/source/xforms/submission/serialization_app_xml.cxx121
-rw-r--r--forms/source/xforms/submission/serialization_app_xml.hxx55
-rw-r--r--forms/source/xforms/submission/serialization_urlencoded.cxx210
-rw-r--r--forms/source/xforms/submission/serialization_urlencoded.hxx56
-rw-r--r--forms/source/xforms/submission/submission.hxx160
-rw-r--r--forms/source/xforms/submission/submission_get.cxx117
-rw-r--r--forms/source/xforms/submission/submission_get.hxx44
-rw-r--r--forms/source/xforms/submission/submission_post.cxx105
-rw-r--r--forms/source/xforms/submission/submission_post.hxx40
-rw-r--r--forms/source/xforms/submission/submission_put.cxx81
-rw-r--r--forms/source/xforms/submission/submission_put.hxx44
-rw-r--r--forms/source/xforms/unohelper.cxx103
-rw-r--r--forms/source/xforms/unohelper.hxx57
-rw-r--r--forms/source/xforms/warnings_guard_unicode_regex.h48
-rw-r--r--forms/source/xforms/xforms_services.cxx72
-rw-r--r--forms/source/xforms/xforms_services.hxx27
-rw-r--r--forms/source/xforms/xformsevent.cxx100
-rw-r--r--forms/source/xforms/xformsevent.hxx66
-rw-r--r--forms/source/xforms/xmlhelper.cxx148
-rw-r--r--forms/source/xforms/xmlhelper.hxx51
-rw-r--r--forms/source/xforms/xpathlib/extension.cxx104
-rw-r--r--forms/source/xforms/xpathlib/extension.hxx39
-rw-r--r--forms/source/xforms/xpathlib/makefile.mk56
-rw-r--r--forms/source/xforms/xpathlib/xpathlib.cxx567
-rw-r--r--forms/source/xforms/xpathlib/xpathlib.hxx83
-rw-r--r--forms/util/frm.dxp3
-rw-r--r--forms/util/frm.xml571
-rw-r--r--forms/util/makefile.mk114
-rw-r--r--forms/workben/xforms/sickness.odtbin0 -> 9233 bytes-rw-r--r--forms/workben/xforms/simple_validation.odtbin0 -> 7184 bytes-rw-r--r--forms/workben/xforms/vacationrequest.odtbin0 -> 8089 bytes-rw-r--r--forms/workben/xforms/xforms-ubl.odtbin0 -> 22265 bytes-rw-r--r--formula/inc/AddressConvention.hxx39
-rw-r--r--formula/inc/formula/ExternalReferenceHelper.hxx45
-rw-r--r--formula/inc/formula/FormulaCompiler.hxx381
-rw-r--r--formula/inc/formula/FormulaOpCodeMapperObj.hxx86
-rw-r--r--formula/inc/formula/IControlReferenceHandler.hxx45
-rw-r--r--formula/inc/formula/IFunctionDescription.hxx163
-rw-r--r--formula/inc/formula/compiler.hrc406
-rw-r--r--formula/inc/formula/errorcodes.hxx122
-rw-r--r--formula/inc/formula/formdata.hxx91
-rw-r--r--formula/inc/formula/formula.hxx157
-rw-r--r--formula/inc/formula/formuladllapi.h41
-rw-r--r--formula/inc/formula/formulahelper.hxx86
-rw-r--r--formula/inc/formula/funcutl.hxx106
-rw-r--r--formula/inc/formula/grammar.hxx236
-rw-r--r--formula/inc/formula/intruref.hxx101
-rw-r--r--formula/inc/formula/opcode.hxx405
-rw-r--r--formula/inc/formula/token.hxx399
-rw-r--r--formula/inc/formula/tokenarray.hxx286
-rw-r--r--formula/inc/helpids.hrc62
-rw-r--r--formula/inc/makefile.mk47
-rw-r--r--formula/inc/pch/precompiled_formula.cxx29
-rw-r--r--formula/inc/pch/precompiled_formula.hxx36
-rw-r--r--formula/prj/build.lst9
-rw-r--r--formula/prj/d.lst37
-rw-r--r--formula/prj/for.xml14
-rw-r--r--formula/source/core/api/FormulaCompiler.cxx1859
-rw-r--r--formula/source/core/api/FormulaOpCodeMapperObj.cxx126
-rw-r--r--formula/source/core/api/makefile.mk47
-rw-r--r--formula/source/core/api/services.cxx75
-rw-r--r--formula/source/core/api/token.cxx1378
-rw-r--r--formula/source/core/inc/core_resource.hrc45
-rw-r--r--formula/source/core/inc/core_resource.hxx111
-rw-r--r--formula/source/core/resource/core_resource.cxx108
-rw-r--r--formula/source/core/resource/core_resource.src1878
-rw-r--r--formula/source/core/resource/makefile.mk48
-rw-r--r--formula/source/ui/dlg/ControlHelper.hxx193
-rw-r--r--formula/source/ui/dlg/FormulaHelper.cxx406
-rw-r--r--formula/source/ui/dlg/formdlgs.hrc80
-rw-r--r--formula/source/ui/dlg/formdlgs.src536
-rw-r--r--formula/source/ui/dlg/formula.cxx2236
-rw-r--r--formula/source/ui/dlg/funcpage.cxx265
-rw-r--r--formula/source/ui/dlg/funcpage.hxx123
-rw-r--r--formula/source/ui/dlg/funcutl.cxx1106
-rw-r--r--formula/source/ui/dlg/makefile.mk66
-rw-r--r--formula/source/ui/dlg/parawin.cxx600
-rw-r--r--formula/source/ui/dlg/parawin.hrc54
-rw-r--r--formula/source/ui/dlg/parawin.hxx174
-rw-r--r--formula/source/ui/dlg/parawin.src189
-rw-r--r--formula/source/ui/dlg/structpg.cxx227
-rw-r--r--formula/source/ui/dlg/structpg.hxx123
-rw-r--r--formula/source/ui/inc/ForResId.hrc74
-rw-r--r--formula/source/ui/inc/ModuleHelper.hxx99
-rw-r--r--formula/source/ui/resource/ModuleHelper.cxx142
-rw-r--r--formula/source/ui/resource/makefile.mk49
-rw-r--r--formula/util/hh.html190
-rw-r--r--formula/util/hidother.src54
-rw-r--r--formula/util/makefile.mk138
-rw-r--r--formula/util/makefile.pmk42
-rw-r--r--fpicker/inc/makefile.mk47
-rw-r--r--fpicker/inc/pch/precompiled_fpicker.cxx29
-rw-r--r--fpicker/inc/pch/precompiled_fpicker.hxx33
-rw-r--r--fpicker/prj/build.lst11
-rw-r--r--fpicker/prj/d.lst14
-rw-r--r--fpicker/source/aqua/AquaFilePickerDelegate.hxx57
-rw-r--r--fpicker/source/aqua/AquaFilePickerDelegate.mm123
-rw-r--r--fpicker/source/aqua/CFStringUtilities.cxx121
-rw-r--r--fpicker/source/aqua/CFStringUtilities.hxx161
-rw-r--r--fpicker/source/aqua/ControlHelper.cxx1019
-rw-r--r--fpicker/source/aqua/ControlHelper.hxx195
-rw-r--r--fpicker/source/aqua/FPServiceInfo.hxx50
-rw-r--r--fpicker/source/aqua/FPentry.cxx171
-rw-r--r--fpicker/source/aqua/FilterHelper.cxx545
-rw-r--r--fpicker/source/aqua/FilterHelper.hxx160
-rw-r--r--fpicker/source/aqua/NSString_OOoAdditions.hxx44
-rw-r--r--fpicker/source/aqua/NSString_OOoAdditions.mm77
-rw-r--r--fpicker/source/aqua/NSURL_OOoAdditions.hxx48
-rw-r--r--fpicker/source/aqua/NSURL_OOoAdditions.mm112
-rw-r--r--fpicker/source/aqua/SalAquaConstants.h63
-rw-r--r--fpicker/source/aqua/SalAquaFilePicker.cxx812
-rw-r--r--fpicker/source/aqua/SalAquaFilePicker.hxx252
-rw-r--r--fpicker/source/aqua/SalAquaFolderPicker.cxx289
-rw-r--r--fpicker/source/aqua/SalAquaFolderPicker.hxx138
-rw-r--r--fpicker/source/aqua/SalAquaPicker.cxx267
-rw-r--r--fpicker/source/aqua/SalAquaPicker.hxx106
-rw-r--r--fpicker/source/aqua/fps-aqua-ucd.txt13
-rw-r--r--fpicker/source/aqua/fps_aqua.xml78
-rw-r--r--fpicker/source/aqua/makefile.mk85
-rw-r--r--fpicker/source/aqua/resourceprovider.cxx240
-rw-r--r--fpicker/source/aqua/resourceprovider.hxx67
-rw-r--r--fpicker/source/generic/fpicker.cxx233
-rw-r--r--fpicker/source/generic/makefile.mk62
-rw-r--r--fpicker/source/office/OfficeControlAccess.cxx791
-rw-r--r--fpicker/source/office/OfficeControlAccess.hxx125
-rw-r--r--fpicker/source/office/OfficeFilePicker.cxx1186
-rw-r--r--fpicker/source/office/OfficeFilePicker.hxx230
-rw-r--r--fpicker/source/office/OfficeFilePicker.src99
-rw-r--r--fpicker/source/office/OfficeFolderPicker.cxx265
-rw-r--r--fpicker/source/office/OfficeFolderPicker.hxx122
-rw-r--r--fpicker/source/office/asyncfilepicker.cxx220
-rw-r--r--fpicker/source/office/asyncfilepicker.hxx118
-rw-r--r--fpicker/source/office/commonpicker.cxx506
-rw-r--r--fpicker/source/office/commonpicker.hxx209
-rw-r--r--fpicker/source/office/fpinteraction.cxx169
-rw-r--r--fpicker/source/office/fpinteraction.hxx92
-rw-r--r--fpicker/source/office/fps_office.cxx80
-rw-r--r--fpicker/source/office/fpsmartcontent.cxx308
-rw-r--r--fpicker/source/office/fpsmartcontent.hxx212
-rw-r--r--fpicker/source/office/iodlg.cxx3482
-rw-r--r--fpicker/source/office/iodlg.hrc107
-rw-r--r--fpicker/source/office/iodlg.hxx475
-rw-r--r--fpicker/source/office/iodlg.src318
-rw-r--r--fpicker/source/office/iodlgimp.cxx507
-rw-r--r--fpicker/source/office/iodlgimp.hxx339
-rw-r--r--fpicker/source/office/makefile.mk88
-rw-r--r--fpicker/source/office/pickercallbacks.hxx62
-rw-r--r--fpicker/source/unx/gnome/FPServiceInfo.hxx50
-rw-r--r--fpicker/source/unx/gnome/FPentry.cxx181
-rw-r--r--fpicker/source/unx/gnome/SalGtkFilePicker.cxx2040
-rw-r--r--fpicker/source/unx/gnome/SalGtkFilePicker.hxx356
-rw-r--r--fpicker/source/unx/gnome/SalGtkFolderPicker.cxx246
-rw-r--r--fpicker/source/unx/gnome/SalGtkFolderPicker.hxx135
-rw-r--r--fpicker/source/unx/gnome/SalGtkPicker.cxx294
-rw-r--r--fpicker/source/unx/gnome/SalGtkPicker.hxx121
-rw-r--r--fpicker/source/unx/gnome/eventnotification.hxx53
-rw-r--r--fpicker/source/unx/gnome/fps-gnome-ucd.txt13
-rw-r--r--fpicker/source/unx/gnome/fps_gnome.xml79
-rw-r--r--fpicker/source/unx/gnome/makefile.mk98
-rw-r--r--fpicker/source/unx/gnome/resourceprovider.cxx225
-rw-r--r--fpicker/source/unx/gnome/resourceprovider.hxx67
-rw-r--r--fpicker/source/unx/kde4/FPServiceInfo.hxx40
-rw-r--r--fpicker/source/unx/kde4/KDE4FPEntry.cxx102
-rw-r--r--fpicker/source/unx/kde4/KDE4FilePicker.cxx740
-rw-r--r--fpicker/source/unx/kde4/KDE4FilePicker.hxx171
-rw-r--r--fpicker/source/unx/kde4/fps-kde4-ucd.txt6
-rw-r--r--fpicker/source/unx/kde4/fps_kde4.xml51
-rw-r--r--fpicker/source/unx/kde4/makefile.mk82
-rw-r--r--fpicker/source/win32/filepicker/FPServiceInfo.hxx77
-rw-r--r--fpicker/source/win32/filepicker/FPentry.cxx157
-rw-r--r--fpicker/source/win32/filepicker/FileOpenDlg.cxx695
-rw-r--r--fpicker/source/win32/filepicker/FileOpenDlg.hxx327
-rw-r--r--fpicker/source/win32/filepicker/FilePicker.cxx799
-rw-r--r--fpicker/source/win32/filepicker/FilePicker.hxx255
-rw-r--r--fpicker/source/win32/filepicker/FilterContainer.cxx337
-rw-r--r--fpicker/source/win32/filepicker/FilterContainer.hxx115
-rw-r--r--fpicker/source/win32/filepicker/Fps.rc438
-rw-r--r--fpicker/source/win32/filepicker/IVistaFilePickerInternalNotify.hxx75
-rw-r--r--fpicker/source/win32/filepicker/PreviewCtrl.cxx615
-rw-r--r--fpicker/source/win32/filepicker/PreviewCtrl.hxx199
-rw-r--r--fpicker/source/win32/filepicker/SolarMutex.cxx55
-rw-r--r--fpicker/source/win32/filepicker/SolarMutex.hxx30
-rw-r--r--fpicker/source/win32/filepicker/VistaFilePicker.cxx725
-rw-r--r--fpicker/source/win32/filepicker/VistaFilePicker.hxx315
-rw-r--r--fpicker/source/win32/filepicker/VistaFilePickerEventHandler.cxx507
-rw-r--r--fpicker/source/win32/filepicker/VistaFilePickerEventHandler.hxx225
-rw-r--r--fpicker/source/win32/filepicker/VistaFilePickerImpl.cxx1212
-rw-r--r--fpicker/source/win32/filepicker/VistaFilePickerImpl.hxx353
-rw-r--r--fpicker/source/win32/filepicker/WinFileOpenImpl.cxx996
-rw-r--r--fpicker/source/win32/filepicker/WinFileOpenImpl.hxx234
-rw-r--r--fpicker/source/win32/filepicker/afxres.h2
-rw-r--r--fpicker/source/win32/filepicker/asynceventnotifier.cxx327
-rw-r--r--fpicker/source/win32/filepicker/asynceventnotifier.hxx109
-rw-r--r--fpicker/source/win32/filepicker/asyncrequests.cxx228
-rw-r--r--fpicker/source/win32/filepicker/asyncrequests.hxx227
-rw-r--r--fpicker/source/win32/filepicker/comptr.hxx222
-rw-r--r--fpicker/source/win32/filepicker/controlaccess.cxx261
-rw-r--r--fpicker/source/win32/filepicker/controlaccess.hxx80
-rw-r--r--fpicker/source/win32/filepicker/controlcommand.cxx282
-rw-r--r--fpicker/source/win32/filepicker/controlcommand.hxx143
-rw-r--r--fpicker/source/win32/filepicker/controlcommandrequest.hxx86
-rw-r--r--fpicker/source/win32/filepicker/controlcommandresult.hxx108
-rw-r--r--fpicker/source/win32/filepicker/customcontrol.cxx67
-rw-r--r--fpicker/source/win32/filepicker/customcontrol.hxx60
-rw-r--r--fpicker/source/win32/filepicker/customcontrolcontainer.cxx143
-rw-r--r--fpicker/source/win32/filepicker/customcontrolcontainer.hxx60
-rw-r--r--fpicker/source/win32/filepicker/customcontrolfactory.cxx86
-rw-r--r--fpicker/source/win32/filepicker/customcontrolfactory.hxx61
-rw-r--r--fpicker/source/win32/filepicker/dialogcustomcontrols.cxx195
-rw-r--r--fpicker/source/win32/filepicker/dialogcustomcontrols.hxx123
-rw-r--r--fpicker/source/win32/filepicker/dibpreview.cxx472
-rw-r--r--fpicker/source/win32/filepicker/dibpreview.hxx116
-rw-r--r--fpicker/source/win32/filepicker/eventnotification.hxx53
-rw-r--r--fpicker/source/win32/filepicker/filepickereventnotification.cxx84
-rw-r--r--fpicker/source/win32/filepicker/filepickereventnotification.hxx73
-rw-r--r--fpicker/source/win32/filepicker/filepickerstate.cxx717
-rw-r--r--fpicker/source/win32/filepicker/filepickerstate.hxx162
-rw-r--r--fpicker/source/win32/filepicker/fps.xml51
-rw-r--r--fpicker/source/win32/filepicker/getfilenamewrapper.cxx296
-rw-r--r--fpicker/source/win32/filepicker/getfilenamewrapper.hxx66
-rw-r--r--fpicker/source/win32/filepicker/helppopupwindow.cxx615
-rw-r--r--fpicker/source/win32/filepicker/helppopupwindow.hxx143
-rw-r--r--fpicker/source/win32/filepicker/makefile.mk84
-rw-r--r--fpicker/source/win32/filepicker/platform_vista.h87
-rw-r--r--fpicker/source/win32/filepicker/platform_xp.h55
-rw-r--r--fpicker/source/win32/filepicker/previewadapter.cxx713
-rw-r--r--fpicker/source/win32/filepicker/previewadapter.hxx107
-rw-r--r--fpicker/source/win32/filepicker/previewbase.cxx150
-rw-r--r--fpicker/source/win32/filepicker/previewbase.hxx88
-rw-r--r--fpicker/source/win32/filepicker/propmap.hxx101
-rw-r--r--fpicker/source/win32/filepicker/resource.h21
-rw-r--r--fpicker/source/win32/filepicker/shared.hxx38
-rw-r--r--fpicker/source/win32/filepicker/vistatypes.h68
-rw-r--r--fpicker/source/win32/filepicker/workbench/Test_fps.cxx387
-rw-r--r--fpicker/source/win32/filepicker/workbench/makefile.mk62
-rw-r--r--fpicker/source/win32/folderpicker/FOPServiceInfo.hxx54
-rw-r--r--fpicker/source/win32/folderpicker/FolderPicker.cxx219
-rw-r--r--fpicker/source/win32/folderpicker/FolderPicker.hxx129
-rw-r--r--fpicker/source/win32/folderpicker/FopEvtDisp.hxx45
-rw-r--r--fpicker/source/win32/folderpicker/Fopentry.cxx144
-rw-r--r--fpicker/source/win32/folderpicker/MtaFop.cxx839
-rw-r--r--fpicker/source/win32/folderpicker/MtaFop.hxx191
-rw-r--r--fpicker/source/win32/folderpicker/WinFOPImpl.cxx168
-rw-r--r--fpicker/source/win32/folderpicker/WinFOPImpl.hxx83
-rw-r--r--fpicker/source/win32/folderpicker/fop.xml40
-rw-r--r--fpicker/source/win32/folderpicker/makefile.mk51
-rw-r--r--fpicker/source/win32/folderpicker/workbench/Test_fops.cxx203
-rw-r--r--fpicker/source/win32/folderpicker/workbench/makefile.mk62
-rw-r--r--fpicker/source/win32/misc/AutoBuffer.cxx169
-rw-r--r--fpicker/source/win32/misc/AutoBuffer.hxx82
-rw-r--r--fpicker/source/win32/misc/WinImplHelper.cxx610
-rw-r--r--fpicker/source/win32/misc/WinImplHelper.hxx123
-rw-r--r--fpicker/source/win32/misc/makefile.mk57
-rw-r--r--fpicker/source/win32/misc/resourceprovider.cxx194
-rw-r--r--fpicker/source/win32/misc/resourceprovider.hxx60
-rw-r--r--fpicker/test/makefile.mk106
-rw-r--r--fpicker/test/svdem.cxx217
-rw-r--r--fpicker/util/exports.dxp3
-rw-r--r--fpicker/util/makefile.mk102
-rw-r--r--framework/dtd/accelerator.dtd44
-rw-r--r--framework/dtd/event.dtd45
-rw-r--r--framework/dtd/groupuinames.dtd35
-rw-r--r--framework/dtd/image.dtd67
-rw-r--r--framework/dtd/menubar.dtd46
-rw-r--r--framework/dtd/statusbar.dtd48
-rw-r--r--framework/dtd/toolbar.dtd67
-rw-r--r--framework/inc/acceleratorconst.h88
-rw-r--r--framework/inc/arguments.h173
-rw-r--r--framework/inc/classes/actiontriggercontainer.hxx77
-rw-r--r--framework/inc/classes/actiontriggerpropertyset.hxx133
-rw-r--r--framework/inc/classes/actiontriggerseparatorpropertyset.hxx115
-rw-r--r--framework/inc/classes/addonmenu.hxx140
-rw-r--r--framework/inc/classes/addonsoptions.hxx374
-rw-r--r--framework/inc/classes/bmkmenu.hxx81
-rw-r--r--framework/inc/classes/checkediterator.hxx345
-rw-r--r--framework/inc/classes/converter.hxx91
-rw-r--r--framework/inc/classes/droptargetlistener.hxx108
-rw-r--r--framework/inc/classes/filtercache.hxx447
-rw-r--r--framework/inc/classes/filtercachedata.hxx859
-rw-r--r--framework/inc/classes/framecontainer.hxx151
-rw-r--r--framework/inc/classes/framelistanalyzer.hxx220
-rw-r--r--framework/inc/classes/fwkresid.hxx46
-rw-r--r--framework/inc/classes/fwktabwindow.hxx135
-rwxr-xr-xframework/inc/classes/fwlresid.hxx46
-rw-r--r--framework/inc/classes/imagewrapper.hxx70
-rw-r--r--framework/inc/classes/menuextensionsupplier.hxx50
-rw-r--r--framework/inc/classes/menumanager.hxx168
-rw-r--r--framework/inc/classes/propertysethelper.hxx257
-rw-r--r--framework/inc/classes/protocolhandlercache.hxx199
-rw-r--r--framework/inc/classes/resource.hrc87
-rw-r--r--framework/inc/classes/rootactiontriggercontainer.hxx127
-rw-r--r--framework/inc/classes/servicemanager.hxx280
-rw-r--r--framework/inc/classes/sfxhelperfunctions.hxx73
-rw-r--r--framework/inc/classes/taskcreator.hxx102
-rw-r--r--framework/inc/classes/wildcard.hxx184
-rw-r--r--framework/inc/commands.h56
-rw-r--r--framework/inc/dispatch/basedispatcher.hxx391
-rw-r--r--framework/inc/dispatch/blankdispatcher.hxx129
-rw-r--r--framework/inc/dispatch/closedispatcher.hxx322
-rw-r--r--framework/inc/dispatch/createdispatcher.hxx127
-rw-r--r--framework/inc/dispatch/dispatchinformationprovider.hxx111
-rw-r--r--framework/inc/dispatch/dispatchprovider.hxx173
-rw-r--r--framework/inc/dispatch/helpagentdispatcher.hxx205
-rw-r--r--framework/inc/dispatch/interaction.hxx325
-rw-r--r--framework/inc/dispatch/interceptionhelper.hxx326
-rw-r--r--framework/inc/dispatch/mailtodispatcher.hxx145
-rw-r--r--framework/inc/dispatch/menudispatcher.hxx336
-rw-r--r--framework/inc/dispatch/oxt_handler.hxx215
-rw-r--r--framework/inc/dispatch/popupmenudispatcher.hxx199
-rw-r--r--framework/inc/dispatch/selfdispatcher.hxx112
-rw-r--r--framework/inc/dispatch/servicehandler.hxx149
-rw-r--r--framework/inc/dispatch/startmoduledispatcher.hxx197
-rw-r--r--framework/inc/dispatch/systemexec.hxx145
-rw-r--r--framework/inc/dispatchcommands.h52
-rw-r--r--framework/inc/framework.hrc85
-rw-r--r--framework/inc/general.h82
-rw-r--r--framework/inc/helper/acceleratorinfo.hxx49
-rw-r--r--framework/inc/helper/actiontriggerhelper.hxx78
-rw-r--r--framework/inc/helper/configimporter.hxx52
-rw-r--r--framework/inc/helper/dockingareadefaultacceptor.hxx111
-rw-r--r--framework/inc/helper/fixeddocumentproperties.hxx57
-rw-r--r--framework/inc/helper/imageproducer.hxx50
-rwxr-xr-xframework/inc/helper/mischelper.hxx124
-rw-r--r--framework/inc/helper/networkdomain.hxx45
-rw-r--r--framework/inc/helper/ocomponentaccess.hxx275
-rw-r--r--framework/inc/helper/ocomponentenumeration.hxx262
-rw-r--r--framework/inc/helper/oframes.hxx355
-rw-r--r--framework/inc/helper/otasksaccess.hxx254
-rw-r--r--framework/inc/helper/otasksenumeration.hxx272
-rw-r--r--framework/inc/helper/persistentwindowstate.hxx227
-rw-r--r--framework/inc/helper/propertysetcontainer.hxx97
-rw-r--r--framework/inc/helper/shareablemutex.hxx95
-rw-r--r--framework/inc/helper/statusindicator.hxx142
-rw-r--r--framework/inc/helper/statusindicatorfactory.hxx341
-rw-r--r--framework/inc/helper/tagwindowasmodified.hxx157
-rw-r--r--framework/inc/helper/timerhelper.hxx53
-rw-r--r--framework/inc/helper/titlebarupdate.hxx249
-rw-r--r--framework/inc/helper/titlehelper.hxx227
-rw-r--r--framework/inc/helper/uiconfigelementwrapperbase.hxx161
-rw-r--r--framework/inc/helper/uielementwrapperbase.hxx130
-rw-r--r--framework/inc/helper/vclstatusindicator.hxx133
-rw-r--r--framework/inc/helper/wakeupthread.hxx100
-rw-r--r--framework/inc/helpid.hrc51
-rw-r--r--framework/inc/interaction/preventduplicateinteraction.hxx271
-rw-r--r--framework/inc/interaction/quietinteraction.hxx164
-rw-r--r--framework/inc/jobs/configaccess.hxx117
-rw-r--r--framework/inc/jobs/helponstartup.hxx231
-rw-r--r--framework/inc/jobs/job.hxx247
-rw-r--r--framework/inc/jobs/jobconst.hxx73
-rw-r--r--framework/inc/jobs/jobdata.hxx285
-rw-r--r--framework/inc/jobs/jobdispatch.hxx158
-rw-r--r--framework/inc/jobs/jobexecutor.hxx129
-rw-r--r--framework/inc/jobs/jobresult.hxx147
-rw-r--r--framework/inc/jobs/joburl.hxx177
-rw-r--r--framework/inc/jobs/shelljob.hxx169
-rw-r--r--framework/inc/loadstate.h115
-rw-r--r--framework/inc/macros/debug.hxx137
-rw-r--r--framework/inc/macros/debug/assertion.hxx235
-rw-r--r--framework/inc/macros/debug/event.hxx132
-rw-r--r--framework/inc/macros/debug/filterdbg.hxx130
-rw-r--r--framework/inc/macros/debug/logmechanism.hxx102
-rw-r--r--framework/inc/macros/debug/memorymeasure.hxx223
-rw-r--r--framework/inc/macros/debug/mutex.hxx117
-rw-r--r--framework/inc/macros/debug/plugin.hxx202
-rw-r--r--framework/inc/macros/debug/registration.hxx100
-rw-r--r--framework/inc/macros/debug/targeting.hxx252
-rw-r--r--framework/inc/macros/debug/timemeasure.hxx140
-rw-r--r--framework/inc/macros/generic.hxx78
-rw-r--r--framework/inc/macros/registration.hxx224
-rw-r--r--framework/inc/macros/xinterface.hxx708
-rw-r--r--framework/inc/macros/xserviceinfo.hxx272
-rw-r--r--framework/inc/macros/xtypeprovider.hxx714
-rw-r--r--framework/inc/makefile.mk47
-rw-r--r--framework/inc/mediadescriptor.h77
-rw-r--r--framework/inc/pch/precompiled_framework.cxx29
-rw-r--r--framework/inc/pch/precompiled_framework.hxx495
-rw-r--r--framework/inc/properties.h354
-rw-r--r--framework/inc/protocols.h157
-rw-r--r--framework/inc/queries.h402
-rw-r--r--framework/inc/recording/dispatchrecorder.hxx88
-rw-r--r--framework/inc/recording/dispatchrecordersupplier.hxx137
-rw-r--r--framework/inc/services.h218
-rw-r--r--framework/inc/services/autorecovery.hxx1022
-rw-r--r--framework/inc/services/backingcomp.hxx166
-rw-r--r--framework/inc/services/contenthandlerfactory.hxx242
-rw-r--r--framework/inc/services/desktop.hxx513
-rw-r--r--framework/inc/services/detectorfactory.hxx461
-rw-r--r--framework/inc/services/dispatchhelper.hxx135
-rw-r--r--framework/inc/services/frame.hxx480
-rw-r--r--framework/inc/services/frameloaderfactory.hxx388
-rw-r--r--framework/inc/services/layoutmanager.hxx522
-rw-r--r--framework/inc/services/license.hxx123
-rw-r--r--framework/inc/services/licensedlg.hxx104
-rw-r--r--framework/inc/services/logindialog.hrc52
-rw-r--r--framework/inc/services/logindialog.hxx890
-rw-r--r--framework/inc/services/mediatypedetectionhelper.hxx151
-rw-r--r--framework/inc/services/modulemanager.hxx201
-rw-r--r--framework/inc/services/pathsettings.hxx295
-rw-r--r--framework/inc/services/pluginframe.hxx375
-rw-r--r--framework/inc/services/sessionlistener.hxx188
-rw-r--r--framework/inc/services/substitutepathvars.hxx306
-rw-r--r--framework/inc/services/tabwindowservice.hxx232
-rw-r--r--framework/inc/services/task.hxx610
-rw-r--r--framework/inc/services/taskcreatorsrv.hxx167
-rw-r--r--framework/inc/services/uriabbreviation.hxx66
-rw-r--r--framework/inc/services/urltransformer.hxx223
-rw-r--r--framework/inc/stdtypes.h213
-rw-r--r--framework/inc/tabwin/tabwindow.hxx200
-rw-r--r--framework/inc/tabwin/tabwinfactory.hxx83
-rw-r--r--framework/inc/targets.h69
-rw-r--r--framework/inc/threadhelp/fairrwlock.hxx286
-rw-r--r--framework/inc/threadhelp/gate.hxx248
-rw-r--r--framework/inc/threadhelp/igate.h73
-rw-r--r--framework/inc/threadhelp/imutex.h67
-rw-r--r--framework/inc/threadhelp/inoncopyable.h77
-rw-r--r--framework/inc/threadhelp/irwlock.h87
-rw-r--r--framework/inc/threadhelp/itransactionmanager.h149
-rw-r--r--framework/inc/threadhelp/lockhelper.hxx179
-rw-r--r--framework/inc/threadhelp/readguard.hxx204
-rw-r--r--framework/inc/threadhelp/resetableguard.hxx200
-rw-r--r--framework/inc/threadhelp/threadhelpbase.hxx96
-rw-r--r--framework/inc/threadhelp/transactionbase.hxx85
-rw-r--r--framework/inc/threadhelp/transactionguard.hxx188
-rw-r--r--framework/inc/threadhelp/transactionmanager.hxx118
-rw-r--r--framework/inc/threadhelp/writeguard.hxx264
-rw-r--r--framework/inc/uiconfiguration/globalsettings.hxx97
-rw-r--r--framework/inc/uiconfiguration/graphicnameaccess.hxx74
-rw-r--r--framework/inc/uiconfiguration/imagemanager.hxx128
-rw-r--r--framework/inc/uiconfiguration/imagetype.hxx57
-rw-r--r--framework/inc/uiconfiguration/moduleimagemanager.hxx123
-rw-r--r--framework/inc/uiconfiguration/moduleuicfgsupplier.hxx119
-rw-r--r--framework/inc/uiconfiguration/moduleuiconfigurationmanager.hxx225
-rw-r--r--framework/inc/uiconfiguration/uicategorydescription.hxx74
-rw-r--r--framework/inc/uiconfiguration/uiconfigurationmanager.hxx210
-rw-r--r--framework/inc/uiconfiguration/windowstateconfiguration.hxx131
-rw-r--r--framework/inc/uielement/addonstoolbarmanager.hxx100
-rw-r--r--framework/inc/uielement/addonstoolbarwrapper.hxx79
-rw-r--r--framework/inc/uielement/buttontoolbarcontroller.hxx111
-rw-r--r--framework/inc/uielement/comboboxtoolbarcontroller.hxx96
-rw-r--r--framework/inc/uielement/commandinfo.hxx66
-rw-r--r--framework/inc/uielement/complextoolbarcontroller.hxx110
-rw-r--r--framework/inc/uielement/constitemcontainer.hxx137
-rw-r--r--framework/inc/uielement/controlmenucontroller.hxx115
-rw-r--r--framework/inc/uielement/dropdownboxtoolbarcontroller.hxx92
-rw-r--r--framework/inc/uielement/edittoolbarcontroller.hxx92
-rw-r--r--framework/inc/uielement/fontmenucontroller.hxx93
-rw-r--r--framework/inc/uielement/fontsizemenucontroller.hxx96
-rw-r--r--framework/inc/uielement/footermenucontroller.hxx57
-rw-r--r--framework/inc/uielement/generictoolbarcontroller.hxx99
-rw-r--r--framework/inc/uielement/headermenucontroller.hxx91
-rw-r--r--framework/inc/uielement/imagebuttontoolbarcontroller.hxx70
-rw-r--r--framework/inc/uielement/itemcontainer.hxx117
-rw-r--r--framework/inc/uielement/langselectionmenucontroller.hxx115
-rw-r--r--framework/inc/uielement/langselectionstatusbarcontroller.hxx107
-rw-r--r--framework/inc/uielement/logoimagestatusbarcontroller.hxx88
-rw-r--r--framework/inc/uielement/logotextstatusbarcontroller.hxx88
-rw-r--r--framework/inc/uielement/macrosmenucontroller.hxx88
-rw-r--r--framework/inc/uielement/menubarmanager.hxx278
-rw-r--r--framework/inc/uielement/menubarmerger.hxx124
-rw-r--r--framework/inc/uielement/menubarwrapper.hxx109
-rw-r--r--framework/inc/uielement/newmenucontroller.hxx136
-rw-r--r--framework/inc/uielement/objectmenucontroller.hxx86
-rw-r--r--framework/inc/uielement/popupmenucontroller.hxx80
-rw-r--r--framework/inc/uielement/progressbarwrapper.hxx108
-rw-r--r--framework/inc/uielement/recentfilesmenucontroller.hxx121
-rw-r--r--framework/inc/uielement/rootitemcontainer.hxx156
-rw-r--r--framework/inc/uielement/simpletextstatusbarcontroller.hxx90
-rw-r--r--framework/inc/uielement/spinfieldtoolbarcontroller.hxx115
-rw-r--r--framework/inc/uielement/statusbar.hxx76
-rw-r--r--framework/inc/uielement/statusbarmanager.hxx143
-rw-r--r--framework/inc/uielement/statusbarwrapper.hxx77
-rw-r--r--framework/inc/uielement/statusindicatorinterfacewrapper.hxx82
-rw-r--r--framework/inc/uielement/togglebuttontoolbarcontroller.hxx86
-rw-r--r--framework/inc/uielement/toolbar.hxx73
-rw-r--r--framework/inc/uielement/toolbarmanager.hxx257
-rw-r--r--framework/inc/uielement/toolbarmerger.hxx160
-rw-r--r--framework/inc/uielement/toolbarsmenucontroller.hxx125
-rw-r--r--framework/inc/uielement/toolbarwrapper.hxx101
-rw-r--r--framework/inc/uielement/uicommanddescription.hxx117
-rw-r--r--framework/inc/uielement/uielementtypenames.hxx12
-rw-r--r--framework/inc/uifactory/addonstoolboxfactory.hxx88
-rwxr-xr-xframework/inc/uifactory/factoryconfiguration.hxx124
-rw-r--r--framework/inc/uifactory/menubarfactory.hxx91
-rw-r--r--framework/inc/uifactory/popupmenucontrollerfactory.hxx67
-rw-r--r--framework/inc/uifactory/statusbarcontrollerfactory.hxx62
-rw-r--r--framework/inc/uifactory/statusbarfactory.hxx67
-rw-r--r--framework/inc/uifactory/toolbarcontrollerfactory.hxx91
-rw-r--r--framework/inc/uifactory/toolboxfactory.hxx66
-rw-r--r--framework/inc/uifactory/uielementfactorymanager.hxx151
-rw-r--r--framework/inc/uifactory/windowcontentfactorymanager.hxx90
-rw-r--r--framework/inc/xml/acceleratorconfigurationreader.hxx220
-rw-r--r--framework/inc/xml/acceleratorconfigurationwriter.hxx119
-rw-r--r--framework/inc/xml/eventsconfiguration.hxx65
-rw-r--r--framework/inc/xml/eventsdocumenthandler.hxx187
-rw-r--r--framework/inc/xml/imagesconfiguration.hxx127
-rw-r--r--framework/inc/xml/imagesdocumenthandler.hxx201
-rw-r--r--framework/inc/xml/menuconfiguration.hxx125
-rw-r--r--framework/inc/xml/menudocumenthandler.hxx318
-rw-r--r--framework/inc/xml/saxnamespacefilter.hxx104
-rw-r--r--framework/inc/xml/statusbarconfiguration.hxx58
-rw-r--r--framework/inc/xml/statusbardocumenthandler.hxx184
-rw-r--r--framework/inc/xml/toolboxconfiguration.hxx38
-rw-r--r--framework/inc/xml/toolboxconfigurationdefines.hxx86
-rw-r--r--framework/inc/xml/toolboxdocumenthandler.hxx213
-rw-r--r--framework/inc/xml/xmlnamespaces.hxx65
-rw-r--r--framework/prj/build.lst23
-rw-r--r--framework/prj/d.lst51
-rw-r--r--framework/qa/complex/ModuleManager/CheckXModuleManager.java321
-rw-r--r--framework/qa/complex/ModuleManager/makefile.mk83
-rw-r--r--framework/qa/complex/XUserInputInterception/EventTest.java594
-rw-r--r--framework/qa/complex/XUserInputInterception/makefile.mk89
-rw-r--r--framework/qa/complex/accelerators/AcceleratorsConfigurationTest.java686
-rw-r--r--framework/qa/complex/accelerators/helper/KeyMapping.java168
-rw-r--r--framework/qa/complex/accelerators/helper/makefile.mk46
-rw-r--r--framework/qa/complex/accelerators/makefile.mk86
-rwxr-xr-xframework/qa/complex/api_internal/CheckAPI.java200
-rwxr-xr-xframework/qa/complex/api_internal/CheckAPI.props4
-rwxr-xr-xframework/qa/complex/api_internal/api.lst325
-rwxr-xr-xframework/qa/complex/api_internal/makefile.mk88
-rwxr-xr-xframework/qa/complex/api_internal/tests.sce3
-rwxr-xr-xframework/qa/complex/api_internal/worksforme.sce39
-rwxr-xr-xframework/qa/complex/broken_document/LoadDocument.java103
-rwxr-xr-xframework/qa/complex/broken_document/dbf.dbf.emf1
-rwxr-xr-xframework/qa/complex/broken_document/makefile.mk80
-rw-r--r--framework/qa/complex/contextMenuInterceptor/CheckContextMenuInterceptor.java287
-rw-r--r--framework/qa/complex/contextMenuInterceptor/ContextMenuInterceptor.java130
-rw-r--r--framework/qa/complex/contextMenuInterceptor/makefile.mk77
-rwxr-xr-xframework/qa/complex/desktop/DesktopTerminate.java158
-rwxr-xr-xframework/qa/complex/desktop/makefile.mk79
-rw-r--r--framework/qa/complex/dispatches/checkdispatchapi.java462
-rw-r--r--framework/qa/complex/dispatches/helper/Interceptor.java348
-rw-r--r--framework/qa/complex/dispatches/helper/makefile.mk48
-rw-r--r--framework/qa/complex/dispatches/makefile.mk92
-rwxr-xr-xframework/qa/complex/disposing/GetServiceWhileDisposingOffice.java74
-rwxr-xr-xframework/qa/complex/disposing/makefile.mk76
-rw-r--r--framework/qa/complex/framework/autosave/AutoSave.java454
-rw-r--r--framework/qa/complex/framework/autosave/ConfigHelper.java124
-rw-r--r--framework/qa/complex/framework/autosave/Protocol.java999
-rw-r--r--framework/qa/complex/framework/autosave/makefile.mk89
-rw-r--r--framework/qa/complex/framework/recovery/CrashThread.java80
-rw-r--r--framework/qa/complex/framework/recovery/KlickButtonThread.java57
-rw-r--r--framework/qa/complex/framework/recovery/RecoveryTest.java1012
-rw-r--r--framework/qa/complex/framework/recovery/RecoveryTools.java366
-rw-r--r--framework/qa/complex/framework/recovery/TimeoutThread.java41
-rwxr-xr-xframework/qa/complex/framework/recovery/makefile.mk103
-rwxr-xr-xframework/qa/complex/imageManager/CheckImageManager.java197
-rwxr-xr-xframework/qa/complex/imageManager/interfaces/_XComponent.java179
-rwxr-xr-xframework/qa/complex/imageManager/interfaces/_XImageManager.java114
-rwxr-xr-xframework/qa/complex/imageManager/interfaces/_XInitialization.java95
-rwxr-xr-xframework/qa/complex/imageManager/interfaces/_XTypeProvider.java103
-rwxr-xr-xframework/qa/complex/imageManager/interfaces/_XUIConfiguration.java85
-rwxr-xr-xframework/qa/complex/imageManager/interfaces/_XUIConfigurationPersistence.java96
-rwxr-xr-xframework/qa/complex/imageManager/interfaces/makefile.mk57
-rwxr-xr-xframework/qa/complex/imageManager/makefile.mk79
-rw-r--r--framework/qa/complex/loadAllDocuments/CheckXComponentLoader.java733
-rw-r--r--framework/qa/complex/loadAllDocuments/CheckXComponentLoader.props3
-rw-r--r--framework/qa/complex/loadAllDocuments/helper/InteractionHandler.java155
-rw-r--r--framework/qa/complex/loadAllDocuments/helper/StatusIndicator.java237
-rw-r--r--framework/qa/complex/loadAllDocuments/helper/StreamSimulator.java474
-rw-r--r--framework/qa/complex/loadAllDocuments/helper/makefile.mk48
-rw-r--r--framework/qa/complex/loadAllDocuments/makefile.mk91
-rw-r--r--framework/qa/complex/loadAllDocuments/password_check.sxwbin0 -> 5128 bytes-rw-r--r--framework/qa/complex/loadAllDocuments/testdocuments/Calc_6.sxcbin0 -> 9547 bytes-rw-r--r--framework/qa/complex/loadAllDocuments/testdocuments/Writer6.sxwbin0 -> 5754 bytes-rw-r--r--framework/qa/complex/loadAllDocuments/testdocuments/draw1.sxdbin0 -> 11821 bytes-rw-r--r--framework/qa/complex/loadAllDocuments/testdocuments/imp1.sxibin0 -> 35135 bytes-rw-r--r--framework/qa/complex/loadAllDocuments/testdocuments/pic.gifbin0 -> 1433 bytes-rw-r--r--framework/qa/complex/loadAllDocuments/testdocuments/pic.jpgbin0 -> 2651 bytes-rwxr-xr-xframework/qa/complex/path_settings/PathSettingsTest.java458
-rwxr-xr-xframework/qa/complex/path_settings/makefile.mk84
-rwxr-xr-xframework/qa/complex/path_substitution/PathSubstitutionTest.java246
-rwxr-xr-xframework/qa/complex/path_substitution/makefile.mk83
-rwxr-xr-xframework/qa/complex/sequence/CheckSequenceOfEnum.java95
-rwxr-xr-xframework/qa/complex/sequence/makefile.mk98
-rw-r--r--framework/qa/unoapi/Test.java51
-rwxr-xr-xframework/qa/unoapi/framework.sce35
-rwxr-xr-xframework/qa/unoapi/knownissues.xcl59
-rwxr-xr-xframework/qa/unoapi/makefile.mk48
-rw-r--r--framework/qa/unoapi/testdocuments/Calc_Link.sxcbin0 -> 5410 bytes-rw-r--r--framework/qa/unoapi/testdocuments/Writer_link.sxwbin0 -> 5188 bytes-rw-r--r--framework/qa/unoapi/testdocuments/XTypeDetection.sxwbin0 -> 4995 bytes-rwxr-xr-xframework/qa/unoapi/testdocuments/delete.cfgbin0 -> 2799 bytes-rw-r--r--framework/source/accelerators/acceleratorcache.cxx250
-rw-r--r--framework/source/accelerators/acceleratorconfiguration.cxx1716
-rw-r--r--framework/source/accelerators/acceleratorexecute.cxx382
-rw-r--r--framework/source/accelerators/acceleratorexecute.hxx255
-rw-r--r--framework/source/accelerators/documentacceleratorconfiguration.cxx240
-rw-r--r--framework/source/accelerators/globalacceleratorconfiguration.cxx127
-rw-r--r--framework/source/accelerators/keymapping.cxx229
-rw-r--r--framework/source/accelerators/makefile.mk52
-rw-r--r--framework/source/accelerators/moduleacceleratorconfiguration.cxx175
-rw-r--r--framework/source/accelerators/presethandler.cxx937
-rw-r--r--framework/source/accelerators/storageholder.cxx637
-rw-r--r--framework/source/application/framework.cxx286
-rw-r--r--framework/source/application/login.cxx298
-rw-r--r--framework/source/application/makefile.mk45
-rw-r--r--framework/source/classes/actiontriggercontainer.cxx203
-rw-r--r--framework/source/classes/actiontriggerpropertyset.cxx478
-rw-r--r--framework/source/classes/actiontriggerseparatorpropertyset.cxx349
-rw-r--r--framework/source/classes/addonmenu.cxx456
-rw-r--r--framework/source/classes/addonsoptions.cxx1858
-rw-r--r--framework/source/classes/bmkmenu.cxx254
-rw-r--r--framework/source/classes/converter.cxx316
-rw-r--r--framework/source/classes/droptargetlistener.cxx254
-rw-r--r--framework/source/classes/framecontainer.cxx418
-rw-r--r--framework/source/classes/framelistanalyzer.cxx302
-rw-r--r--framework/source/classes/fwkresid.cxx65
-rw-r--r--framework/source/classes/fwktabwindow.cxx412
-rwxr-xr-xframework/source/classes/fwlresid.cxx65
-rw-r--r--framework/source/classes/imagewrapper.cxx120
-rw-r--r--framework/source/classes/makefile.mk69
-rw-r--r--framework/source/classes/menuextensionsupplier.cxx64
-rw-r--r--framework/source/classes/menumanager.cxx1181
-rw-r--r--framework/source/classes/propertysethelper.cxx450
-rw-r--r--framework/source/classes/protocolhandlercache.cxx361
-rw-r--r--framework/source/classes/resource.src354
-rw-r--r--framework/source/classes/rootactiontriggercontainer.cxx379
-rw-r--r--framework/source/classes/sfxhelperfunctions.cxx181
-rw-r--r--framework/source/classes/taskcreator.cxx171
-rw-r--r--framework/source/constant/containerquery.cxx42
-rw-r--r--framework/source/constant/contenthandler.cxx42
-rw-r--r--framework/source/constant/frameloader.cxx42
-rw-r--r--framework/source/constant/makefile.mk45
-rw-r--r--framework/source/dispatch/closedispatcher.cxx653
-rw-r--r--framework/source/dispatch/dispatchinformationprovider.cxx190
-rw-r--r--framework/source/dispatch/dispatchprovider.cxx795
-rw-r--r--framework/source/dispatch/helpagentdispatcher.cxx444
-rw-r--r--framework/source/dispatch/interaction.cxx209
-rw-r--r--framework/source/dispatch/interceptionhelper.cxx342
-rw-r--r--framework/source/dispatch/loaddispatcher.cxx198
-rw-r--r--framework/source/dispatch/mailtodispatcher.cxx330
-rw-r--r--framework/source/dispatch/makefile.mk63
-rw-r--r--framework/source/dispatch/menudispatcher.cxx488
-rw-r--r--framework/source/dispatch/oxt_handler.cxx298
-rw-r--r--framework/source/dispatch/popupmenudispatcher.cxx421
-rw-r--r--framework/source/dispatch/servicehandler.cxx351
-rw-r--r--framework/source/dispatch/startmoduledispatcher.cxx241
-rw-r--r--framework/source/dispatch/systemexec.cxx234
-rwxr-xr-xframework/source/dispatch/windowcommanddispatch.cxx191
-rw-r--r--framework/source/helper/acceleratorinfo.cxx71
-rw-r--r--framework/source/helper/actiontriggerhelper.cxx408
-rw-r--r--framework/source/helper/configimporter.cxx93
-rw-r--r--framework/source/helper/dockingareadefaultacceptor.cxx187
-rw-r--r--framework/source/helper/imageproducer.cxx56
-rw-r--r--framework/source/helper/makefile.mk69
-rw-r--r--framework/source/helper/mischelper.cxx239
-rw-r--r--framework/source/helper/networkdomain.cxx295
-rw-r--r--framework/source/helper/ocomponentaccess.cxx262
-rw-r--r--framework/source/helper/ocomponentenumeration.cxx237
-rw-r--r--framework/source/helper/oframes.cxx524
-rw-r--r--framework/source/helper/persistentwindowstate.cxx352
-rw-r--r--framework/source/helper/propertysetcontainer.cxx196
-rw-r--r--framework/source/helper/shareablemutex.cxx81
-rw-r--r--framework/source/helper/statusindicator.cxx152
-rw-r--r--framework/source/helper/statusindicatorfactory.cxx654
-rw-r--r--framework/source/helper/tagwindowasmodified.cxx256
-rw-r--r--framework/source/helper/titlebarupdate.cxx413
-rw-r--r--framework/source/helper/titlehelper.cxx760
-rw-r--r--framework/source/helper/uiconfigelementwrapperbase.cxx571
-rw-r--r--framework/source/helper/uielementwrapperbase.cxx282
-rw-r--r--framework/source/helper/vclstatusindicator.cxx231
-rw-r--r--framework/source/helper/wakeupthread.cxx83
-rw-r--r--framework/source/inc/accelerators/acceleratorcache.hxx187
-rw-r--r--framework/source/inc/accelerators/acceleratorconfiguration.hxx476
-rw-r--r--framework/source/inc/accelerators/documentacceleratorconfiguration.hxx124
-rw-r--r--framework/source/inc/accelerators/globalacceleratorconfiguration.hxx109
-rw-r--r--framework/source/inc/accelerators/istoragelistener.hxx64
-rw-r--r--framework/source/inc/accelerators/keymapping.hxx162
-rw-r--r--framework/source/inc/accelerators/moduleacceleratorconfiguration.hxx115
-rw-r--r--framework/source/inc/accelerators/presethandler.hxx535
-rw-r--r--framework/source/inc/accelerators/storageholder.hxx261
-rw-r--r--framework/source/inc/constant/containerquery.hxx47
-rw-r--r--framework/source/inc/constant/contenthandler.hxx47
-rw-r--r--framework/source/inc/constant/frameloader.hxx47
-rw-r--r--framework/source/inc/dispatch/loaddispatcher.hxx161
-rw-r--r--framework/source/inc/dispatch/uieventloghelper.hxx82
-rwxr-xr-xframework/source/inc/dispatch/windowcommanddispatch.hxx174
-rw-r--r--framework/source/inc/loadenv/actionlockguard.hxx209
-rw-r--r--framework/source/inc/loadenv/loadenv.hxx704
-rw-r--r--framework/source/inc/loadenv/loadenvexception.hxx197
-rw-r--r--framework/source/inc/loadenv/targethelper.hxx124
-rw-r--r--framework/source/inc/pattern/configuration.hxx176
-rw-r--r--framework/source/inc/pattern/frame.hxx130
-rw-r--r--framework/source/inc/pattern/storages.hxx102
-rw-r--r--framework/source/inc/pattern/window.hxx155
-rw-r--r--framework/source/interaction/makefile.mk49
-rw-r--r--framework/source/interaction/preventduplicateinteraction.cxx294
-rw-r--r--framework/source/interaction/quietinteraction.cxx206
-rw-r--r--framework/source/jobs/configaccess.cxx242
-rw-r--r--framework/source/jobs/helponstartup.cxx423
-rw-r--r--framework/source/jobs/job.cxx944
-rw-r--r--framework/source/jobs/jobconst.cxx74
-rw-r--r--framework/source/jobs/jobdata.cxx714
-rw-r--r--framework/source/jobs/jobdispatch.cxx475
-rw-r--r--framework/source/jobs/jobexecutor.cxx364
-rw-r--r--framework/source/jobs/jobresult.cxx261
-rw-r--r--framework/source/jobs/joburl.cxx657
-rw-r--r--framework/source/jobs/makefile.mk53
-rw-r--r--framework/source/jobs/shelljob.cxx214
-rw-r--r--framework/source/layoutmanager/layoutmanager.cxx7563
-rw-r--r--framework/source/layoutmanager/makefile.mk47
-rw-r--r--framework/source/loadenv/loadenv.cxx1910
-rw-r--r--framework/source/loadenv/makefile.mk46
-rw-r--r--framework/source/loadenv/targethelper.cxx109
-rw-r--r--framework/source/recording/dispatchrecorder.cxx493
-rw-r--r--framework/source/recording/dispatchrecordersupplier.cxx221
-rw-r--r--framework/source/recording/makefile.mk47
-rw-r--r--framework/source/register/makefile.mk50
-rw-r--r--framework/source/register/register3rdcomponents.cxx76
-rw-r--r--framework/source/register/registerlogindialog.cxx71
-rw-r--r--framework/source/register/registerservices.cxx240
-rw-r--r--framework/source/register/registertemp.cxx133
-rw-r--r--framework/source/services/autorecovery.cxx3743
-rw-r--r--framework/source/services/backingcomp.cxx874
-rw-r--r--framework/source/services/backingwindow.cxx1147
-rw-r--r--framework/source/services/backingwindow.hxx184
-rw-r--r--framework/source/services/desktop.cxx2036
-rw-r--r--framework/source/services/dispatchhelper.cxx227
-rw-r--r--framework/source/services/frame.cxx3311
-rw-r--r--framework/source/services/fwk_services.src227
-rw-r--r--framework/source/services/license.cxx631
-rw-r--r--framework/source/services/makefile.mk64
-rw-r--r--framework/source/services/mediatypedetectionhelper.cxx111
-rw-r--r--framework/source/services/menudocumenthandler.cxx903
-rw-r--r--framework/source/services/modulemanager.cxx425
-rw-r--r--framework/source/services/pathsettings.cxx1175
-rw-r--r--framework/source/services/sessionlistener.cxx368
-rw-r--r--framework/source/services/substitutepathvars.cxx1249
-rw-r--r--framework/source/services/tabwindowservice.cxx485
-rw-r--r--framework/source/services/taskcreatorsrv.cxx404
-rw-r--r--framework/source/services/uriabbreviation.cxx90
-rw-r--r--framework/source/services/urltransformer.cxx372
-rw-r--r--framework/source/tabwin/makefile.mk48
-rw-r--r--framework/source/tabwin/tabwindow.cxx976
-rw-r--r--framework/source/tabwin/tabwinfactory.cxx176
-rw-r--r--framework/source/threadhelp/lockhelper.cxx549
-rw-r--r--framework/source/threadhelp/makefile.mk45
-rw-r--r--framework/source/threadhelp/transactionmanager.cxx373
-rw-r--r--framework/source/uiconfiguration/globalsettings.cxx356
-rw-r--r--framework/source/uiconfiguration/graphicnameaccess.cxx112
-rw-r--r--framework/source/uiconfiguration/imagemanager.cxx254
-rwxr-xr-xframework/source/uiconfiguration/imagemanagerimpl.cxx1463
-rwxr-xr-xframework/source/uiconfiguration/imagemanagerimpl.hxx222
-rw-r--r--framework/source/uiconfiguration/makefile.mk54
-rw-r--r--framework/source/uiconfiguration/moduleimagemanager.cxx226
-rw-r--r--framework/source/uiconfiguration/moduleuicfgsupplier.cxx398
-rw-r--r--framework/source/uiconfiguration/moduleuiconfigurationmanager.cxx1614
-rw-r--r--framework/source/uiconfiguration/uicategorydescription.cxx476
-rw-r--r--framework/source/uiconfiguration/uiconfigurationmanager.cxx1355
-rwxr-xr-xframework/source/uiconfiguration/uiconfigurationmanagerimpl.cxx1710
-rwxr-xr-xframework/source/uiconfiguration/uiconfigurationmanagerimpl.hxx218
-rw-r--r--framework/source/uiconfiguration/windowstateconfiguration.cxx1490
-rw-r--r--framework/source/uielement/addonstoolbarmanager.cxx559
-rw-r--r--framework/source/uielement/addonstoolbarwrapper.cxx196
-rw-r--r--framework/source/uielement/buttontoolbarcontroller.cxx337
-rw-r--r--framework/source/uielement/comboboxtoolbarcontroller.cxx438
-rw-r--r--framework/source/uielement/complextoolbarcontroller.cxx390
-rw-r--r--framework/source/uielement/constitemcontainer.cxx479
-rw-r--r--framework/source/uielement/controlmenucontroller.cxx443
-rw-r--r--framework/source/uielement/dropdownboxtoolbarcontroller.cxx353
-rw-r--r--framework/source/uielement/edittoolbarcontroller.cxx268
-rw-r--r--framework/source/uielement/fontmenucontroller.cxx262
-rw-r--r--framework/source/uielement/fontsizemenucontroller.cxx363
-rw-r--r--framework/source/uielement/footermenucontroller.cxx97
-rw-r--r--framework/source/uielement/generictoolbarcontroller.cxx393
-rw-r--r--framework/source/uielement/headermenucontroller.cxx276
-rw-r--r--framework/source/uielement/imagebuttontoolbarcontroller.cxx235
-rw-r--r--framework/source/uielement/itemcontainer.cxx266
-rw-r--r--framework/source/uielement/langselectionmenucontroller.cxx378
-rw-r--r--framework/source/uielement/langselectionstatusbarcontroller.cxx440
-rw-r--r--framework/source/uielement/logoimagestatusbarcontroller.cxx177
-rw-r--r--framework/source/uielement/logotextstatusbarcontroller.cxx180
-rw-r--r--framework/source/uielement/macrosmenucontroller.cxx235
-rw-r--r--framework/source/uielement/makefile.mk87
-rw-r--r--framework/source/uielement/menubarmanager.cxx2151
-rw-r--r--framework/source/uielement/menubarmerger.cxx441
-rw-r--r--framework/source/uielement/menubarwrapper.cxx379
-rw-r--r--framework/source/uielement/newmenucontroller.cxx596
-rw-r--r--framework/source/uielement/objectmenucontroller.cxx166
-rw-r--r--framework/source/uielement/popupmenucontroller.cxx248
-rw-r--r--framework/source/uielement/progressbarwrapper.cxx365
-rw-r--r--framework/source/uielement/recentfilesmenucontroller.cxx480
-rw-r--r--framework/source/uielement/rootitemcontainer.cxx466
-rw-r--r--framework/source/uielement/simpletextstatusbarcontroller.cxx196
-rw-r--r--framework/source/uielement/spinfieldtoolbarcontroller.cxx577
-rw-r--r--framework/source/uielement/statusbar.cxx113
-rw-r--r--framework/source/uielement/statusbarmanager.cxx722
-rw-r--r--framework/source/uielement/statusbarwrapper.cxx205
-rw-r--r--framework/source/uielement/statusindicatorinterfacewrapper.cxx130
-rw-r--r--framework/source/uielement/togglebuttontoolbarcontroller.cxx322
-rw-r--r--framework/source/uielement/toolbar.cxx77
-rw-r--r--framework/source/uielement/toolbarmanager.cxx2358
-rw-r--r--framework/source/uielement/toolbarmerger.cxx714
-rw-r--r--framework/source/uielement/toolbarsmenucontroller.cxx919
-rw-r--r--framework/source/uielement/toolbarwrapper.cxx353
-rw-r--r--framework/source/uielement/uicommanddescription.cxx795
-rw-r--r--framework/source/uifactory/addonstoolboxfactory.cxx221
-rwxr-xr-xframework/source/uifactory/factoryconfiguration.cxx341
-rw-r--r--framework/source/uifactory/makefile.mk54
-rw-r--r--framework/source/uifactory/menubarfactory.cxx212
-rw-r--r--framework/source/uifactory/popupmenucontrollerfactory.cxx93
-rw-r--r--framework/source/uifactory/statusbarcontrollerfactory.cxx91
-rw-r--r--framework/source/uifactory/statusbarfactory.cxx109
-rw-r--r--framework/source/uifactory/toolbarcontrollerfactory.cxx262
-rw-r--r--framework/source/uifactory/toolboxfactory.cxx105
-rw-r--r--framework/source/uifactory/uielementfactorymanager.cxx547
-rw-r--r--framework/source/uifactory/windowcontentfactorymanager.cxx266
-rw-r--r--framework/source/unotypes/fwk.xml459
-rw-r--r--framework/source/unotypes/fwl.xml97
-rw-r--r--framework/source/unotypes/lgd.xml34
-rw-r--r--framework/source/xml/acceleratorconfigurationreader.cxx338
-rw-r--r--framework/source/xml/acceleratorconfigurationwriter.cxx156
-rw-r--r--framework/source/xml/eventsconfiguration.cxx165
-rw-r--r--framework/source/xml/eventsdocumenthandler.cxx552
-rw-r--r--framework/source/xml/imagesconfiguration.cxx238
-rw-r--r--framework/source/xml/imagesdocumenthandler.cxx851
-rw-r--r--framework/source/xml/makefile.mk58
-rw-r--r--framework/source/xml/menuconfiguration.cxx187
-rw-r--r--framework/source/xml/menudocumenthandler.cxx1022
-rw-r--r--framework/source/xml/saxnamespacefilter.cxx198
-rw-r--r--framework/source/xml/statusbarconfiguration.cxx166
-rw-r--r--framework/source/xml/statusbardocumenthandler.cxx698
-rw-r--r--framework/source/xml/toolboxconfiguration.cxx156
-rw-r--r--framework/source/xml/toolboxdocumenthandler.cxx901
-rw-r--r--framework/source/xml/xmlnamespaces.cxx191
-rw-r--r--framework/test/makefile.mk94
-rw-r--r--framework/test/test.cxx1346
-rw-r--r--framework/test/test_componentenumeration.bas78
-rw-r--r--framework/test/test_documentproperties.bas1083
-rw-r--r--framework/test/test_filterregistration.bas95
-rw-r--r--framework/test/test_statusindicatorfactory.bas69
-rw-r--r--framework/test/threadtest.cxx738
-rw-r--r--framework/test/threadtest/makefile.mk67
-rw-r--r--framework/test/threadtest/test.btm29
-rw-r--r--framework/test/threadtest/threadtest.cxx736
-rw-r--r--framework/test/typecfg/build.btm26
-rw-r--r--framework/test/typecfg/cfgview.cxx1512
-rw-r--r--framework/test/typecfg/makefile.mk73
-rw-r--r--framework/test/typecfg/typecfg.cxx249
-rw-r--r--framework/test/typecfg/xml2xcd.cxx2360
-rw-r--r--framework/uiconfig/startmodule/menubar/menubar.xml83
-rw-r--r--framework/uiconfig/startmodule/statusbar/statusbar.xml4
-rw-r--r--framework/uiconfig/startmodule/toolbar/standardbar.xml11
-rw-r--r--framework/util/guiapps/makefile.mk67
-rw-r--r--framework/util/hidother.src32
-rw-r--r--framework/util/lgd.xml34
-rw-r--r--framework/util/makefile.mk425
-rw-r--r--framework/util/makefile.pmk38
-rw-r--r--framework/util/target.pmk34
-rw-r--r--graphite/graphite-2.3.1.patch2396
-rwxr-xr-xgraphite/graphite-2.3.1.patch.mingw159
-rw-r--r--graphite/makefile.mk175
-rw-r--r--graphite/prj/build.lst3
-rw-r--r--graphite/prj/d.lst15
-rw-r--r--guw/guw.cc686
-rw-r--r--guw/makefile5
-rwxr-xr-xhsqldb/makefile.mk83
-rw-r--r--hsqldb/patches/i103528.patch11
-rw-r--r--hsqldb/patches/i104901.patch27
-rw-r--r--hsqldb/patches/i96823.patch94
-rw-r--r--hsqldb/patches/i97032.patch10
-rwxr-xr-xhsqldb/prj/build.lst2
-rwxr-xr-xhsqldb/prj/d.lst1
-rwxr-xr-xhsqldb/version.mk6
-rw-r--r--hunspell/hunspell-1.2.8-thesfix.patch28
-rw-r--r--hunspell/hunspell-mingw.patch12
-rw-r--r--hunspell/hunspell-solaris.patch12
-rw-r--r--hunspell/hunspell-stacksmash.patch28
-rw-r--r--hunspell/hunspell-wntconfig.patch4
-rw-r--r--hunspell/makefile.mk98
-rw-r--r--hunspell/prj/build.lst3
-rw-r--r--hunspell/prj/d.lst5
-rw-r--r--hwpfilter/inc/makefile.mk47
-rw-r--r--hwpfilter/inc/pch/precompiled_hwpfilter.cxx29
-rw-r--r--hwpfilter/inc/pch/precompiled_hwpfilter.hxx32
-rw-r--r--hwpfilter/prj/build.lst5
-rw-r--r--hwpfilter/prj/d.lst5
-rw-r--r--hwpfilter/source/attributes.cxx168
-rw-r--r--hwpfilter/source/attributes.hxx74
-rw-r--r--hwpfilter/source/cspline.cpp173
-rw-r--r--hwpfilter/source/cspline.h36
-rw-r--r--hwpfilter/source/datecode.h57
-rw-r--r--hwpfilter/source/drawdef.h262
-rw-r--r--hwpfilter/source/drawing.h811
-rw-r--r--hwpfilter/source/fontmap.cpp174
-rw-r--r--hwpfilter/source/formula.cpp686
-rw-r--r--hwpfilter/source/formula.h102
-rw-r--r--hwpfilter/source/grammar.cpp1475
-rw-r--r--hwpfilter/source/grammar.h65
-rw-r--r--hwpfilter/source/hbox.cpp714
-rw-r--r--hwpfilter/source/hbox.h1041
-rw-r--r--hwpfilter/source/hcode.cpp1538
-rw-r--r--hwpfilter/source/hcode.h84
-rw-r--r--hwpfilter/source/hfont.cpp107
-rw-r--r--hwpfilter/source/hfont.h77
-rw-r--r--hwpfilter/source/hgzip.cpp337
-rw-r--r--hwpfilter/source/hgzip.h114
-rw-r--r--hwpfilter/source/himgutil.cpp169
-rw-r--r--hwpfilter/source/himgutil.h76
-rw-r--r--hwpfilter/source/hinfo.cpp221
-rw-r--r--hwpfilter/source/hinfo.h264
-rw-r--r--hwpfilter/source/hiodev.cpp365
-rw-r--r--hwpfilter/source/hiodev.h171
-rw-r--r--hwpfilter/source/hpara.cpp320
-rw-r--r--hwpfilter/source/hpara.h182
-rw-r--r--hwpfilter/source/hstream.cpp80
-rw-r--r--hwpfilter/source/hstream.h66
-rw-r--r--hwpfilter/source/hstyle.cpp153
-rw-r--r--hwpfilter/source/hstyle.h61
-rw-r--r--hwpfilter/source/htags.cpp168
-rw-r--r--hwpfilter/source/htags.h89
-rw-r--r--hwpfilter/source/hutil.cpp101
-rw-r--r--hwpfilter/source/hutil.h47
-rw-r--r--hwpfilter/source/hwpeq.cpp765
-rw-r--r--hwpfilter/source/hwpeq.h44
-rw-r--r--hwpfilter/source/hwpfile.cpp680
-rw-r--r--hwpfilter/source/hwpfile.h312
-rw-r--r--hwpfilter/source/hwplib.h244
-rw-r--r--hwpfilter/source/hwpread.cpp813
-rw-r--r--hwpfilter/source/hwpreader.cxx4949
-rw-r--r--hwpfilter/source/hwpreader.hxx401
-rw-r--r--hwpfilter/source/ksc5601.h760
-rw-r--r--hwpfilter/source/lexer.cpp2416
-rw-r--r--hwpfilter/source/list.hxx283
-rw-r--r--hwpfilter/source/makefile.mk97
-rw-r--r--hwpfilter/source/mapping.h398
-rw-r--r--hwpfilter/source/mzstring.cpp314
-rw-r--r--hwpfilter/source/mzstring.h187
-rw-r--r--hwpfilter/source/nodes.h107
-rw-r--r--hwpfilter/source/precompile.h44
-rw-r--r--hwpfilter/source/solver.cpp183
-rw-r--r--hwpfilter/source/solver.h50
-rw-r--r--hyphen/hyphen-2.4.patch169
-rw-r--r--hyphen/makefile.mk107
-rw-r--r--hyphen/prj/build.lst3
-rw-r--r--hyphen/prj/d.lst5
-rw-r--r--i18npool/inc/breakiteratorImpl.hxx152
-rw-r--r--i18npool/inc/breakiterator_cjk.hxx78
-rw-r--r--i18npool/inc/breakiterator_ctl.hxx64
-rw-r--r--i18npool/inc/breakiterator_th.hxx48
-rw-r--r--i18npool/inc/breakiterator_unicode.hxx102
-rw-r--r--i18npool/inc/bullet.h331
-rw-r--r--i18npool/inc/calendarImpl.hxx106
-rw-r--r--i18npool/inc/calendar_gregorian.hxx174
-rw-r--r--i18npool/inc/calendar_hijri.hxx84
-rw-r--r--i18npool/inc/calendar_jewish.hxx54
-rw-r--r--i18npool/inc/cclass_cjk.hxx95
-rw-r--r--i18npool/inc/cclass_unicode.hxx188
-rw-r--r--i18npool/inc/chaptercollator.hxx62
-rw-r--r--i18npool/inc/characterclassificationImpl.hxx118
-rw-r--r--i18npool/inc/chartonum.hxx61
-rw-r--r--i18npool/inc/collatorImpl.hxx118
-rw-r--r--i18npool/inc/collator_unicode.hxx85
-rw-r--r--i18npool/inc/defaultnumberingprovider.hxx106
-rw-r--r--i18npool/inc/i18npool/i18npooldllapi.h41
-rw-r--r--i18npool/inc/i18npool/lang.h520
-rw-r--r--i18npool/inc/i18npool/mslangid.hxx314
-rw-r--r--i18npool/inc/i18npool/paper.hxx147
-rw-r--r--i18npool/inc/indexentrysupplier.hxx110
-rw-r--r--i18npool/inc/indexentrysupplier_asian.hxx65
-rw-r--r--i18npool/inc/indexentrysupplier_common.hxx110
-rw-r--r--i18npool/inc/indexentrysupplier_default.hxx114
-rw-r--r--i18npool/inc/indexentrysupplier_ja_phonetic.hxx75
-rw-r--r--i18npool/inc/inputsequencechecker.hxx90
-rw-r--r--i18npool/inc/inputsequencechecker_hi.hxx55
-rw-r--r--i18npool/inc/inputsequencechecker_th.hxx52
-rw-r--r--i18npool/inc/localedata.hxx139
-rw-r--r--i18npool/inc/makefile.mk48
-rw-r--r--i18npool/inc/nativenumbersupplier.hxx91
-rw-r--r--i18npool/inc/numberformatcode.hxx81
-rw-r--r--i18npool/inc/numtochar.hxx62
-rw-r--r--i18npool/inc/numtotext_cjk.hxx77
-rw-r--r--i18npool/inc/ordinalsuffix.hxx57
-rw-r--r--i18npool/inc/pch/precompiled_i18npool.cxx29
-rw-r--r--i18npool/inc/pch/precompiled_i18npool.hxx32
-rw-r--r--i18npool/inc/scripttypedetector.hxx66
-rw-r--r--i18npool/inc/servicename.hxx86
-rw-r--r--i18npool/inc/textToPronounce_zh.hxx81
-rw-r--r--i18npool/inc/textconversion.hxx211
-rw-r--r--i18npool/inc/textconversionImpl.hxx103
-rw-r--r--i18npool/inc/texttonum.hxx59
-rw-r--r--i18npool/inc/transliterationImpl.hxx155
-rw-r--r--i18npool/inc/transliteration_Ignore.hxx188
-rw-r--r--i18npool/inc/transliteration_Numeric.hxx73
-rw-r--r--i18npool/inc/transliteration_OneToOne.hxx127
-rw-r--r--i18npool/inc/transliteration_body.hxx120
-rw-r--r--i18npool/inc/transliteration_caseignore.hxx76
-rw-r--r--i18npool/inc/transliteration_commonclass.hxx122
-rw-r--r--i18npool/inc/warnings_guard_unicode_brkiter.h48
-rw-r--r--i18npool/inc/warnings_guard_unicode_calendar.h48
-rw-r--r--i18npool/inc/warnings_guard_unicode_tblcoll.h48
-rw-r--r--i18npool/inc/wtt.h74
-rw-r--r--i18npool/inc/xdictionary.hxx96
-rw-r--r--i18npool/prj/build.lst26
-rw-r--r--i18npool/prj/d.lst48
-rw-r--r--i18npool/source/breakiterator/breakiteratorImpl.cxx601
-rw-r--r--i18npool/source/breakiterator/breakiterator_cjk.cxx186
-rw-r--r--i18npool/source/breakiterator/breakiterator_ctl.cxx145
-rw-r--r--i18npool/source/breakiterator/breakiterator_th.cxx157
-rw-r--r--i18npool/source/breakiterator/breakiterator_unicode.cxx445
-rw-r--r--i18npool/source/breakiterator/data/char_in.txt108
-rw-r--r--i18npool/source/breakiterator/data/count_word.txt125
-rw-r--r--i18npool/source/breakiterator/data/count_word_fi.txt134
-rw-r--r--i18npool/source/breakiterator/data/dict.map12
-rw-r--r--i18npool/source/breakiterator/data/dict_word.txt148
-rw-r--r--i18npool/source/breakiterator/data/dict_word_ca.txt139
-rw-r--r--i18npool/source/breakiterator/data/dict_word_fi.txt147
-rw-r--r--i18npool/source/breakiterator/data/dict_word_he.txt139
-rw-r--r--i18npool/source/breakiterator/data/dict_word_hu.txt162
-rw-r--r--i18npool/source/breakiterator/data/dict_word_nodash.txt147
-rw-r--r--i18npool/source/breakiterator/data/dict_word_prepostdash.txt157
-rw-r--r--i18npool/source/breakiterator/data/edit_word.txt142
-rw-r--r--i18npool/source/breakiterator/data/edit_word_he.txt142
-rw-r--r--i18npool/source/breakiterator/data/edit_word_hu.txt159
-rw-r--r--i18npool/source/breakiterator/data/ja.dic119817
-rw-r--r--i18npool/source/breakiterator/data/line.txt634
-rw-r--r--i18npool/source/breakiterator/data/makefile.mk84
-rw-r--r--i18npool/source/breakiterator/data/sent.txt128
-rw-r--r--i18npool/source/breakiterator/data/zh.dic251404
-rw-r--r--i18npool/source/breakiterator/gendict.cxx205
-rw-r--r--i18npool/source/breakiterator/makefile.mk100
-rw-r--r--i18npool/source/breakiterator/xdictionary.cxx402
-rw-r--r--i18npool/source/calendar/calendarImpl.cxx324
-rw-r--r--i18npool/source/calendar/calendar_gregorian.cxx1098
-rw-r--r--i18npool/source/calendar/calendar_hijri.cxx341
-rw-r--r--i18npool/source/calendar/calendar_jewish.cxx306
-rw-r--r--i18npool/source/calendar/makefile.mk53
-rw-r--r--i18npool/source/characterclassification/cclass_unicode.cxx288
-rw-r--r--i18npool/source/characterclassification/cclass_unicode_parser.cxx1067
-rw-r--r--i18npool/source/characterclassification/characterclassificationImpl.cxx236
-rw-r--r--i18npool/source/characterclassification/makefile.mk52
-rw-r--r--i18npool/source/characterclassification/scripttypedetector.cxx182
-rw-r--r--i18npool/source/collator/chaptercollator.cxx111
-rw-r--r--i18npool/source/collator/collatorImpl.cxx260
-rw-r--r--i18npool/source/collator/collator_unicode.cxx176
-rw-r--r--i18npool/source/collator/data/collator_data.map25
-rw-r--r--i18npool/source/collator/data/dz_charset.txt74
-rw-r--r--i18npool/source/collator/data/hu_charset.txt14
-rw-r--r--i18npool/source/collator/data/ja_charset.txt1446
-rw-r--r--i18npool/source/collator/data/ja_phonetic_alphanumeric_first.txt1466
-rw-r--r--i18npool/source/collator/data/ja_phonetic_alphanumeric_last.txt1466
-rw-r--r--i18npool/source/collator/data/ko_charset.txt733
-rw-r--r--i18npool/source/collator/data/ku_alphanumeric.txt9
-rw-r--r--i18npool/source/collator/data/ln_charset.txt6
-rw-r--r--i18npool/source/collator/data/makefile.mk64
-rw-r--r--i18npool/source/collator/data/my_dictionary.txt373
-rw-r--r--i18npool/source/collator/data/ne_charset.txt5
-rw-r--r--i18npool/source/collator/data/zh_TW_charset.txt1337
-rw-r--r--i18npool/source/collator/data/zh_TW_radical.txt2787
-rw-r--r--i18npool/source/collator/data/zh_TW_stroke.txt2787
-rw-r--r--i18npool/source/collator/data/zh_charset.txt2099
-rw-r--r--i18npool/source/collator/data/zh_pinyin.txt2099
-rw-r--r--i18npool/source/collator/data/zh_radical.txt2787
-rw-r--r--i18npool/source/collator/data/zh_stroke.txt2101
-rw-r--r--i18npool/source/collator/data/zh_zhuyin.txt1702
-rw-r--r--i18npool/source/collator/gencoll_rule.cxx140
-rw-r--r--i18npool/source/collator/makefile.mk73
-rw-r--r--i18npool/source/defaultnumberingprovider/defaultnumberingprovider.cxx899
-rw-r--r--i18npool/source/defaultnumberingprovider/makefile.mk49
-rw-r--r--i18npool/source/indexentry/data/index_data.map17
-rw-r--r--i18npool/source/indexentry/data/indexdata_alphanumeric.h47
-rw-r--r--i18npool/source/indexentry/data/indexdata_ja_phonetic.h120
-rw-r--r--i18npool/source/indexentry/data/indexdata_ko_dict.txt16167
-rw-r--r--i18npool/source/indexentry/data/indexdata_zh_TW_radical.txt27786
-rw-r--r--i18npool/source/indexentry/data/indexdata_zh_TW_stroke.txt27786
-rw-r--r--i18npool/source/indexentry/data/indexdata_zh_pinyin.txt20903
-rw-r--r--i18npool/source/indexentry/data/indexdata_zh_radical.txt27786
-rw-r--r--i18npool/source/indexentry/data/indexdata_zh_stroke.txt20923
-rw-r--r--i18npool/source/indexentry/data/indexdata_zh_zhuyin.txt16971
-rw-r--r--i18npool/source/indexentry/data/ko_phonetic.txt16153
-rw-r--r--i18npool/source/indexentry/data/makefile.mk67
-rw-r--r--i18npool/source/indexentry/data/zh_pinyin.txt20378
-rw-r--r--i18npool/source/indexentry/data/zh_zhuyin.txt16936
-rw-r--r--i18npool/source/indexentry/genindex_data.cxx166
-rw-r--r--i18npool/source/indexentry/indexentrysupplier.cxx209
-rw-r--r--i18npool/source/indexentry/indexentrysupplier_asian.cxx154
-rw-r--r--i18npool/source/indexentry/indexentrysupplier_common.cxx150
-rw-r--r--i18npool/source/indexentry/indexentrysupplier_default.cxx290
-rw-r--r--i18npool/source/indexentry/indexentrysupplier_ja_phonetic.cxx106
-rw-r--r--i18npool/source/indexentry/makefile.mk66
-rw-r--r--i18npool/source/inputchecker/inputsequencechecker.cxx166
-rw-r--r--i18npool/source/inputchecker/inputsequencechecker_hi.cxx148
-rw-r--r--i18npool/source/inputchecker/inputsequencechecker_th.cxx154
-rw-r--r--i18npool/source/inputchecker/makefile.mk51
-rw-r--r--i18npool/source/isolang/insys.cxx43
-rw-r--r--i18npool/source/isolang/inunx.cxx150
-rw-r--r--i18npool/source/isolang/inwnt.cxx107
-rw-r--r--i18npool/source/isolang/isolang.cxx1105
-rwxr-xr-xi18npool/source/isolang/langid.pl424
-rw-r--r--i18npool/source/isolang/lcid.awk171
-rw-r--r--i18npool/source/isolang/makefile.mk69
-rw-r--r--i18npool/source/isolang/mslangid.cxx467
-rw-r--r--i18npool/source/localedata/LocaleNode.cxx1800
-rw-r--r--i18npool/source/localedata/LocaleNode.hxx259
-rw-r--r--i18npool/source/localedata/data/af_NA.xml25
-rw-r--r--i18npool/source/localedata/data/af_ZA.xml186
-rw-r--r--i18npool/source/localedata/data/ak_GH.xml374
-rw-r--r--i18npool/source/localedata/data/am_ET.xml193
-rw-r--r--i18npool/source/localedata/data/ar_DZ.xml437
-rw-r--r--i18npool/source/localedata/data/ar_EG.xml523
-rw-r--r--i18npool/source/localedata/data/ar_LB.xml290
-rw-r--r--i18npool/source/localedata/data/ar_OM.xml357
-rw-r--r--i18npool/source/localedata/data/ar_SA.xml290
-rw-r--r--i18npool/source/localedata/data/ar_TN.xml290
-rw-r--r--i18npool/source/localedata/data/ast_ES.xml359
-rw-r--r--i18npool/source/localedata/data/az_AZ.xml339
-rw-r--r--i18npool/source/localedata/data/be_BY.xml334
-rw-r--r--i18npool/source/localedata/data/bg_BG.xml409
-rw-r--r--i18npool/source/localedata/data/bn_BD.xml178
-rw-r--r--i18npool/source/localedata/data/bn_IN.xml352
-rw-r--r--i18npool/source/localedata/data/br_FR.xml347
-rw-r--r--i18npool/source/localedata/data/bs_BA.xml460
-rw-r--r--i18npool/source/localedata/data/ca_ES.xml343
-rw-r--r--i18npool/source/localedata/data/cs_CZ.xml380
-rw-r--r--i18npool/source/localedata/data/currency-check.awk318
-rw-r--r--i18npool/source/localedata/data/cv_RU.xml341
-rw-r--r--i18npool/source/localedata/data/cy_GB.xml143
-rw-r--r--i18npool/source/localedata/data/da_DK.xml336
-rw-r--r--i18npool/source/localedata/data/de_AT.xml321
-rw-r--r--i18npool/source/localedata/data/de_CH.xml199
-rw-r--r--i18npool/source/localedata/data/de_DE.xml355
-rw-r--r--i18npool/source/localedata/data/de_LI.xml196
-rw-r--r--i18npool/source/localedata/data/de_LU.xml321
-rw-r--r--i18npool/source/localedata/data/dz_BT.xml509
-rw-r--r--i18npool/source/localedata/data/ee_GH.xml368
-rw-r--r--i18npool/source/localedata/data/el_GR.xml341
-rw-r--r--i18npool/source/localedata/data/en_AU.xml314
-rw-r--r--i18npool/source/localedata/data/en_BZ.xml65
-rw-r--r--i18npool/source/localedata/data/en_CA.xml206
-rw-r--r--i18npool/source/localedata/data/en_GB.xml240
-rw-r--r--i18npool/source/localedata/data/en_GH.xml361
-rw-r--r--i18npool/source/localedata/data/en_IE.xml79
-rw-r--r--i18npool/source/localedata/data/en_IN.xml43
-rw-r--r--i18npool/source/localedata/data/en_JM.xml314
-rw-r--r--i18npool/source/localedata/data/en_NA.xml322
-rw-r--r--i18npool/source/localedata/data/en_NZ.xml173
-rw-r--r--i18npool/source/localedata/data/en_PH.xml33
-rw-r--r--i18npool/source/localedata/data/en_TT.xml173
-rw-r--r--i18npool/source/localedata/data/en_US.xml569
-rw-r--r--i18npool/source/localedata/data/en_ZA.xml314
-rw-r--r--i18npool/source/localedata/data/en_ZW.xml173
-rw-r--r--i18npool/source/localedata/data/eo.xml349
-rw-r--r--i18npool/source/localedata/data/es_AR.xml209
-rw-r--r--i18npool/source/localedata/data/es_BO.xml220
-rw-r--r--i18npool/source/localedata/data/es_CL.xml206
-rw-r--r--i18npool/source/localedata/data/es_CO.xml199
-rw-r--r--i18npool/source/localedata/data/es_CR.xml218
-rw-r--r--i18npool/source/localedata/data/es_DO.xml243
-rw-r--r--i18npool/source/localedata/data/es_EC.xml206
-rw-r--r--i18npool/source/localedata/data/es_ES.xml349
-rw-r--r--i18npool/source/localedata/data/es_GT.xml243
-rw-r--r--i18npool/source/localedata/data/es_HN.xml36
-rw-r--r--i18npool/source/localedata/data/es_MX.xml36
-rw-r--r--i18npool/source/localedata/data/es_NI.xml58
-rw-r--r--i18npool/source/localedata/data/es_PA.xml43
-rw-r--r--i18npool/source/localedata/data/es_PE.xml243
-rw-r--r--i18npool/source/localedata/data/es_PR.xml36
-rw-r--r--i18npool/source/localedata/data/es_PY.xml36
-rw-r--r--i18npool/source/localedata/data/es_SV.xml36
-rw-r--r--i18npool/source/localedata/data/es_UY.xml58
-rw-r--r--i18npool/source/localedata/data/es_VE.xml43
-rw-r--r--i18npool/source/localedata/data/et_EE.xml341
-rw-r--r--i18npool/source/localedata/data/eu.xml356
-rw-r--r--i18npool/source/localedata/data/fa_IR.xml640
-rw-r--r--i18npool/source/localedata/data/fi_FI.xml342
-rw-r--r--i18npool/source/localedata/data/fo_FO.xml379
-rw-r--r--i18npool/source/localedata/data/fr_BE.xml206
-rw-r--r--i18npool/source/localedata/data/fr_CA.xml209
-rw-r--r--i18npool/source/localedata/data/fr_CH.xml206
-rw-r--r--i18npool/source/localedata/data/fr_FR.xml347
-rw-r--r--i18npool/source/localedata/data/fr_LU.xml203
-rw-r--r--i18npool/source/localedata/data/fr_MC.xml26
-rw-r--r--i18npool/source/localedata/data/fur_IT.xml361
-rw-r--r--i18npool/source/localedata/data/fy_NL.xml360
-rw-r--r--i18npool/source/localedata/data/ga_IE.xml186
-rw-r--r--i18npool/source/localedata/data/gl_ES.xml343
-rw-r--r--i18npool/source/localedata/data/gsc_FR.xml361
-rw-r--r--i18npool/source/localedata/data/gu_IN.xml173
-rw-r--r--i18npool/source/localedata/data/gug_PY.xml361
-rw-r--r--i18npool/source/localedata/data/ha_GH.xml371
-rw-r--r--i18npool/source/localedata/data/he_IL.xml472
-rw-r--r--i18npool/source/localedata/data/hi_IN.xml394
-rw-r--r--i18npool/source/localedata/data/hil_PH.xml362
-rw-r--r--i18npool/source/localedata/data/hr_HR.xml452
-rw-r--r--i18npool/source/localedata/data/hsb_DE.xml350
-rw-r--r--i18npool/source/localedata/data/hu_HU.xml342
-rw-r--r--i18npool/source/localedata/data/hy_AM.xml348
-rw-r--r--i18npool/source/localedata/data/ia.xml384
-rw-r--r--i18npool/source/localedata/data/id_ID.xml329
-rw-r--r--i18npool/source/localedata/data/is_IS.xml408
-rw-r--r--i18npool/source/localedata/data/it_CH.xml196
-rw-r--r--i18npool/source/localedata/data/it_IT.xml349
-rw-r--r--i18npool/source/localedata/data/ja_JP.xml591
-rw-r--r--i18npool/source/localedata/data/ka_GE.xml348
-rw-r--r--i18npool/source/localedata/data/kk_KZ.xml360
-rw-r--r--i18npool/source/localedata/data/kl_GL.xml335
-rw-r--r--i18npool/source/localedata/data/km_KH.xml440
-rw-r--r--i18npool/source/localedata/data/kn_IN.xml173
-rw-r--r--i18npool/source/localedata/data/ko_KR.xml671
-rw-r--r--i18npool/source/localedata/data/ku_TR.xml424
-rw-r--r--i18npool/source/localedata/data/ky_KG.xml334
-rw-r--r--i18npool/source/localedata/data/la_VA.xml349
-rw-r--r--i18npool/source/localedata/data/lb_LU.xml348
-rw-r--r--i18npool/source/localedata/data/lg_UG.xml361
-rw-r--r--i18npool/source/localedata/data/linkermapfile-check.awk105
-rw-r--r--i18npool/source/localedata/data/list-locales.awk75
-rw-r--r--i18npool/source/localedata/data/ln_CD.xml365
-rw-r--r--i18npool/source/localedata/data/lo_LA.xml520
-rw-r--r--i18npool/source/localedata/data/locale.dtd550
-rw-r--r--i18npool/source/localedata/data/localedata_en.map246
-rw-r--r--i18npool/source/localedata/data/localedata_es.map348
-rw-r--r--i18npool/source/localedata/data/localedata_euro.map1197
-rw-r--r--i18npool/source/localedata/data/localedata_others.map1333
-rw-r--r--i18npool/source/localedata/data/lt_LT.xml440
-rw-r--r--i18npool/source/localedata/data/ltg_LV.xml350
-rw-r--r--i18npool/source/localedata/data/lv_LV.xml417
-rw-r--r--i18npool/source/localedata/data/mai_IN.xml357
-rw-r--r--i18npool/source/localedata/data/makefile.mk516
-rw-r--r--i18npool/source/localedata/data/mk_MK.xml416
-rw-r--r--i18npool/source/localedata/data/ml_IN.xml350
-rw-r--r--i18npool/source/localedata/data/mn_MN.xml378
-rwxr-xr-xi18npool/source/localedata/data/mr_IN.xml25
-rw-r--r--i18npool/source/localedata/data/ms_MY.xml188
-rw-r--r--i18npool/source/localedata/data/mt_MT.xml362
-rw-r--r--i18npool/source/localedata/data/my_MM.xml489
-rw-r--r--i18npool/source/localedata/data/nb_NO.xml25
-rw-r--r--i18npool/source/localedata/data/ne_NP.xml416
-rw-r--r--i18npool/source/localedata/data/nl_BE.xml210
-rw-r--r--i18npool/source/localedata/data/nl_NL.xml387
-rw-r--r--i18npool/source/localedata/data/nn_NO.xml71
-rw-r--r--i18npool/source/localedata/data/no_NO.xml388
-rw-r--r--i18npool/source/localedata/data/nr_ZA.xml158
-rw-r--r--i18npool/source/localedata/data/nso_ZA.xml149
-rw-r--r--i18npool/source/localedata/data/oc_FR.xml360
-rw-r--r--i18npool/source/localedata/data/om_ET.xml358
-rw-r--r--i18npool/source/localedata/data/or_IN.xml366
-rw-r--r--i18npool/source/localedata/data/pa_IN.xml195
-rw-r--r--i18npool/source/localedata/data/pl_PL.xml346
-rw-r--r--i18npool/source/localedata/data/plt_MG.xml358
-rw-r--r--i18npool/source/localedata/data/pt_BR.xml240
-rw-r--r--i18npool/source/localedata/data/pt_PT.xml380
-rw-r--r--i18npool/source/localedata/data/ro_RO.xml391
-rw-r--r--i18npool/source/localedata/data/ru_RU.xml341
-rw-r--r--i18npool/source/localedata/data/rue_SK.xml359
-rw-r--r--i18npool/source/localedata/data/rw_RW.xml384
-rw-r--r--i18npool/source/localedata/data/sc_IT.xml358
-rw-r--r--i18npool/source/localedata/data/sg_CF.xml361
-rw-r--r--i18npool/source/localedata/data/sh_ME.xml41
-rw-r--r--i18npool/source/localedata/data/sh_RS.xml239
-rw-r--r--i18npool/source/localedata/data/sh_YU.xml41
-rw-r--r--i18npool/source/localedata/data/shs_CA.xml417
-rw-r--r--i18npool/source/localedata/data/sk_SK.xml463
-rw-r--r--i18npool/source/localedata/data/sl_SI.xml425
-rw-r--r--i18npool/source/localedata/data/so_SO.xml368
-rw-r--r--i18npool/source/localedata/data/sr_ME.xml41
-rw-r--r--i18npool/source/localedata/data/sr_RS.xml444
-rw-r--r--i18npool/source/localedata/data/sr_YU.xml41
-rw-r--r--i18npool/source/localedata/data/ss_ZA.xml143
-rw-r--r--i18npool/source/localedata/data/st_ZA.xml143
-rw-r--r--i18npool/source/localedata/data/sv_FI.xml321
-rw-r--r--i18npool/source/localedata/data/sv_SE.xml342
-rw-r--r--i18npool/source/localedata/data/sw_TZ.xml350
-rw-r--r--i18npool/source/localedata/data/ta_IN.xml173
-rw-r--r--i18npool/source/localedata/data/te_IN.xml172
-rw-r--r--i18npool/source/localedata/data/tg_TJ.xml341
-rw-r--r--i18npool/source/localedata/data/th_TH.xml674
-rw-r--r--i18npool/source/localedata/data/ti_ER.xml334
-rw-r--r--i18npool/source/localedata/data/tk_TM.xml361
-rw-r--r--i18npool/source/localedata/data/tn_ZA.xml143
-rw-r--r--i18npool/source/localedata/data/tpi_PG.xml361
-rw-r--r--i18npool/source/localedata/data/tr_TR.xml343
-rw-r--r--i18npool/source/localedata/data/ts_ZA.xml164
-rw-r--r--i18npool/source/localedata/data/ug_CN.xml364
-rw-r--r--i18npool/source/localedata/data/uk_UA.xml463
-rw-r--r--i18npool/source/localedata/data/uz_UZ.xml334
-rw-r--r--i18npool/source/localedata/data/ve_ZA.xml164
-rw-r--r--i18npool/source/localedata/data/vi_VN.xml417
-rw-r--r--i18npool/source/localedata/data/wa_BE.xml342
-rw-r--r--i18npool/source/localedata/data/xh_ZA.xml158
-rw-r--r--i18npool/source/localedata/data/zh_CN.xml521
-rw-r--r--i18npool/source/localedata/data/zh_HK.xml276
-rw-r--r--i18npool/source/localedata/data/zh_MO.xml265
-rw-r--r--i18npool/source/localedata/data/zh_SG.xml262
-rw-r--r--i18npool/source/localedata/data/zh_TW.xml450
-rw-r--r--i18npool/source/localedata/data/zu_ZA.xml143
-rw-r--r--i18npool/source/localedata/filewriter.cxx213
-rw-r--r--i18npool/source/localedata/localedata.cxx1473
-rw-r--r--i18npool/source/localedata/makefile.mk84
-rw-r--r--i18npool/source/localedata/saxparser.cxx428
-rw-r--r--i18npool/source/nativenumber/data/numberchar.h277
-rw-r--r--i18npool/source/nativenumber/makefile.mk49
-rw-r--r--i18npool/source/nativenumber/nativenumbersupplier.cxx917
-rw-r--r--i18npool/source/numberformatcode/makefile.mk49
-rw-r--r--i18npool/source/numberformatcode/numberformatcode.cxx304
-rw-r--r--i18npool/source/ordinalsuffix/makefile.mk50
-rw-r--r--i18npool/source/ordinalsuffix/ordinalsuffix.cxx117
-rw-r--r--i18npool/source/paper/makefile.mk71
-rw-r--r--i18npool/source/paper/paper.cxx510
-rw-r--r--i18npool/source/registerservices/makefile.mk46
-rw-r--r--i18npool/source/registerservices/registerservices.cxx639
-rw-r--r--i18npool/source/search/levdis.cxx779
-rw-r--r--i18npool/source/search/levdis.hxx229
-rw-r--r--i18npool/source/search/makefile.mk78
-rw-r--r--i18npool/source/search/textsearch.cxx1038
-rw-r--r--i18npool/source/search/textsearch.hxx154
-rw-r--r--i18npool/source/textconversion/data/hhc_char.dic502
-rw-r--r--i18npool/source/textconversion/data/makefile.mk68
-rw-r--r--i18npool/source/textconversion/data/stc_char.dic2835
-rw-r--r--i18npool/source/textconversion/data/stc_word.dic1150
-rw-r--r--i18npool/source/textconversion/data/textconv_dict.map23
-rw-r--r--i18npool/source/textconversion/genconv_dict.cxx483
-rw-r--r--i18npool/source/textconversion/makefile.mk59
-rw-r--r--i18npool/source/textconversion/textconversion.cxx91
-rw-r--r--i18npool/source/textconversion/textconversionImpl.cxx145
-rw-r--r--i18npool/source/textconversion/textconversion_ko.cxx343
-rw-r--r--i18npool/source/textconversion/textconversion_zh.cxx296
-rw-r--r--i18npool/source/transliteration/chartonum.cxx64
-rw-r--r--i18npool/source/transliteration/data/numberchar.h163
-rw-r--r--i18npool/source/transliteration/fullwidthToHalfwidth.cxx155
-rw-r--r--i18npool/source/transliteration/halfwidthToFullwidth.cxx135
-rw-r--r--i18npool/source/transliteration/hiraganaToKatakana.cxx61
-rw-r--r--i18npool/source/transliteration/ignoreBaFa_ja_JP.cxx59
-rw-r--r--i18npool/source/transliteration/ignoreHyuByu_ja_JP.cxx60
-rw-r--r--i18npool/source/transliteration/ignoreIandEfollowedByYa_ja_JP.cxx149
-rw-r--r--i18npool/source/transliteration/ignoreIterationMark_ja_JP.cxx157
-rw-r--r--i18npool/source/transliteration/ignoreKana.cxx71
-rw-r--r--i18npool/source/transliteration/ignoreKiKuFollowedBySa_ja_JP.cxx106
-rw-r--r--i18npool/source/transliteration/ignoreMiddleDot_ja_JP.cxx60
-rw-r--r--i18npool/source/transliteration/ignoreMinusSign_ja_JP.cxx67
-rw-r--r--i18npool/source/transliteration/ignoreProlongedSoundMark_ja_JP.cxx365
-rw-r--r--i18npool/source/transliteration/ignoreSeZe_ja_JP.cxx65
-rw-r--r--i18npool/source/transliteration/ignoreSeparator_ja_JP.cxx126
-rw-r--r--i18npool/source/transliteration/ignoreSize_ja_JP.cxx72
-rw-r--r--i18npool/source/transliteration/ignoreSpace_ja_JP.cxx67
-rw-r--r--i18npool/source/transliteration/ignoreTiJi_ja_JP.cxx70
-rw-r--r--i18npool/source/transliteration/ignoreTraditionalKana_ja_JP.cxx68
-rw-r--r--i18npool/source/transliteration/ignoreTraditionalKanji_ja_JP.cxx747
-rw-r--r--i18npool/source/transliteration/ignoreWidth.cxx72
-rw-r--r--i18npool/source/transliteration/ignoreZiZu_ja_JP.cxx68
-rw-r--r--i18npool/source/transliteration/katakanaToHiragana.cxx58
-rw-r--r--i18npool/source/transliteration/largeToSmall_ja_JP.cxx93
-rw-r--r--i18npool/source/transliteration/makefile.mk84
-rw-r--r--i18npool/source/transliteration/numtochar.cxx69
-rw-r--r--i18npool/source/transliteration/numtotext_cjk.cxx92
-rw-r--r--i18npool/source/transliteration/smallToLarge_ja_JP.cxx93
-rw-r--r--i18npool/source/transliteration/textToPronounce_zh.cxx168
-rw-r--r--i18npool/source/transliteration/texttonum.cxx64
-rw-r--r--i18npool/source/transliteration/transliterationImpl.cxx685
-rw-r--r--i18npool/source/transliteration/transliteration_Ignore.cxx220
-rw-r--r--i18npool/source/transliteration/transliteration_Numeric.cxx149
-rw-r--r--i18npool/source/transliteration/transliteration_OneToOne.cxx108
-rwxr-xr-xi18npool/source/transliteration/transliteration_body.cxx514
-rw-r--r--i18npool/source/transliteration/transliteration_caseignore.cxx172
-rw-r--r--i18npool/source/transliteration/transliteration_commonclass.cxx164
-rw-r--r--i18npool/util/makefile.mk81
-rw-r--r--i18npool/util/makefile.pmk31
-rw-r--r--i18npool/version.mk40
-rw-r--r--i18npool/xml/BreakIterator.xml82
-rw-r--r--i18npool/xml/Calendar.xml54
-rw-r--r--i18npool/xml/ChapterCollator.xml35
-rw-r--r--i18npool/xml/CharacterClassification.xml52
-rw-r--r--i18npool/xml/Collator.xml35
-rw-r--r--i18npool/xml/DefaultNumberingProvider.xml52
-rw-r--r--i18npool/xml/IndexEntrySupplier.xml53
-rw-r--r--i18npool/xml/LocaleData.xml60
-rw-r--r--i18npool/xml/NumberFormatCodeMapper.xml64
-rw-r--r--i18npool/xml/OrdinalSuffix.xml34
-rw-r--r--i18npool/xml/TextSearch.xml52
-rw-r--r--i18npool/xml/Transliteration.xml73
-rw-r--r--i18nutil/inc/i18nutil/casefolding.hxx84
-rw-r--r--i18nutil/inc/i18nutil/oneToOneMapping.hxx100
-rw-r--r--i18nutil/inc/i18nutil/unicode.hxx67
-rw-r--r--i18nutil/inc/i18nutil/widthfolding.hxx59
-rw-r--r--i18nutil/inc/i18nutil/x_rtl_ustring.h78
-rw-r--r--i18nutil/prj/build.lst3
-rw-r--r--i18nutil/prj/d.lst13
-rw-r--r--i18nutil/source/utility/casefolding.cxx167
-rw-r--r--i18nutil/source/utility/casefolding_data.h865
-rw-r--r--i18nutil/source/utility/makefile.mk78
-rw-r--r--i18nutil/source/utility/oneToOneMapping.cxx161
-rw-r--r--i18nutil/source/utility/unicode.cxx494
-rw-r--r--i18nutil/source/utility/unicode_data.h1650
-rw-r--r--i18nutil/source/utility/widthfolding.cxx301
-rw-r--r--i18nutil/source/utility/widthfolding_data.h959
-rw-r--r--icc/README39
-rw-r--r--icc/SampleICC-1.3.2.patch5146
-rw-r--r--icc/makefile.mk58
-rw-r--r--icc/makefiles.zipbin0 -> 4073 bytes-rw-r--r--icc/prj/build.lst3
-rw-r--r--icc/prj/d.lst5
-rw-r--r--icc/source/create_sRGB_profile/Makefile.am13
-rw-r--r--icc/source/create_sRGB_profile/Makefile.in378
-rw-r--r--icc/source/create_sRGB_profile/create_sRGB_profile.cpp551
-rw-r--r--icu/Readme4
-rw-r--r--icu/createmak.cfg452
-rw-r--r--icu/createmak.pl1109
-rw-r--r--icu/icu-mp.patch24
-rw-r--r--icu/icu4c-4_0_1-src.patch247
-rwxr-xr-xicu/icuversion.mk33
-rw-r--r--icu/makefile.mk267
-rw-r--r--icu/prj/build.lst4
-rw-r--r--icu/prj/d.lst36
-rw-r--r--idl/inc/attrib.hxx77
-rw-r--r--idl/inc/basobj.hxx294
-rw-r--r--idl/inc/bastype.hxx290
-rw-r--r--idl/inc/char.hxx41
-rw-r--r--idl/inc/command.hxx78
-rw-r--r--idl/inc/database.hxx182
-rw-r--r--idl/inc/globals.hxx242
-rw-r--r--idl/inc/hash.hxx125
-rw-r--r--idl/inc/lex.hxx271
-rw-r--r--idl/inc/makefile.mk47
-rw-r--r--idl/inc/module.hxx117
-rw-r--r--idl/inc/object.hxx170
-rw-r--r--idl/inc/pch/precompiled_idl.cxx29
-rw-r--r--idl/inc/pch/precompiled_idl.hxx32
-rw-r--r--idl/inc/slot.hxx279
-rw-r--r--idl/inc/types.hxx345
-rw-r--r--idl/prj/build.lst8
-rw-r--r--idl/prj/d.lst2
-rw-r--r--idl/source/cmptools/char.cxx107
-rw-r--r--idl/source/cmptools/hash.cxx327
-rw-r--r--idl/source/cmptools/lex.cxx503
-rw-r--r--idl/source/cmptools/makefile.mk47
-rw-r--r--idl/source/objects/basobj.cxx786
-rw-r--r--idl/source/objects/bastype.cxx611
-rw-r--r--idl/source/objects/makefile.mk50
-rw-r--r--idl/source/objects/module.cxx688
-rw-r--r--idl/source/objects/object.cxx1047
-rw-r--r--idl/source/objects/slot.cxx1820
-rw-r--r--idl/source/objects/types.cxx2699
-rw-r--r--idl/source/prj/command.cxx433
-rw-r--r--idl/source/prj/database.cxx1038
-rw-r--r--idl/source/prj/globals.cxx189
-rw-r--r--idl/source/prj/makefile.mk49
-rw-r--r--idl/source/prj/svidl.cxx447
-rw-r--r--idl/source/svidl.datbin0 -> 204 bytes-rw-r--r--idl/util/idlpch.cxx49
-rw-r--r--idl/util/makefile.mk68
-rw-r--r--idlc/inc/idlc/astarray.hxx62
-rw-r--r--idlc/inc/idlc/astattribute.hxx121
-rw-r--r--idlc/inc/idlc/astbasetype.hxx62
-rw-r--r--idlc/inc/idlc/astconstant.hxx57
-rw-r--r--idlc/inc/idlc/astconstants.hxx42
-rw-r--r--idlc/inc/idlc/astdeclaration.hxx148
-rw-r--r--idlc/inc/idlc/astenum.hxx57
-rw-r--r--idlc/inc/idlc/astexception.hxx43
-rw-r--r--idlc/inc/idlc/astexpression.hxx186
-rw-r--r--idlc/inc/idlc/astinterface.hxx143
-rw-r--r--idlc/inc/idlc/astinterfacemember.hxx53
-rw-r--r--idlc/inc/idlc/astmember.hxx57
-rw-r--r--idlc/inc/idlc/astmodule.hxx51
-rw-r--r--idlc/inc/idlc/astneeds.hxx48
-rw-r--r--idlc/inc/idlc/astobserves.hxx48
-rw-r--r--idlc/inc/idlc/astoperation.hxx76
-rw-r--r--idlc/inc/idlc/astparameter.hxx54
-rw-r--r--idlc/inc/idlc/astscope.hxx78
-rw-r--r--idlc/inc/idlc/astsequence.hxx59
-rw-r--r--idlc/inc/idlc/astservice.hxx60
-rw-r--r--idlc/inc/idlc/astservicemember.hxx53
-rw-r--r--idlc/inc/idlc/aststack.hxx56
-rw-r--r--idlc/inc/idlc/aststruct.hxx69
-rw-r--r--idlc/inc/idlc/aststructinstance.hxx56
-rw-r--r--idlc/inc/idlc/asttype.hxx45
-rw-r--r--idlc/inc/idlc/asttypedef.hxx53
-rw-r--r--idlc/inc/idlc/astunion.hxx68
-rw-r--r--idlc/inc/idlc/astunionbranch.hxx46
-rw-r--r--idlc/inc/idlc/astunionlabel.hxx52
-rw-r--r--idlc/inc/idlc/errorhandler.hxx157
-rw-r--r--idlc/inc/idlc/fehelper.hxx98
-rw-r--r--idlc/inc/idlc/idlc.hxx168
-rw-r--r--idlc/inc/idlc/idlctypes.hxx266
-rw-r--r--idlc/inc/idlc/inheritedinterface.hxx61
-rw-r--r--idlc/inc/idlc/options.hxx82
-rw-r--r--idlc/inc/makefile.mk47
-rw-r--r--idlc/inc/pch/precompiled_idlc.cxx29
-rw-r--r--idlc/inc/pch/precompiled_idlc.hxx32
-rw-r--r--idlc/prj/build.lst5
-rw-r--r--idlc/prj/d.lst7
-rw-r--r--idlc/source/astarray.cxx74
-rw-r--r--idlc/source/astconstant.cxx136
-rw-r--r--idlc/source/astdeclaration.cxx211
-rw-r--r--idlc/source/astdump.cxx454
-rw-r--r--idlc/source/astenum.cxx125
-rw-r--r--idlc/source/astexpression.cxx1266
-rw-r--r--idlc/source/astinterface.cxx427
-rw-r--r--idlc/source/astoperation.cxx153
-rw-r--r--idlc/source/astscope.cxx356
-rw-r--r--idlc/source/astservice.cxx70
-rw-r--r--idlc/source/aststack.cxx137
-rw-r--r--idlc/source/aststruct.cxx191
-rw-r--r--idlc/source/aststructinstance.cxx70
-rw-r--r--idlc/source/astunion.cxx401
-rw-r--r--idlc/source/attributeexceptions.hxx42
-rw-r--r--idlc/source/errorhandler.cxx695
-rw-r--r--idlc/source/fehelper.cxx144
-rw-r--r--idlc/source/idlc.cxx341
-rw-r--r--idlc/source/idlccompile.cxx418
-rw-r--r--idlc/source/idlcmain.cxx148
-rw-r--r--idlc/source/idlcproduce.cxx210
-rw-r--r--idlc/source/makefile.mk129
-rw-r--r--idlc/source/options.cxx371
-rw-r--r--idlc/source/parser.y3292
-rw-r--r--idlc/source/preproc/cpp.c498
-rw-r--r--idlc/source/preproc/cpp.h213
-rw-r--r--idlc/source/preproc/eval.c790
-rw-r--r--idlc/source/preproc/include.c256
-rw-r--r--idlc/source/preproc/lex.c695
-rw-r--r--idlc/source/preproc/macro.c700
-rw-r--r--idlc/source/preproc/makefile.mk75
-rw-r--r--idlc/source/preproc/nlist.c143
-rw-r--r--idlc/source/preproc/tokens.c534
-rw-r--r--idlc/source/preproc/unix.c247
-rw-r--r--idlc/source/scanner.ll523
-rw-r--r--idlc/source/wrap_parser.cxx31
-rw-r--r--idlc/source/wrap_scanner.cxx31
-rw-r--r--idlc/test/const.idl50
-rw-r--r--idlc/test/enum.idl24
-rw-r--r--idlc/test/exception.idl20
-rw-r--r--idlc/test/identifiers.idl22
-rw-r--r--idlc/test/interface.idl51
-rw-r--r--idlc/test/parser/attribute.tests223
-rw-r--r--idlc/test/parser/constant.tests295
-rw-r--r--idlc/test/parser/constructor.tests199
-rw-r--r--idlc/test/parser/interfaceinheritance.tests280
-rw-r--r--idlc/test/parser/makefile.mk55
-rw-r--r--idlc/test/parser/methodoverload.tests124
-rw-r--r--idlc/test/parser/polystruct.tests255
-rw-r--r--idlc/test/parser/published.tests708
-rw-r--r--idlc/test/parser/struct.tests55
-rw-r--r--idlc/test/parser/typedef.tests67
-rw-r--r--idlc/test/service.idl44
-rw-r--r--idlc/test/singleton.idl41
-rw-r--r--idlc/test/struct.idl107
-rw-r--r--idlc/test/typelookup.idl63
-rw-r--r--idlc/test/union.idl35
-rw-r--r--install-sh276
-rw-r--r--instsetoo_native/inc_broffice/windows/msi_templates/Binary/Banner.bmpbin0 -> 7112 bytes-rw-r--r--instsetoo_native/inc_broffice/windows/msi_templates/Binary/Image.bmpbin0 -> 51772 bytes-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/ActionTe.idt73
-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/AdminExe.idt13
-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/AdminUIS.idt14
-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/AdvtExec.idt19
-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/Binary.idt20
-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/Binary/Banner.bmpbin0 -> 6400 bytes-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/Binary/Image.bmpbin0 -> 52248 bytes-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/Binary/caution.icobin0 -> 3262 bytes-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/Binary/dontinstall.icobin0 -> 766 bytes-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/Binary/install.icobin0 -> 766 bytes-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/Binary/installfirstuse.icobin0 -> 3262 bytes-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/Binary/installpartial.icobin0 -> 766 bytes-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/Binary/installstatemenu.icobin0 -> 3262 bytes-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/Binary/networkinstall.icobin0 -> 3262 bytes-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/Binary/newfolder.icobin0 -> 894 bytes-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/Binary/openfolder.icobin0 -> 3262 bytes-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/Binary/setup.icobin0 -> 11502 bytes-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/Binary/setupcomplete.icobin0 -> 3262 bytes-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/Binary/setuppartial.icobin0 -> 3262 bytes-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/Binary/setuprepair.icobin0 -> 3262 bytes-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/Binary/trashcan.icobin0 -> 3262 bytes-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/Binary/up.icobin0 -> 894 bytes-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/CheckBox.idt4
-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/Control.idt380
-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/ControlC.idt70
-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/ControlE.idt138
-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/CustomAc.idt10
-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/Dialog.idt33
-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/Error.idt133
-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/EventMap.idt19
-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/InstallE.idt74
-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/InstallU.idt30
-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/LaunchCo.idt4
-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/ListBox.idt3
-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/Property.idt56
-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/RadioBut.idt11
-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/TextStyl.idt25
-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/UIText.idt53
-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/_Validat.idt461
-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/bro_patchcodes.txt3
-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/brodev_patchcodes.txt3
-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/codes.txt152
-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/codes_broo.txt67
-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/codes_ooodev.txt152
-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/components.txt0
-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/ooo_patchcodes.txt3
-rw-r--r--instsetoo_native/inc_ooolangpack/windows/msi_templates/ooodev_patchcodes.txt3
-rw-r--r--instsetoo_native/inc_openoffice/unix/find-requires-gnome.sh7
-rw-r--r--instsetoo_native/inc_openoffice/unix/find-requires-x11.sh6
-rw-r--r--instsetoo_native/inc_openoffice/unix/makefile.mk55
-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_languages/ActionTe.ulf373
-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_languages/Control.ulf736
-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_languages/CustomAc.ulf11
-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_languages/Error.ulf391
-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_languages/LaunchCo.ulf4
-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_languages/Nsis.ulf41
-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_languages/Property.ulf47
-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_languages/RadioBut.ulf27
-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_languages/SIS.ulf18
-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_languages/UIText.ulf148
-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_languages/makefile.mk62
-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/ActionTe.idt73
-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/AdminExe.idt13
-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/AdminUIS.idt14
-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/AdvtExec.idt19
-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/AppSearc.idt5
-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/Binary.idt20
-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/Binary/Banner.bmpbin0 -> 6400 bytes-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/Binary/Image.bmpbin0 -> 52248 bytes-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/Binary/caution.icobin0 -> 3262 bytes-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/Binary/dontinstall.icobin0 -> 766 bytes-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/Binary/install.icobin0 -> 766 bytes-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/Binary/installfirstuse.icobin0 -> 3262 bytes-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/Binary/installpartial.icobin0 -> 766 bytes-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/Binary/installstatemenu.icobin0 -> 3262 bytes-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/Binary/networkinstall.icobin0 -> 3262 bytes-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/Binary/newfolder.icobin0 -> 894 bytes-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/Binary/openfolder.icobin0 -> 3262 bytes-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/Binary/setup.icobin0 -> 11502 bytes-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/Binary/setupcomplete.icobin0 -> 3262 bytes-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/Binary/setuppartial.icobin0 -> 3262 bytes-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/Binary/setuprepair.icobin0 -> 3262 bytes-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/Binary/trashcan.icobin0 -> 3262 bytes-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/Binary/up.icobin0 -> 894 bytes-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/CheckBox.idt6
-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/Control.idt395
-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/ControlC.idt79
-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/ControlE.idt152
-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/CustomAc.idt131
-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/Dialog.idt36
-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/Error.idt133
-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/EventMap.idt18
-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/InstallE.idt191
-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/InstallU.idt31
-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/LaunchCo.idt5
-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/ListBox.idt3
-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/Property.idt62
-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/RadioBut.idt12
-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/RegLocat.idt5
-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/Signatur.idt3
-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/TextStyl.idt25
-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/UIText.idt53
-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/_Validat.idt461
-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/codes.txt37
-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/codes_broo.txt5
-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/codes_broodev.txt5
-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/codes_ooodev.txt37
-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/components.txt0
-rw-r--r--instsetoo_native/inc_openoffice/windows/msi_templates/upgradecode_remove_ooo.txt121
-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/ActionTe.idt73
-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/AdminExe.idt13
-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/AdminUIS.idt14
-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/AdvtExec.idt19
-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/AppSearc.idt5
-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/Binary.idt20
-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/Binary/Banner.bmpbin0 -> 6400 bytes-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/Binary/Image.bmpbin0 -> 154544 bytes-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/Binary/caution.icobin0 -> 3262 bytes-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/Binary/dontinstall.icobin0 -> 766 bytes-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/Binary/install.icobin0 -> 766 bytes-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/Binary/installfirstuse.icobin0 -> 3262 bytes-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/Binary/installpartial.icobin0 -> 766 bytes-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/Binary/installstatemenu.icobin0 -> 3262 bytes-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/Binary/networkinstall.icobin0 -> 3262 bytes-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/Binary/newfolder.icobin0 -> 894 bytes-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/Binary/openfolder.icobin0 -> 3262 bytes-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/Binary/setup.icobin0 -> 11502 bytes-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/Binary/setupcomplete.icobin0 -> 3262 bytes-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/Binary/setuppartial.icobin0 -> 3262 bytes-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/Binary/setuprepair.icobin0 -> 3262 bytes-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/Binary/trashcan.icobin0 -> 3262 bytes-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/Binary/up.icobin0 -> 894 bytes-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/CheckBox.idt4
-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/Control.idt377
-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/ControlC.idt70
-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/ControlE.idt139
-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/CustomAc.idt8
-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/Dialog.idt33
-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/Error.idt133
-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/EventMap.idt18
-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/InstallE.idt72
-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/InstallU.idt29
-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/LaunchCo.idt4
-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/ListBox.idt3
-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/Property.idt56
-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/RadioBut.idt12
-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/RegLocat.idt5
-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/Signatur.idt3
-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/TextStyl.idt25
-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/UIText.idt53
-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/_Validat.idt461
-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/codes.txt36
-rw-r--r--instsetoo_native/inc_sdkoo/windows/msi_templates/components.txt0
-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/ActionTe.idt73
-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/AdminExe.idt13
-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/AdminUIS.idt14
-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/AdvtExec.idt19
-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/AppSearc.idt3
-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/Binary.idt20
-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/Binary/Banner.bmpbin0 -> 7112 bytes-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/Binary/Image.bmpbin0 -> 52248 bytes-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/Binary/caution.icobin0 -> 3262 bytes-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/Binary/dontinstall.icobin0 -> 766 bytes-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/Binary/install.icobin0 -> 766 bytes-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/Binary/installfirstuse.icobin0 -> 3262 bytes-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/Binary/installpartial.icobin0 -> 766 bytes-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/Binary/installstatemenu.icobin0 -> 3262 bytes-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/Binary/networkinstall.icobin0 -> 3262 bytes-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/Binary/newfolder.icobin0 -> 894 bytes-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/Binary/openfolder.icobin0 -> 3262 bytes-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/Binary/setup.icobin0 -> 11502 bytes-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/Binary/setupcomplete.icobin0 -> 3262 bytes-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/Binary/setuppartial.icobin0 -> 3262 bytes-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/Binary/setuprepair.icobin0 -> 3262 bytes-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/Binary/trashcan.icobin0 -> 3262 bytes-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/Binary/up.icobin0 -> 894 bytes-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/CheckBox.idt4
-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/Control.idt377
-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/ControlC.idt70
-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/ControlE.idt139
-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/CustomAc.idt10
-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/Dialog.idt33
-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/Error.idt133
-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/EventMap.idt18
-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/InstallE.idt74
-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/InstallU.idt31
-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/LaunchCo.idt4
-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/ListBox.idt3
-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/Property.idt57
-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/RadioBut.idt12
-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/RegLocat.idt3
-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/Signatur.idt3
-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/TextStyl.idt25
-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/UIText.idt53
-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/_Validat.idt461
-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/codes.txt36
-rw-r--r--instsetoo_native/inc_ure/windows/msi_templates/components.txt0
-rw-r--r--instsetoo_native/prj/build.lst5
-rw-r--r--instsetoo_native/prj/d.lst4
-rw-r--r--instsetoo_native/res/nologoinstall.bmpbin0 -> 52244 bytes-rw-r--r--instsetoo_native/util/makefile.mk334
-rw-r--r--instsetoo_native/util/openoffice.lst603
-rwxr-xr-xinstsetoo_native/util/pack.lst24
-rw-r--r--instsetoo_native/util/update.xml10
-rw-r--r--io/inc/makefile.mk49
-rw-r--r--io/inc/pch/precompiled_io.cxx29
-rw-r--r--io/inc/pch/precompiled_io.hxx32
-rw-r--r--io/prj/build.lst8
-rw-r--r--io/prj/d.lst7
-rw-r--r--io/source/TextInputStream/TextInputStream.cxx537
-rw-r--r--io/source/TextInputStream/makefile.mk61
-rw-r--r--io/source/TextOutputStream/TextOutputStream.cxx335
-rw-r--r--io/source/TextOutputStream/makefile.mk62
-rw-r--r--io/source/acceptor/acc_pipe.cxx224
-rw-r--r--io/source/acceptor/acc_socket.cxx416
-rw-r--r--io/source/acceptor/acceptor.cxx383
-rw-r--r--io/source/acceptor/acceptor.hxx78
-rw-r--r--io/source/acceptor/acceptor.xml44
-rw-r--r--io/source/acceptor/makefile.mk73
-rw-r--r--io/source/connector/connector.cxx295
-rw-r--r--io/source/connector/connector.hxx144
-rw-r--r--io/source/connector/connectr.xml44
-rw-r--r--io/source/connector/ctr_pipe.cxx118
-rw-r--r--io/source/connector/ctr_socket.cxx255
-rw-r--r--io/source/connector/makefile.mk73
-rw-r--r--io/source/stm/factreg.cxx125
-rw-r--r--io/source/stm/factreg.hxx66
-rw-r--r--io/source/stm/makefile.mk77
-rw-r--r--io/source/stm/odata.cxx1664
-rw-r--r--io/source/stm/omark.cxx1015
-rw-r--r--io/source/stm/opipe.cxx492
-rw-r--r--io/source/stm/opump.cxx504
-rw-r--r--io/source/stm/stm.xml280
-rw-r--r--io/source/stm/streamhelper.cxx244
-rw-r--r--io/source/stm/streamhelper.hxx162
-rw-r--r--io/test/makefile.mk92
-rw-r--r--io/test/stm/datatest.cxx1123
-rw-r--r--io/test/stm/exports.dxp3
-rw-r--r--io/test/stm/makefile.mk99
-rw-r--r--io/test/stm/marktest.cxx677
-rw-r--r--io/test/stm/pipetest.cxx439
-rw-r--r--io/test/stm/pumptest.cxx449
-rw-r--r--io/test/stm/testfactreg.cxx216
-rw-r--r--io/test/stm/testfactreg.hxx119
-rw-r--r--io/test/testcomponent.cxx217
-rw-r--r--io/test/testconnection.cxx286
-rwxr-xr-xjavainstaller2/build.xml105
-rwxr-xr-xjavainstaller2/makefile.mk35
-rwxr-xr-xjavainstaller2/nbproject/private/private.xml4
-rwxr-xr-xjavainstaller2/nbproject/project.xml56
-rwxr-xr-xjavainstaller2/prj/build.lst5
-rwxr-xr-xjavainstaller2/prj/d.lst2
-rwxr-xr-xjavainstaller2/src/Helpfiles/create_helpfiles.pl268
-rwxr-xr-xjavainstaller2/src/Helpfiles/helpfilenames.txt43
-rwxr-xr-xjavainstaller2/src/Helpfiles/makefile.mk57
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Controller/AcceptLicenseCtrl.java77
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Controller/ChooseComponentsCtrl.java204
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Controller/ChooseDirectoryCtrl.java256
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Controller/ChooseInstallationTypeCtrl.java174
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Controller/ChooseUninstallationComponentsCtrl.java131
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Controller/ChooseUninstallationTypeCtrl.java133
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Controller/InstallationCompletedCtrl.java111
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Controller/InstallationImminentCtrl.java155
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Controller/InstallationOngoingCtrl.java195
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Controller/PrologueCtrl.java200
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Controller/UninstallationCompletedCtrl.java103
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Controller/UninstallationImminentCtrl.java112
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Controller/UninstallationOngoingCtrl.java146
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Controller/UninstallationPrologueCtrl.java186
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/DeckOfPanels.java54
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Dialogs/DatabaseDialog.java64
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Dialogs/DetailsDialog.java139
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Dialogs/HelpDialog.java166
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Icons/Back.gifbin0 -> 91 bytes-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Icons/DontInstall.pngbin0 -> 154 bytes-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Icons/DontKnow.pngbin0 -> 180 bytes-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Icons/Forward.gifbin0 -> 91 bytes-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Icons/Install.pngbin0 -> 163 bytes-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Icons/Installed.pngbin0 -> 110 bytes-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Icons/Remove.pngbin0 -> 198 bytes-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/InstallData.java737
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Installer/Installer.java79
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Installer/InstallerFactory.java67
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Installer/LinuxInstaller.java793
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Installer/SolarisInstaller.java574
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/InstallerHelper/LinuxHelper.java528
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/InstallerHelper/SolarisHelper.java404
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Main.java98
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Panel/AcceptLicense.java104
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Panel/ChooseComponents.java189
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Panel/ChooseDirectory.java185
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Panel/ChooseInstallationType.java180
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Panel/ChooseUninstallationComponents.java182
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Panel/ChooseUninstallationType.java176
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Panel/InstallationImminent.java115
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Panel/InstallationOngoing.java121
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Panel/Prologue.java76
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Panel/UninstallationCompleted.java108
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Panel/UninstallationImminent.java110
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Panel/UninstallationOngoing.java109
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Panel/UninstallationPrologue.java62
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Panel/installationCompleted.java107
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/PanelController.java97
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/PanelHelper/PanelLabel.java82
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/PanelHelper/PanelTitle.java116
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/PanelHelper/TreeNodeRenderer.java89
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/ResourceManager.java171
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/SetupActionListener.java116
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/SetupData/DisplayPackageDescription.java200
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/SetupData/PackageDescription.java659
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/SetupData/ProductDescription.java277
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/SetupData/SetupDataProvider.java109
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/SetupData/XMLPackageDescription.java307
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/SetupFrame.java300
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Util/AbortInstaller.java52
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Util/Calculator.java88
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Util/Controller.java291
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Util/Converter.java95
-rw-r--r--javainstaller2/src/JavaSetup/org/openoffice/setup/Util/DialogFocusTraversalPolicy.java115
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Util/Dumper.java202
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Util/ExecuteProcess.java114
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Util/FileExtensionFilter.java53
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Util/InfoCtrl.java163
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Util/InfoDir.java319
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Util/Informer.java45
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Util/InstallChangeCtrl.java137
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Util/LogManager.java105
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Util/ModuleCtrl.java1004
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Util/PackageCollector.java179
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Util/Parser.java49
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Util/SystemManager.java484
-rwxr-xr-xjavainstaller2/src/Localization/makefile.mk54
-rwxr-xr-xjavainstaller2/src/Localization/setupstrings.ulf455
-rwxr-xr-xjavainstaller2/src/Properties/create_property.pl303
-rwxr-xr-xjavainstaller2/src/Properties/makefile.mk50
-rw-r--r--javainstaller2/src/Properties/setupfiles_template.properties26
-rw-r--r--javainstaller2/src/Properties/setupstrings_template.properties123
-rw-r--r--javaunohelper/com/sun/star/comp/JavaUNOHelperServices.java81
-rw-r--r--javaunohelper/com/sun/star/comp/helper/Bootstrap.java329
-rw-r--r--javaunohelper/com/sun/star/comp/helper/BootstrapException.java91
-rw-r--r--javaunohelper/com/sun/star/comp/helper/ComponentContext.java310
-rw-r--r--javaunohelper/com/sun/star/comp/helper/ComponentContextEntry.java73
-rw-r--r--javaunohelper/com/sun/star/comp/helper/RegistryServiceFactory.java168
-rw-r--r--javaunohelper/com/sun/star/comp/helper/SharedLibraryLoader.java159
-rw-r--r--javaunohelper/com/sun/star/comp/helper/UnoInfo.java115
-rw-r--r--javaunohelper/com/sun/star/comp/helper/makefile.mk54
-rw-r--r--javaunohelper/com/sun/star/comp/juhtest/SmoketestCommandEnvironment.java151
-rw-r--r--javaunohelper/com/sun/star/comp/juhtest/makefile.mk50
-rw-r--r--javaunohelper/com/sun/star/comp/makefile.mk49
-rwxr-xr-xjavaunohelper/com/sun/star/lib/uno/adapter/ByteArrayToXInputStreamAdapter.java161
-rw-r--r--javaunohelper/com/sun/star/lib/uno/adapter/InputStreamToXInputStreamAdapter.java166
-rw-r--r--javaunohelper/com/sun/star/lib/uno/adapter/OutputStreamToXOutputStreamAdapter.java87
-rw-r--r--javaunohelper/com/sun/star/lib/uno/adapter/XInputStreamToInputStreamAdapter.java207
-rwxr-xr-xjavaunohelper/com/sun/star/lib/uno/adapter/XOutputStreamToByteArrayAdapter.java121
-rw-r--r--javaunohelper/com/sun/star/lib/uno/adapter/XOutputStreamToOutputStreamAdapter.java111
-rw-r--r--javaunohelper/com/sun/star/lib/uno/adapter/makefile.mk54
-rw-r--r--javaunohelper/com/sun/star/lib/uno/helper/ComponentBase.java141
-rw-r--r--javaunohelper/com/sun/star/lib/uno/helper/Factory.java244
-rw-r--r--javaunohelper/com/sun/star/lib/uno/helper/InterfaceContainer.java856
-rw-r--r--javaunohelper/com/sun/star/lib/uno/helper/MultiTypeInterfaceContainer.java165
-rw-r--r--javaunohelper/com/sun/star/lib/uno/helper/PropertySet.java1102
-rw-r--r--javaunohelper/com/sun/star/lib/uno/helper/PropertySetMixin.java1093
-rw-r--r--javaunohelper/com/sun/star/lib/uno/helper/UnoUrl.java412
-rw-r--r--javaunohelper/com/sun/star/lib/uno/helper/WeakAdapter.java102
-rw-r--r--javaunohelper/com/sun/star/lib/uno/helper/WeakBase.java143
-rw-r--r--javaunohelper/com/sun/star/lib/uno/helper/makefile.mk49
-rw-r--r--javaunohelper/inc/makefile.mk47
-rw-r--r--javaunohelper/inc/pch/precompiled_javaunohelper.cxx29
-rw-r--r--javaunohelper/inc/pch/precompiled_javaunohelper.hxx32
-rw-r--r--javaunohelper/prj/build.lst10
-rw-r--r--javaunohelper/prj/d.lst6
-rw-r--r--javaunohelper/source/bootstrap.cxx189
-rw-r--r--javaunohelper/source/javaunohelper.cxx323
-rw-r--r--javaunohelper/source/javaunohelper.map9
-rw-r--r--javaunohelper/source/makefile.mk134
-rw-r--r--javaunohelper/source/preload.cxx158
-rw-r--r--javaunohelper/source/vm.cxx147
-rw-r--r--javaunohelper/source/vm.hxx55
-rw-r--r--javaunohelper/test/com/sun/star/comp/helper/Bootstrap_Test.java117
-rw-r--r--javaunohelper/test/com/sun/star/comp/helper/ComponentContext_Test.java99
-rw-r--r--javaunohelper/test/com/sun/star/comp/helper/RegistryServiceFactory_Test.java100
-rw-r--r--javaunohelper/test/com/sun/star/comp/helper/SharedLibraryLoader_Test.java194
-rw-r--r--javaunohelper/test/com/sun/star/comp/helper/makefile.mk52
-rw-r--r--javaunohelper/test/com/sun/star/lib/uno/helper/AWeakBase.java50
-rw-r--r--javaunohelper/test/com/sun/star/lib/uno/helper/ComponentBase_Test.java153
-rw-r--r--javaunohelper/test/com/sun/star/lib/uno/helper/Factory_Test.java207
-rw-r--r--javaunohelper/test/com/sun/star/lib/uno/helper/InterfaceContainer_Test.java992
-rw-r--r--javaunohelper/test/com/sun/star/lib/uno/helper/MultiTypeInterfaceContainer_Test.java372
-rw-r--r--javaunohelper/test/com/sun/star/lib/uno/helper/PropertySet_Test.java1693
-rw-r--r--javaunohelper/test/com/sun/star/lib/uno/helper/ProxyProvider.java165
-rw-r--r--javaunohelper/test/com/sun/star/lib/uno/helper/UnoUrlTest.java261
-rw-r--r--javaunohelper/test/com/sun/star/lib/uno/helper/WeakBase_Test.java251
-rw-r--r--javaunohelper/test/com/sun/star/lib/uno/helper/makefile.mk68
-rw-r--r--javaunohelper/util/delzip0
-rw-r--r--javaunohelper/util/makefile.mk53
-rw-r--r--javaunohelper/util/manifest3
-rw-r--r--javaunohelper/util/settings.pmk28
-rw-r--r--jfreereport/java/flute/makefile.mk73
-rw-r--r--jfreereport/java/jfreereport/makefile.mk71
-rw-r--r--jfreereport/java/libbase/makefile.mk85
-rw-r--r--jfreereport/java/libfonts/makefile.mk72
-rw-r--r--jfreereport/java/libformula/makefile.mk77
-rw-r--r--jfreereport/java/liblayout/makefile.mk71
-rw-r--r--jfreereport/java/libloader/makefile.mk71
-rw-r--r--jfreereport/java/librepository/makefile.mk71
-rw-r--r--jfreereport/java/libserializer/makefile.mk71
-rw-r--r--jfreereport/java/libxml/makefile.mk71
-rw-r--r--jfreereport/java/sac/makefile.mk83
-rw-r--r--jfreereport/nbprojects/flute/nbproject/project.xml42
-rw-r--r--jfreereport/nbprojects/jcommon-serializer/nbproject/project.xml42
-rw-r--r--jfreereport/nbprojects/jfreereport/nbproject/project.xml42
-rw-r--r--jfreereport/nbprojects/libfonts/nbproject/project.xml42
-rw-r--r--jfreereport/nbprojects/libformula/nbproject/project.xml42
-rw-r--r--jfreereport/nbprojects/liblayout/nbproject/project.xml42
-rw-r--r--jfreereport/nbprojects/libloader/nbproject/project.xml42
-rw-r--r--jfreereport/nbprojects/librepository/nbproject/project.xml42
-rw-r--r--jfreereport/nbprojects/libxml/nbproject/project.xml42
-rw-r--r--jfreereport/patches/flow-engine.patch10
-rw-r--r--jfreereport/patches/flute.patch19
-rw-r--r--jfreereport/patches/libbase.patch19
-rw-r--r--jfreereport/patches/libfonts.patch10
-rw-r--r--jfreereport/patches/libformula.patch27
-rw-r--r--jfreereport/patches/liblayout.patch10
-rw-r--r--jfreereport/patches/libloader.patch11
-rw-r--r--jfreereport/patches/librepository.patch10
-rw-r--r--jfreereport/patches/libserializer.patch10
-rw-r--r--jfreereport/patches/libxml.patch10
-rw-r--r--jfreereport/patches/sac.patch73
-rw-r--r--jfreereport/prj/build.lst13
-rw-r--r--jfreereport/prj/d.lst1
-rw-r--r--jpeg/jpeg-6b.patch113
-rw-r--r--jpeg/makefile.mk67
-rw-r--r--jpeg/prj/build.lst2
-rw-r--r--jpeg/prj/d.lst10
-rw-r--r--jurt/com/sun/star/comp/bridgefactory/BridgeFactory.java228
-rw-r--r--jurt/com/sun/star/comp/bridgefactory/makefile.mk43
-rw-r--r--jurt/com/sun/star/comp/connections/Acceptor.java170
-rw-r--r--jurt/com/sun/star/comp/connections/Connector.java151
-rw-r--r--jurt/com/sun/star/comp/connections/ConstantInstanceProvider.java139
-rw-r--r--jurt/com/sun/star/comp/connections/Implementation.java101
-rw-r--r--jurt/com/sun/star/comp/connections/PipedConnection.java283
-rw-r--r--jurt/com/sun/star/comp/connections/makefile.mk43
-rw-r--r--jurt/com/sun/star/comp/loader/FactoryHelper.java564
-rw-r--r--jurt/com/sun/star/comp/loader/JavaLoader.java483
-rw-r--r--jurt/com/sun/star/comp/loader/JavaLoaderFactory.java104
-rw-r--r--jurt/com/sun/star/comp/loader/RegistrationClassFinder.java133
-rw-r--r--jurt/com/sun/star/comp/loader/makefile.mk47
-rw-r--r--jurt/com/sun/star/comp/servicemanager/ServiceManager.java926
-rw-r--r--jurt/com/sun/star/comp/servicemanager/makefile.mk43
-rw-r--r--jurt/com/sun/star/comp/urlresolver/UrlResolver.java171
-rw-r--r--jurt/com/sun/star/comp/urlresolver/makefile.mk43
-rw-r--r--jurt/com/sun/star/lib/connections/pipe/PipeConnection.java232
-rw-r--r--jurt/com/sun/star/lib/connections/pipe/makefile.mk41
-rw-r--r--jurt/com/sun/star/lib/connections/pipe/pipeAcceptor.java146
-rw-r--r--jurt/com/sun/star/lib/connections/pipe/pipeConnector.java142
-rw-r--r--jurt/com/sun/star/lib/connections/socket/ConnectionDescriptor.java107
-rw-r--r--jurt/com/sun/star/lib/connections/socket/SocketConnection.java252
-rw-r--r--jurt/com/sun/star/lib/connections/socket/makefile.mk42
-rw-r--r--jurt/com/sun/star/lib/connections/socket/socketAcceptor.java207
-rw-r--r--jurt/com/sun/star/lib/connections/socket/socketConnector.java181
-rw-r--r--jurt/com/sun/star/lib/uno/Proxy.java40
-rw-r--r--jurt/com/sun/star/lib/uno/bridges/java_remote/BridgedObject.java49
-rw-r--r--jurt/com/sun/star/lib/uno/bridges/java_remote/ProxyFactory.java185
-rw-r--r--jurt/com/sun/star/lib/uno/bridges/java_remote/RequestHandler.java41
-rw-r--r--jurt/com/sun/star/lib/uno/bridges/java_remote/XConnectionInputStream_Adapter.java82
-rw-r--r--jurt/com/sun/star/lib/uno/bridges/java_remote/XConnectionOutputStream_Adapter.java91
-rw-r--r--jurt/com/sun/star/lib/uno/bridges/java_remote/java_remote_bridge.java711
-rw-r--r--jurt/com/sun/star/lib/uno/bridges/java_remote/makefile.mk44
-rw-r--r--jurt/com/sun/star/lib/uno/environments/java/java_environment.java311
-rw-r--r--jurt/com/sun/star/lib/uno/environments/java/makefile.mk44
-rw-r--r--jurt/com/sun/star/lib/uno/environments/remote/IProtocol.java97
-rw-r--r--jurt/com/sun/star/lib/uno/environments/remote/IReceiver.java48
-rw-r--r--jurt/com/sun/star/lib/uno/environments/remote/IThreadPool.java127
-rw-r--r--jurt/com/sun/star/lib/uno/environments/remote/JavaThreadPool.java132
-rw-r--r--jurt/com/sun/star/lib/uno/environments/remote/JavaThreadPoolFactory.java94
-rw-r--r--jurt/com/sun/star/lib/uno/environments/remote/Job.java180
-rw-r--r--jurt/com/sun/star/lib/uno/environments/remote/JobQueue.java396
-rw-r--r--jurt/com/sun/star/lib/uno/environments/remote/Message.java195
-rw-r--r--jurt/com/sun/star/lib/uno/environments/remote/NativeThreadPool.java100
-rw-r--r--jurt/com/sun/star/lib/uno/environments/remote/ThreadId.java95
-rw-r--r--jurt/com/sun/star/lib/uno/environments/remote/ThreadPoolManager.java80
-rw-r--r--jurt/com/sun/star/lib/uno/environments/remote/makefile.mk50
-rw-r--r--jurt/com/sun/star/lib/uno/environments/remote/remote_environment.java72
-rw-r--r--jurt/com/sun/star/lib/uno/makefile.mk37
-rw-r--r--jurt/com/sun/star/lib/uno/protocols/urp/Cache.java120
-rw-r--r--jurt/com/sun/star/lib/uno/protocols/urp/Marshal.java390
-rw-r--r--jurt/com/sun/star/lib/uno/protocols/urp/PendingRequests.java71
-rw-r--r--jurt/com/sun/star/lib/uno/protocols/urp/Unmarshal.java490
-rw-r--r--jurt/com/sun/star/lib/uno/protocols/urp/UrpMessage.java54
-rw-r--r--jurt/com/sun/star/lib/uno/protocols/urp/makefile.mk44
-rw-r--r--jurt/com/sun/star/lib/uno/protocols/urp/urp.java734
-rw-r--r--jurt/com/sun/star/lib/util/AsynchronousFinalizer.java102
-rw-r--r--jurt/com/sun/star/lib/util/NativeLibraryLoader.java118
-rw-r--r--jurt/com/sun/star/lib/util/StringHelper.java51
-rw-r--r--jurt/com/sun/star/lib/util/UrlToFileMapper.java161
-rw-r--r--jurt/com/sun/star/lib/util/makefile.mk42
-rw-r--r--jurt/com/sun/star/uno/AnyConverter.java543
-rw-r--r--jurt/com/sun/star/uno/Ascii.java50
-rw-r--r--jurt/com/sun/star/uno/AsciiString.java51
-rw-r--r--jurt/com/sun/star/uno/MappingException.java70
-rw-r--r--jurt/com/sun/star/uno/WeakReference.java147
-rw-r--r--jurt/com/sun/star/uno/makefile.mk52
-rw-r--r--jurt/demo/com/sun/star/demo/DemoServer.java101
-rw-r--r--jurt/demo/com/sun/star/demo/TestOffice.java193
-rw-r--r--jurt/demo/com/sun/star/demo/makefile.mk57
-rw-r--r--jurt/prj/build.lst19
-rw-r--r--jurt/prj/d.lst7
-rw-r--r--jurt/source/pipe/com_sun_star_lib_connections_pipe_PipeConnection.c566
-rw-r--r--jurt/source/pipe/makefile.mk57
-rw-r--r--jurt/source/pipe/wrapper/makefile.mk52
-rw-r--r--jurt/source/pipe/wrapper/wrapper.c99
-rw-r--r--jurt/test/com/sun/star/comp/bridgefactory/BridgeFactory_Test.java106
-rw-r--r--jurt/test/com/sun/star/comp/bridgefactory/makefile.mk36
-rw-r--r--jurt/test/com/sun/star/comp/connections/PipedConnection_Test.java147
-rw-r--r--jurt/test/com/sun/star/comp/connections/makefile.mk36
-rw-r--r--jurt/test/com/sun/star/lib/uno/bridges/java_remote/BridgedObject_Test.java73
-rw-r--r--jurt/test/com/sun/star/lib/uno/bridges/java_remote/ProxyFactory_Test.java145
-rw-r--r--jurt/test/com/sun/star/lib/uno/bridges/java_remote/java_remote_bridge_Test.java251
-rw-r--r--jurt/test/com/sun/star/lib/uno/bridges/java_remote/makefile.mk39
-rw-r--r--jurt/test/com/sun/star/lib/uno/environments/java/java_environment_Test.java66
-rw-r--r--jurt/test/com/sun/star/lib/uno/environments/java/makefile.mk36
-rw-r--r--jurt/test/com/sun/star/lib/uno/environments/remote/JavaThreadPoolFactory_Test.java56
-rw-r--r--jurt/test/com/sun/star/lib/uno/environments/remote/JobQueue_Test.java274
-rw-r--r--jurt/test/com/sun/star/lib/uno/environments/remote/TestIWorkAt.java49
-rw-r--r--jurt/test/com/sun/star/lib/uno/environments/remote/TestMessage.java89
-rw-r--r--jurt/test/com/sun/star/lib/uno/environments/remote/TestReceiver.java33
-rw-r--r--jurt/test/com/sun/star/lib/uno/environments/remote/TestWorkAt.java97
-rw-r--r--jurt/test/com/sun/star/lib/uno/environments/remote/ThreadId_Test.java63
-rw-r--r--jurt/test/com/sun/star/lib/uno/environments/remote/ThreadPool_Test.java443
-rw-r--r--jurt/test/com/sun/star/lib/uno/environments/remote/makefile.mk44
-rw-r--r--jurt/test/com/sun/star/lib/uno/protocols/urp/Cache_Test.java106
-rw-r--r--jurt/test/com/sun/star/lib/uno/protocols/urp/Marshaling_Test.java369
-rw-r--r--jurt/test/com/sun/star/lib/uno/protocols/urp/Protocol_Test.java317
-rw-r--r--jurt/test/com/sun/star/lib/uno/protocols/urp/TestBridge.java115
-rw-r--r--jurt/test/com/sun/star/lib/uno/protocols/urp/TestObject.java70
-rw-r--r--jurt/test/com/sun/star/lib/uno/protocols/urp/interfaces.idl119
-rw-r--r--jurt/test/com/sun/star/lib/uno/protocols/urp/makefile.mk42
-rw-r--r--jurt/test/com/sun/star/lib/util/NativeLibraryLoader_Test.java83
-rw-r--r--jurt/test/com/sun/star/lib/util/makefile.mk36
-rw-r--r--jurt/test/com/sun/star/uno/AnyConverter_Test.java905
-rw-r--r--jurt/test/com/sun/star/uno/UnoRuntime_EnvironmentTest.java96
-rw-r--r--jurt/test/com/sun/star/uno/WeakReference_Test.java118
-rw-r--r--jurt/test/com/sun/star/uno/makefile.mk39
-rw-r--r--jurt/test/makefile.mk39
-rw-r--r--jurt/util/delzip0
-rw-r--r--jurt/util/makefile.mk52
-rw-r--r--jurt/util/makefile.pmk32
-rw-r--r--jurt/util/manifest7
-rw-r--r--jurt/workbench/com/sun/star/comp/urlresolver/UrlResolver_Test.java95
-rw-r--r--jurt/workbench/com/sun/star/comp/urlresolver/makefile.mk53
-rw-r--r--jvmaccess/inc/jvmaccess/classpath.hxx151
-rw-r--r--jvmaccess/inc/jvmaccess/unovirtualmachine.hxx109
-rw-r--r--jvmaccess/inc/jvmaccess/virtualmachine.hxx163
-rw-r--r--jvmaccess/prj/build.lst4
-rw-r--r--jvmaccess/prj/d.lst8
-rw-r--r--jvmaccess/source/classpath.cxx174
-rw-r--r--jvmaccess/source/makefile.mk41
-rw-r--r--jvmaccess/source/unovirtualmachine.cxx96
-rw-r--r--jvmaccess/source/virtualmachine.cxx124
-rw-r--r--jvmaccess/util/cc5_solaris_sparc.map81
-rw-r--r--jvmaccess/util/gcc3.map88
-rw-r--r--jvmaccess/util/makefile.mk66
-rw-r--r--jvmaccess/util/mingw.map71
-rw-r--r--jvmaccess/util/msvc_win32_intel.map37
-rw-r--r--jvmaccess/workbench/exceptiontest1.cxx46
-rw-r--r--jvmaccess/workbench/exceptiontest2.cxx46
-rw-r--r--jvmaccess/workbench/java/TestComponent.java104
-rw-r--r--jvmaccess/workbench/java/makefile.mk43
-rw-r--r--jvmaccess/workbench/java/manifest1
-rw-r--r--jvmaccess/workbench/javainfo/javainfotest.cxx372
-rw-r--r--jvmaccess/workbench/javainfo/makefile.mk43
-rw-r--r--jvmaccess/workbench/makefile.mk51
-rw-r--r--jvmfwk/distributions/OpenOfficeorg/javavendors.xsd77
-rw-r--r--jvmfwk/distributions/OpenOfficeorg/javavendors_freebsd.xml25
-rw-r--r--jvmfwk/distributions/OpenOfficeorg/javavendors_linux.xml33
-rw-r--r--jvmfwk/distributions/OpenOfficeorg/javavendors_macosx.xml20
-rw-r--r--jvmfwk/distributions/OpenOfficeorg/javavendors_os2.xml21
-rw-r--r--jvmfwk/distributions/OpenOfficeorg/javavendors_template.xml35
-rwxr-xr-xjvmfwk/distributions/OpenOfficeorg/javavendors_unx.xml17
-rw-r--r--jvmfwk/distributions/OpenOfficeorg/javavendors_wnt.xml21
-rwxr-xr-xjvmfwk/distributions/OpenOfficeorg/makefile.mk65
-rw-r--r--jvmfwk/inc/jvmfwk/framework.h867
-rw-r--r--jvmfwk/inc/jvmfwk/vendorplugin.h246
-rw-r--r--jvmfwk/inc/makefile.mk47
-rw-r--r--jvmfwk/inc/pch/precompiled_jvmfwk.cxx29
-rw-r--r--jvmfwk/inc/pch/precompiled_jvmfwk.hxx32
-rwxr-xr-xjvmfwk/plugins/sunmajor/javaenvsetup/javaldx.cxx188
-rwxr-xr-xjvmfwk/plugins/sunmajor/javaenvsetup/makefile.mk56
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/JREProperties.java85
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/diagnostics.h120
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/gnujre.cxx287
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/gnujre.hxx55
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/makefile.mk117
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/otherjre.cxx131
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/otherjre.hxx53
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/sunjavaplugin.cxx618
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/sunjavaplugin.map8
-rwxr-xr-xjvmfwk/plugins/sunmajor/pluginlib/sunjavapluginrc2
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/sunjre.cxx124
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/sunjre.hxx52
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/sunversion.cxx427
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx127
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/util.cxx1267
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/util.hxx130
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/vendorbase.cxx276
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/vendorbase.hxx185
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/vendorlist.cxx91
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/vendorlist.hxx75
-rw-r--r--jvmfwk/prj/build.lst6
-rw-r--r--jvmfwk/prj/d.lst22
-rw-r--r--jvmfwk/source/elements.cxx1231
-rw-r--r--jvmfwk/source/elements.hxx391
-rw-r--r--jvmfwk/source/framework.cxx1277
-rw-r--r--jvmfwk/source/framework.hxx124
-rw-r--r--jvmfwk/source/framework.map31
-rw-r--r--jvmfwk/source/fwkbase.cxx718
-rw-r--r--jvmfwk/source/fwkbase.hxx158
-rw-r--r--jvmfwk/source/fwkutil.cxx354
-rw-r--r--jvmfwk/source/fwkutil.hxx138
-rw-r--r--jvmfwk/source/javasettings.xsd54
-rw-r--r--jvmfwk/source/javasettings_template.xml35
-rw-r--r--jvmfwk/source/javasettingsunopkginstall.xml3
-rw-r--r--jvmfwk/source/jvmfwk3rc4
-rw-r--r--jvmfwk/source/libxmlutil.cxx184
-rw-r--r--jvmfwk/source/libxmlutil.hxx129
-rw-r--r--jvmfwk/source/makefile.mk90
-rw-r--r--jvmfwk/source/readme.txt9
-rw-r--r--l10ntools/inc/cfgmerge.hxx205
-rw-r--r--l10ntools/inc/export.hxx585
-rw-r--r--l10ntools/inc/gsicheck.hxx128
-rw-r--r--l10ntools/inc/helpmerge.hxx84
-rw-r--r--l10ntools/inc/inireader.hxx52
-rw-r--r--l10ntools/inc/l10ntools/directory.hxx54
-rw-r--r--l10ntools/inc/l10ntools/file.hxx23
-rw-r--r--l10ntools/inc/l10ntools/vosapp.hxx33
-rw-r--r--l10ntools/inc/lngmerge.hxx66
-rw-r--r--l10ntools/inc/makefile.mk47
-rw-r--r--l10ntools/inc/pch/precompiled_l10ntools.cxx29
-rw-r--r--l10ntools/inc/pch/precompiled_l10ntools.hxx32
-rw-r--r--l10ntools/inc/srciter.hxx58
-rw-r--r--l10ntools/inc/tagtest.hxx396
-rw-r--r--l10ntools/inc/tokens.h109
-rw-r--r--l10ntools/inc/treeconfig.hxx28
-rw-r--r--l10ntools/inc/utf8conv.hxx44
-rw-r--r--l10ntools/inc/wtranode.hxx118
-rw-r--r--l10ntools/inc/wtratree.hxx159
-rw-r--r--l10ntools/inc/xmlparse.hxx550
-rw-r--r--l10ntools/inc/xmlutil.hxx9
-rw-r--r--l10ntools/inc/xrmmerge.hxx158
-rwxr-xr-xl10ntools/java/jpropex/build.xml169
-rw-r--r--l10ntools/java/jpropex/java/JPropEx.java503
-rw-r--r--l10ntools/java/jpropex/java/Main.java38
-rw-r--r--l10ntools/java/jpropex/java/NoLocalizeFilter.java54
-rw-r--r--l10ntools/java/jpropex/java/OrderedHashMap.java96
-rw-r--r--l10ntools/java/jpropex/java/SdfData.java108
-rw-r--r--l10ntools/java/jpropex/java/SdfEntity.java256
-rwxr-xr-xl10ntools/java/jpropex/jpropex12
-rwxr-xr-xl10ntools/java/jpropex/jpropex.MF1
-rwxr-xr-xl10ntools/java/jpropex/makefile.mk36
-rwxr-xr-xl10ntools/java/l10nconv/build.xml229
-rwxr-xr-xl10ntools/java/l10nconv/converter.MF1
-rwxr-xr-xl10ntools/java/l10nconv/documentation/readmeConverter.sxwbin0 -> 9824 bytes-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/DirtyTags/DirtyTagWrapCheck.java82
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/DirtyTags/DirtyTagWrapper.java249
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/DirtyTags/Tag.java246
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/DirtyTags/TagPair.java307
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/converter/Convert.java550
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/converter/Converter.java520
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/converter/ConverterException.java76
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/converter/DataHandler.java146
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/converter/DataReader.java76
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/converter/DataWriter.java88
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/converter/ExtMap.java94
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/converter/FileMaker.java84
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/converter/GSIReader.java247
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/converter/GSIWriter.java243
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/converter/GSIandSDFMerger.java164
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/converter/LineErrorException.java78
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/converter/OutputHandler.java225
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/converter/ResTypeResolver.java68
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/converter/Resolver.java95
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/converter/SDFReader.java632
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/converter/SDFWriter.java172
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/converter/XLIFFReader.java742
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/converter/XLIFFWriter.java532
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/converter/dtd/xliff.dtd391
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/languageResolver/LanguageResolver.java198
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/languageResolver/lang.map41
-rwxr-xr-xl10ntools/java/l10nconv/makefile.mk35
-rwxr-xr-xl10ntools/java/receditor/build.xml169
-rw-r--r--l10ntools/java/receditor/java/transex3/controller/EditorController.java334
-rw-r--r--l10ntools/java/receditor/java/transex3/controller/Main.java10
-rw-r--r--l10ntools/java/receditor/java/transex3/model/ResourceFile.java77
-rw-r--r--l10ntools/java/receditor/java/transex3/model/SdfEntity.java211
-rw-r--r--l10ntools/java/receditor/java/transex3/model/SdfString.java167
-rw-r--r--l10ntools/java/receditor/java/transex3/view/Editor.java97
-rw-r--r--l10ntools/java/receditor/java/transex3/view/SdfTable.java24
-rwxr-xr-xl10ntools/java/receditor/makefile.mk35
-rwxr-xr-xl10ntools/java/receditor/receditor.MF1
-rw-r--r--l10ntools/layout/README27
-rw-r--r--l10ntools/layout/layoutparse.cxx135
-rw-r--r--l10ntools/layout/layoutparse.hxx51
-rw-r--r--l10ntools/layout/loc.sdf24
-rw-r--r--l10ntools/layout/makefile.mk77
-rw-r--r--l10ntools/layout/tralay.cxx399
-rw-r--r--l10ntools/layout/zoom.xml40
-rw-r--r--l10ntools/prj/build.lst9
-rw-r--r--l10ntools/prj/d.lst72
-rw-r--r--l10ntools/scripts/fast_merge.pl334
-rw-r--r--l10ntools/scripts/keyidGen.pl185
-rw-r--r--l10ntools/scripts/localize.pl1177
-rwxr-xr-xl10ntools/scripts/localize_old.pl1070
-rw-r--r--l10ntools/scripts/tool/const.py39
-rw-r--r--l10ntools/scripts/tool/l10ntool.py211
-rw-r--r--l10ntools/scripts/tool/pseudo.py184
-rw-r--r--l10ntools/scripts/tool/sdf.py165
-rw-r--r--l10ntools/scripts/tool/xhtex.py135
-rw-r--r--l10ntools/scripts/tool/xtxex.py93
-rwxr-xr-xl10ntools/scripts/xhtex46
-rwxr-xr-xl10ntools/scripts/xtxex47
-rw-r--r--l10ntools/source/cfg_yy_wrapper.c2
-rw-r--r--l10ntools/source/cfglex.l217
-rw-r--r--l10ntools/source/cfgmerge.cxx872
-rw-r--r--l10ntools/source/directory.cxx273
-rw-r--r--l10ntools/source/export.cxx2645
-rw-r--r--l10ntools/source/export2.cxx734
-rw-r--r--l10ntools/source/file.cxx55
-rw-r--r--l10ntools/source/filter/merge/FCFGMerge.cfg121
-rw-r--r--l10ntools/source/filter/merge/FCFGMerge.java128
-rw-r--r--l10ntools/source/filter/merge/Manifest.mf1
-rw-r--r--l10ntools/source/filter/merge/Merger.java361
-rw-r--r--l10ntools/source/filter/merge/makefile.mk92
-rw-r--r--l10ntools/source/filter/utils/AnalyzeStartupLog.java325
-rw-r--r--l10ntools/source/filter/utils/Cache.java2446
-rw-r--r--l10ntools/source/filter/utils/ConfigHelper.java300
-rw-r--r--l10ntools/source/filter/utils/FileHelper.java763
-rw-r--r--l10ntools/source/filter/utils/Logger.java174
-rw-r--r--l10ntools/source/filter/utils/MalformedCommandLineException.java47
-rw-r--r--l10ntools/source/filter/utils/XMLHelper.java822
-rw-r--r--l10ntools/source/filter/utils/makefile.mk53
-rw-r--r--l10ntools/source/gsicheck.cxx1174
-rw-r--r--l10ntools/source/gsiconv.cxx369
-rw-r--r--l10ntools/source/help/HelpCompiler.cxx590
-rw-r--r--l10ntools/source/help/HelpCompiler.hxx317
-rw-r--r--l10ntools/source/help/HelpFileDocument.java86
-rw-r--r--l10ntools/source/help/HelpIndexerTool.java393
-rw-r--r--l10ntools/source/help/HelpLinker.cxx1181
-rw-r--r--l10ntools/source/help/compilehelp.hxx79
-rw-r--r--l10ntools/source/help/helplinker.pmk31
-rw-r--r--l10ntools/source/help/makefile.mk116
-rw-r--r--l10ntools/source/helpex.cxx290
-rw-r--r--l10ntools/source/helpmerge.cxx716
-rw-r--r--l10ntools/source/inireader.cxx132
-rw-r--r--l10ntools/source/lngex.cxx205
-rw-r--r--l10ntools/source/lngmerge.cxx356
-rw-r--r--l10ntools/source/localize.cxx970
-rw-r--r--l10ntools/source/makefile.mk206
-rw-r--r--l10ntools/source/merge.cxx459
-rw-r--r--l10ntools/source/src_yy_wrapper.c2
-rw-r--r--l10ntools/source/srciter.cxx138
-rw-r--r--l10ntools/source/srclex.l302
-rw-r--r--l10ntools/source/tagtest.cxx1574
-rw-r--r--l10ntools/source/treeconfig.cxx128
-rw-r--r--l10ntools/source/utf8conv.cxx74
-rw-r--r--l10ntools/source/wtranode.cxx108
-rw-r--r--l10ntools/source/wtratree.cxx418
-rw-r--r--l10ntools/source/xgfconv.cxx66
-rw-r--r--l10ntools/source/xmlparse.cxx1453
-rw-r--r--l10ntools/source/xrm_yy_wrapper.c2
-rw-r--r--l10ntools/source/xrmlex.l224
-rw-r--r--l10ntools/source/xrmmerge.cxx731
-rw-r--r--l10ntools/workbench/gsicheck_errors.sdf15
-rw-r--r--l10ntools/workbench/gsicheck_errors_err-.sdf11
-rw-r--r--l10ntools/workbench/gsicheck_errors_err-l.sdf2
-rw-r--r--l10ntools/workbench/gsicheck_errors_err-s.sdf9
-rw-r--r--l10ntools/workbench/gsicheck_errors_err-t.sdf9
-rw-r--r--l10ntools/workbench/gsicheck_errors_ok-.sdf5
-rw-r--r--l10ntools/workbench/gsicheck_errors_ok-l.sdf12
-rw-r--r--l10ntools/workbench/gsicheck_errors_ok-s.sdf6
-rw-r--r--l10ntools/workbench/gsicheck_errors_ok-t.sdf6
-rw-r--r--l10ntools/workbench/gsicheckcheck.btm17
-rw-r--r--libegg/README7
-rw-r--r--libegg/inc/eggtrayicon.h35
-rw-r--r--libegg/prj/build.lst2
-rw-r--r--libegg/prj/d.lst5
-rw-r--r--libegg/source/eggtrayicon-impl.h76
-rw-r--r--libegg/source/eggtrayicon.c568
-rw-r--r--libegg/source/makefile.mk69
-rw-r--r--libtextcat/data/new_fingerprints/LICENSE30
-rw-r--r--libtextcat/data/new_fingerprints/fpdb.conf85
-rw-r--r--libtextcat/data/new_fingerprints/lm/afrikaans.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/albanian.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/amharic_utf.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/arabic.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/armenian.lm0
-rw-r--r--libtextcat/data/new_fingerprints/lm/basque.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/belarus.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/bosnian.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/breton.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/catalan.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/chinese_simplified.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/chinese_traditional.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/croatian.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/czech.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/danish.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/drents.lm0
-rw-r--r--libtextcat/data/new_fingerprints/lm/dutch.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/english.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/esperanto.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/estonian.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/finnish.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/french.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/frisian.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/georgian.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/german.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/greek.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/hebrew.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/hindi.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/hungarian.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/icelandic.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/indonesian.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/irish_gaelic.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/italian.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/japanese.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/korean.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/latin.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/latvian.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/lithuanian.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/luxembourgish.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/malay.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/manx_gaelic.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/marathi.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/middle_frisian.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/mingo.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/mongolian_cyrillic.lm363
-rw-r--r--libtextcat/data/new_fingerprints/lm/nepali.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/norwegian.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/persian.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/polish.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/portuguese.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/quechua.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/romanian.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/romansh.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/russian.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/sanskrit.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/scots.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/scots_gaelic.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/serbian_ascii.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/slovak_ascii.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/slovenian.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/spanish.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/swahili.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/swedish.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/tagalog.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/tamil.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/thai.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/turkish.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/ukrainian.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/vietnamese.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/welsh.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/yiddish_utf.lm400
-rw-r--r--libtextcat/data/new_fingerprints/lm/zulu.lm400
-rw-r--r--libtextcat/libtextcat-2.2.patch4078
-rw-r--r--libtextcat/makefile.mk91
-rw-r--r--libtextcat/prj/build.lst3
-rw-r--r--libtextcat/prj/d.lst12
-rw-r--r--libwpd/libwpd-0.8.8.diff908
-rw-r--r--libwpd/makefile.mk55
-rw-r--r--libwpd/prj/build.lst3
-rw-r--r--libwpd/prj/d.lst12
-rw-r--r--libxml2/libxml2-configure.patch118
-rw-r--r--libxml2/libxml2-global-symbols.patch59
-rw-r--r--libxml2/libxml2-gnome599717.patch20
-rw-r--r--libxml2/libxml2-mingw.patch48
-rw-r--r--libxml2/makefile.mk140
-rw-r--r--libxml2/prj/build.lst3
-rw-r--r--libxml2/prj/d.lst9
-rw-r--r--libxmlsec/makefile.mk196
-rw-r--r--libxmlsec/prj/build.lst3
-rw-r--r--libxmlsec/prj/d.lst9
-rw-r--r--libxmlsec/readme.txt32
-rw-r--r--libxmlsec/xmlsec1-configure-libxml-libxslt.patch40
-rw-r--r--libxmlsec/xmlsec1-configure.patch765
-rw-r--r--libxmlsec/xmlsec1-customkeymanage.patch6065
-rw-r--r--libxmlsec/xmlsec1-mingw-keymgr-mscrypto.patch62
-rw-r--r--libxmlsec/xmlsec1-mingw32.patch257
-rw-r--r--libxmlsec/xmlsec1-noverify.patch59
-rw-r--r--libxmlsec/xmlsec1-nssdisablecallbacks.patch36
-rw-r--r--libxmlsec/xmlsec1-nssmangleciphers.patch1134
-rw-r--r--libxmlsec/xmlsec1-olderlibxml2.patch23
-rw-r--r--libxmlsec/xmlsec1-update-config-sub-and-guess.patch2314
-rw-r--r--libxslt/libxslt-configure.patch79
-rw-r--r--libxslt/libxslt-internal-symbols.patch66
-rw-r--r--libxslt/libxslt-mingw.patch36
-rw-r--r--libxslt/libxslt-win_manifest.patch11
-rw-r--r--libxslt/libxsltversion.mk33
-rw-r--r--libxslt/makefile.mk154
-rw-r--r--libxslt/prj/build.lst3
-rw-r--r--libxslt/prj/d.lst11
-rw-r--r--lingucomponent/config/Linguistic-lingucomponent-hyphenator.xcu14
-rw-r--r--lingucomponent/config/Linguistic-lingucomponent-spellchecker.xcu14
-rw-r--r--lingucomponent/config/Linguistic-lingucomponent-thesaurus.xcu14
-rw-r--r--lingucomponent/inc/makefile.mk47
-rw-r--r--lingucomponent/inc/pch/precompiled_lingucomponent.cxx29
-rw-r--r--lingucomponent/inc/pch/precompiled_lingucomponent.hxx33
-rw-r--r--lingucomponent/prj/build.lst10
-rw-r--r--lingucomponent/prj/d.lst48
-rw-r--r--lingucomponent/source/hyphenator/altlinuxhyph/hyphen/exports.dxp3
-rw-r--r--lingucomponent/source/hyphenator/altlinuxhyph/hyphen/hreg.cxx86
-rwxr-xr-xlingucomponent/source/hyphenator/altlinuxhyph/hyphen/hyphenimp.cxx982
-rw-r--r--lingucomponent/source/hyphenator/altlinuxhyph/hyphen/hyphenimp.hxx210
-rw-r--r--lingucomponent/source/hyphenator/altlinuxhyph/hyphen/makefile.mk93
-rw-r--r--lingucomponent/source/languageguessing/altstrfunc.cxx48
-rw-r--r--lingucomponent/source/languageguessing/altstrfunc.hxx41
-rw-r--r--lingucomponent/source/languageguessing/guess.cxx136
-rw-r--r--lingucomponent/source/languageguessing/guess.hxx71
-rw-r--r--lingucomponent/source/languageguessing/guesslang.cxx484
-rw-r--r--lingucomponent/source/languageguessing/makefile.mk80
-rw-r--r--lingucomponent/source/languageguessing/simpleguesser.cxx234
-rw-r--r--lingucomponent/source/languageguessing/simpleguesser.hxx121
-rw-r--r--lingucomponent/source/lingutil/lingutil.cxx272
-rw-r--r--lingucomponent/source/lingutil/lingutil.hxx105
-rw-r--r--lingucomponent/source/lingutil/makefile.mk63
-rw-r--r--lingucomponent/source/spellcheck/macosxspell/macreg.cxx87
-rw-r--r--lingucomponent/source/spellcheck/macosxspell/macspellimp.cxx693
-rw-r--r--lingucomponent/source/spellcheck/macosxspell/macspellimp.hxx193
-rw-r--r--lingucomponent/source/spellcheck/macosxspell/makefile.mk93
-rw-r--r--lingucomponent/source/spellcheck/spell/exports.dxp3
-rw-r--r--lingucomponent/source/spellcheck/spell/makefile.mk87
-rw-r--r--lingucomponent/source/spellcheck/spell/sreg.cxx86
-rw-r--r--lingucomponent/source/spellcheck/spell/sspellimp.cxx722
-rw-r--r--lingucomponent/source/spellcheck/spell/sspellimp.hxx184
-rw-r--r--lingucomponent/source/thesaurus/libnth/exports.dxp3
-rw-r--r--lingucomponent/source/thesaurus/libnth/makefile.mk107
-rw-r--r--lingucomponent/source/thesaurus/libnth/nthesdta.cxx116
-rw-r--r--lingucomponent/source/thesaurus/libnth/nthesdta.hxx96
-rw-r--r--lingucomponent/source/thesaurus/libnth/nthesimp.cxx795
-rw-r--r--lingucomponent/source/thesaurus/libnth/nthesimp.hxx199
-rw-r--r--lingucomponent/source/thesaurus/libnth/ntreg.cxx85
-rw-r--r--linguistic/inc/hyphdta.hxx146
-rw-r--r--linguistic/inc/iprcache.hxx131
-rw-r--r--linguistic/inc/lngprophelp.hxx288
-rw-r--r--linguistic/inc/lngprops.hxx62
-rw-r--r--linguistic/inc/makefile.mk47
-rw-r--r--linguistic/inc/misc.hxx269
-rw-r--r--linguistic/inc/pch/precompiled_linguistic.cxx29
-rw-r--r--linguistic/inc/pch/precompiled_linguistic.hxx32
-rw-r--r--linguistic/inc/spelldta.hxx134
-rw-r--r--linguistic/inc/thesdta.hxx84
-rw-r--r--linguistic/prj/build.lst6
-rw-r--r--linguistic/prj/d.lst10
-rw-r--r--linguistic/qa/complex/linguistic/HangulHanjaConversion.java345
-rw-r--r--linguistic/qa/complex/linguistic/makefile.mk73
-rw-r--r--linguistic/qa/complex/linguistic/testdocuments/hangulhanja.sxcbin0 -> 6366 bytes-rw-r--r--linguistic/qa/unoapi/Test.java51
-rw-r--r--linguistic/qa/unoapi/knownissues.xcl9
-rw-r--r--linguistic/qa/unoapi/lng.sce3
-rw-r--r--linguistic/qa/unoapi/makefile.mk48
-rw-r--r--linguistic/source/convdic.cxx744
-rw-r--r--linguistic/source/convdic.hxx179
-rw-r--r--linguistic/source/convdiclist.cxx741
-rw-r--r--linguistic/source/convdiclist.hxx122
-rw-r--r--linguistic/source/convdicxml.cxx462
-rw-r--r--linguistic/source/convdicxml.hxx134
-rw-r--r--linguistic/source/defs.hxx136
-rwxr-xr-xlinguistic/source/dicimp.cxx1207
-rw-r--r--linguistic/source/dicimp.hxx238
-rw-r--r--linguistic/source/dlistimp.cxx969
-rw-r--r--linguistic/source/dlistimp.hxx151
-rw-r--r--linguistic/source/gciterator.cxx1359
-rw-r--r--linguistic/source/gciterator.hxx209
-rw-r--r--linguistic/source/grammarchecker.cxx326
-rw-r--r--linguistic/source/grammarchecker.hxx108
-rw-r--r--linguistic/source/hhconvdic.cxx169
-rw-r--r--linguistic/source/hhconvdic.hxx78
-rw-r--r--linguistic/source/hyphdsp.cxx736
-rw-r--r--linguistic/source/hyphdsp.hxx172
-rw-r--r--linguistic/source/hyphdta.cxx189
-rw-r--r--linguistic/source/iprcache.cxx284
-rw-r--r--linguistic/source/lngopt.cxx711
-rw-r--r--linguistic/source/lngopt.hxx186
-rw-r--r--linguistic/source/lngprophelp.cxx717
-rw-r--r--linguistic/source/lngreg.cxx198
-rw-r--r--linguistic/source/lngsvcmgr.cxx2042
-rw-r--r--linguistic/source/lngsvcmgr.hxx199
-rw-r--r--linguistic/source/makefile.mk111
-rw-r--r--linguistic/source/misc.cxx1009
-rw-r--r--linguistic/source/misc2.cxx300
-rw-r--r--linguistic/source/spelldsp.cxx871
-rw-r--r--linguistic/source/spelldsp.hxx163
-rw-r--r--linguistic/source/spelldta.cxx366
-rw-r--r--linguistic/source/thesdsp.cxx282
-rw-r--r--linguistic/source/thesdsp.hxx129
-rw-r--r--linguistic/source/thesdta.cxx83
-rw-r--r--linguistic/workben/exports.dxp3
-rw-r--r--linguistic/workben/makefile.mk107
-rw-r--r--linguistic/workben/sprophelp.cxx372
-rw-r--r--linguistic/workben/sprophelp.hxx172
-rw-r--r--linguistic/workben/sreg.cxx85
-rw-r--r--linguistic/workben/sspellimp.cxx512
-rw-r--r--linguistic/workben/sspellimp.hxx177
-rw-r--r--linguistic/xml/linguistic.xml51
-rw-r--r--lpsolve/lp_solve_5.5-windows.patch40
-rw-r--r--lpsolve/lp_solve_5.5.patch94
-rw-r--r--lpsolve/makefile.mk93
-rw-r--r--lpsolve/prj/build.lst3
-rw-r--r--lpsolve/prj/d.lst9
-rw-r--r--lucene/lucene.patch12
-rw-r--r--lucene/makefile.mk69
-rw-r--r--lucene/prj/build.lst3
-rw-r--r--lucene/prj/d.lst3
-rw-r--r--lucene/version.mk27
-rw-r--r--makefile.rc99
-rw-r--r--mdds/makefile.mk66
-rw-r--r--mdds/prj/build.lst3
-rw-r--r--mdds/prj/d.lst5
-rw-r--r--migrationanalysis/Read Me.odtbin0 -> 15137 bytes-rw-r--r--migrationanalysis/no_localization1
-rw-r--r--migrationanalysis/prj/build.lst7
-rw-r--r--migrationanalysis/prj/d.lst1
-rw-r--r--migrationanalysis/src/driver_docs/CreateDriverDocs.wsf221
-rw-r--r--migrationanalysis/src/driver_docs/DocAnalysisRunMacro.vbs438
-rw-r--r--migrationanalysis/src/driver_docs/PAW/_OOoDocAnalysisExcelDriver.xlsbin0 -> 696832 bytes-rw-r--r--migrationanalysis/src/driver_docs/PAW/_OOoDocAnalysisPPTDriver.pptbin0 -> 284672 bytes-rw-r--r--migrationanalysis/src/driver_docs/PAW/_OOoDocAnalysisWordDriver.docbin0 -> 664064 bytes-rw-r--r--migrationanalysis/src/driver_docs/allstrings.ulf2371
-rw-r--r--migrationanalysis/src/driver_docs/makefile.mk127
-rw-r--r--migrationanalysis/src/driver_docs/sources/AnalysisDriver.bas3646
-rw-r--r--migrationanalysis/src/driver_docs/sources/CollectedFiles.cls378
-rw-r--r--migrationanalysis/src/driver_docs/sources/CommonMigrationAnalyser.bas1119
-rw-r--r--migrationanalysis/src/driver_docs/sources/CommonPreparation.bas226
-rw-r--r--migrationanalysis/src/driver_docs/sources/DocumentAnalysis.cls342
-rw-r--r--migrationanalysis/src/driver_docs/sources/FileTypeAssociation.cls56
-rw-r--r--migrationanalysis/src/driver_docs/sources/IssueInfo.cls206
-rw-r--r--migrationanalysis/src/driver_docs/sources/LocalizeResults.bas308
-rw-r--r--migrationanalysis/src/driver_docs/sources/PrepareInfo.cls42
-rw-r--r--migrationanalysis/src/driver_docs/sources/StringDataManager.cls131
-rw-r--r--migrationanalysis/src/driver_docs/sources/Stripped_OOoDocAnalysisExcelDriver.xlsbin0 -> 31232 bytes-rw-r--r--migrationanalysis/src/driver_docs/sources/Stripped_OOoDocAnalysisPPTDriver.pptbin0 -> 64512 bytes-rw-r--r--migrationanalysis/src/driver_docs/sources/Stripped_OOoDocAnalysisWordDriver.docbin0 -> 38912 bytes-rw-r--r--migrationanalysis/src/driver_docs/sources/common_res.bas284
-rw-r--r--migrationanalysis/src/driver_docs/sources/excel/ApplicationSpecific.bas164
-rw-r--r--migrationanalysis/src/driver_docs/sources/excel/MigrationAnalyser.cls2319
-rw-r--r--migrationanalysis/src/driver_docs/sources/excel/Preparation.bas51
-rw-r--r--migrationanalysis/src/driver_docs/sources/excel/SetTextBoxFont.bas50
-rw-r--r--migrationanalysis/src/driver_docs/sources/excel/ThisWorkbook.cls53
-rw-r--r--migrationanalysis/src/driver_docs/sources/excel/excel_res.bas375
-rw-r--r--migrationanalysis/src/driver_docs/sources/powerpoint/ApplicationSpecific.bas176
-rw-r--r--migrationanalysis/src/driver_docs/sources/powerpoint/Loader.bas62
-rw-r--r--migrationanalysis/src/driver_docs/sources/powerpoint/MigrationAnalyser.cls824
-rw-r--r--migrationanalysis/src/driver_docs/sources/powerpoint/Preparation.bas41
-rw-r--r--migrationanalysis/src/driver_docs/sources/powerpoint/Slide1.cls54
-rw-r--r--migrationanalysis/src/driver_docs/sources/powerpoint/powerpoint_res.bas107
-rw-r--r--migrationanalysis/src/driver_docs/sources/results_res.bas613
-rw-r--r--migrationanalysis/src/driver_docs/sources/word/ApplicationSpecific.bas156
-rw-r--r--migrationanalysis/src/driver_docs/sources/word/MigrationAnalyser.cls1522
-rw-r--r--migrationanalysis/src/driver_docs/sources/word/Preparation.bas151
-rw-r--r--migrationanalysis/src/driver_docs/sources/word/ThisDocument.cls52
-rw-r--r--migrationanalysis/src/driver_docs/sources/word/word_res.bas289
-rw-r--r--migrationanalysis/src/driver_docs/ulf2dat.pl153
-rw-r--r--migrationanalysis/src/exe/LaunchDrivers.exebin0 -> 28672 bytes-rw-r--r--migrationanalysis/src/exe/ProAnalysisWizard.exebin0 -> 843776 bytes-rw-r--r--migrationanalysis/src/msokill/StdAfx.cpp35
-rw-r--r--migrationanalysis/src/msokill/StdAfx.h54
-rw-r--r--migrationanalysis/src/msokill/makefile.mk83
-rw-r--r--migrationanalysis/src/msokill/msokill.cpp259
-rw-r--r--migrationanalysis/src/resources/analysis.dtd52
-rw-r--r--migrationanalysis/src/resources/makefile.mk59
-rw-r--r--migrationanalysis/src/resources/results_paw.xltbin0 -> 140800 bytes-rw-r--r--migrationanalysis/src/wizard/Analyse.bas589
-rw-r--r--migrationanalysis/src/wizard/CollectedFiles.cls530
-rw-r--r--migrationanalysis/src/wizard/DocAnalysisWizard.exe.manifest22
-rw-r--r--migrationanalysis/src/wizard/Get Directory Dialog.bas143
-rw-r--r--migrationanalysis/src/wizard/IniSupport.bas269
-rw-r--r--migrationanalysis/src/wizard/LaunchDrivers.vbp42
-rw-r--r--migrationanalysis/src/wizard/LaunchDrivers.vbw1
-rw-r--r--migrationanalysis/src/wizard/OOo3_Analysis.icobin0 -> 295606 bytes-rw-r--r--migrationanalysis/src/wizard/OOo_AnalysisBitmap.pngbin0 -> 8625 bytes-rw-r--r--migrationanalysis/src/wizard/Office10Issues.bas361
-rw-r--r--migrationanalysis/src/wizard/ProAnalysisWizard.vbp65
-rw-r--r--migrationanalysis/src/wizard/RunServer.bas199
-rw-r--r--migrationanalysis/src/wizard/ScanFolders.frm157
-rw-r--r--migrationanalysis/src/wizard/SearchDocs.frm124
-rw-r--r--migrationanalysis/src/wizard/Terminate.frm81
-rw-r--r--migrationanalysis/src/wizard/Utilities.bas552
-rw-r--r--migrationanalysis/src/wizard/Wizard.DCAbin0 -> 3927 bytes-rw-r--r--migrationanalysis/src/wizard/Wizard.Dsr79
-rw-r--r--migrationanalysis/src/wizard/Wizard.FRXbin0 -> 416643 bytes-rw-r--r--migrationanalysis/src/wizard/Wizard.bas651
-rw-r--r--migrationanalysis/src/wizard/Wizard.frm3453
-rw-r--r--migrationanalysis/src/wizard/makefile.mk116
-rw-r--r--migrationanalysis/src/wizard/rcfooter.txt1
-rw-r--r--migrationanalysis/src/wizard/rcheader.txt17
-rw-r--r--migrationanalysis/src/wizard/rctmpl.txt126
-rw-r--r--migrationanalysis/src/wizard/res_defines.h150
-rw-r--r--migrationanalysis/src/wizard/wizard.ulf352
-rw-r--r--migrationanalysis/util/delzip1
-rw-r--r--migrationanalysis/util/makefile.mk53
-rw-r--r--more_fonts/fonts/fc_local.conf24
-rw-r--r--more_fonts/fonts/ttf_dejavu/makefile.mk61
-rw-r--r--more_fonts/fonts/ttf_gentium/makefile.mk61
-rw-r--r--more_fonts/fonts/ttf_liberation/makefile.mk60
-rw-r--r--more_fonts/prj/build.lst5
-rw-r--r--more_fonts/prj/d.lst10
-rwxr-xr-xmoz/README4
-rw-r--r--moz/extractfiles.mk459
-rw-r--r--moz/makefile.mk424
-rw-r--r--moz/patches/arm_build_fix.patch189
-rw-r--r--moz/patches/consecutive_ldap_queries.patch13
-rw-r--r--moz/patches/cygwin_paths_in_ldap_sdk.patch12
-rw-r--r--moz/patches/dtoa.patch237
-rwxr-xr-xmoz/patches/embed_manifest.patch142
-rw-r--r--moz/patches/index.txt65
-rw-r--r--moz/patches/link_fontconfig.patch11
-rw-r--r--moz/patches/no_core_abspath_in_nss.patch52
-rw-r--r--moz/patches/respect_disable_pango.patch54
-rw-r--r--moz/patches/wchart_on_msvc8.patch20
-rw-r--r--moz/prj/build.lst4
-rw-r--r--moz/prj/d.lst240
-rw-r--r--moz/seamonkey-source-1.1.14.patch6346
-rw-r--r--moz/zipped/makefile.mk213
-rw-r--r--mysqlc/prj/build.lst3
-rw-r--r--mysqlc/prj/d.lst4
-rw-r--r--mysqlc/source/DataAccess.xcu19
-rw-r--r--mysqlc/source/README65
-rw-r--r--mysqlc/source/delzip0
-rwxr-xr-xmysqlc/source/description.xml29
-rw-r--r--mysqlc/source/description/description_de.txt1
-rwxr-xr-xmysqlc/source/description/description_en-US.txt1
-rw-r--r--mysqlc/source/description/description_es.txt1
-rw-r--r--mysqlc/source/description/description_fr.txt1
-rw-r--r--mysqlc/source/description/description_hu.txt1
-rw-r--r--mysqlc/source/description/description_it.txt1
-rw-r--r--mysqlc/source/description/description_ja.txt1
-rw-r--r--mysqlc/source/description/description_ko.txt1
-rw-r--r--mysqlc/source/description/description_nl.txt1
-rw-r--r--mysqlc/source/description/description_pl.txt1
-rw-r--r--mysqlc/source/description/description_pt-BR.txt1
-rw-r--r--mysqlc/source/description/description_pt.txt1
-rw-r--r--mysqlc/source/description/description_ru.txt1
-rw-r--r--mysqlc/source/description/description_sv.txt1
-rw-r--r--mysqlc/source/description/description_zh-CN.txt1
-rw-r--r--mysqlc/source/description/description_zh-TW.txt1
-rw-r--r--mysqlc/source/exports.dxp3
-rwxr-xr-xmysqlc/source/makefile.mk335
-rw-r--r--mysqlc/source/manifest.xml8
-rw-r--r--mysqlc/source/mysqlc.map8
-rw-r--r--mysqlc/source/mysqlc.xml81
-rw-r--r--mysqlc/source/mysqlc_connection.cxx793
-rw-r--r--mysqlc/source/mysqlc_connection.hxx252
-rw-r--r--mysqlc/source/mysqlc_databasemetadata.cxx2217
-rw-r--r--mysqlc/source/mysqlc_databasemetadata.hxx245
-rw-r--r--mysqlc/source/mysqlc_driver.cxx369
-rw-r--r--mysqlc/source/mysqlc_driver.hxx120
-rw-r--r--mysqlc/source/mysqlc_general.cxx176
-rw-r--r--mysqlc/source/mysqlc_general.hxx68
-rw-r--r--mysqlc/source/mysqlc_preparedstatement.cxx944
-rw-r--r--mysqlc/source/mysqlc_preparedstatement.hxx196
-rw-r--r--mysqlc/source/mysqlc_propertyids.cxx210
-rw-r--r--mysqlc/source/mysqlc_propertyids.hxx136
-rw-r--r--mysqlc/source/mysqlc_resultset.cxx1526
-rw-r--r--mysqlc/source/mysqlc_resultset.hxx337
-rw-r--r--mysqlc/source/mysqlc_resultsetmetadata.cxx468
-rw-r--r--mysqlc/source/mysqlc_resultsetmetadata.hxx123
-rw-r--r--mysqlc/source/mysqlc_services.cxx183
-rw-r--r--mysqlc/source/mysqlc_statement.cxx531
-rw-r--r--mysqlc/source/mysqlc_statement.hxx189
-rw-r--r--mysqlc/source/mysqlc_subcomponent.hxx255
-rw-r--r--mysqlc/source/mysqlc_types.cxx792
-rw-r--r--mysqlc/source/mysqlc_types.hxx56
-rw-r--r--mysqlc/source/registry/data/org/openoffice/Office/DataAccess/Drivers.xcu103
-rw-r--r--mysqlc/version.mk38
-rw-r--r--mysqlcppconn/cppconn_config.pmk33
-rw-r--r--mysqlcppconn/makefile.mk91
-rw-r--r--mysqlcppconn/mysql-connector-cpp.patch385
-rw-r--r--mysqlcppconn/mysql_config.pmk49
-rw-r--r--mysqlcppconn/patches/default_to_protocol_tcp.patch12
-rw-r--r--mysqlcppconn/prj/build.lst3
-rw-r--r--mysqlcppconn/prj/d.lst15
-rw-r--r--mythes/makefile.mk114
-rw-r--r--mythes/mythes-1.2.0-makefile-mk.diff94
-rw-r--r--mythes/mythes-1.2.0-vanilla-th-gen-idx.patch97
-rw-r--r--mythes/prj/build.lst3
-rw-r--r--mythes/prj/d.lst7
-rw-r--r--neon/makefile.mk91
-rw-r--r--neon/neon.patch927
-rw-r--r--neon/neon_exports_unix.patch291
-rw-r--r--neon/neon_exports_win.patch297
-rwxr-xr-xneon/prj/build.lst3
-rw-r--r--neon/prj/d.lst8
-rw-r--r--neon/version.mk37
-rw-r--r--np_sdk/mozsrc/LEGAL43
-rw-r--r--np_sdk/mozsrc/LICENSE567
-rw-r--r--np_sdk/mozsrc/README2
-rw-r--r--np_sdk/mozsrc/jri.h689
-rw-r--r--np_sdk/mozsrc/jri_md.h572
-rw-r--r--np_sdk/mozsrc/jritypes.h242
-rw-r--r--np_sdk/mozsrc/makefile.mk59
-rw-r--r--np_sdk/mozsrc/npapi.h610
-rw-r--r--np_sdk/mozsrc/npunix.c505
-rw-r--r--np_sdk/mozsrc/npupp.h1292
-rw-r--r--np_sdk/mozsrc/npwin.cpp369
-rw-r--r--np_sdk/prj/build.lst3
-rw-r--r--np_sdk/prj/d.lst7
-rw-r--r--nss/makefile.mk184
-rw-r--r--nss/nss.patch191
-rwxr-xr-xnss/nss.patch.mingw167
-rw-r--r--nss/nss_macosx.patch12
-rw-r--r--nss/prj/build.lst3
-rwxr-xr-xnss/prj/d.lst31
-rwxr-xr-xnss/readme.txt75
-rw-r--r--o3tl/inc/o3tl/cow_wrapper.hxx328
-rw-r--r--o3tl/inc/o3tl/heap_ptr.hxx311
-rw-r--r--o3tl/inc/o3tl/lazy_update.hxx271
-rw-r--r--o3tl/inc/o3tl/range.hxx189
-rw-r--r--o3tl/inc/o3tl/vector_pool.hxx132
-rw-r--r--o3tl/prj/build.lst5
-rw-r--r--o3tl/prj/d.lst2
-rw-r--r--o3tl/qa/cow_wrapper_clients.cxx180
-rw-r--r--o3tl/qa/cow_wrapper_clients.hxx128
-rw-r--r--o3tl/qa/export.map34
-rw-r--r--o3tl/qa/makefile.mk84
-rw-r--r--o3tl/qa/test-cow_wrapper.cxx129
-rw-r--r--o3tl/qa/test-heap_ptr.cxx167
-rw-r--r--o3tl/qa/test-range.cxx236
-rw-r--r--o3tl/qa/test-vector_pool.cxx71
-rw-r--r--odk/cfgWin.js981
-rwxr-xr-xodk/configure.pl795
-rw-r--r--odk/docs/common/ref/idl.css130
-rw-r--r--odk/docs/cpp/ref/cpp.css127
-rw-r--r--odk/docs/images/arrow-1.gifbin0 -> 98 bytes-rw-r--r--odk/docs/images/arrow-2.gifbin0 -> 68 bytes-rw-r--r--odk/docs/images/arrow-3.gifbin0 -> 98 bytes-rw-r--r--odk/docs/images/bg_table.gifbin0 -> 42 bytes-rw-r--r--odk/docs/images/bg_table.pngbin0 -> 128 bytes-rwxr-xr-xodk/docs/images/bg_table2.gifbin0 -> 44 bytes-rw-r--r--odk/docs/images/bg_table2.pngbin0 -> 128 bytes-rwxr-xr-xodk/docs/images/bg_table3.gifbin0 -> 44 bytes-rw-r--r--odk/docs/images/bg_table3.pngbin0 -> 128 bytes-rw-r--r--odk/docs/images/bluball.gifbin0 -> 103 bytes-rw-r--r--odk/docs/images/nada.gifbin0 -> 49 bytes-rw-r--r--odk/docs/images/nav_down.pngbin0 -> 224 bytes-rw-r--r--odk/docs/images/nav_home.pngbin0 -> 471 bytes-rw-r--r--odk/docs/images/nav_left.pngbin0 -> 223 bytes-rw-r--r--odk/docs/images/nav_right.pngbin0 -> 225 bytes-rw-r--r--odk/docs/images/nav_up.pngbin0 -> 211 bytes-rw-r--r--odk/docs/images/odk-footer-logo.gifbin0 -> 850 bytes-rw-r--r--odk/docs/images/ooo-main-app_32.pngbin0 -> 2429 bytes-rw-r--r--odk/docs/images/orc-main-app_32.pngbin0 -> 2496 bytes-rw-r--r--odk/docs/images/sdk_head-1.pngbin0 -> 11767 bytes-rw-r--r--odk/docs/images/sdk_head-2.pngbin0 -> 175 bytes-rw-r--r--odk/docs/images/sdk_line-1.gifbin0 -> 43 bytes-rw-r--r--odk/docs/images/sdk_line-2.gifbin0 -> 113 bytes-rw-r--r--odk/docs/install.html420
-rw-r--r--odk/docs/notsupported.html4
-rw-r--r--odk/docs/sdk_styles.css130
-rw-r--r--odk/docs/tools.html1094
-rw-r--r--odk/examples/CLI/CSharp/Spreadsheet/GeneralTableSample.cs206
-rw-r--r--odk/examples/CLI/CSharp/Spreadsheet/Makefile79
-rw-r--r--odk/examples/CLI/CSharp/Spreadsheet/SpreadsheetDocHelper.cs344
-rw-r--r--odk/examples/CLI/CSharp/Spreadsheet/SpreadsheetSample.cs1478
-rw-r--r--odk/examples/CLI/CSharp/Spreadsheet/ViewSample.cs165
-rw-r--r--odk/examples/CLI/VB.NET/WriterDemo/Makefile61
-rw-r--r--odk/examples/CLI/VB.NET/WriterDemo/WriterDemo.vb242
-rw-r--r--odk/examples/CLI/makefile.mk72
-rw-r--r--odk/examples/DevelopersGuide/Accessibility/ConnectionTask.java208
-rw-r--r--odk/examples/DevelopersGuide/Accessibility/EventHandler.java447
-rw-r--r--odk/examples/DevelopersGuide/Accessibility/EventListenerProxy.java232
-rw-r--r--odk/examples/DevelopersGuide/Accessibility/GraphicalDisplay.java189
-rw-r--r--odk/examples/DevelopersGuide/Accessibility/IAccessibleObjectDisplay.java46
-rw-r--r--odk/examples/DevelopersGuide/Accessibility/Makefile113
-rw-r--r--odk/examples/DevelopersGuide/Accessibility/MessageArea.java133
-rw-r--r--odk/examples/DevelopersGuide/Accessibility/NameProvider.java290
-rw-r--r--odk/examples/DevelopersGuide/Accessibility/RegistrationThread.java156
-rw-r--r--odk/examples/DevelopersGuide/Accessibility/SSR.java171
-rw-r--r--odk/examples/DevelopersGuide/Accessibility/TextualDisplay.java230
-rw-r--r--odk/examples/DevelopersGuide/Accessibility/makefile.mk73
-rw-r--r--odk/examples/DevelopersGuide/BasicAndDialogs/CreatingDialogs/CreatingDialogs.odtbin0 -> 8654 bytes-rw-r--r--odk/examples/DevelopersGuide/BasicAndDialogs/CreatingDialogs/Makefile139
-rw-r--r--odk/examples/DevelopersGuide/BasicAndDialogs/CreatingDialogs/SampleDialog.java275
-rw-r--r--odk/examples/DevelopersGuide/BasicAndDialogs/FirstStepsBasic.odtbin0 -> 18560 bytes-rw-r--r--odk/examples/DevelopersGuide/BasicAndDialogs/ToolkitControls/Makefile126
-rw-r--r--odk/examples/DevelopersGuide/BasicAndDialogs/ToolkitControls/ToolkitControls.odtbin0 -> 7793 bytes-rw-r--r--odk/examples/DevelopersGuide/BasicAndDialogs/ToolkitControls/ToolkitControls/FileDialog.xba73
-rw-r--r--odk/examples/DevelopersGuide/BasicAndDialogs/ToolkitControls/ToolkitControls/FileDialogDlg.xdl12
-rw-r--r--odk/examples/DevelopersGuide/BasicAndDialogs/ToolkitControls/ToolkitControls/MultiPage.xba286
-rw-r--r--odk/examples/DevelopersGuide/BasicAndDialogs/ToolkitControls/ToolkitControls/MultiPageDlg.xdl75
-rw-r--r--odk/examples/DevelopersGuide/BasicAndDialogs/ToolkitControls/ToolkitControls/ProgressBar.xba76
-rw-r--r--odk/examples/DevelopersGuide/BasicAndDialogs/ToolkitControls/ToolkitControls/ProgressBarDlg.xdl11
-rw-r--r--odk/examples/DevelopersGuide/BasicAndDialogs/ToolkitControls/ToolkitControls/ScrollBar.xba86
-rw-r--r--odk/examples/DevelopersGuide/BasicAndDialogs/ToolkitControls/ToolkitControls/ScrollBarDlg.xdl13
-rw-r--r--odk/examples/DevelopersGuide/BasicAndDialogs/ToolkitControls/ToolkitControls/dialog.xlb8
-rw-r--r--odk/examples/DevelopersGuide/BasicAndDialogs/ToolkitControls/ToolkitControls/script.xlb8
-rw-r--r--odk/examples/DevelopersGuide/BasicAndDialogs/makefile.mk84
-rw-r--r--odk/examples/DevelopersGuide/Charts/AddInChart.odsbin0 -> 18045 bytes-rw-r--r--odk/examples/DevelopersGuide/Charts/CalcHelper.java412
-rw-r--r--odk/examples/DevelopersGuide/Charts/ChartHelper.java261
-rw-r--r--odk/examples/DevelopersGuide/Charts/ChartInCalc.java424
-rw-r--r--odk/examples/DevelopersGuide/Charts/ChartInDraw.java308
-rw-r--r--odk/examples/DevelopersGuide/Charts/ChartInWriter.java178
-rw-r--r--odk/examples/DevelopersGuide/Charts/Helper.java170
-rw-r--r--odk/examples/DevelopersGuide/Charts/JavaSampleChartAddIn.java476
-rw-r--r--odk/examples/DevelopersGuide/Charts/ListenAtCalcRangeInDraw.java211
-rw-r--r--odk/examples/DevelopersGuide/Charts/Makefile198
-rw-r--r--odk/examples/DevelopersGuide/Charts/SelectionChangeListener.java219
-rw-r--r--odk/examples/DevelopersGuide/Charts/bullet.gifbin0 -> 335 bytes-rw-r--r--odk/examples/DevelopersGuide/Charts/makefile.mk75
-rw-r--r--odk/examples/DevelopersGuide/Components/Addons/JobsAddon/Addons.xcu81
-rw-r--r--odk/examples/DevelopersGuide/Components/Addons/JobsAddon/AsyncJob.java426
-rw-r--r--odk/examples/DevelopersGuide/Components/Addons/JobsAddon/Jobs.xcu27
-rw-r--r--odk/examples/DevelopersGuide/Components/Addons/JobsAddon/Makefile136
-rw-r--r--odk/examples/DevelopersGuide/Components/Addons/ProtocolHandlerAddon_cpp/Addons.xcu220
-rw-r--r--odk/examples/DevelopersGuide/Components/Addons/ProtocolHandlerAddon_cpp/Makefile148
-rw-r--r--odk/examples/DevelopersGuide/Components/Addons/ProtocolHandlerAddon_cpp/ProtocolHandler.xcu11
-rw-r--r--odk/examples/DevelopersGuide/Components/Addons/ProtocolHandlerAddon_cpp/addon.cxx250
-rw-r--r--odk/examples/DevelopersGuide/Components/Addons/ProtocolHandlerAddon_cpp/addon.hxx125
-rw-r--r--odk/examples/DevelopersGuide/Components/Addons/ProtocolHandlerAddon_cpp/component.cxx131
-rw-r--r--odk/examples/DevelopersGuide/Components/Addons/ProtocolHandlerAddon_java/Addons.xcu220
-rw-r--r--odk/examples/DevelopersGuide/Components/Addons/ProtocolHandlerAddon_java/Makefile138
-rw-r--r--odk/examples/DevelopersGuide/Components/Addons/ProtocolHandlerAddon_java/ProtocolHandler.xcu10
-rw-r--r--odk/examples/DevelopersGuide/Components/Addons/ProtocolHandlerAddon_java/ProtocolHandlerAddon.java283
-rw-r--r--odk/examples/DevelopersGuide/Components/CppComponent/Makefile220
-rw-r--r--odk/examples/DevelopersGuide/Components/CppComponent/SimpleComponent.odtbin0 -> 8841 bytes-rw-r--r--odk/examples/DevelopersGuide/Components/CppComponent/TestCppComponent.cxx89
-rw-r--r--odk/examples/DevelopersGuide/Components/CppComponent/service1_impl.cxx309
-rw-r--r--odk/examples/DevelopersGuide/Components/CppComponent/service2_impl.cxx225
-rw-r--r--odk/examples/DevelopersGuide/Components/CppComponent/some.idl54
-rw-r--r--odk/examples/DevelopersGuide/Components/JavaComponent/Makefile204
-rw-r--r--odk/examples/DevelopersGuide/Components/JavaComponent/SomethingA.idl46
-rw-r--r--odk/examples/DevelopersGuide/Components/JavaComponent/SomethingB.idl46
-rw-r--r--odk/examples/DevelopersGuide/Components/JavaComponent/TestComponentA.java71
-rw-r--r--odk/examples/DevelopersGuide/Components/JavaComponent/TestComponentB.java100
-rw-r--r--odk/examples/DevelopersGuide/Components/JavaComponent/TestJavaComponent.java143
-rw-r--r--odk/examples/DevelopersGuide/Components/JavaComponent/TestServiceProvider.java71
-rw-r--r--odk/examples/DevelopersGuide/Components/JavaComponent/XSomethingA.idl48
-rw-r--r--odk/examples/DevelopersGuide/Components/JavaComponent/XSomethingB.idl48
-rw-r--r--odk/examples/DevelopersGuide/Components/SimpleLicense/LicenseTest.idl50
-rw-r--r--odk/examples/DevelopersGuide/Components/SimpleLicense/LicenseTest.java171
-rw-r--r--odk/examples/DevelopersGuide/Components/SimpleLicense/Makefile170
-rw-r--r--odk/examples/DevelopersGuide/Components/SimpleLicense/description.xml12
-rw-r--r--odk/examples/DevelopersGuide/Components/SimpleLicense/registration/license_de.txt1
-rw-r--r--odk/examples/DevelopersGuide/Components/SimpleLicense/registration/license_en_US.txt1
-rw-r--r--odk/examples/DevelopersGuide/Components/Thumbs/Makefile81
-rw-r--r--odk/examples/DevelopersGuide/Components/Thumbs/org/openoffice/comp/test/ImageShrink.java158
-rw-r--r--odk/examples/DevelopersGuide/Components/Thumbs/org/openoffice/comp/test/Makefile128
-rw-r--r--odk/examples/DevelopersGuide/Components/Thumbs/org/openoffice/comp/test/Thumbs.java79
-rw-r--r--odk/examples/DevelopersGuide/Components/Thumbs/org/openoffice/test/ImageShrink.idl46
-rw-r--r--odk/examples/DevelopersGuide/Components/Thumbs/org/openoffice/test/Makefile73
-rw-r--r--odk/examples/DevelopersGuide/Components/Thumbs/org/openoffice/test/XImageShrink.idl53
-rw-r--r--odk/examples/DevelopersGuide/Components/Thumbs/org/openoffice/test/XImageShrinkFilter.idl50
-rw-r--r--odk/examples/DevelopersGuide/Components/Thumbs/thumbs.mk27
-rw-r--r--odk/examples/DevelopersGuide/Components/dialogcomponent/DialogComponent.java324
-rw-r--r--odk/examples/DevelopersGuide/Components/dialogcomponent/DialogComponent.odtbin0 -> 11902 bytes-rw-r--r--odk/examples/DevelopersGuide/Components/dialogcomponent/Makefile177
-rw-r--r--odk/examples/DevelopersGuide/Components/dialogcomponent/TestDialogHandler.idl47
-rw-r--r--odk/examples/DevelopersGuide/Components/dialogcomponent/XTestDialogHandler.idl53
-rw-r--r--odk/examples/DevelopersGuide/Components/makefile.mk123
-rw-r--r--odk/examples/DevelopersGuide/Config/ConfigExamples.java1202
-rw-r--r--odk/examples/DevelopersGuide/Config/Makefile99
-rw-r--r--odk/examples/DevelopersGuide/Config/makefile.mk64
-rw-r--r--odk/examples/DevelopersGuide/Database/CodeSamples.java356
-rw-r--r--odk/examples/DevelopersGuide/Database/DriverSkeleton/How_to_write_my_own_driver.txt25
-rw-r--r--odk/examples/DevelopersGuide/Database/DriverSkeleton/Makefile150
-rw-r--r--odk/examples/DevelopersGuide/Database/DriverSkeleton/OSubComponent.hxx252
-rw-r--r--odk/examples/DevelopersGuide/Database/DriverSkeleton/OTypeInfo.hxx98
-rw-r--r--odk/examples/DevelopersGuide/Database/DriverSkeleton/SConnection.cxx402
-rw-r--r--odk/examples/DevelopersGuide/Database/DriverSkeleton/SConnection.hxx155
-rw-r--r--odk/examples/DevelopersGuide/Database/DriverSkeleton/SDatabaseMetaData.cxx887
-rw-r--r--odk/examples/DevelopersGuide/Database/DriverSkeleton/SDatabaseMetaData.hxx218
-rw-r--r--odk/examples/DevelopersGuide/Database/DriverSkeleton/SDriver.cxx210
-rw-r--r--odk/examples/DevelopersGuide/Database/DriverSkeleton/SDriver.hxx85
-rw-r--r--odk/examples/DevelopersGuide/Database/DriverSkeleton/SPreparedStatement.cxx388
-rw-r--r--odk/examples/DevelopersGuide/Database/DriverSkeleton/SPreparedStatement.hxx146
-rw-r--r--odk/examples/DevelopersGuide/Database/DriverSkeleton/SResultSet.cxx873
-rw-r--r--odk/examples/DevelopersGuide/Database/DriverSkeleton/SResultSet.hxx218
-rw-r--r--odk/examples/DevelopersGuide/Database/DriverSkeleton/SResultSetMetaData.cxx169
-rw-r--r--odk/examples/DevelopersGuide/Database/DriverSkeleton/SResultSetMetaData.hxx90
-rw-r--r--odk/examples/DevelopersGuide/Database/DriverSkeleton/SServices.cxx180
-rw-r--r--odk/examples/DevelopersGuide/Database/DriverSkeleton/SStatement.cxx368
-rw-r--r--odk/examples/DevelopersGuide/Database/DriverSkeleton/SStatement.hxx175
-rw-r--r--odk/examples/DevelopersGuide/Database/DriverSkeleton/propertyids.cxx182
-rw-r--r--odk/examples/DevelopersGuide/Database/DriverSkeleton/propertyids.hxx161
-rw-r--r--odk/examples/DevelopersGuide/Database/Makefile134
-rw-r--r--odk/examples/DevelopersGuide/Database/OpenQuery.java162
-rw-r--r--odk/examples/DevelopersGuide/Database/RowSet.java241
-rw-r--r--odk/examples/DevelopersGuide/Database/RowSetEventListener.java77
-rw-r--r--odk/examples/DevelopersGuide/Database/Sales.java250
-rw-r--r--odk/examples/DevelopersGuide/Database/SalesMan.java145
-rw-r--r--odk/examples/DevelopersGuide/Database/makefile.mk95
-rw-r--r--odk/examples/DevelopersGuide/Database/sdbcx.java420
-rw-r--r--odk/examples/DevelopersGuide/Drawing/ChangeOrderDemo.java115
-rw-r--r--odk/examples/DevelopersGuide/Drawing/ControlAndSelectDemo.java143
-rw-r--r--odk/examples/DevelopersGuide/Drawing/CustomShowDemo.java173
-rw-r--r--odk/examples/DevelopersGuide/Drawing/DrawViewDemo.java141
-rw-r--r--odk/examples/DevelopersGuide/Drawing/DrawingDemo.java426
-rw-r--r--odk/examples/DevelopersGuide/Drawing/FillAndLineStyleDemo.java133
-rw-r--r--odk/examples/DevelopersGuide/Drawing/GluePointDemo.java188
-rw-r--r--odk/examples/DevelopersGuide/Drawing/GraphicExportDemo.java152
-rw-r--r--odk/examples/DevelopersGuide/Drawing/Helper.java83
-rw-r--r--odk/examples/DevelopersGuide/Drawing/LayerDemo.java156
-rw-r--r--odk/examples/DevelopersGuide/Drawing/Makefile175
-rw-r--r--odk/examples/DevelopersGuide/Drawing/ObjectTransformationDemo.java133
-rw-r--r--odk/examples/DevelopersGuide/Drawing/Organigram.java191
-rw-r--r--odk/examples/DevelopersGuide/Drawing/PageHelper.java223
-rw-r--r--odk/examples/DevelopersGuide/Drawing/PresentationDemo.java239
-rw-r--r--odk/examples/DevelopersGuide/Drawing/ShapeHelper.java145
-rw-r--r--odk/examples/DevelopersGuide/Drawing/SimplePresentation.odpbin0 -> 74753 bytes-rw-r--r--odk/examples/DevelopersGuide/Drawing/StyleDemo.java174
-rw-r--r--odk/examples/DevelopersGuide/Drawing/TextDemo.java155
-rw-r--r--odk/examples/DevelopersGuide/Drawing/makefile.mk81
-rw-r--r--odk/examples/DevelopersGuide/Extensions/DialogWithHelp/Addons.xcu58
-rw-r--r--odk/examples/DevelopersGuide/Extensions/DialogWithHelp/DialogWithHelp/Dialog1.xdl10
-rw-r--r--odk/examples/DevelopersGuide/Extensions/DialogWithHelp/DialogWithHelp/Module1.xba16
-rw-r--r--odk/examples/DevelopersGuide/Extensions/DialogWithHelp/DialogWithHelp/dialog.xlb5
-rw-r--r--odk/examples/DevelopersGuide/Extensions/DialogWithHelp/DialogWithHelp/script.xlb5
-rw-r--r--odk/examples/DevelopersGuide/Extensions/DialogWithHelp/META-INF/manifest.xml6
-rw-r--r--odk/examples/DevelopersGuide/Extensions/DialogWithHelp/Makefile118
-rw-r--r--odk/examples/DevelopersGuide/Extensions/DialogWithHelp/description.xml8
-rw-r--r--odk/examples/DevelopersGuide/Extensions/DialogWithHelp/help/de/com.foocorp.foo-ext/page1.xhp73
-rw-r--r--odk/examples/DevelopersGuide/Extensions/DialogWithHelp/help/de/com.foocorp.foo-ext/page2.xhp27
-rw-r--r--odk/examples/DevelopersGuide/Extensions/DialogWithHelp/help/de/com.foocorp.foo-ext/subfolder/anotherpage.xhp100
-rw-r--r--odk/examples/DevelopersGuide/Extensions/DialogWithHelp/help/en/com.foocorp.foo-ext/page1.xhp73
-rw-r--r--odk/examples/DevelopersGuide/Extensions/DialogWithHelp/help/en/com.foocorp.foo-ext/page2.xhp26
-rw-r--r--odk/examples/DevelopersGuide/Extensions/DialogWithHelp/help/en/com.foocorp.foo-ext/subfolder/anotherpage.xhp100
-rw-r--r--odk/examples/DevelopersGuide/FirstSteps/FirstConnection.java58
-rw-r--r--odk/examples/DevelopersGuide/FirstSteps/FirstLoadComponent.java329
-rw-r--r--odk/examples/DevelopersGuide/FirstSteps/FirstUnoContact.java58
-rw-r--r--odk/examples/DevelopersGuide/FirstSteps/HelloTextTableShape.java462
-rw-r--r--odk/examples/DevelopersGuide/FirstSteps/Makefile101
-rw-r--r--odk/examples/DevelopersGuide/FirstSteps/build_FirstUnoContact.xml64
-rw-r--r--odk/examples/DevelopersGuide/FirstSteps/makefile.mk67
-rw-r--r--odk/examples/DevelopersGuide/Forms/BooleanValidator.java85
-rw-r--r--odk/examples/DevelopersGuide/Forms/ButtonOperator.java223
-rw-r--r--odk/examples/DevelopersGuide/Forms/ComponentTreeTraversal.java91
-rw-r--r--odk/examples/DevelopersGuide/Forms/ControlLock.java219
-rw-r--r--odk/examples/DevelopersGuide/Forms/ControlValidation.java100
-rw-r--r--odk/examples/DevelopersGuide/Forms/ControlValidator.java60
-rw-r--r--odk/examples/DevelopersGuide/Forms/DataAwareness.java932
-rw-r--r--odk/examples/DevelopersGuide/Forms/DateValidator.java102
-rw-r--r--odk/examples/DevelopersGuide/Forms/DocumentBasedExample.java228
-rw-r--r--odk/examples/DevelopersGuide/Forms/DocumentHelper.java320
-rw-r--r--odk/examples/DevelopersGuide/Forms/DocumentType.java59
-rw-r--r--odk/examples/DevelopersGuide/Forms/DocumentViewHelper.java230
-rw-r--r--odk/examples/DevelopersGuide/Forms/FLTools.java270
-rw-r--r--odk/examples/DevelopersGuide/Forms/FormLayer.java294
-rw-r--r--odk/examples/DevelopersGuide/Forms/GridFieldValidator.java176
-rw-r--r--odk/examples/DevelopersGuide/Forms/HsqlDatabase.java256
-rw-r--r--odk/examples/DevelopersGuide/Forms/InteractionRequest.java76
-rw-r--r--odk/examples/DevelopersGuide/Forms/KeyGenerator.java432
-rw-r--r--odk/examples/DevelopersGuide/Forms/ListSelectionValidator.java69
-rw-r--r--odk/examples/DevelopersGuide/Forms/Makefile197
-rw-r--r--odk/examples/DevelopersGuide/Forms/NumericValidator.java89
-rw-r--r--odk/examples/DevelopersGuide/Forms/ProgrammaticScriptAssignment.odtbin0 -> 19198 bytes-rw-r--r--odk/examples/DevelopersGuide/Forms/RowSet.java290
-rw-r--r--odk/examples/DevelopersGuide/Forms/SalesFilter.java512
-rw-r--r--odk/examples/DevelopersGuide/Forms/SingleControlValidation.java187
-rw-r--r--odk/examples/DevelopersGuide/Forms/SpreadsheetDocument.java131
-rw-r--r--odk/examples/DevelopersGuide/Forms/SpreadsheetValueBinding.java136
-rw-r--r--odk/examples/DevelopersGuide/Forms/SpreadsheetView.java76
-rw-r--r--odk/examples/DevelopersGuide/Forms/TableCellTextBinding.java210
-rw-r--r--odk/examples/DevelopersGuide/Forms/TextValidator.java89
-rw-r--r--odk/examples/DevelopersGuide/Forms/TimeValidator.java94
-rw-r--r--odk/examples/DevelopersGuide/Forms/UNO.java90
-rw-r--r--odk/examples/DevelopersGuide/Forms/URLHelper.java72
-rw-r--r--odk/examples/DevelopersGuide/Forms/ValueBinding.java88
-rw-r--r--odk/examples/DevelopersGuide/Forms/WaitForInput.java64
-rw-r--r--odk/examples/DevelopersGuide/Forms/makefile.mk97
-rw-r--r--odk/examples/DevelopersGuide/GUI/DialogDocument.java145
-rw-r--r--odk/examples/DevelopersGuide/GUI/ImageControlSample.java163
-rw-r--r--odk/examples/DevelopersGuide/GUI/Makefile142
-rw-r--r--odk/examples/DevelopersGuide/GUI/MessageBox.java245
-rw-r--r--odk/examples/DevelopersGuide/GUI/RoadmapItemStateChangeListener.java68
-rw-r--r--odk/examples/DevelopersGuide/GUI/SystemDialog.java186
-rw-r--r--odk/examples/DevelopersGuide/GUI/UnoDialogSample.java1482
-rw-r--r--odk/examples/DevelopersGuide/GUI/UnoDialogSample2.java264
-rw-r--r--odk/examples/DevelopersGuide/GUI/UnoMenu.java167
-rw-r--r--odk/examples/DevelopersGuide/GUI/UnoMenu2.java95
-rw-r--r--odk/examples/DevelopersGuide/GUI/oologo.gifbin0 -> 2563 bytes-rw-r--r--odk/examples/DevelopersGuide/OfficeBean/Makefile89
-rw-r--r--odk/examples/DevelopersGuide/OfficeBean/OOoBeanViewer.java407
-rw-r--r--odk/examples/DevelopersGuide/OfficeBean/OfficeIconColor16.jpgbin0 -> 321 bytes-rw-r--r--odk/examples/DevelopersGuide/OfficeBean/OfficeIconColor32.jpgbin0 -> 569 bytes-rw-r--r--odk/examples/DevelopersGuide/OfficeBean/OfficeIconMono16.jpgbin0 -> 321 bytes-rw-r--r--odk/examples/DevelopersGuide/OfficeBean/OfficeIconMono32.jpgbin0 -> 569 bytes-rw-r--r--odk/examples/DevelopersGuide/OfficeBean/makefile.mk68
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/Clipboard/Clipboard.java229
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/Clipboard/ClipboardListener.java55
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/Clipboard/ClipboardOwner.java60
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/Clipboard/Makefile99
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/Clipboard/TextTransferable.java85
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/ContextMenuInterceptor.java256
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/CustomizeView.java298
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Desk.java96
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java430
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java1060
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IOnewayLink.java70
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IShutdownListener.java47
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Install.txt10
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Interceptor.java672
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/JavaWindowPeerFake.java107
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Makefile128
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/NativeView.java182
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OfficeConnect.java205
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OnewayExecutor.java240
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusListener.java478
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java266
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/ViewContainer.java269
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/unix/Makefile73
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/unix/nativeview.c111
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/unix/nativeview.h63
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/windows/Makefile78
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/windows/nativeview.c178
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/windows/nativeview.def3
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/windows/nativeview.h63
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DisableCommands/DisableCommandsTest.java411
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DisableCommands/Makefile92
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/AsciiReplaceFilter.java733
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/FilterOptions.java230
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/Makefile138
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/TypeDetection.xcu29
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/FlatXmlFilterDetection/FlatXmlTypeDetection.xcu71
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/FlatXmlFilterDetection/Makefile150
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/FlatXmlFilterDetection/fdcomp.cxx109
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/FlatXmlFilterDetection/filterdetect.cxx254
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/FlatXmlFilterDetection/filterdetect.hxx118
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/FlatXmlFilter_cpp/FlatXml.cxx373
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/FlatXmlFilter_cpp/FlatXmlFilter_cpp.uno.xml59
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/FlatXmlFilter_cpp/FlatXmlFilter_cpp.xcu86
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/FlatXmlFilter_cpp/Makefile148
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/FlatXmlFilter_java/FlatXml.java273
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/FlatXmlFilter_java/FlatXmlFilter_java.xcu86
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/FlatXmlFilter_java/Makefile141
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/Linguistic/LinguisticExamples.java368
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/Linguistic/Makefile237
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/Linguistic/OneInstanceFactory.java155
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/Linguistic/PropChgHelper.java194
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/Linguistic/PropChgHelper_Hyph.java86
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/Linguistic/PropChgHelper_Spell.java110
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/Linguistic/SampleHyphenator.java548
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/Linguistic/SampleSpellChecker.java491
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/Linguistic/SampleThesaurus.java328
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/Linguistic/XHyphenatedWord_impl.java97
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/Linguistic/XMeaning_impl.java69
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/Linguistic/XPossibleHyphens_impl.java89
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/Linguistic/XSpellAlternatives_impl.java92
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/Makefile106
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/MenuElement.java56
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/Number_Formats.java253
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/OfficeConnect.java184
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/PathSettings/Makefile92
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/PathSettings/PathSettingsTest.java168
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/PathSubstitution/Makefile92
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/PathSubstitution/PathSubstitutionTest.java119
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/TerminationTest/Makefile97
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/TerminationTest/TerminateListener.java60
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/TerminationTest/TerminationTest.java101
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/makefile.mk180
-rw-r--r--odk/examples/DevelopersGuide/ProfUNO/CppBinding/Makefile140
-rw-r--r--odk/examples/DevelopersGuide/ProfUNO/CppBinding/office_connect.cxx104
-rw-r--r--odk/examples/DevelopersGuide/ProfUNO/CppBinding/office_connect.ini2
-rw-r--r--odk/examples/DevelopersGuide/ProfUNO/CppBinding/office_connectrc2
-rw-r--r--odk/examples/DevelopersGuide/ProfUNO/CppBinding/string_samples.cxx84
-rw-r--r--odk/examples/DevelopersGuide/ProfUNO/InterprocessConn/ConnectionAwareClient.java260
-rw-r--r--odk/examples/DevelopersGuide/ProfUNO/InterprocessConn/Makefile86
-rw-r--r--odk/examples/DevelopersGuide/ProfUNO/InterprocessConn/UrlResolver.java111
-rw-r--r--odk/examples/DevelopersGuide/ProfUNO/Lifetime/Makefile113
-rw-r--r--odk/examples/DevelopersGuide/ProfUNO/Lifetime/MyUnoObject.java60
-rw-r--r--odk/examples/DevelopersGuide/ProfUNO/Lifetime/object_lifetime.cxx68
-rw-r--r--odk/examples/DevelopersGuide/ProfUNO/SimpleBootstrap_cpp/Makefile101
-rw-r--r--odk/examples/DevelopersGuide/ProfUNO/SimpleBootstrap_cpp/SimpleBootstrap_cpp.cxx102
-rw-r--r--odk/examples/DevelopersGuide/ProfUNO/SimpleBootstrap_java/Makefile91
-rw-r--r--odk/examples/DevelopersGuide/ProfUNO/SimpleBootstrap_java/SimpleBootstrap_java.java76
-rw-r--r--odk/examples/DevelopersGuide/ProfUNO/SimpleBootstrap_java/manifest.mf4
-rw-r--r--odk/examples/DevelopersGuide/ProfUNO/makefile.mk95
-rw-r--r--odk/examples/DevelopersGuide/ScriptingFramework/SayHello/META-INF/manifest.xml5
-rw-r--r--odk/examples/DevelopersGuide/ScriptingFramework/SayHello/Makefile129
-rw-r--r--odk/examples/DevelopersGuide/ScriptingFramework/SayHello/SayHello.odtbin0 -> 8874 bytes-rw-r--r--odk/examples/DevelopersGuide/ScriptingFramework/SayHello/SayHello/SayHello.java46
-rw-r--r--odk/examples/DevelopersGuide/ScriptingFramework/SayHello/SayHello/parcel-descriptor.xml17
-rwxr-xr-xodk/examples/DevelopersGuide/ScriptingFramework/SayHello/build.xml81
-rw-r--r--odk/examples/DevelopersGuide/ScriptingFramework/ScriptSelector/META-INF/manifest.xml5
-rw-r--r--odk/examples/DevelopersGuide/ScriptingFramework/ScriptSelector/Makefile131
-rw-r--r--odk/examples/DevelopersGuide/ScriptingFramework/ScriptSelector/ScriptSelector.odtbin0 -> 8921 bytes-rw-r--r--odk/examples/DevelopersGuide/ScriptingFramework/ScriptSelector/ScriptSelector/ScriptSelector.java397
-rw-r--r--odk/examples/DevelopersGuide/ScriptingFramework/ScriptSelector/ScriptSelector/container.gifbin0 -> 164 bytes-rw-r--r--odk/examples/DevelopersGuide/ScriptingFramework/ScriptSelector/ScriptSelector/parcel-descriptor.xml17
-rw-r--r--odk/examples/DevelopersGuide/ScriptingFramework/ScriptSelector/ScriptSelector/script.gifbin0 -> 187 bytes-rw-r--r--odk/examples/DevelopersGuide/ScriptingFramework/ScriptSelector/ScriptSelector/soffice.gifbin0 -> 136 bytes-rwxr-xr-xodk/examples/DevelopersGuide/ScriptingFramework/ScriptSelector/build.xml81
-rw-r--r--odk/examples/DevelopersGuide/ScriptingFramework/makefile.mk79
-rw-r--r--odk/examples/DevelopersGuide/Spreadsheet/DataPilotReadme.txt30
-rw-r--r--odk/examples/DevelopersGuide/Spreadsheet/ExampleAddIn.java314
-rw-r--r--odk/examples/DevelopersGuide/Spreadsheet/ExampleAddIn.odsbin0 -> 8961 bytes-rw-r--r--odk/examples/DevelopersGuide/Spreadsheet/ExampleDataPilotSource.java981
-rw-r--r--odk/examples/DevelopersGuide/Spreadsheet/GeneralTableSample.java241
-rw-r--r--odk/examples/DevelopersGuide/Spreadsheet/Makefile306
-rw-r--r--odk/examples/DevelopersGuide/Spreadsheet/SpreadsheetDocHelper.java405
-rw-r--r--odk/examples/DevelopersGuide/Spreadsheet/SpreadsheetSample.java1417
-rw-r--r--odk/examples/DevelopersGuide/Spreadsheet/ViewSample.java170
-rw-r--r--odk/examples/DevelopersGuide/Spreadsheet/XExampleAddIn.idl60
-rw-r--r--odk/examples/DevelopersGuide/Spreadsheet/makefile.mk72
-rw-r--r--odk/examples/DevelopersGuide/Text/Makefile96
-rw-r--r--odk/examples/DevelopersGuide/Text/PrintDemo.odtbin0 -> 6909 bytes-rw-r--r--odk/examples/DevelopersGuide/Text/TextDocuments.java1792
-rw-r--r--odk/examples/DevelopersGuide/Text/TextTemplateWithUserFields.odtbin0 -> 6641 bytes-rw-r--r--odk/examples/DevelopersGuide/Text/makefile.mk67
-rw-r--r--odk/examples/DevelopersGuide/UCB/ChildrenRetriever.java348
-rw-r--r--odk/examples/DevelopersGuide/UCB/DataStreamComposer.java258
-rw-r--r--odk/examples/DevelopersGuide/UCB/DataStreamRetriever.java233
-rw-r--r--odk/examples/DevelopersGuide/UCB/Helper.java250
-rw-r--r--odk/examples/DevelopersGuide/UCB/Makefile156
-rw-r--r--odk/examples/DevelopersGuide/UCB/MyActiveDataSink.java73
-rw-r--r--odk/examples/DevelopersGuide/UCB/MyInputStream.java190
-rw-r--r--odk/examples/DevelopersGuide/UCB/PropertiesComposer.java299
-rw-r--r--odk/examples/DevelopersGuide/UCB/PropertiesRetriever.java254
-rw-r--r--odk/examples/DevelopersGuide/UCB/ResourceCreator.java313
-rw-r--r--odk/examples/DevelopersGuide/UCB/ResourceManager.java289
-rw-r--r--odk/examples/DevelopersGuide/UCB/ResourceRemover.java180
-rw-r--r--odk/examples/DevelopersGuide/UCB/data/data.txt1
-rw-r--r--odk/examples/DevelopersGuide/UCB/makefile.mk75
-rw-r--r--odk/examples/DevelopersGuide/examples.html3032
-rw-r--r--odk/examples/OLE/activex/Makefile122
-rw-r--r--odk/examples/OLE/activex/README.txt39
-rw-r--r--odk/examples/OLE/activex/SOActiveX.cpp645
-rw-r--r--odk/examples/OLE/activex/SOActiveX.h166
-rw-r--r--odk/examples/OLE/activex/SOActiveX.rgs33
-rw-r--r--odk/examples/OLE/activex/SOComWindowPeer.cpp58
-rw-r--r--odk/examples/OLE/activex/SOComWindowPeer.h162
-rw-r--r--odk/examples/OLE/activex/SOComWindowPeer.rgs23
-rw-r--r--odk/examples/OLE/activex/StdAfx2.cpp46
-rw-r--r--odk/examples/OLE/activex/StdAfx2.h65
-rw-r--r--odk/examples/OLE/activex/example.html26
-rw-r--r--odk/examples/OLE/activex/resource.h55
-rw-r--r--odk/examples/OLE/activex/so_activex.cpp108
-rw-r--r--odk/examples/OLE/activex/so_activex.def5
-rw-r--r--odk/examples/OLE/activex/so_activex.idl138
-rw-r--r--odk/examples/OLE/activex/so_activex.rc136
-rw-r--r--odk/examples/OLE/delphi/InsertTables/Project1.dpr14
-rw-r--r--odk/examples/OLE/delphi/InsertTables/Project1.res0
-rw-r--r--odk/examples/OLE/delphi/InsertTables/SampleCode.pas393
-rw-r--r--odk/examples/OLE/delphi/InsertTables/SampleUI.dfm4
-rw-r--r--odk/examples/OLE/delphi/InsertTables/SampleUI.pas168
-rw-r--r--odk/examples/OLE/delphi/StarOffice_Delphi.sxwbin0 -> 34970 bytes-rw-r--r--odk/examples/OLE/delphi/StarOffice_and_Delphi.pdfbin0 -> 60963 bytes-rw-r--r--odk/examples/OLE/makefile.mk93
-rw-r--r--odk/examples/OLE/vbscript/WriterDemo.vbs172
-rw-r--r--odk/examples/OLE/vbscript/readme.txt4
-rw-r--r--odk/examples/basic/drawing/dirtree.txt20
-rw-r--r--odk/examples/basic/drawing/importexportofasciifiles.odgbin0 -> 11125 bytes-rw-r--r--odk/examples/basic/forms_and_controls/beef.wmfbin0 -> 9856 bytes-rw-r--r--odk/examples/basic/forms_and_controls/burger.wmfbin0 -> 84308 bytes-rw-r--r--odk/examples/basic/forms_and_controls/burger_factory.odtbin0 -> 18934 bytes-rw-r--r--odk/examples/basic/forms_and_controls/chicken.wmfbin0 -> 14272 bytes-rw-r--r--odk/examples/basic/forms_and_controls/fish.wmfbin0 -> 13716 bytes-rw-r--r--odk/examples/basic/forms_and_controls/vegetable.wmfbin0 -> 17862 bytes-rw-r--r--odk/examples/basic/makefile.mk91
-rw-r--r--odk/examples/basic/sheet/adapting_to_euroland.odsbin0 -> 9964 bytes-rw-r--r--odk/examples/basic/stock_quotes_updater/stock.odsbin0 -> 21540 bytes-rw-r--r--odk/examples/basic/text/creating_an_index/index.odtbin0 -> 13160 bytes-rw-r--r--odk/examples/basic/text/creating_an_index/indexlist.txt9
-rw-r--r--odk/examples/basic/text/modifying_text_automatically/changing_appearance.odtbin0 -> 9883 bytes-rw-r--r--odk/examples/basic/text/modifying_text_automatically/inserting_bookmarks.odtbin0 -> 10207 bytes-rw-r--r--odk/examples/basic/text/modifying_text_automatically/replacing_text.odtbin0 -> 10021 bytes-rw-r--r--odk/examples/basic/text/modifying_text_automatically/using_regular_expressions.odtbin0 -> 10072 bytes-rw-r--r--odk/examples/cpp/DocumentLoader/DocumentLoader.cxx167
-rw-r--r--odk/examples/cpp/DocumentLoader/Makefile127
-rw-r--r--odk/examples/cpp/DocumentLoader/test.odtbin0 -> 6737 bytes-rw-r--r--odk/examples/cpp/complextoolbarcontrols/Addons.xcu170
-rw-r--r--odk/examples/cpp/complextoolbarcontrols/CalcListener.cxx39
-rw-r--r--odk/examples/cpp/complextoolbarcontrols/CalcWindowState.xcu21
-rw-r--r--odk/examples/cpp/complextoolbarcontrols/Jobs.xcu23
-rw-r--r--odk/examples/cpp/complextoolbarcontrols/ListenerHelper.cxx144
-rw-r--r--odk/examples/cpp/complextoolbarcontrols/ListenerHelper.h82
-rw-r--r--odk/examples/cpp/complextoolbarcontrols/Makefile166
-rw-r--r--odk/examples/cpp/complextoolbarcontrols/MyJob.cxx109
-rw-r--r--odk/examples/cpp/complextoolbarcontrols/MyJob.h150
-rw-r--r--odk/examples/cpp/complextoolbarcontrols/MyListener.cxx167
-rw-r--r--odk/examples/cpp/complextoolbarcontrols/MyListener.h96
-rw-r--r--odk/examples/cpp/complextoolbarcontrols/MyProtocolHandler.cxx539
-rw-r--r--odk/examples/cpp/complextoolbarcontrols/MyProtocolHandler.h141
-rw-r--r--odk/examples/cpp/complextoolbarcontrols/ProtocolHandler.xcu10
-rw-r--r--odk/examples/cpp/complextoolbarcontrols/WriterListener.cxx47
-rw-r--r--odk/examples/cpp/complextoolbarcontrols/WriterWindowState.xcu21
-rw-r--r--odk/examples/cpp/complextoolbarcontrols/exports.cxx120
-rw-r--r--odk/examples/cpp/complextoolbarcontrols/logo_big.pngbin0 -> 616 bytes-rw-r--r--odk/examples/cpp/complextoolbarcontrols/logo_small.pngbin0 -> 585 bytes-rw-r--r--odk/examples/cpp/counter/Makefile161
-rw-r--r--odk/examples/cpp/counter/XCountable.idl55
-rw-r--r--odk/examples/cpp/counter/counter.cxx238
-rw-r--r--odk/examples/cpp/counter/countermain.cxx122
-rw-r--r--odk/examples/cpp/makefile.mk80
-rw-r--r--odk/examples/cpp/remoteclient/Makefile160
-rw-r--r--odk/examples/cpp/remoteclient/remoteclient.cxx283
-rw-r--r--odk/examples/examples.html750
-rw-r--r--odk/examples/java/ConverterServlet/ConverterServlet.html46
-rw-r--r--odk/examples/java/ConverterServlet/ConverterServlet.java336
-rw-r--r--odk/examples/java/ConverterServlet/Makefile94
-rw-r--r--odk/examples/java/ConverterServlet/README38
-rw-r--r--odk/examples/java/ConverterServlet/web.xml23
-rw-r--r--odk/examples/java/DocumentHandling/DocumentConverter.java225
-rw-r--r--odk/examples/java/DocumentHandling/DocumentLoader.java92
-rw-r--r--odk/examples/java/DocumentHandling/DocumentPrinter.java109
-rw-r--r--odk/examples/java/DocumentHandling/DocumentSaver.java131
-rw-r--r--odk/examples/java/DocumentHandling/Makefile145
-rw-r--r--odk/examples/java/DocumentHandling/test/test1.odtbin0 -> 7999 bytes-rw-r--r--odk/examples/java/Drawing/Makefile92
-rw-r--r--odk/examples/java/Drawing/SDraw.java272
-rw-r--r--odk/examples/java/EmbedDocument/Container1/EmbedContApp.java1024
-rw-r--r--odk/examples/java/EmbedDocument/Container1/EmbedContFrame.java108
-rw-r--r--odk/examples/java/EmbedDocument/Container1/Makefile48
-rwxr-xr-xodk/examples/java/EmbedDocument/EmbeddedObject/EditorFrame.java121
-rw-r--r--odk/examples/java/EmbedDocument/EmbeddedObject/EmbeddedObject.odtbin0 -> 9975 bytes-rwxr-xr-xodk/examples/java/EmbedDocument/EmbeddedObject/EmbeddedObject.xcu28
-rw-r--r--odk/examples/java/EmbedDocument/EmbeddedObject/Makefile147
-rwxr-xr-xodk/examples/java/EmbedDocument/EmbeddedObject/OwnEmbeddedObject.java1124
-rwxr-xr-xodk/examples/java/EmbedDocument/EmbeddedObject/OwnEmbeddedObjectFactory.java101
-rwxr-xr-xodk/examples/java/Inspector/Addon.xcu28
-rwxr-xr-xodk/examples/java/Inspector/Addons.xcu23
-rw-r--r--odk/examples/java/Inspector/HideableMutableTreeNode.java88
-rw-r--r--odk/examples/java/Inspector/HideableTreeModel.java298
-rw-r--r--odk/examples/java/Inspector/Inspector.java461
-rw-r--r--odk/examples/java/Inspector/InspectorAddon.java228
-rw-r--r--odk/examples/java/Inspector/InspectorPane.java629
-rw-r--r--odk/examples/java/Inspector/InstanceInspector.idl52
-rw-r--r--odk/examples/java/Inspector/InstanceInspectorTest.odtbin0 -> 12272 bytes-rw-r--r--odk/examples/java/Inspector/Introspector.java667
-rw-r--r--odk/examples/java/Inspector/Makefile195
-rw-r--r--odk/examples/java/Inspector/MethodParametersDialog.java353
-rwxr-xr-xodk/examples/java/Inspector/ObjectInspector.xcs18
-rwxr-xr-xodk/examples/java/Inspector/ObjectInspector.xcu18
-rwxr-xr-xodk/examples/java/Inspector/ProtocolHandler.xcu11
-rw-r--r--odk/examples/java/Inspector/ProtocolHandlerAddon.java283
-rw-r--r--odk/examples/java/Inspector/SourceCodeGenerator.java1766
-rw-r--r--odk/examples/java/Inspector/SwingDialogProvider.java442
-rw-r--r--odk/examples/java/Inspector/SwingTreeControlProvider.java427
-rw-r--r--odk/examples/java/Inspector/SwingTreePathProvider.java40
-rw-r--r--odk/examples/java/Inspector/SwingUnoFacetteNode.java84
-rw-r--r--odk/examples/java/Inspector/SwingUnoMethodNode.java138
-rw-r--r--odk/examples/java/Inspector/SwingUnoNode.java156
-rw-r--r--odk/examples/java/Inspector/SwingUnoPropertyNode.java96
-rw-r--r--odk/examples/java/Inspector/TDocSupplier.java168
-rw-r--r--odk/examples/java/Inspector/TestInspector.java88
-rw-r--r--odk/examples/java/Inspector/UnoFacetteNode.java85
-rw-r--r--odk/examples/java/Inspector/UnoMethodNode.java228
-rw-r--r--odk/examples/java/Inspector/UnoNode.java437
-rw-r--r--odk/examples/java/Inspector/UnoPropertyNode.java225
-rw-r--r--odk/examples/java/Inspector/UnoTreeRenderer.java135
-rw-r--r--odk/examples/java/Inspector/XDialogProvider.java65
-rw-r--r--odk/examples/java/Inspector/XInstanceInspector.idl56
-rw-r--r--odk/examples/java/Inspector/XLanguageSourceCodeGenerator.java106
-rw-r--r--odk/examples/java/Inspector/XMethodParametersDialog.java37
-rw-r--r--odk/examples/java/Inspector/XTreeControlProvider.java93
-rw-r--r--odk/examples/java/Inspector/XTreePathProvider.java25
-rw-r--r--odk/examples/java/Inspector/XUnoFacetteNode.java63
-rw-r--r--odk/examples/java/Inspector/XUnoMethodNode.java68
-rw-r--r--odk/examples/java/Inspector/XUnoNode.java84
-rw-r--r--odk/examples/java/Inspector/XUnoPropertyNode.java51
-rwxr-xr-xodk/examples/java/Inspector/images/containers_16.pngbin0 -> 233 bytes-rwxr-xr-xodk/examples/java/Inspector/images/content_16.pngbin0 -> 370 bytes-rwxr-xr-xodk/examples/java/Inspector/images/interfaces_16.pngbin0 -> 433 bytes-rwxr-xr-xodk/examples/java/Inspector/images/methods_16.pngbin0 -> 380 bytes-rwxr-xr-xodk/examples/java/Inspector/images/properties_16.pngbin0 -> 242 bytes-rwxr-xr-xodk/examples/java/Inspector/images/services_16.pngbin0 -> 258 bytes-rwxr-xr-xodk/examples/java/Inspector/manifest.mf3
-rw-r--r--odk/examples/java/MinimalComponent/BuildMinimalComponent.xml64
-rw-r--r--odk/examples/java/MinimalComponent/Makefile203
-rw-r--r--odk/examples/java/MinimalComponent/MinimalComponent.idl52
-rw-r--r--odk/examples/java/MinimalComponent/MinimalComponent.java171
-rw-r--r--odk/examples/java/MinimalComponent/TestMinimalComponent.java69
-rw-r--r--odk/examples/java/NotesAccess/Makefile113
-rw-r--r--odk/examples/java/NotesAccess/NotesAccess.java288
-rw-r--r--odk/examples/java/NotesAccess/Stocks.nsfbin0 -> 262144 bytes-rw-r--r--odk/examples/java/PropertySet/Makefile134
-rw-r--r--odk/examples/java/PropertySet/PropTest.java265
-rw-r--r--odk/examples/java/PropertySet/PropertySet.odtbin0 -> 8391 bytes-rw-r--r--odk/examples/java/Spreadsheet/CalcAddins.java304
-rw-r--r--odk/examples/java/Spreadsheet/CalcAddins.odsbin0 -> 8653 bytes-rw-r--r--odk/examples/java/Spreadsheet/ChartTypeChange.java355
-rw-r--r--odk/examples/java/Spreadsheet/EuroAdaption.java389
-rw-r--r--odk/examples/java/Spreadsheet/Makefile213
-rw-r--r--odk/examples/java/Spreadsheet/SCalc.java412
-rw-r--r--odk/examples/java/Spreadsheet/XCalcAddins.idl100
-rw-r--r--odk/examples/java/Storage/Makefile58
-rw-r--r--odk/examples/java/Storage/StorageFunctionality.java147
-rw-r--r--odk/examples/java/Storage/StorageTest.java7
-rw-r--r--odk/examples/java/Storage/Test01.java158
-rw-r--r--odk/examples/java/Storage/Test02.java152
-rw-r--r--odk/examples/java/Storage/Test03.java209
-rw-r--r--odk/examples/java/Storage/Test04.java273
-rw-r--r--odk/examples/java/Storage/Test05.java268
-rw-r--r--odk/examples/java/Storage/Test06.java278
-rw-r--r--odk/examples/java/Storage/Test07.java137
-rw-r--r--odk/examples/java/Storage/Test08.java213
-rw-r--r--odk/examples/java/Storage/Test09.java123
-rw-r--r--odk/examples/java/Storage/TestHelper.java864
-rw-r--r--odk/examples/java/Text/BookmarkInsertion.java284
-rw-r--r--odk/examples/java/Text/GraphicsInserter.java179
-rw-r--r--odk/examples/java/Text/HardFormatting.java286
-rw-r--r--odk/examples/java/Text/Makefile136
-rw-r--r--odk/examples/java/Text/SWriter.java397
-rw-r--r--odk/examples/java/Text/StyleCreation.java226
-rw-r--r--odk/examples/java/Text/StyleInitialization.java320
-rw-r--r--odk/examples/java/Text/TextDocumentStructure.java205
-rw-r--r--odk/examples/java/Text/TextReplace.java231
-rw-r--r--odk/examples/java/Text/WriterSelector.java162
-rw-r--r--odk/examples/java/Text/oo_smiley.gifbin0 -> 46109 bytes-rw-r--r--odk/examples/java/ToDo/Makefile166
-rw-r--r--odk/examples/java/ToDo/ToDo.idl50
-rw-r--r--odk/examples/java/ToDo/ToDo.java965
-rw-r--r--odk/examples/java/ToDo/ToDo.odsbin0 -> 13276 bytes-rw-r--r--odk/examples/java/ToDo/XToDo.idl50
-rw-r--r--odk/examples/java/makefile.mk155
-rw-r--r--odk/inc/makefile.mk47
-rw-r--r--odk/inc/pch/precompiled_odk.cxx29
-rw-r--r--odk/inc/pch/precompiled_odk.hxx32
-rw-r--r--odk/index.html203
-rw-r--r--odk/no_localization1
-rw-r--r--odk/pack/checkbin/makefile.mk51
-rw-r--r--odk/pack/checkidl/makefile.mk51
-rw-r--r--odk/pack/checkinc/makefile.mk54
-rw-r--r--odk/pack/checkinc2/makefile.mk54
-rwxr-xr-xodk/pack/copying/addsym-macosx.sh11
-rw-r--r--odk/pack/copying/dk.mk3
-rw-r--r--odk/pack/copying/idl_chapter_refs.txt7590
-rw-r--r--odk/pack/copying/makefile.mk262
-rw-r--r--odk/pack/gendocu/java/package-list135
-rw-r--r--odk/pack/gendocu/makefile.mk122
-rw-r--r--odk/pack/gendocu/uno/package-list53
-rw-r--r--odk/pack/unzip_udk/deltree.txt0
-rw-r--r--odk/pack/unzip_udk/makefile.mk46
-rw-r--r--odk/prj/build.lst15
-rw-r--r--odk/prj/d.lst5
-rw-r--r--odk/setsdkenv_unix67
-rw-r--r--odk/setsdkenv_unix.csh.in313
-rw-r--r--odk/setsdkenv_unix.sh.in343
-rwxr-xr-xodk/setsdkenv_windows.bat64
-rwxr-xr-xodk/setsdkenv_windows.template183
-rwxr-xr-xodk/setsdkname.bat3
-rw-r--r--odk/settings/component.uno.def4
-rw-r--r--odk/settings/settings.mk607
-rw-r--r--odk/settings/std.mk63
-rw-r--r--odk/settings/stdtarget.mk16
-rw-r--r--odk/source/com/sun/star/lib/loader/InstallationFinder.java584
-rw-r--r--odk/source/com/sun/star/lib/loader/Loader.java385
-rw-r--r--odk/source/com/sun/star/lib/loader/WinRegKey.java200
-rw-r--r--odk/source/com/sun/star/lib/loader/WinRegKeyException.java51
-rw-r--r--odk/source/com/sun/star/lib/loader/makefile.mk56
-rw-r--r--odk/source/unoapploader/unx/makefile.mk60
-rw-r--r--odk/source/unoapploader/unx/unoapploader.c301
-rw-r--r--odk/source/unoapploader/win/makefile.mk57
-rw-r--r--odk/source/unoapploader/win/unoapploader.c423
-rw-r--r--odk/source/unowinreg/win/makefile.mk114
-rw-r--r--odk/source/unowinreg/win/unowinreg.cxx185
-rw-r--r--odk/source/unowinreg/win/unowinreg.dxp9
-rw-r--r--odk/util/check.pl485
-rw-r--r--odk/util/checkdiff.pl62
-rw-r--r--odk/util/delzip1
-rw-r--r--odk/util/makefile.mk58
-rw-r--r--odk/util/makefile.pmk224
-rw-r--r--odk/util/odk_rules.pmk193
-rw-r--r--offapi/com/sun/star/accessibility/AccessBridge.idl54
-rw-r--r--offapi/com/sun/star/accessibility/Accessible.idl56
-rw-r--r--offapi/com/sun/star/accessibility/AccessibleContext.idl67
-rw-r--r--offapi/com/sun/star/accessibility/AccessibleEventId.idl387
-rw-r--r--offapi/com/sun/star/accessibility/AccessibleEventObject.idl69
-rw-r--r--offapi/com/sun/star/accessibility/AccessibleRelation.idl68
-rw-r--r--offapi/com/sun/star/accessibility/AccessibleRelationType.idl121
-rw-r--r--offapi/com/sun/star/accessibility/AccessibleRole.idl720
-rw-r--r--offapi/com/sun/star/accessibility/AccessibleStateType.idl225
-rw-r--r--offapi/com/sun/star/accessibility/AccessibleTableModelChange.idl90
-rw-r--r--offapi/com/sun/star/accessibility/AccessibleTableModelChangeType.idl82
-rw-r--r--offapi/com/sun/star/accessibility/AccessibleTextType.idl105
-rw-r--r--offapi/com/sun/star/accessibility/IllegalAccessibleComponentStateException.idl54
-rw-r--r--offapi/com/sun/star/accessibility/TextSegment.idl85
-rw-r--r--offapi/com/sun/star/accessibility/XAccessible.idl86
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleAction.idl123
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleComponent.idl236
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleContext.idl215
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleEditableText.idl240
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleEventBroadcaster.idl64
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleEventListener.idl59
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleExtendedComponent.idl109
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleHyperlink.idl142
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleHypertext.idl118
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleImage.idl86
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleKeyBinding.idl93
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleMultiLineText.idl148
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleRelationSet.idl113
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleSelection.idl164
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleStateSet.idl109
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleTable.idl387
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleText.idl519
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleTextAttributes.idl105
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleTextMarkup.idl140
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleValue.idl106
-rw-r--r--offapi/com/sun/star/accessibility/makefile.mk80
-rw-r--r--offapi/com/sun/star/animations/AnimationAdditiveMode.idl69
-rw-r--r--offapi/com/sun/star/animations/AnimationCalcMode.idl74
-rw-r--r--offapi/com/sun/star/animations/AnimationColorSpace.idl58
-rw-r--r--offapi/com/sun/star/animations/AnimationEndSync.idl81
-rw-r--r--offapi/com/sun/star/animations/AnimationFill.idl84
-rw-r--r--offapi/com/sun/star/animations/AnimationNodeType.idl87
-rw-r--r--offapi/com/sun/star/animations/AnimationRestart.idl75
-rw-r--r--offapi/com/sun/star/animations/AnimationTransformType.idl67
-rw-r--r--offapi/com/sun/star/animations/AnimationValueType.idl57
-rw-r--r--offapi/com/sun/star/animations/Event.idl69
-rw-r--r--offapi/com/sun/star/animations/EventTrigger.idl91
-rw-r--r--offapi/com/sun/star/animations/TargetProperties.idl59
-rw-r--r--offapi/com/sun/star/animations/TimeFilterPair.idl51
-rw-r--r--offapi/com/sun/star/animations/Timing.idl53
-rw-r--r--offapi/com/sun/star/animations/TransitionSubType.idl163
-rw-r--r--offapi/com/sun/star/animations/TransitionType.idl91
-rw-r--r--offapi/com/sun/star/animations/ValuePair.idl48
-rw-r--r--offapi/com/sun/star/animations/XAnimate.idl155
-rw-r--r--offapi/com/sun/star/animations/XAnimateColor.idl74
-rw-r--r--offapi/com/sun/star/animations/XAnimateMotion.idl65
-rw-r--r--offapi/com/sun/star/animations/XAnimateSet.idl66
-rw-r--r--offapi/com/sun/star/animations/XAnimateTransform.idl79
-rw-r--r--offapi/com/sun/star/animations/XAnimationListener.idl88
-rw-r--r--offapi/com/sun/star/animations/XAnimationNode.idl261
-rw-r--r--offapi/com/sun/star/animations/XAnimationNodeSupplier.idl51
-rw-r--r--offapi/com/sun/star/animations/XAudio.idl58
-rw-r--r--offapi/com/sun/star/animations/XCommand.idl66
-rw-r--r--offapi/com/sun/star/animations/XIterateContainer.idl79
-rw-r--r--offapi/com/sun/star/animations/XTargetPropertiesCreator.idl78
-rw-r--r--offapi/com/sun/star/animations/XTimeContainer.idl132
-rw-r--r--offapi/com/sun/star/animations/XTransitionFilter.idl99
-rw-r--r--offapi/com/sun/star/animations/makefile.mk76
-rw-r--r--offapi/com/sun/star/auth/AuthenticationFailedException.idl47
-rw-r--r--offapi/com/sun/star/auth/InvalidArgumentException.idl47
-rw-r--r--offapi/com/sun/star/auth/InvalidContextException.idl47
-rw-r--r--offapi/com/sun/star/auth/InvalidCredentialException.idl47
-rw-r--r--offapi/com/sun/star/auth/InvalidPrincipalException.idl48
-rw-r--r--offapi/com/sun/star/auth/PersistenceFailureException.idl48
-rw-r--r--offapi/com/sun/star/auth/SSOExceptions.idl53
-rw-r--r--offapi/com/sun/star/auth/SSOManagerFactory.idl75
-rw-r--r--offapi/com/sun/star/auth/SSOPasswordCache.idl53
-rw-r--r--offapi/com/sun/star/auth/UnsupportedException.idl48
-rw-r--r--offapi/com/sun/star/auth/XSSOAcceptorContext.idl75
-rw-r--r--offapi/com/sun/star/auth/XSSOContext.idl77
-rw-r--r--offapi/com/sun/star/auth/XSSOInitiatorContext.idl80
-rw-r--r--offapi/com/sun/star/auth/XSSOManager.idl113
-rw-r--r--offapi/com/sun/star/auth/XSSOManagerFactory.idl60
-rw-r--r--offapi/com/sun/star/auth/XSSOPasswordCache.idl105
-rw-r--r--offapi/com/sun/star/auth/makefile.mk28
-rw-r--r--offapi/com/sun/star/awt/AccessibleButton.idl136
-rw-r--r--offapi/com/sun/star/awt/AccessibleCheckBox.idl137
-rw-r--r--offapi/com/sun/star/awt/AccessibleComboBox.idl108
-rw-r--r--offapi/com/sun/star/awt/AccessibleDropDownComboBox.idl119
-rw-r--r--offapi/com/sun/star/awt/AccessibleDropDownListBox.idl119
-rw-r--r--offapi/com/sun/star/awt/AccessibleEdit.idl135
-rw-r--r--offapi/com/sun/star/awt/AccessibleFixedText.idl114
-rw-r--r--offapi/com/sun/star/awt/AccessibleIconChoiceControl.idl115
-rw-r--r--offapi/com/sun/star/awt/AccessibleIconChoiceControlEntry.idl107
-rw-r--r--offapi/com/sun/star/awt/AccessibleList.idl138
-rw-r--r--offapi/com/sun/star/awt/AccessibleListBox.idl107
-rw-r--r--offapi/com/sun/star/awt/AccessibleListBoxList.idl52
-rw-r--r--offapi/com/sun/star/awt/AccessibleListItem.idl104
-rw-r--r--offapi/com/sun/star/awt/AccessibleMenu.idl152
-rw-r--r--offapi/com/sun/star/awt/AccessibleMenuBar.idl115
-rw-r--r--offapi/com/sun/star/awt/AccessibleMenuItem.idl141
-rw-r--r--offapi/com/sun/star/awt/AccessibleMenuSeparator.idl107
-rw-r--r--offapi/com/sun/star/awt/AccessiblePopupMenu.idl115
-rw-r--r--offapi/com/sun/star/awt/AccessibleRadioButton.idl141
-rw-r--r--offapi/com/sun/star/awt/AccessibleScrollBar.idl129
-rw-r--r--offapi/com/sun/star/awt/AccessibleStatusBar.idl98
-rw-r--r--offapi/com/sun/star/awt/AccessibleStatusBarItem.idl107
-rw-r--r--offapi/com/sun/star/awt/AccessibleTabBar.idl109
-rw-r--r--offapi/com/sun/star/awt/AccessibleTabBarPage.idl105
-rw-r--r--offapi/com/sun/star/awt/AccessibleTabBarPageList.idl108
-rw-r--r--offapi/com/sun/star/awt/AccessibleTabControl.idl113
-rw-r--r--offapi/com/sun/star/awt/AccessibleTabPage.idl117
-rw-r--r--offapi/com/sun/star/awt/AccessibleTextField.idl116
-rw-r--r--offapi/com/sun/star/awt/AccessibleToolBox.idl116
-rw-r--r--offapi/com/sun/star/awt/AccessibleToolBoxItem.idl134
-rw-r--r--offapi/com/sun/star/awt/AccessibleTreeListBox.idl115
-rw-r--r--offapi/com/sun/star/awt/AccessibleTreeListBoxEntry.idl133
-rw-r--r--offapi/com/sun/star/awt/AccessibleWindow.idl125
-rw-r--r--offapi/com/sun/star/awt/ActionEvent.idl69
-rw-r--r--offapi/com/sun/star/awt/AdjustmentEvent.idl67
-rw-r--r--offapi/com/sun/star/awt/AdjustmentType.idl72
-rw-r--r--offapi/com/sun/star/awt/AsyncCallback.idl47
-rw-r--r--offapi/com/sun/star/awt/CharSet.idl123
-rw-r--r--offapi/com/sun/star/awt/Command.idl134
-rw-r--r--offapi/com/sun/star/awt/ContainerWindowProvider.idl56
-rw-r--r--offapi/com/sun/star/awt/DeviceCapability.idl65
-rw-r--r--offapi/com/sun/star/awt/DeviceInfo.idl110
-rw-r--r--offapi/com/sun/star/awt/DialogProvider.idl59
-rw-r--r--offapi/com/sun/star/awt/DialogProvider2.idl55
-rw-r--r--offapi/com/sun/star/awt/DockingData.idl63
-rw-r--r--offapi/com/sun/star/awt/DockingEvent.idl84
-rw-r--r--offapi/com/sun/star/awt/EndDockingEvent.idl72
-rw-r--r--offapi/com/sun/star/awt/EndPopupModeEvent.idl68
-rw-r--r--offapi/com/sun/star/awt/EnhancedMouseEvent.idl63
-rw-r--r--offapi/com/sun/star/awt/FieldUnit.idl63
-rw-r--r--offapi/com/sun/star/awt/FocusChangeReason.idl93
-rw-r--r--offapi/com/sun/star/awt/FocusEvent.idl90
-rw-r--r--offapi/com/sun/star/awt/FontDescriptor.idl190
-rw-r--r--offapi/com/sun/star/awt/FontEmphasisMark.idl94
-rw-r--r--offapi/com/sun/star/awt/FontFamily.idl91
-rw-r--r--offapi/com/sun/star/awt/FontPitch.idl68
-rw-r--r--offapi/com/sun/star/awt/FontRelief.idl68
-rw-r--r--offapi/com/sun/star/awt/FontSlant.idl83
-rw-r--r--offapi/com/sun/star/awt/FontStrikeout.idl91
-rw-r--r--offapi/com/sun/star/awt/FontType.idl73
-rw-r--r--offapi/com/sun/star/awt/FontUnderline.idl163
-rw-r--r--offapi/com/sun/star/awt/FontWeight.idl109
-rw-r--r--offapi/com/sun/star/awt/FontWidth.idl109
-rw-r--r--offapi/com/sun/star/awt/Gradient.idl115
-rw-r--r--offapi/com/sun/star/awt/GradientStyle.idl83
-rw-r--r--offapi/com/sun/star/awt/ImageAlign.idl71
-rw-r--r--offapi/com/sun/star/awt/ImagePosition.idl100
-rw-r--r--offapi/com/sun/star/awt/ImageScaleMode.idl62
-rw-r--r--offapi/com/sun/star/awt/ImageStatus.idl73
-rw-r--r--offapi/com/sun/star/awt/InputEvent.idl65
-rw-r--r--offapi/com/sun/star/awt/InvalidateStyle.idl89
-rw-r--r--offapi/com/sun/star/awt/ItemEvent.idl69
-rw-r--r--offapi/com/sun/star/awt/ItemListEvent.idl76
-rw-r--r--offapi/com/sun/star/awt/Key.idl574
-rw-r--r--offapi/com/sun/star/awt/KeyEvent.idl76
-rw-r--r--offapi/com/sun/star/awt/KeyFunction.idl123
-rw-r--r--offapi/com/sun/star/awt/KeyGroup.idl85
-rw-r--r--offapi/com/sun/star/awt/KeyModifier.idl68
-rw-r--r--offapi/com/sun/star/awt/KeyStroke.idl81
-rw-r--r--offapi/com/sun/star/awt/LineEndFormat.idl66
-rw-r--r--offapi/com/sun/star/awt/MaxChildrenException.idl29
-rw-r--r--offapi/com/sun/star/awt/MenuBar.idl56
-rw-r--r--offapi/com/sun/star/awt/MenuEvent.idl57
-rw-r--r--offapi/com/sun/star/awt/MenuItemStyle.idl68
-rw-r--r--offapi/com/sun/star/awt/MenuItemType.idl68
-rwxr-xr-xoffapi/com/sun/star/awt/MenuLogo.idl70
-rw-r--r--offapi/com/sun/star/awt/MessageBoxButtons.idl97
-rw-r--r--offapi/com/sun/star/awt/MessageBoxCommand.idl69
-rw-r--r--offapi/com/sun/star/awt/MouseButton.idl65
-rw-r--r--offapi/com/sun/star/awt/MouseEvent.idl101
-rwxr-xr-xoffapi/com/sun/star/awt/MouseWheelBehavior.idl62
-rw-r--r--offapi/com/sun/star/awt/PaintEvent.idl75
-rw-r--r--offapi/com/sun/star/awt/Point.idl57
-rw-r--r--offapi/com/sun/star/awt/PopupMenu.idl55
-rw-r--r--offapi/com/sun/star/awt/PopupMenuDirection.idl92
-rw-r--r--offapi/com/sun/star/awt/PosSize.idl89
-rw-r--r--offapi/com/sun/star/awt/PrinterException.idl54
-rw-r--r--offapi/com/sun/star/awt/PushButtonType.idl71
-rw-r--r--offapi/com/sun/star/awt/RasterOperation.idl79
-rw-r--r--offapi/com/sun/star/awt/Rectangle.idl69
-rw-r--r--offapi/com/sun/star/awt/RoadmapItem.idl78
-rw-r--r--offapi/com/sun/star/awt/ScrollBarOrientation.idl59
-rw-r--r--offapi/com/sun/star/awt/Selection.idl59
-rw-r--r--offapi/com/sun/star/awt/SimpleFontMetric.idl101
-rw-r--r--offapi/com/sun/star/awt/Size.idl59
-rw-r--r--offapi/com/sun/star/awt/SpinEvent.idl57
-rw-r--r--offapi/com/sun/star/awt/Style.idl60
-rw-r--r--offapi/com/sun/star/awt/SystemDependentXWindow.idl67
-rw-r--r--offapi/com/sun/star/awt/SystemPointer.idl492
-rw-r--r--offapi/com/sun/star/awt/TabController.idl53
-rw-r--r--offapi/com/sun/star/awt/TabControllerModel.idl59
-rw-r--r--offapi/com/sun/star/awt/TextAlign.idl65
-rw-r--r--offapi/com/sun/star/awt/TextEvent.idl57
-rw-r--r--offapi/com/sun/star/awt/Toolkit.idl76
-rw-r--r--offapi/com/sun/star/awt/UnoControl.idl94
-rw-r--r--offapi/com/sun/star/awt/UnoControlButton.idl65
-rw-r--r--offapi/com/sun/star/awt/UnoControlButtonModel.idl282
-rw-r--r--offapi/com/sun/star/awt/UnoControlCheckBox.idl65
-rw-r--r--offapi/com/sun/star/awt/UnoControlCheckBoxModel.idl240
-rw-r--r--offapi/com/sun/star/awt/UnoControlComboBox.idl59
-rw-r--r--offapi/com/sun/star/awt/UnoControlComboBoxModel.idl234
-rw-r--r--offapi/com/sun/star/awt/UnoControlContainer.idl71
-rw-r--r--offapi/com/sun/star/awt/UnoControlContainerModel.idl116
-rw-r--r--offapi/com/sun/star/awt/UnoControlCurrencyField.idl73
-rw-r--r--offapi/com/sun/star/awt/UnoControlCurrencyFieldModel.idl279
-rw-r--r--offapi/com/sun/star/awt/UnoControlDateField.idl72
-rw-r--r--offapi/com/sun/star/awt/UnoControlDateFieldModel.idl291
-rw-r--r--offapi/com/sun/star/awt/UnoControlDialog.idl65
-rw-r--r--offapi/com/sun/star/awt/UnoControlDialogElement.idl97
-rw-r--r--offapi/com/sun/star/awt/UnoControlDialogModel.idl197
-rw-r--r--offapi/com/sun/star/awt/UnoControlEdit.idl71
-rw-r--r--offapi/com/sun/star/awt/UnoControlEditModel.idl291
-rw-r--r--offapi/com/sun/star/awt/UnoControlFileControl.idl56
-rw-r--r--offapi/com/sun/star/awt/UnoControlFileControlModel.idl185
-rw-r--r--offapi/com/sun/star/awt/UnoControlFixedHyperlink.idl65
-rw-r--r--offapi/com/sun/star/awt/UnoControlFixedHyperlinkModel.idl188
-rw-r--r--offapi/com/sun/star/awt/UnoControlFixedLine.idl54
-rw-r--r--offapi/com/sun/star/awt/UnoControlFixedLineModel.idl134
-rw-r--r--offapi/com/sun/star/awt/UnoControlFixedText.idl65
-rw-r--r--offapi/com/sun/star/awt/UnoControlFixedTextModel.idl182
-rw-r--r--offapi/com/sun/star/awt/UnoControlFormattedField.idl64
-rw-r--r--offapi/com/sun/star/awt/UnoControlFormattedFieldModel.idl324
-rw-r--r--offapi/com/sun/star/awt/UnoControlGroupBox.idl53
-rw-r--r--offapi/com/sun/star/awt/UnoControlGroupBoxModel.idl132
-rw-r--r--offapi/com/sun/star/awt/UnoControlImageControl.idl59
-rw-r--r--offapi/com/sun/star/awt/UnoControlImageControlModel.idl161
-rw-r--r--offapi/com/sun/star/awt/UnoControlListBox.idl74
-rw-r--r--offapi/com/sun/star/awt/UnoControlListBoxModel.idl224
-rw-r--r--offapi/com/sun/star/awt/UnoControlModel.idl105
-rw-r--r--offapi/com/sun/star/awt/UnoControlNumericField.idl73
-rw-r--r--offapi/com/sun/star/awt/UnoControlNumericFieldModel.idl267
-rw-r--r--offapi/com/sun/star/awt/UnoControlPatternField.idl73
-rw-r--r--offapi/com/sun/star/awt/UnoControlPatternFieldModel.idl226
-rw-r--r--offapi/com/sun/star/awt/UnoControlProgressBar.idl60
-rw-r--r--offapi/com/sun/star/awt/UnoControlProgressBarModel.idl134
-rw-r--r--offapi/com/sun/star/awt/UnoControlRadioButton.idl65
-rw-r--r--offapi/com/sun/star/awt/UnoControlRadioButtonModel.idl234
-rw-r--r--offapi/com/sun/star/awt/UnoControlRoadmap.idl85
-rw-r--r--offapi/com/sun/star/awt/UnoControlRoadmapModel.idl169
-rw-r--r--offapi/com/sun/star/awt/UnoControlScrollBar.idl60
-rw-r--r--offapi/com/sun/star/awt/UnoControlScrollBarModel.idl201
-rw-r--r--offapi/com/sun/star/awt/UnoControlSimpleAnimation.idl65
-rw-r--r--offapi/com/sun/star/awt/UnoControlSimpleAnimationModel.idl78
-rw-r--r--offapi/com/sun/star/awt/UnoControlSpinButton.idl63
-rw-r--r--offapi/com/sun/star/awt/UnoControlSpinButtonModel.idl183
-rw-r--r--offapi/com/sun/star/awt/UnoControlThrobber.idl65
-rw-r--r--offapi/com/sun/star/awt/UnoControlThrobberModel.idl60
-rw-r--r--offapi/com/sun/star/awt/UnoControlTimeField.idl73
-rw-r--r--offapi/com/sun/star/awt/UnoControlTimeFieldModel.idl271
-rw-r--r--offapi/com/sun/star/awt/VclContainerEvent.idl66
-rw-r--r--offapi/com/sun/star/awt/VclWindowPeerAttribute.idl156
-rw-r--r--offapi/com/sun/star/awt/VisualEffect.idl63
-rw-r--r--offapi/com/sun/star/awt/WindowAttribute.idl135
-rw-r--r--offapi/com/sun/star/awt/WindowClass.idl72
-rw-r--r--offapi/com/sun/star/awt/WindowDescriptor.idl179
-rw-r--r--offapi/com/sun/star/awt/WindowEvent.idl111
-rw-r--r--offapi/com/sun/star/awt/XActionListener.idl61
-rw-r--r--offapi/com/sun/star/awt/XActivateListener.idl78
-rw-r--r--offapi/com/sun/star/awt/XAdjustmentListener.idl61
-rw-r--r--offapi/com/sun/star/awt/XBitmap.idl73
-rw-r--r--offapi/com/sun/star/awt/XButton.idl79
-rw-r--r--offapi/com/sun/star/awt/XCallback.idl60
-rw-r--r--offapi/com/sun/star/awt/XCheckBox.idl92
-rw-r--r--offapi/com/sun/star/awt/XComboBox.idl132
-rw-r--r--offapi/com/sun/star/awt/XContainerWindowEventHandler.idl107
-rw-r--r--offapi/com/sun/star/awt/XContainerWindowProvider.idl130
-rw-r--r--offapi/com/sun/star/awt/XControl.idl146
-rw-r--r--offapi/com/sun/star/awt/XControlContainer.idl87
-rw-r--r--offapi/com/sun/star/awt/XControlModel.idl51
-rw-r--r--offapi/com/sun/star/awt/XCurrencyField.idl149
-rw-r--r--offapi/com/sun/star/awt/XDataTransferProviderAccess.idl111
-rw-r--r--offapi/com/sun/star/awt/XDateField.idl152
-rw-r--r--offapi/com/sun/star/awt/XDevice.idl127
-rw-r--r--offapi/com/sun/star/awt/XDialog.idl77
-rw-r--r--offapi/com/sun/star/awt/XDialog2.idl35
-rw-r--r--offapi/com/sun/star/awt/XDialogEventHandler.idl106
-rw-r--r--offapi/com/sun/star/awt/XDialogProvider.idl75
-rw-r--r--offapi/com/sun/star/awt/XDialogProvider2.idl138
-rw-r--r--offapi/com/sun/star/awt/XDisplayBitmap.idl54
-rw-r--r--offapi/com/sun/star/awt/XDisplayConnection.idl109
-rw-r--r--offapi/com/sun/star/awt/XDockableWindow.idl146
-rw-r--r--offapi/com/sun/star/awt/XDockableWindowListener.idl121
-rw-r--r--offapi/com/sun/star/awt/XEnhancedMouseClickHandler.idl70
-rw-r--r--offapi/com/sun/star/awt/XEventHandler.idl66
-rwxr-xr-xoffapi/com/sun/star/awt/XExtendedToolkit.idl230
-rw-r--r--offapi/com/sun/star/awt/XFileDialog.idl84
-rw-r--r--offapi/com/sun/star/awt/XFixedHyperlink.idl109
-rw-r--r--offapi/com/sun/star/awt/XFixedText.idl81
-rw-r--r--offapi/com/sun/star/awt/XFocusListener.idl74
-rw-r--r--offapi/com/sun/star/awt/XFont.idl126
-rw-r--r--offapi/com/sun/star/awt/XFont2.idl68
-rw-r--r--offapi/com/sun/star/awt/XGraphics.idl321
-rw-r--r--offapi/com/sun/star/awt/XImageButton.idl74
-rw-r--r--offapi/com/sun/star/awt/XImageConsumer.idl132
-rw-r--r--offapi/com/sun/star/awt/XImageProducer.idl91
-rw-r--r--offapi/com/sun/star/awt/XInfoPrinter.idl63
-rw-r--r--offapi/com/sun/star/awt/XItemEventBroadcaster.idl70
-rw-r--r--offapi/com/sun/star/awt/XItemList.idl286
-rw-r--r--offapi/com/sun/star/awt/XItemListListener.idl85
-rw-r--r--offapi/com/sun/star/awt/XItemListener.idl62
-rw-r--r--offapi/com/sun/star/awt/XKeyHandler.idl101
-rw-r--r--offapi/com/sun/star/awt/XKeyListener.idl67
-rw-r--r--offapi/com/sun/star/awt/XLayoutConstrains.idl73
-rw-r--r--offapi/com/sun/star/awt/XLayoutContainer.idl89
-rw-r--r--offapi/com/sun/star/awt/XLayoutFlow.idl32
-rw-r--r--offapi/com/sun/star/awt/XLayoutFlowContainer.idl27
-rw-r--r--offapi/com/sun/star/awt/XLayoutRoot.idl33
-rw-r--r--offapi/com/sun/star/awt/XLayoutUnit.idl31
-rw-r--r--offapi/com/sun/star/awt/XListBox.idl199
-rw-r--r--offapi/com/sun/star/awt/XMenu.idl142
-rw-r--r--offapi/com/sun/star/awt/XMenuBar.idl51
-rwxr-xr-xoffapi/com/sun/star/awt/XMenuBarExtended.idl69
-rw-r--r--offapi/com/sun/star/awt/XMenuExtended.idl80
-rwxr-xr-xoffapi/com/sun/star/awt/XMenuExtended2.idl112
-rw-r--r--offapi/com/sun/star/awt/XMenuListener.idl79
-rw-r--r--offapi/com/sun/star/awt/XMessageBox.idl83
-rw-r--r--offapi/com/sun/star/awt/XMessageBoxFactory.idl108
-rw-r--r--offapi/com/sun/star/awt/XMetricField.idl163
-rw-r--r--offapi/com/sun/star/awt/XMouseClickHandler.idl83
-rw-r--r--offapi/com/sun/star/awt/XMouseListener.idl88
-rw-r--r--offapi/com/sun/star/awt/XMouseMotionHandler.idl90
-rw-r--r--offapi/com/sun/star/awt/XMouseMotionListener.idl74
-rw-r--r--offapi/com/sun/star/awt/XNumericField.idl149
-rw-r--r--offapi/com/sun/star/awt/XPaintListener.idl62
-rw-r--r--offapi/com/sun/star/awt/XPatternField.idl89
-rw-r--r--offapi/com/sun/star/awt/XPointer.idl64
-rw-r--r--offapi/com/sun/star/awt/XPopupMenu.idl96
-rwxr-xr-xoffapi/com/sun/star/awt/XPopupMenuExtended.idl361
-rw-r--r--offapi/com/sun/star/awt/XPrinter.idl124
-rw-r--r--offapi/com/sun/star/awt/XPrinterPropertySet.idl109
-rw-r--r--offapi/com/sun/star/awt/XPrinterServer.idl84
-rw-r--r--offapi/com/sun/star/awt/XProgressBar.idl89
-rw-r--r--offapi/com/sun/star/awt/XProgressMonitor.idl71
-rw-r--r--offapi/com/sun/star/awt/XRadioButton.idl86
-rw-r--r--offapi/com/sun/star/awt/XRegion.idl130
-rw-r--r--offapi/com/sun/star/awt/XRequestCallback.idl64
-rw-r--r--offapi/com/sun/star/awt/XReschedule.idl60
-rw-r--r--offapi/com/sun/star/awt/XScrollBar.idl150
-rw-r--r--offapi/com/sun/star/awt/XSimpleAnimation.idl72
-rw-r--r--offapi/com/sun/star/awt/XSimpleTabController.idl172
-rw-r--r--offapi/com/sun/star/awt/XSpinField.idl98
-rw-r--r--offapi/com/sun/star/awt/XSpinListener.idl79
-rw-r--r--offapi/com/sun/star/awt/XSpinValue.idl148
-rw-r--r--offapi/com/sun/star/awt/XStyleChangeListener.idl54
-rw-r--r--offapi/com/sun/star/awt/XStyleSettings.idl239
-rw-r--r--offapi/com/sun/star/awt/XStyleSettingsSupplier.idl53
-rw-r--r--offapi/com/sun/star/awt/XSystemChildFactory.idl84
-rw-r--r--offapi/com/sun/star/awt/XSystemDependentMenuPeer.idl77
-rw-r--r--offapi/com/sun/star/awt/XSystemDependentWindowPeer.idl87
-rw-r--r--offapi/com/sun/star/awt/XTabController.idl119
-rw-r--r--offapi/com/sun/star/awt/XTabControllerModel.idl107
-rw-r--r--offapi/com/sun/star/awt/XTabListener.idl97
-rw-r--r--offapi/com/sun/star/awt/XTextArea.idl57
-rw-r--r--offapi/com/sun/star/awt/XTextComponent.idl133
-rw-r--r--offapi/com/sun/star/awt/XTextEditField.idl57
-rw-r--r--offapi/com/sun/star/awt/XTextLayoutConstrains.idl68
-rw-r--r--offapi/com/sun/star/awt/XTextListener.idl61
-rw-r--r--offapi/com/sun/star/awt/XThrobber.idl65
-rw-r--r--offapi/com/sun/star/awt/XTimeField.idl141
-rw-r--r--offapi/com/sun/star/awt/XToggleButton.idl57
-rw-r--r--offapi/com/sun/star/awt/XToolkit.idl118
-rw-r--r--offapi/com/sun/star/awt/XTopWindow.idl93
-rw-r--r--offapi/com/sun/star/awt/XTopWindow2.idl77
-rw-r--r--offapi/com/sun/star/awt/XTopWindowListener.idl101
-rw-r--r--offapi/com/sun/star/awt/XUnitConversion.idl118
-rw-r--r--offapi/com/sun/star/awt/XUnoControlContainer.idl79
-rw-r--r--offapi/com/sun/star/awt/XUserInputInterception.idl100
-rw-r--r--offapi/com/sun/star/awt/XVclContainer.idl81
-rw-r--r--offapi/com/sun/star/awt/XVclContainerListener.idl74
-rw-r--r--offapi/com/sun/star/awt/XVclContainerPeer.idl77
-rw-r--r--offapi/com/sun/star/awt/XVclWindowPeer.idl121
-rw-r--r--offapi/com/sun/star/awt/XView.idl101
-rw-r--r--offapi/com/sun/star/awt/XWindow.idl210
-rw-r--r--offapi/com/sun/star/awt/XWindow2.idl102
-rw-r--r--offapi/com/sun/star/awt/XWindowListener.idl88
-rw-r--r--offapi/com/sun/star/awt/XWindowListener2.idl61
-rw-r--r--offapi/com/sun/star/awt/XWindowPeer.idl93
-rw-r--r--offapi/com/sun/star/awt/grid/DefaultGridColumnModel.idl52
-rw-r--r--offapi/com/sun/star/awt/grid/DefaultGridDataModel.idl53
-rw-r--r--offapi/com/sun/star/awt/grid/GridColumn.idl53
-rw-r--r--offapi/com/sun/star/awt/grid/GridColumnEvent.idl63
-rw-r--r--offapi/com/sun/star/awt/grid/GridControlEvent.idl54
-rw-r--r--offapi/com/sun/star/awt/grid/GridDataEvent.idl78
-rw-r--r--offapi/com/sun/star/awt/grid/GridInvalidDataException.idl58
-rw-r--r--offapi/com/sun/star/awt/grid/GridInvalidModelException.idl57
-rw-r--r--offapi/com/sun/star/awt/grid/GridSelectionEvent.idl71
-rw-r--r--offapi/com/sun/star/awt/grid/ScrollBarMode.idl70
-rw-r--r--offapi/com/sun/star/awt/grid/SelectionEventType.idl66
-rw-r--r--offapi/com/sun/star/awt/grid/UnoControlGrid.idl82
-rw-r--r--offapi/com/sun/star/awt/grid/UnoControlGridModel.idl163
-rw-r--r--offapi/com/sun/star/awt/grid/XGridCell.idl56
-rw-r--r--offapi/com/sun/star/awt/grid/XGridCellRenderer.idl52
-rw-r--r--offapi/com/sun/star/awt/grid/XGridColumn.idl111
-rw-r--r--offapi/com/sun/star/awt/grid/XGridColumnListener.idl73
-rw-r--r--offapi/com/sun/star/awt/grid/XGridColumnModel.idl119
-rw-r--r--offapi/com/sun/star/awt/grid/XGridControl.idl70
-rw-r--r--offapi/com/sun/star/awt/grid/XGridControlListener.idl49
-rw-r--r--offapi/com/sun/star/awt/grid/XGridDataListener.idl75
-rw-r--r--offapi/com/sun/star/awt/grid/XGridDataModel.idl134
-rw-r--r--offapi/com/sun/star/awt/grid/XGridSelection.idl127
-rw-r--r--offapi/com/sun/star/awt/grid/XGridSelectionListener.idl63
-rw-r--r--offapi/com/sun/star/awt/grid/makefile.mk66
-rw-r--r--offapi/com/sun/star/awt/makefile.mk342
-rw-r--r--offapi/com/sun/star/awt/tree/ExpandVetoException.idl58
-rw-r--r--offapi/com/sun/star/awt/tree/MutableTreeDataModel.idl55
-rw-r--r--offapi/com/sun/star/awt/tree/MutableTreeNode.idl50
-rw-r--r--offapi/com/sun/star/awt/tree/TreeControl.idl97
-rw-r--r--offapi/com/sun/star/awt/tree/TreeControlModel.idl114
-rw-r--r--offapi/com/sun/star/awt/tree/TreeDataModelEvent.idl68
-rw-r--r--offapi/com/sun/star/awt/tree/TreeExpansionEvent.idl59
-rw-r--r--offapi/com/sun/star/awt/tree/XMutableTreeDataModel.idl85
-rw-r--r--offapi/com/sun/star/awt/tree/XMutableTreeNode.idl122
-rw-r--r--offapi/com/sun/star/awt/tree/XTreeControl.idl295
-rw-r--r--offapi/com/sun/star/awt/tree/XTreeDataModel.idl92
-rw-r--r--offapi/com/sun/star/awt/tree/XTreeDataModelListener.idl95
-rw-r--r--offapi/com/sun/star/awt/tree/XTreeEditListener.idl89
-rw-r--r--offapi/com/sun/star/awt/tree/XTreeExpansionListener.idl92
-rw-r--r--offapi/com/sun/star/awt/tree/XTreeNode.idl105
-rw-r--r--offapi/com/sun/star/awt/tree/makefile.mk61
-rw-r--r--offapi/com/sun/star/chart/AccessibleChartDocumentView.idl143
-rw-r--r--offapi/com/sun/star/chart/AccessibleChartElement.idl195
-rw-r--r--offapi/com/sun/star/chart/AreaDiagram.idl82
-rw-r--r--offapi/com/sun/star/chart/BarDiagram.idl138
-rw-r--r--offapi/com/sun/star/chart/BubbleDiagram.idl66
-rw-r--r--offapi/com/sun/star/chart/Chart3DBarProperties.idl59
-rw-r--r--offapi/com/sun/star/chart/ChartArea.idl76
-rw-r--r--offapi/com/sun/star/chart/ChartAxis.idl311
-rw-r--r--offapi/com/sun/star/chart/ChartAxisArrangeOrderType.idl76
-rw-r--r--offapi/com/sun/star/chart/ChartAxisAssign.idl59
-rw-r--r--offapi/com/sun/star/chart/ChartAxisLabelPosition.idl75
-rw-r--r--offapi/com/sun/star/chart/ChartAxisMarkPosition.idl67
-rw-r--r--offapi/com/sun/star/chart/ChartAxisMarks.idl70
-rw-r--r--offapi/com/sun/star/chart/ChartAxisPosition.idl73
-rw-r--r--offapi/com/sun/star/chart/ChartAxisXSupplier.idl90
-rw-r--r--offapi/com/sun/star/chart/ChartAxisYSupplier.idl89
-rw-r--r--offapi/com/sun/star/chart/ChartAxisZSupplier.idl88
-rw-r--r--offapi/com/sun/star/chart/ChartData.idl53
-rw-r--r--offapi/com/sun/star/chart/ChartDataArray.idl65
-rw-r--r--offapi/com/sun/star/chart/ChartDataCaption.idl93
-rw-r--r--offapi/com/sun/star/chart/ChartDataChangeEvent.idl85
-rw-r--r--offapi/com/sun/star/chart/ChartDataChangeType.idl88
-rw-r--r--offapi/com/sun/star/chart/ChartDataPoint.idl47
-rw-r--r--offapi/com/sun/star/chart/ChartDataPointProperties.idl173
-rw-r--r--offapi/com/sun/star/chart/ChartDataRow.idl63
-rw-r--r--offapi/com/sun/star/chart/ChartDataRowProperties.idl127
-rw-r--r--offapi/com/sun/star/chart/ChartDataRowSource.idl61
-rw-r--r--offapi/com/sun/star/chart/ChartDataValue.idl67
-rw-r--r--offapi/com/sun/star/chart/ChartDocument.idl100
-rw-r--r--offapi/com/sun/star/chart/ChartErrorCategory.idl101
-rw-r--r--offapi/com/sun/star/chart/ChartErrorIndicatorType.idl70
-rw-r--r--offapi/com/sun/star/chart/ChartGrid.idl74
-rw-r--r--offapi/com/sun/star/chart/ChartLegend.idl100
-rw-r--r--offapi/com/sun/star/chart/ChartLegendPosition.idl93
-rw-r--r--offapi/com/sun/star/chart/ChartLine.idl57
-rw-r--r--offapi/com/sun/star/chart/ChartPieSegmentProperties.idl75
-rw-r--r--offapi/com/sun/star/chart/ChartRegressionCurveType.idl98
-rw-r--r--offapi/com/sun/star/chart/ChartSeriesAddress.idl69
-rw-r--r--offapi/com/sun/star/chart/ChartSolidType.idl72
-rw-r--r--offapi/com/sun/star/chart/ChartStatistics.idl183
-rw-r--r--offapi/com/sun/star/chart/ChartSymbolType.idl139
-rw-r--r--offapi/com/sun/star/chart/ChartTableAddressSupplier.idl80
-rw-r--r--offapi/com/sun/star/chart/ChartTitle.idl98
-rw-r--r--offapi/com/sun/star/chart/ChartTwoAxisXSupplier.idl87
-rw-r--r--offapi/com/sun/star/chart/ChartTwoAxisYSupplier.idl88
-rw-r--r--offapi/com/sun/star/chart/DataLabelPlacement.idl60
-rw-r--r--offapi/com/sun/star/chart/Diagram.idl148
-rw-r--r--offapi/com/sun/star/chart/Dim3DDiagram.idl84
-rw-r--r--offapi/com/sun/star/chart/DonutDiagram.idl54
-rwxr-xr-xoffapi/com/sun/star/chart/ErrorBarStyle.idl98
-rw-r--r--offapi/com/sun/star/chart/FilledNetDiagram.idl69
-rw-r--r--offapi/com/sun/star/chart/LineDiagram.idl161
-rw-r--r--offapi/com/sun/star/chart/MissingValueTreatment.idl50
-rw-r--r--offapi/com/sun/star/chart/NetDiagram.idl65
-rw-r--r--offapi/com/sun/star/chart/PieDiagram.idl57
-rw-r--r--offapi/com/sun/star/chart/StackableDiagram.idl68
-rw-r--r--offapi/com/sun/star/chart/StockDiagram.idl151
-rw-r--r--offapi/com/sun/star/chart/X3DDefaultSetter.idl67
-rw-r--r--offapi/com/sun/star/chart/X3DDisplay.idl84
-rw-r--r--offapi/com/sun/star/chart/XAxisXSupplier.idl105
-rw-r--r--offapi/com/sun/star/chart/XAxisYSupplier.idl105
-rw-r--r--offapi/com/sun/star/chart/XAxisZSupplier.idl102
-rw-r--r--offapi/com/sun/star/chart/XChartData.idl116
-rw-r--r--offapi/com/sun/star/chart/XChartDataArray.idl114
-rw-r--r--offapi/com/sun/star/chart/XChartDataChangeEventListener.idl71
-rw-r--r--offapi/com/sun/star/chart/XChartDocument.idl180
-rwxr-xr-xoffapi/com/sun/star/chart/XComplexDescriptionAccess.idl98
-rw-r--r--offapi/com/sun/star/chart/XDiagram.idl98
-rw-r--r--offapi/com/sun/star/chart/XDiagramPositioning.idl107
-rw-r--r--offapi/com/sun/star/chart/XSecondAxisTitleSupplier.idl24
-rw-r--r--offapi/com/sun/star/chart/XStatisticDisplay.idl99
-rw-r--r--offapi/com/sun/star/chart/XTwoAxisXSupplier.idl71
-rw-r--r--offapi/com/sun/star/chart/XTwoAxisYSupplier.idl68
-rw-r--r--offapi/com/sun/star/chart/XYDiagram.idl77
-rw-r--r--offapi/com/sun/star/chart/makefile.mk119
-rw-r--r--offapi/com/sun/star/chart2/Axis.idl142
-rw-r--r--offapi/com/sun/star/chart2/AxisOrientation.idl51
-rw-r--r--offapi/com/sun/star/chart2/AxisType.idl60
-rw-r--r--offapi/com/sun/star/chart2/Break.idl46
-rw-r--r--offapi/com/sun/star/chart2/CandleStickChartType.idl119
-rw-r--r--offapi/com/sun/star/chart2/ChartDocument.idl92
-rw-r--r--offapi/com/sun/star/chart2/ChartDocumentWrapper.idl67
-rw-r--r--offapi/com/sun/star/chart2/ChartType.idl63
-rw-r--r--offapi/com/sun/star/chart2/ChartTypeManager.idl56
-rw-r--r--offapi/com/sun/star/chart2/ChartTypeTemplate.idl25
-rw-r--r--offapi/com/sun/star/chart2/CoordinateSystem.idl56
-rw-r--r--offapi/com/sun/star/chart2/CoordinateSystemType.idl36
-rw-r--r--offapi/com/sun/star/chart2/CoordinateSystemTypeID.idl17
-rw-r--r--offapi/com/sun/star/chart2/CurveStyle.idl69
-rw-r--r--offapi/com/sun/star/chart2/CustomLegendEntry.idl50
-rw-r--r--offapi/com/sun/star/chart2/DataPoint.idl74
-rw-r--r--offapi/com/sun/star/chart2/DataPointGeometry3D.idl73
-rw-r--r--offapi/com/sun/star/chart2/DataPointLabel.idl78
-rw-r--r--offapi/com/sun/star/chart2/DataPointProperties.idl328
-rw-r--r--offapi/com/sun/star/chart2/DataSeries.idl198
-rw-r--r--offapi/com/sun/star/chart2/Diagram.idl135
-rw-r--r--offapi/com/sun/star/chart2/ErrorBar.idl89
-rw-r--r--offapi/com/sun/star/chart2/ExplicitIncrementData.idl96
-rw-r--r--offapi/com/sun/star/chart2/ExplicitScaleData.idl45
-rw-r--r--offapi/com/sun/star/chart2/ExplicitSubIncrement.idl30
-rw-r--r--offapi/com/sun/star/chart2/ExponentialScaling.idl55
-rw-r--r--offapi/com/sun/star/chart2/FillBitmap.idl119
-rw-r--r--offapi/com/sun/star/chart2/FormattedString.idl44
-rw-r--r--offapi/com/sun/star/chart2/GridProperties.idl63
-rw-r--r--offapi/com/sun/star/chart2/IncrementData.idl69
-rw-r--r--offapi/com/sun/star/chart2/InterpretedData.idl62
-rw-r--r--offapi/com/sun/star/chart2/Legend.idl101
-rw-r--r--offapi/com/sun/star/chart2/LegendExpansion.idl75
-rw-r--r--offapi/com/sun/star/chart2/LegendPosition.idl71
-rw-r--r--offapi/com/sun/star/chart2/LegendSymbolStyle.idl107
-rw-r--r--offapi/com/sun/star/chart2/LightSource.idl68
-rw-r--r--offapi/com/sun/star/chart2/LinearScaling.idl56
-rw-r--r--offapi/com/sun/star/chart2/LogarithmicScaling.idl54
-rw-r--r--offapi/com/sun/star/chart2/LogicTargetModel.idl41
-rw-r--r--offapi/com/sun/star/chart2/MutableDataSequence.idl62
-rw-r--r--offapi/com/sun/star/chart2/PieChartOffsetMode.idl60
-rw-r--r--offapi/com/sun/star/chart2/PowerScaling.idl55
-rw-r--r--offapi/com/sun/star/chart2/PropertyPool.idl68
-rw-r--r--offapi/com/sun/star/chart2/RegressionCurve.idl69
-rw-r--r--offapi/com/sun/star/chart2/RegressionCurveEquation.idl65
-rw-r--r--offapi/com/sun/star/chart2/RelativePosition.idl88
-rw-r--r--offapi/com/sun/star/chart2/RelativeSize.idl84
-rw-r--r--offapi/com/sun/star/chart2/ScaleData.idl97
-rw-r--r--offapi/com/sun/star/chart2/Scaling.idl53
-rw-r--r--offapi/com/sun/star/chart2/StackingDirection.idl52
-rw-r--r--offapi/com/sun/star/chart2/StandardDiagramCreationParameters.idl59
-rw-r--r--offapi/com/sun/star/chart2/SubIncrement.idl31
-rw-r--r--offapi/com/sun/star/chart2/Symbol.idl122
-rw-r--r--offapi/com/sun/star/chart2/SymbolStyle.idl73
-rw-r--r--offapi/com/sun/star/chart2/TextAnchor.idl51
-rw-r--r--offapi/com/sun/star/chart2/TickmarkStyle.idl61
-rw-r--r--offapi/com/sun/star/chart2/Title.idl94
-rw-r--r--offapi/com/sun/star/chart2/TransparencyStyle.idl62
-rw-r--r--offapi/com/sun/star/chart2/ViewLegendEntry.idl58
-rw-r--r--offapi/com/sun/star/chart2/XAxis.idl56
-rw-r--r--offapi/com/sun/star/chart2/XChartDocument.idl141
-rw-r--r--offapi/com/sun/star/chart2/XChartShape.idl96
-rw-r--r--offapi/com/sun/star/chart2/XChartShapeContainer.idl36
-rw-r--r--offapi/com/sun/star/chart2/XChartType.idl75
-rw-r--r--offapi/com/sun/star/chart2/XChartTypeContainer.idl82
-rw-r--r--offapi/com/sun/star/chart2/XChartTypeManager.idl27
-rw-r--r--offapi/com/sun/star/chart2/XChartTypeTemplate.idl240
-rw-r--r--offapi/com/sun/star/chart2/XColorScheme.idl67
-rw-r--r--offapi/com/sun/star/chart2/XCoordinateSystem.idl73
-rw-r--r--offapi/com/sun/star/chart2/XCoordinateSystemContainer.idl80
-rw-r--r--offapi/com/sun/star/chart2/XDataInterpreter.idl107
-rw-r--r--offapi/com/sun/star/chart2/XDataSeries.idl88
-rw-r--r--offapi/com/sun/star/chart2/XDataSeriesContainer.idl82
-rw-r--r--offapi/com/sun/star/chart2/XDefaultSizeTransmitter.idl64
-rw-r--r--offapi/com/sun/star/chart2/XDiagram.idl97
-rw-r--r--offapi/com/sun/star/chart2/XDiagramProvider.idl65
-rw-r--r--offapi/com/sun/star/chart2/XFastPropertyState.idl146
-rw-r--r--offapi/com/sun/star/chart2/XFormattedString.idl35
-rw-r--r--offapi/com/sun/star/chart2/XInternalDataProvider.idl95
-rw-r--r--offapi/com/sun/star/chart2/XLabeled.idl93
-rw-r--r--offapi/com/sun/star/chart2/XLegend.idl59
-rw-r--r--offapi/com/sun/star/chart2/XLegendEntry.idl30
-rw-r--r--offapi/com/sun/star/chart2/XLegendSymbolProvider.idl35
-rw-r--r--offapi/com/sun/star/chart2/XPlotter.idl128
-rw-r--r--offapi/com/sun/star/chart2/XRegressionCurve.idl66
-rw-r--r--offapi/com/sun/star/chart2/XRegressionCurveCalculator.idl152
-rw-r--r--offapi/com/sun/star/chart2/XRegressionCurveContainer.idl81
-rw-r--r--offapi/com/sun/star/chart2/XScaling.idl32
-rw-r--r--offapi/com/sun/star/chart2/XStyleSupplier.idl75
-rw-r--r--offapi/com/sun/star/chart2/XTarget.idl33
-rw-r--r--offapi/com/sun/star/chart2/XTitle.idl61
-rw-r--r--offapi/com/sun/star/chart2/XTitled.idl64
-rw-r--r--offapi/com/sun/star/chart2/XTransformation.idl101
-rw-r--r--offapi/com/sun/star/chart2/XUndoHelper.idl90
-rw-r--r--offapi/com/sun/star/chart2/XUndoManager.idl111
-rw-r--r--offapi/com/sun/star/chart2/XUndoSupplier.idl57
-rw-r--r--offapi/com/sun/star/chart2/data/DataFilter.idl68
-rw-r--r--offapi/com/sun/star/chart2/data/DataProvider.idl69
-rw-r--r--offapi/com/sun/star/chart2/data/DataSequence.idl157
-rw-r--r--offapi/com/sun/star/chart2/data/DataSequenceRole.idl108
-rw-r--r--offapi/com/sun/star/chart2/data/DataSink.idl60
-rw-r--r--offapi/com/sun/star/chart2/data/DataSource.idl60
-rw-r--r--offapi/com/sun/star/chart2/data/HighlightedRange.idl74
-rw-r--r--offapi/com/sun/star/chart2/data/LabelOrigin.idl100
-rw-r--r--offapi/com/sun/star/chart2/data/LabeledDataSequence.idl83
-rw-r--r--offapi/com/sun/star/chart2/data/RangeHighlightListener.idl60
-rw-r--r--offapi/com/sun/star/chart2/data/RangeHighlighter.idl58
-rw-r--r--offapi/com/sun/star/chart2/data/TabularDataProviderArguments.idl161
-rw-r--r--offapi/com/sun/star/chart2/data/XDataProvider.idl164
-rw-r--r--offapi/com/sun/star/chart2/data/XDataReceiver.idl122
-rw-r--r--offapi/com/sun/star/chart2/data/XDataSequence.idl138
-rw-r--r--offapi/com/sun/star/chart2/data/XDataSink.idl78
-rw-r--r--offapi/com/sun/star/chart2/data/XDataSource.idl83
-rw-r--r--offapi/com/sun/star/chart2/data/XDatabaseDataProvider.idl224
-rw-r--r--offapi/com/sun/star/chart2/data/XLabeledDataSequence.idl80
-rw-r--r--offapi/com/sun/star/chart2/data/XNumericalDataSequence.idl60
-rw-r--r--offapi/com/sun/star/chart2/data/XRangeHighlighter.idl80
-rw-r--r--offapi/com/sun/star/chart2/data/XRangeXMLConversion.idl72
-rw-r--r--offapi/com/sun/star/chart2/data/XTextualDataSequence.idl59
-rw-r--r--offapi/com/sun/star/chart2/data/makefile.mk60
-rw-r--r--offapi/com/sun/star/chart2/makefile.mk111
-rw-r--r--offapi/com/sun/star/configuration/AccessRootElement.idl176
-rw-r--r--offapi/com/sun/star/configuration/AdministrationProvider.idl191
-rw-r--r--offapi/com/sun/star/configuration/CannotLoadConfigurationException.idl51
-rw-r--r--offapi/com/sun/star/configuration/ConfigurationAccess.idl265
-rw-r--r--offapi/com/sun/star/configuration/ConfigurationProvider.idl251
-rw-r--r--offapi/com/sun/star/configuration/ConfigurationRegistry.idl108
-rw-r--r--offapi/com/sun/star/configuration/ConfigurationUpdateAccess.idl144
-rw-r--r--offapi/com/sun/star/configuration/CorruptedConfigurationException.idl61
-rw-r--r--offapi/com/sun/star/configuration/CorruptedUIConfigurationException.idl55
-rw-r--r--offapi/com/sun/star/configuration/DefaultProvider.idl100
-rw-r--r--offapi/com/sun/star/configuration/GroupAccess.idl143
-rw-r--r--offapi/com/sun/star/configuration/GroupElement.idl89
-rw-r--r--offapi/com/sun/star/configuration/GroupUpdate.idl93
-rw-r--r--offapi/com/sun/star/configuration/HierarchyAccess.idl187
-rw-r--r--offapi/com/sun/star/configuration/HierarchyElement.idl132
-rw-r--r--offapi/com/sun/star/configuration/InstallationIncompleteException.idl51
-rw-r--r--offapi/com/sun/star/configuration/InvalidBootstrapFileException.idl53
-rw-r--r--offapi/com/sun/star/configuration/MissingBootstrapFileException.idl53
-rw-r--r--offapi/com/sun/star/configuration/PropertyHierarchy.idl104
-rw-r--r--offapi/com/sun/star/configuration/SetAccess.idl105
-rw-r--r--offapi/com/sun/star/configuration/SetElement.idl186
-rw-r--r--offapi/com/sun/star/configuration/SetUpdate.idl105
-rw-r--r--offapi/com/sun/star/configuration/SimpleSetAccess.idl122
-rw-r--r--offapi/com/sun/star/configuration/SimpleSetUpdate.idl184
-rw-r--r--offapi/com/sun/star/configuration/Update.idl45
-rw-r--r--offapi/com/sun/star/configuration/UpdateRootElement.idl110
-rw-r--r--offapi/com/sun/star/configuration/XTemplateContainer.idl80
-rw-r--r--offapi/com/sun/star/configuration/XTemplateInstance.idl70
-rw-r--r--offapi/com/sun/star/configuration/XUpdate.idl51
-rw-r--r--offapi/com/sun/star/configuration/backend/AuthenticationFailedException.idl50
-rw-r--r--offapi/com/sun/star/configuration/backend/Backend.idl100
-rw-r--r--offapi/com/sun/star/configuration/backend/BackendAccessException.idl51
-rw-r--r--offapi/com/sun/star/configuration/backend/BackendAdapter.idl94
-rw-r--r--offapi/com/sun/star/configuration/backend/BackendSetupException.idl59
-rw-r--r--offapi/com/sun/star/configuration/backend/CannotConnectException.idl59
-rw-r--r--offapi/com/sun/star/configuration/backend/ComponentChangeEvent.idl58
-rw-r--r--offapi/com/sun/star/configuration/backend/ConnectionLostException.idl54
-rw-r--r--offapi/com/sun/star/configuration/backend/CopyImporter.idl89
-rw-r--r--offapi/com/sun/star/configuration/backend/DataImporter.idl127
-rw-r--r--offapi/com/sun/star/configuration/backend/DefaultBackend.idl64
-rw-r--r--offapi/com/sun/star/configuration/backend/HierarchyBrowser.idl85
-rw-r--r--offapi/com/sun/star/configuration/backend/Importer.idl87
-rw-r--r--offapi/com/sun/star/configuration/backend/InsufficientAccessRightsException.idl60
-rw-r--r--offapi/com/sun/star/configuration/backend/InteractionHandler.idl102
-rw-r--r--offapi/com/sun/star/configuration/backend/InvalidAuthenticationMechanismException.idl51
-rw-r--r--offapi/com/sun/star/configuration/backend/Layer.idl117
-rw-r--r--offapi/com/sun/star/configuration/backend/LayerDescriber.idl41
-rw-r--r--offapi/com/sun/star/configuration/backend/LayerFilter.idl94
-rw-r--r--offapi/com/sun/star/configuration/backend/LayerUpdateMerger.idl101
-rw-r--r--offapi/com/sun/star/configuration/backend/LdapMultiLayerStratum.idl60
-rw-r--r--offapi/com/sun/star/configuration/backend/LdapSingleBackend.idl61
-rw-r--r--offapi/com/sun/star/configuration/backend/LdapSingleStratum.idl60
-rw-r--r--offapi/com/sun/star/configuration/backend/LocalDataImporter.idl111
-rw-r--r--offapi/com/sun/star/configuration/backend/LocalHierarchyBrowser.idl92
-rw-r--r--offapi/com/sun/star/configuration/backend/LocalSchemaSupplier.idl61
-rw-r--r--offapi/com/sun/star/configuration/backend/LocalSingleBackend.idl61
-rw-r--r--offapi/com/sun/star/configuration/backend/LocalSingleStratum.idl60
-rw-r--r--offapi/com/sun/star/configuration/backend/MalformedDataException.idl91
-rw-r--r--offapi/com/sun/star/configuration/backend/MergeImporter.idl77
-rw-r--r--offapi/com/sun/star/configuration/backend/MergeRecoveryRequest.idl90
-rw-r--r--offapi/com/sun/star/configuration/backend/MultiLayerStratum.idl73
-rw-r--r--offapi/com/sun/star/configuration/backend/MultiStratumBackend.idl76
-rw-r--r--offapi/com/sun/star/configuration/backend/NodeAttribute.idl101
-rw-r--r--offapi/com/sun/star/configuration/backend/OfflineBackend.idl78
-rw-r--r--offapi/com/sun/star/configuration/backend/OnlineBackend.idl65
-rw-r--r--offapi/com/sun/star/configuration/backend/PlatformBackend.idl60
-rw-r--r--offapi/com/sun/star/configuration/backend/PropertyInfo.idl69
-rw-r--r--offapi/com/sun/star/configuration/backend/Schema.idl87
-rw-r--r--offapi/com/sun/star/configuration/backend/SchemaAttribute.idl80
-rw-r--r--offapi/com/sun/star/configuration/backend/SchemaSupplier.idl60
-rw-r--r--offapi/com/sun/star/configuration/backend/SingleBackend.idl101
-rw-r--r--offapi/com/sun/star/configuration/backend/SingleBackendAdapter.idl65
-rw-r--r--offapi/com/sun/star/configuration/backend/SingleLayerStratum.idl73
-rw-r--r--offapi/com/sun/star/configuration/backend/StratumCreationException.idl62
-rw-r--r--offapi/com/sun/star/configuration/backend/SystemIntegration.idl72
-rw-r--r--offapi/com/sun/star/configuration/backend/TemplateIdentifier.idl67
-rw-r--r--offapi/com/sun/star/configuration/backend/UpdatableLayer.idl127
-rw-r--r--offapi/com/sun/star/configuration/backend/XBackend.idl206
-rw-r--r--offapi/com/sun/star/configuration/backend/XBackendChangesListener.idl65
-rw-r--r--offapi/com/sun/star/configuration/backend/XBackendChangesNotifier.idl80
-rw-r--r--offapi/com/sun/star/configuration/backend/XBackendEntities.idl142
-rw-r--r--offapi/com/sun/star/configuration/backend/XCompositeLayer.idl118
-rw-r--r--offapi/com/sun/star/configuration/backend/XLayer.idl91
-rw-r--r--offapi/com/sun/star/configuration/backend/XLayerContentDescriber.idl95
-rw-r--r--offapi/com/sun/star/configuration/backend/XLayerHandler.idl570
-rw-r--r--offapi/com/sun/star/configuration/backend/XLayerImporter.idl163
-rw-r--r--offapi/com/sun/star/configuration/backend/XMultiLayerStratum.idl347
-rw-r--r--offapi/com/sun/star/configuration/backend/XSchema.idl148
-rw-r--r--offapi/com/sun/star/configuration/backend/XSchemaHandler.idl538
-rw-r--r--offapi/com/sun/star/configuration/backend/XSchemaSupplier.idl89
-rw-r--r--offapi/com/sun/star/configuration/backend/XSingleLayerStratum.idl151
-rw-r--r--offapi/com/sun/star/configuration/backend/XUpdatableLayer.idl92
-rw-r--r--offapi/com/sun/star/configuration/backend/XUpdateHandler.idl673
-rw-r--r--offapi/com/sun/star/configuration/backend/XVersionedSchemaSupplier.idl97
-rw-r--r--offapi/com/sun/star/configuration/backend/makefile.mk103
-rw-r--r--offapi/com/sun/star/configuration/backend/xml/LayerParser.idl98
-rw-r--r--offapi/com/sun/star/configuration/backend/xml/LayerWriter.idl93
-rw-r--r--offapi/com/sun/star/configuration/backend/xml/SchemaParser.idl93
-rw-r--r--offapi/com/sun/star/configuration/backend/xml/makefile.mk43
-rw-r--r--offapi/com/sun/star/configuration/bootstrap/BootstrapContext.idl76
-rw-r--r--offapi/com/sun/star/configuration/bootstrap/makefile.mk41
-rw-r--r--offapi/com/sun/star/configuration/makefile.mk74
-rw-r--r--offapi/com/sun/star/datatransfer/DataFlavor.idl64
-rw-r--r--offapi/com/sun/star/datatransfer/DataFormatTranslator.idl78
-rw-r--r--offapi/com/sun/star/datatransfer/MimeContentTypeFactory.idl86
-rw-r--r--offapi/com/sun/star/datatransfer/UnsupportedFlavorException.idl54
-rw-r--r--offapi/com/sun/star/datatransfer/XDataFormatTranslator.idl84
-rw-r--r--offapi/com/sun/star/datatransfer/XMimeContentType.idl115
-rw-r--r--offapi/com/sun/star/datatransfer/XMimeContentTypeFactory.idl82
-rw-r--r--offapi/com/sun/star/datatransfer/XSystemTransferable.idl72
-rw-r--r--offapi/com/sun/star/datatransfer/XTransferDataAccess.idl84
-rw-r--r--offapi/com/sun/star/datatransfer/XTransferable.idl110
-rw-r--r--offapi/com/sun/star/datatransfer/XTransferableEx.idl71
-rw-r--r--offapi/com/sun/star/datatransfer/XTransferableSource.idl59
-rw-r--r--offapi/com/sun/star/datatransfer/XTransferableSupplier.idl77
-rw-r--r--offapi/com/sun/star/datatransfer/clipboard/ClipboardEvent.idl61
-rw-r--r--offapi/com/sun/star/datatransfer/clipboard/ClipboardManager.idl84
-rw-r--r--offapi/com/sun/star/datatransfer/clipboard/GenericClipboard.idl96
-rw-r--r--offapi/com/sun/star/datatransfer/clipboard/RenderingCapabilities.idl59
-rw-r--r--offapi/com/sun/star/datatransfer/clipboard/SystemClipboard.idl114
-rw-r--r--offapi/com/sun/star/datatransfer/clipboard/XClipboard.idl100
-rw-r--r--offapi/com/sun/star/datatransfer/clipboard/XClipboardEx.idl62
-rw-r--r--offapi/com/sun/star/datatransfer/clipboard/XClipboardFactory.idl75
-rw-r--r--offapi/com/sun/star/datatransfer/clipboard/XClipboardListener.idl65
-rw-r--r--offapi/com/sun/star/datatransfer/clipboard/XClipboardManager.idl114
-rw-r--r--offapi/com/sun/star/datatransfer/clipboard/XClipboardNotifier.idl70
-rw-r--r--offapi/com/sun/star/datatransfer/clipboard/XClipboardOwner.idl73
-rw-r--r--offapi/com/sun/star/datatransfer/clipboard/XFlushableClipboard.idl60
-rw-r--r--offapi/com/sun/star/datatransfer/clipboard/makefile.mk59
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/DNDConstants.idl89
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/DragGestureEvent.idl96
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/DragSourceDragEvent.idl72
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/DragSourceDropEvent.idl70
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/DragSourceEvent.idl73
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/DropTargetDragEnterEvent.idl69
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/DropTargetDragEvent.idl97
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/DropTargetDropEvent.idl106
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/DropTargetEvent.idl61
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/InvalidDNDOperationException.idl56
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/OleDragSource.idl102
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/OleDropTarget.idl94
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/X11DragSource.idl97
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/X11DropTarget.idl100
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/XAutoscroll.idl90
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/XDragGestureListener.idl70
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/XDragGestureRecognizer.idl84
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/XDragSource.idl139
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/XDragSourceContext.idl107
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/XDragSourceListener.idl114
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/XDropTarget.idl130
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/XDropTargetDragContext.idl91
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/XDropTargetDropContext.idl96
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/XDropTargetListener.idl116
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/makefile.mk70
-rw-r--r--offapi/com/sun/star/datatransfer/makefile.mk59
-rw-r--r--offapi/com/sun/star/deployment/DependencyException.idl71
-rw-r--r--offapi/com/sun/star/deployment/DeploymentException.idl49
-rw-r--r--offapi/com/sun/star/deployment/ExtensionManager.idl49
-rw-r--r--offapi/com/sun/star/deployment/ExtensionRemovedException.idl50
-rw-r--r--offapi/com/sun/star/deployment/InstallException.idl57
-rw-r--r--offapi/com/sun/star/deployment/InvalidRemovedParameterException.idl62
-rw-r--r--offapi/com/sun/star/deployment/LicenseException.idl61
-rw-r--r--offapi/com/sun/star/deployment/PackageInformationProvider.idl40
-rw-r--r--offapi/com/sun/star/deployment/PackageRegistryBackend.idl70
-rw-r--r--offapi/com/sun/star/deployment/PlatformException.idl50
-rw-r--r--offapi/com/sun/star/deployment/Prerequisites.idl45
-rw-r--r--offapi/com/sun/star/deployment/UpdateInformationEntry.idl52
-rw-r--r--offapi/com/sun/star/deployment/UpdateInformationProvider.idl40
-rw-r--r--offapi/com/sun/star/deployment/VersionException.idl65
-rw-r--r--offapi/com/sun/star/deployment/XExtensionManager.idl342
-rw-r--r--offapi/com/sun/star/deployment/XPackage.idl358
-rw-r--r--offapi/com/sun/star/deployment/XPackageInformationProvider.idl70
-rw-r--r--offapi/com/sun/star/deployment/XPackageManager.idl314
-rw-r--r--offapi/com/sun/star/deployment/XPackageManagerFactory.idl100
-rw-r--r--offapi/com/sun/star/deployment/XPackageRegistry.idl122
-rw-r--r--offapi/com/sun/star/deployment/XPackageTypeInfo.idl94
-rw-r--r--offapi/com/sun/star/deployment/XUpdateInformationProvider.idl109
-rw-r--r--offapi/com/sun/star/deployment/makefile.mk64
-rw-r--r--offapi/com/sun/star/deployment/test/SmoketestCommandEnvironment.idl43
-rw-r--r--offapi/com/sun/star/deployment/test/makefile.mk41
-rw-r--r--offapi/com/sun/star/deployment/thePackageManagerFactory.idl53
-rw-r--r--offapi/com/sun/star/deployment/ui/LicenseDialog.idl61
-rw-r--r--offapi/com/sun/star/deployment/ui/PackageManagerDialog.idl74
-rw-r--r--offapi/com/sun/star/deployment/ui/UpdateRequiredDialog.idl54
-rw-r--r--offapi/com/sun/star/deployment/ui/makefile.mk43
-rw-r--r--offapi/com/sun/star/document/AmbigousFilterRequest.idl75
-rw-r--r--offapi/com/sun/star/document/BrokenPackageRequest.idl56
-rw-r--r--offapi/com/sun/star/document/ChangedByOthersRequest.idl61
-rw-r--r--offapi/com/sun/star/document/CorruptedFilterConfigurationException.idl57
-rw-r--r--offapi/com/sun/star/document/DocumentEvent.idl85
-rw-r--r--offapi/com/sun/star/document/DocumentInfo.idl272
-rwxr-xr-xoffapi/com/sun/star/document/DocumentProperties.idl64
-rw-r--r--offapi/com/sun/star/document/DocumentRevisionListPersistence.idl51
-rw-r--r--offapi/com/sun/star/document/EventDescriptor.idl68
-rw-r--r--offapi/com/sun/star/document/EventObject.idl63
-rw-r--r--offapi/com/sun/star/document/Events.idl105
-rw-r--r--offapi/com/sun/star/document/ExportFilter.idl136
-rw-r--r--offapi/com/sun/star/document/ExtendedTypeDetection.idl109
-rw-r--r--offapi/com/sun/star/document/ExtendedTypeDetectionFactory.idl154
-rw-r--r--offapi/com/sun/star/document/FilterAdapter.idl53
-rw-r--r--offapi/com/sun/star/document/FilterFactory.idl251
-rw-r--r--offapi/com/sun/star/document/FilterOptionsRequest.idl68
-rw-r--r--offapi/com/sun/star/document/HeaderFooterSettings.idl73
-rw-r--r--offapi/com/sun/star/document/ImportFilter.idl136
-rw-r--r--offapi/com/sun/star/document/LinkTarget.idl69
-rw-r--r--offapi/com/sun/star/document/LinkTargets.idl58
-rw-r--r--offapi/com/sun/star/document/LinkUpdateModes.idl61
-rw-r--r--offapi/com/sun/star/document/LockFileIgnoreRequest.idl61
-rw-r--r--offapi/com/sun/star/document/LockedDocumentRequest.idl68
-rw-r--r--offapi/com/sun/star/document/LockedOnSavingRequest.idl69
-rw-r--r--offapi/com/sun/star/document/MacroExecMode.idl132
-rw-r--r--offapi/com/sun/star/document/MediaDescriptor.idl617
-rw-r--r--offapi/com/sun/star/document/NoSuchFilterRequest.idl69
-rw-r--r--offapi/com/sun/star/document/OOXMLDocumentPropertiesImporter.idl48
-rw-r--r--offapi/com/sun/star/document/OfficeDocument.idl230
-rw-r--r--offapi/com/sun/star/document/OleEmbeddedServerRegistration.idl64
-rw-r--r--offapi/com/sun/star/document/OwnLockOnDocumentRequest.idl72
-rw-r--r--offapi/com/sun/star/document/PDFDialog.idl64
-rw-r--r--offapi/com/sun/star/document/PrinterIndependentLayout.idl66
-rw-r--r--offapi/com/sun/star/document/RedlineDisplayType.idl60
-rw-r--r--offapi/com/sun/star/document/Settings.idl291
-rw-r--r--offapi/com/sun/star/document/StandaloneDocumentInfo.idl79
-rw-r--r--offapi/com/sun/star/document/TypeDetection.idl198
-rw-r--r--offapi/com/sun/star/document/UpdateDocMode.idl75
-rw-r--r--offapi/com/sun/star/document/XActionLockable.idl88
-rw-r--r--offapi/com/sun/star/document/XBinaryStreamResolver.idl84
-rwxr-xr-xoffapi/com/sun/star/document/XCodeNameQuery.idl56
-rw-r--r--offapi/com/sun/star/document/XDocumentEventBroadcaster.idl125
-rw-r--r--offapi/com/sun/star/document/XDocumentEventListener.idl65
-rw-r--r--offapi/com/sun/star/document/XDocumentInfo.idl147
-rw-r--r--offapi/com/sun/star/document/XDocumentInfoSupplier.idl74
-rw-r--r--offapi/com/sun/star/document/XDocumentInsertable.idl72
-rw-r--r--offapi/com/sun/star/document/XDocumentLanguages.idl64
-rwxr-xr-xoffapi/com/sun/star/document/XDocumentProperties.idl460
-rw-r--r--offapi/com/sun/star/document/XDocumentPropertiesSupplier.idl70
-rw-r--r--offapi/com/sun/star/document/XDocumentRecovery.idl127
-rw-r--r--offapi/com/sun/star/document/XDocumentRevisionListPersistence.idl90
-rw-r--r--offapi/com/sun/star/document/XDocumentSubStorageSupplier.idl87
-rw-r--r--offapi/com/sun/star/document/XEmbeddedObjectResolver.idl54
-rw-r--r--offapi/com/sun/star/document/XEmbeddedObjectSupplier.idl60
-rw-r--r--offapi/com/sun/star/document/XEmbeddedObjectSupplier2.idl80
-rw-r--r--offapi/com/sun/star/document/XEmbeddedScripts.idl72
-rw-r--r--offapi/com/sun/star/document/XEventBroadcaster.idl72
-rw-r--r--offapi/com/sun/star/document/XEventListener.idl66
-rw-r--r--offapi/com/sun/star/document/XEventsSupplier.idl57
-rw-r--r--offapi/com/sun/star/document/XExporter.idl78
-rw-r--r--offapi/com/sun/star/document/XExtendedFilterDetection.idl82
-rw-r--r--offapi/com/sun/star/document/XFilter.idl88
-rw-r--r--offapi/com/sun/star/document/XFilterAdapter.idl67
-rw-r--r--offapi/com/sun/star/document/XGraphicObjectResolver.idl54
-rw-r--r--offapi/com/sun/star/document/XImporter.idl78
-rw-r--r--offapi/com/sun/star/document/XInteractionFilterOptions.idl69
-rw-r--r--offapi/com/sun/star/document/XInteractionFilterSelect.idl80
-rw-r--r--offapi/com/sun/star/document/XLinkTargetSupplier.idl65
-rw-r--r--offapi/com/sun/star/document/XMLBasicExporter.idl84
-rw-r--r--offapi/com/sun/star/document/XMLBasicImporter.idl75
-rw-r--r--offapi/com/sun/star/document/XMLOasisBasicExporter.idl84
-rw-r--r--offapi/com/sun/star/document/XMLOasisBasicImporter.idl75
-rw-r--r--offapi/com/sun/star/document/XMimeTypeInfo.idl63
-rw-r--r--offapi/com/sun/star/document/XOOXMLDocumentPropertiesImporter.idl105
-rw-r--r--offapi/com/sun/star/document/XRedlinesSupplier.idl60
-rw-r--r--offapi/com/sun/star/document/XScriptInvocationContext.idl73
-rw-r--r--offapi/com/sun/star/document/XStandaloneDocumentInfo.idl105
-rw-r--r--offapi/com/sun/star/document/XStorageBasedDocument.idl123
-rw-r--r--offapi/com/sun/star/document/XStorageChangeListener.idl70
-rw-r--r--offapi/com/sun/star/document/XTypeDetection.idl124
-rw-r--r--offapi/com/sun/star/document/XViewDataSupplier.idl76
-rw-r--r--offapi/com/sun/star/document/makefile.mk123
-rw-r--r--offapi/com/sun/star/drawing/AccessibleDrawDocumentView.idl142
-rw-r--r--offapi/com/sun/star/drawing/AccessibleGraphControl.idl83
-rw-r--r--offapi/com/sun/star/drawing/AccessibleGraphicShape.idl100
-rw-r--r--offapi/com/sun/star/drawing/AccessibleImageBullet.idl111
-rw-r--r--offapi/com/sun/star/drawing/AccessibleOLEShape.idl87
-rw-r--r--offapi/com/sun/star/drawing/AccessibleShape.idl206
-rw-r--r--offapi/com/sun/star/drawing/AccessibleSlideView.idl65
-rw-r--r--offapi/com/sun/star/drawing/AccessibleSlideViewObject.idl64
-rw-r--r--offapi/com/sun/star/drawing/Alignment.idl104
-rw-r--r--offapi/com/sun/star/drawing/AppletShape.idl98
-rw-r--r--offapi/com/sun/star/drawing/Arrangement.idl80
-rw-r--r--offapi/com/sun/star/drawing/Background.idl54
-rw-r--r--offapi/com/sun/star/drawing/BezierPoint.idl77
-rw-r--r--offapi/com/sun/star/drawing/BitmapMode.idl66
-rw-r--r--offapi/com/sun/star/drawing/BitmapTable.idl64
-rw-r--r--offapi/com/sun/star/drawing/BoundVolume.idl60
-rw-r--r--offapi/com/sun/star/drawing/CameraGeometry.idl64
-rw-r--r--offapi/com/sun/star/drawing/CaptionEscapeDirection.idl67
-rw-r--r--offapi/com/sun/star/drawing/CaptionShape.idl158
-rw-r--r--offapi/com/sun/star/drawing/CaptionType.idl66
-rw-r--r--offapi/com/sun/star/drawing/CircleKind.idl77
-rw-r--r--offapi/com/sun/star/drawing/ClosedBezierShape.idl89
-rw-r--r--offapi/com/sun/star/drawing/ColorMode.idl79
-rw-r--r--offapi/com/sun/star/drawing/ConnectionType.idl92
-rw-r--r--offapi/com/sun/star/drawing/ConnectorProperties.idl82
-rw-r--r--offapi/com/sun/star/drawing/ConnectorShape.idl152
-rw-r--r--offapi/com/sun/star/drawing/ConnectorType.idl78
-rw-r--r--offapi/com/sun/star/drawing/ControlShape.idl61
-rw-r--r--offapi/com/sun/star/drawing/CoordinateSequence.idl45
-rw-r--r--offapi/com/sun/star/drawing/CoordinateSequenceSequence.idl48
-rw-r--r--offapi/com/sun/star/drawing/CustomShape.idl116
-rw-r--r--offapi/com/sun/star/drawing/CustomShapeEngine.idl64
-rw-r--r--offapi/com/sun/star/drawing/DashStyle.idl79
-rw-r--r--offapi/com/sun/star/drawing/DashTable.idl64
-rw-r--r--offapi/com/sun/star/drawing/Defaults.idl80
-rw-r--r--offapi/com/sun/star/drawing/Direction3D.idl64
-rw-r--r--offapi/com/sun/star/drawing/DocumentSettings.idl109
-rw-r--r--offapi/com/sun/star/drawing/DoubleSequence.idl44
-rw-r--r--offapi/com/sun/star/drawing/DoubleSequenceSequence.idl48
-rw-r--r--offapi/com/sun/star/drawing/DrawPage.idl88
-rw-r--r--offapi/com/sun/star/drawing/DrawPages.idl80
-rw-r--r--offapi/com/sun/star/drawing/DrawViewMode.idl72
-rw-r--r--offapi/com/sun/star/drawing/DrawingDocument.idl54
-rw-r--r--offapi/com/sun/star/drawing/DrawingDocumentDrawView.idl203
-rw-r--r--offapi/com/sun/star/drawing/DrawingDocumentFactory.idl54
-rw-r--r--offapi/com/sun/star/drawing/EllipseShape.idl105
-rw-r--r--offapi/com/sun/star/drawing/EnhancedCustomShapeAdjustmentValue.idl58
-rw-r--r--offapi/com/sun/star/drawing/EnhancedCustomShapeExtrusion.idl176
-rw-r--r--offapi/com/sun/star/drawing/EnhancedCustomShapeGeometry.idl119
-rw-r--r--offapi/com/sun/star/drawing/EnhancedCustomShapeGluePointType.idl64
-rw-r--r--offapi/com/sun/star/drawing/EnhancedCustomShapeHandle.idl121
-rw-r--r--offapi/com/sun/star/drawing/EnhancedCustomShapeParameter.idl54
-rw-r--r--offapi/com/sun/star/drawing/EnhancedCustomShapeParameterPair.idl56
-rw-r--r--offapi/com/sun/star/drawing/EnhancedCustomShapeParameterType.idl107
-rw-r--r--offapi/com/sun/star/drawing/EnhancedCustomShapePath.idl119
-rw-r--r--offapi/com/sun/star/drawing/EnhancedCustomShapeSegment.idl54
-rw-r--r--offapi/com/sun/star/drawing/EnhancedCustomShapeSegmentCommand.idl115
-rw-r--r--offapi/com/sun/star/drawing/EnhancedCustomShapeTextFrame.idl57
-rw-r--r--offapi/com/sun/star/drawing/EnhancedCustomShapeTextPath.idl63
-rw-r--r--offapi/com/sun/star/drawing/EnhancedCustomShapeTextPathMode.idl57
-rw-r--r--offapi/com/sun/star/drawing/EscapeDirection.idl76
-rw-r--r--offapi/com/sun/star/drawing/FillProperties.idl274
-rw-r--r--offapi/com/sun/star/drawing/FillStyle.idl89
-rw-r--r--offapi/com/sun/star/drawing/FlagSequence.idl48
-rw-r--r--offapi/com/sun/star/drawing/FlagSequenceSequence.idl49
-rw-r--r--offapi/com/sun/star/drawing/GenericDrawPage.idl238
-rw-r--r--offapi/com/sun/star/drawing/GenericDrawingDocument.idl240
-rw-r--r--offapi/com/sun/star/drawing/GluePoint.idl91
-rw-r--r--offapi/com/sun/star/drawing/GluePoint2.idl89
-rw-r--r--offapi/com/sun/star/drawing/GradientTable.idl64
-rw-r--r--offapi/com/sun/star/drawing/GraphicExportFilter.idl104
-rw-r--r--offapi/com/sun/star/drawing/GraphicFilterRequest.idl56
-rw-r--r--offapi/com/sun/star/drawing/GraphicObjectShape.idl160
-rw-r--r--offapi/com/sun/star/drawing/GroupShape.idl76
-rw-r--r--offapi/com/sun/star/drawing/Hatch.idl86
-rw-r--r--offapi/com/sun/star/drawing/HatchStyle.idl70
-rw-r--r--offapi/com/sun/star/drawing/HatchTable.idl64
-rw-r--r--offapi/com/sun/star/drawing/HomogenMatrix.idl74
-rw-r--r--offapi/com/sun/star/drawing/HomogenMatrix3.idl64
-rw-r--r--offapi/com/sun/star/drawing/HomogenMatrix4.idl68
-rw-r--r--offapi/com/sun/star/drawing/HomogenMatrixLine.idl70
-rw-r--r--offapi/com/sun/star/drawing/HomogenMatrixLine3.idl59
-rw-r--r--offapi/com/sun/star/drawing/HomogenMatrixLine4.idl63
-rw-r--r--offapi/com/sun/star/drawing/HorizontalDimensioning.idl79
-rw-r--r--offapi/com/sun/star/drawing/Layer.idl106
-rw-r--r--offapi/com/sun/star/drawing/LayerManager.idl80
-rw-r--r--offapi/com/sun/star/drawing/LayerType.idl77
-rw-r--r--offapi/com/sun/star/drawing/LineDash.idl94
-rw-r--r--offapi/com/sun/star/drawing/LineEndType.idl92
-rw-r--r--offapi/com/sun/star/drawing/LineJoint.idl74
-rw-r--r--offapi/com/sun/star/drawing/LineProperties.idl161
-rw-r--r--offapi/com/sun/star/drawing/LineShape.idl82
-rw-r--r--offapi/com/sun/star/drawing/LineStyle.idl74
-rw-r--r--offapi/com/sun/star/drawing/MarkerTable.idl64
-rw-r--r--offapi/com/sun/star/drawing/MasterPage.idl77
-rw-r--r--offapi/com/sun/star/drawing/MasterPages.idl60
-rw-r--r--offapi/com/sun/star/drawing/MeasureKind.idl69
-rw-r--r--offapi/com/sun/star/drawing/MeasureProperties.idl154
-rw-r--r--offapi/com/sun/star/drawing/MeasureShape.idl94
-rw-r--r--offapi/com/sun/star/drawing/MeasureTextHorzPos.idl75
-rw-r--r--offapi/com/sun/star/drawing/MeasureTextVertPos.idl80
-rw-r--r--offapi/com/sun/star/drawing/MirrorAxis.idl63
-rw-r--r--offapi/com/sun/star/drawing/NormalsKind.idl73
-rw-r--r--offapi/com/sun/star/drawing/OLE2Shape.idl89
-rw-r--r--offapi/com/sun/star/drawing/OpenBezierShape.idl84
-rw-r--r--offapi/com/sun/star/drawing/PageShape.idl67
-rw-r--r--offapi/com/sun/star/drawing/PluginShape.idl82
-rw-r--r--offapi/com/sun/star/drawing/PointSequence.idl48
-rw-r--r--offapi/com/sun/star/drawing/PointSequenceSequence.idl48
-rw-r--r--offapi/com/sun/star/drawing/PolyLineShape.idl84
-rw-r--r--offapi/com/sun/star/drawing/PolyPolygonBezierCoords.idl66
-rw-r--r--offapi/com/sun/star/drawing/PolyPolygonBezierDescriptor.idl75
-rw-r--r--offapi/com/sun/star/drawing/PolyPolygonBezierShape.idl90
-rw-r--r--offapi/com/sun/star/drawing/PolyPolygonDescriptor.idl74
-rw-r--r--offapi/com/sun/star/drawing/PolyPolygonShape.idl92
-rw-r--r--offapi/com/sun/star/drawing/PolyPolygonShape3D.idl68
-rw-r--r--offapi/com/sun/star/drawing/PolygonFlags.idl81
-rw-r--r--offapi/com/sun/star/drawing/PolygonKind.idl112
-rw-r--r--offapi/com/sun/star/drawing/Position3D.idl70
-rw-r--r--offapi/com/sun/star/drawing/ProjectionMode.idl66
-rw-r--r--offapi/com/sun/star/drawing/RectanglePoint.idl121
-rw-r--r--offapi/com/sun/star/drawing/RectangleShape.idl90
-rw-r--r--offapi/com/sun/star/drawing/RotationDescriptor.idl77
-rw-r--r--offapi/com/sun/star/drawing/ShadeMode.idl80
-rw-r--r--offapi/com/sun/star/drawing/ShadowProperties.idl86
-rw-r--r--offapi/com/sun/star/drawing/Shape.idl210
-rw-r--r--offapi/com/sun/star/drawing/ShapeCollection.idl67
-rw-r--r--offapi/com/sun/star/drawing/Shapes.idl56
-rw-r--r--offapi/com/sun/star/drawing/SlideRenderer.idl48
-rw-r--r--offapi/com/sun/star/drawing/SlideSorter.idl160
-rw-r--r--offapi/com/sun/star/drawing/SnapObjectType.idl67
-rw-r--r--offapi/com/sun/star/drawing/Text.idl65
-rw-r--r--offapi/com/sun/star/drawing/TextAdjust.idl90
-rw-r--r--offapi/com/sun/star/drawing/TextAnimationDirection.idl73
-rw-r--r--offapi/com/sun/star/drawing/TextAnimationKind.idl84
-rw-r--r--offapi/com/sun/star/drawing/TextFitToSizeType.idl74
-rw-r--r--offapi/com/sun/star/drawing/TextHorizontalAdjust.idl73
-rw-r--r--offapi/com/sun/star/drawing/TextProperties.idl334
-rw-r--r--offapi/com/sun/star/drawing/TextShape.idl87
-rw-r--r--offapi/com/sun/star/drawing/TextVerticalAdjust.idl76
-rw-r--r--offapi/com/sun/star/drawing/TextureKind.idl67
-rw-r--r--offapi/com/sun/star/drawing/TextureKind2.idl66
-rw-r--r--offapi/com/sun/star/drawing/TextureMode.idl71
-rw-r--r--offapi/com/sun/star/drawing/TextureProjectionMode.idl76
-rw-r--r--offapi/com/sun/star/drawing/TransparencyGradientTable.idl64
-rw-r--r--offapi/com/sun/star/drawing/VerticalDimensioning.idl79
-rw-r--r--offapi/com/sun/star/drawing/XConnectableShape.idl72
-rw-r--r--offapi/com/sun/star/drawing/XConnectorShape.idl92
-rw-r--r--offapi/com/sun/star/drawing/XControlShape.idl83
-rw-r--r--offapi/com/sun/star/drawing/XCustomShapeEngine.idl87
-rw-r--r--offapi/com/sun/star/drawing/XCustomShapeHandle.idl68
-rw-r--r--offapi/com/sun/star/drawing/XDrawPage.idl52
-rw-r--r--offapi/com/sun/star/drawing/XDrawPageDuplicator.idl73
-rw-r--r--offapi/com/sun/star/drawing/XDrawPageExpander.idl74
-rw-r--r--offapi/com/sun/star/drawing/XDrawPageSummarizer.idl72
-rw-r--r--offapi/com/sun/star/drawing/XDrawPageSupplier.idl71
-rw-r--r--offapi/com/sun/star/drawing/XDrawPages.idl90
-rw-r--r--offapi/com/sun/star/drawing/XDrawPagesSupplier.idl62
-rw-r--r--offapi/com/sun/star/drawing/XDrawSubController.idl74
-rw-r--r--offapi/com/sun/star/drawing/XDrawView.idl76
-rw-r--r--offapi/com/sun/star/drawing/XEnhancedCustomShapeDefaulter.idl295
-rw-r--r--offapi/com/sun/star/drawing/XGluePointsSupplier.idl58
-rw-r--r--offapi/com/sun/star/drawing/XLayer.idl52
-rw-r--r--offapi/com/sun/star/drawing/XLayerManager.idl117
-rw-r--r--offapi/com/sun/star/drawing/XLayerSupplier.idl66
-rw-r--r--offapi/com/sun/star/drawing/XMasterPageTarget.idl74
-rw-r--r--offapi/com/sun/star/drawing/XMasterPagesSupplier.idl64
-rw-r--r--offapi/com/sun/star/drawing/XPresenterHelper.idl179
-rw-r--r--offapi/com/sun/star/drawing/XSelectionFunction.idl86
-rw-r--r--offapi/com/sun/star/drawing/XShape.idl102
-rw-r--r--offapi/com/sun/star/drawing/XShapeAligner.idl72
-rw-r--r--offapi/com/sun/star/drawing/XShapeArranger.idl121
-rw-r--r--offapi/com/sun/star/drawing/XShapeBinder.idl89
-rw-r--r--offapi/com/sun/star/drawing/XShapeCombiner.idl92
-rw-r--r--offapi/com/sun/star/drawing/XShapeDescriptor.idl61
-rw-r--r--offapi/com/sun/star/drawing/XShapeGroup.idl85
-rw-r--r--offapi/com/sun/star/drawing/XShapeGrouper.idl93
-rw-r--r--offapi/com/sun/star/drawing/XShapeMirror.idl83
-rw-r--r--offapi/com/sun/star/drawing/XShapes.idl80
-rw-r--r--offapi/com/sun/star/drawing/XSlidePreviewCache.idl143
-rw-r--r--offapi/com/sun/star/drawing/XSlideRenderer.idl112
-rw-r--r--offapi/com/sun/star/drawing/XUniversalShapeDescriptor.idl59
-rw-r--r--offapi/com/sun/star/drawing/framework/AnchorBindingMode.idl54
-rw-r--r--offapi/com/sun/star/drawing/framework/BasicPaneFactory.idl62
-rw-r--r--offapi/com/sun/star/drawing/framework/BasicToolBarFactory.idl65
-rw-r--r--offapi/com/sun/star/drawing/framework/BasicViewFactory.idl67
-rw-r--r--offapi/com/sun/star/drawing/framework/Configuration.idl58
-rw-r--r--offapi/com/sun/star/drawing/framework/ConfigurationChangeEvent.idl87
-rw-r--r--offapi/com/sun/star/drawing/framework/ConfigurationController.idl63
-rw-r--r--offapi/com/sun/star/drawing/framework/ModuleController.idl59
-rw-r--r--offapi/com/sun/star/drawing/framework/ResourceActivationMode.idl54
-rw-r--r--offapi/com/sun/star/drawing/framework/ResourceId.idl70
-rw-r--r--offapi/com/sun/star/drawing/framework/TabBarButton.idl64
-rw-r--r--offapi/com/sun/star/drawing/framework/XConfiguration.idl138
-rw-r--r--offapi/com/sun/star/drawing/framework/XConfigurationChangeListener.idl57
-rw-r--r--offapi/com/sun/star/drawing/framework/XConfigurationChangeRequest.idl68
-rw-r--r--offapi/com/sun/star/drawing/framework/XConfigurationController.idl272
-rw-r--r--offapi/com/sun/star/drawing/framework/XConfigurationControllerBroadcaster.idl91
-rw-r--r--offapi/com/sun/star/drawing/framework/XConfigurationControllerRequestQueue.idl77
-rw-r--r--offapi/com/sun/star/drawing/framework/XControllerManager.idl63
-rw-r--r--offapi/com/sun/star/drawing/framework/XModuleController.idl67
-rw-r--r--offapi/com/sun/star/drawing/framework/XPane.idl75
-rw-r--r--offapi/com/sun/star/drawing/framework/XPane2.idl76
-rw-r--r--offapi/com/sun/star/drawing/framework/XPaneBorderPainter.idl161
-rw-r--r--offapi/com/sun/star/drawing/framework/XRelocatableResource.idl56
-rw-r--r--offapi/com/sun/star/drawing/framework/XResource.idl63
-rw-r--r--offapi/com/sun/star/drawing/framework/XResourceFactory.idl92
-rw-r--r--offapi/com/sun/star/drawing/framework/XResourceFactoryManager.idl98
-rw-r--r--offapi/com/sun/star/drawing/framework/XResourceId.idl157
-rw-r--r--offapi/com/sun/star/drawing/framework/XTabBar.idl106
-rw-r--r--offapi/com/sun/star/drawing/framework/XToolBar.idl48
-rw-r--r--offapi/com/sun/star/drawing/framework/XView.idl56
-rw-r--r--offapi/com/sun/star/drawing/framework/makefile.mk75
-rw-r--r--offapi/com/sun/star/drawing/makefile.mk227
-rw-r--r--offapi/com/sun/star/drawing/modules.idl65
-rw-r--r--offapi/com/sun/star/embed/Actions.idl70
-rw-r--r--offapi/com/sun/star/embed/Aspects.idl84
-rw-r--r--offapi/com/sun/star/embed/BaseStorage.idl82
-rw-r--r--offapi/com/sun/star/embed/DocumentCloser.idl88
-rw-r--r--offapi/com/sun/star/embed/ElementModes.idl116
-rw-r--r--offapi/com/sun/star/embed/EmbedMapUnits.idl112
-rw-r--r--offapi/com/sun/star/embed/EmbedMisc.idl188
-rw-r--r--offapi/com/sun/star/embed/EmbedStates.idl99
-rw-r--r--offapi/com/sun/star/embed/EmbedUpdateModes.idl68
-rw-r--r--offapi/com/sun/star/embed/EmbedVerbs.idl84
-rw-r--r--offapi/com/sun/star/embed/EmbeddedObjectDescriptor.idl114
-rw-r--r--offapi/com/sun/star/embed/EntryInitModes.idl81
-rw-r--r--offapi/com/sun/star/embed/FileSystemStorage.idl117
-rw-r--r--offapi/com/sun/star/embed/FileSystemStorageFactory.idl109
-rw-r--r--offapi/com/sun/star/embed/InsertedObjectInfo.idl71
-rw-r--r--offapi/com/sun/star/embed/InstanceLocker.idl117
-rw-r--r--offapi/com/sun/star/embed/InvalidStorageException.idl56
-rw-r--r--offapi/com/sun/star/embed/LinkageMisuseException.idl56
-rw-r--r--offapi/com/sun/star/embed/NeedsRunningStateException.idl59
-rw-r--r--offapi/com/sun/star/embed/NoVisualAreaSizeException.idl53
-rw-r--r--offapi/com/sun/star/embed/OLESimpleStorage.idl82
-rw-r--r--offapi/com/sun/star/embed/ObjectSaveVetoException.idl55
-rw-r--r--offapi/com/sun/star/embed/StateChangeInProgressException.idl62
-rw-r--r--offapi/com/sun/star/embed/Storage.idl367
-rw-r--r--offapi/com/sun/star/embed/StorageFactory.idl126
-rw-r--r--offapi/com/sun/star/embed/StorageFormats.idl65
-rw-r--r--offapi/com/sun/star/embed/StorageStream.idl239
-rw-r--r--offapi/com/sun/star/embed/StorageWrappedTargetException.idl53
-rw-r--r--offapi/com/sun/star/embed/UnreachableStateException.idl61
-rw-r--r--offapi/com/sun/star/embed/UseBackupException.idl66
-rw-r--r--offapi/com/sun/star/embed/VerbAttributes.idl59
-rw-r--r--offapi/com/sun/star/embed/VerbDescriptor.idl76
-rw-r--r--offapi/com/sun/star/embed/VisualRepresentation.idl61
-rw-r--r--offapi/com/sun/star/embed/WrongStateException.idl53
-rw-r--r--offapi/com/sun/star/embed/XActionsApproval.idl70
-rw-r--r--offapi/com/sun/star/embed/XClassifiedObject.idl86
-rw-r--r--offapi/com/sun/star/embed/XCommonEmbedPersist.idl136
-rw-r--r--offapi/com/sun/star/embed/XComponentSupplier.idl61
-rw-r--r--offapi/com/sun/star/embed/XEmbedObjectClipboardCreator.idl122
-rw-r--r--offapi/com/sun/star/embed/XEmbedObjectCreator.idl206
-rw-r--r--offapi/com/sun/star/embed/XEmbedObjectFactory.idl134
-rw-r--r--offapi/com/sun/star/embed/XEmbedPersist.idl275
-rw-r--r--offapi/com/sun/star/embed/XEmbeddedClient.idl90
-rw-r--r--offapi/com/sun/star/embed/XEmbeddedObject.idl306
-rw-r--r--offapi/com/sun/star/embed/XEncryptionProtectedSource.idl74
-rw-r--r--offapi/com/sun/star/embed/XExtendedStorageStream.idl134
-rw-r--r--offapi/com/sun/star/embed/XHatchWindow.idl75
-rw-r--r--offapi/com/sun/star/embed/XHatchWindowController.idl83
-rw-r--r--offapi/com/sun/star/embed/XHatchWindowFactory.idl91
-rw-r--r--offapi/com/sun/star/embed/XHierarchicalStorageAccess.idl235
-rw-r--r--offapi/com/sun/star/embed/XInplaceClient.idl242
-rw-r--r--offapi/com/sun/star/embed/XInplaceObject.idl133
-rw-r--r--offapi/com/sun/star/embed/XInsertObjectDialog.idl112
-rw-r--r--offapi/com/sun/star/embed/XLinkCreator.idl116
-rw-r--r--offapi/com/sun/star/embed/XLinkFactory.idl119
-rw-r--r--offapi/com/sun/star/embed/XLinkageSupport.idl146
-rw-r--r--offapi/com/sun/star/embed/XOLESimpleStorage.idl105
-rw-r--r--offapi/com/sun/star/embed/XOptimizedStorage.idl226
-rw-r--r--offapi/com/sun/star/embed/XPackageStructureCreator.idl71
-rw-r--r--offapi/com/sun/star/embed/XPersistanceHolder.idl88
-rw-r--r--offapi/com/sun/star/embed/XRelationshipAccess.idl283
-rw-r--r--offapi/com/sun/star/embed/XStateChangeBroadcaster.idl67
-rw-r--r--offapi/com/sun/star/embed/XStateChangeListener.idl102
-rw-r--r--offapi/com/sun/star/embed/XStorage.idl661
-rw-r--r--offapi/com/sun/star/embed/XStorageRawAccess.idl235
-rw-r--r--offapi/com/sun/star/embed/XTransactedObject.idl71
-rw-r--r--offapi/com/sun/star/embed/XTransactionBroadcaster.idl68
-rw-r--r--offapi/com/sun/star/embed/XTransactionListener.idl81
-rw-r--r--offapi/com/sun/star/embed/XTransferableSupplier.idl62
-rw-r--r--offapi/com/sun/star/embed/XVisualObject.idl179
-rw-r--r--offapi/com/sun/star/embed/XWindowSupplier.idl57
-rw-r--r--offapi/com/sun/star/embed/makefile.mk116
-rw-r--r--offapi/com/sun/star/form/DataAwareControlModel.idl195
-rw-r--r--offapi/com/sun/star/form/DataSelectionType.idl58
-rw-r--r--offapi/com/sun/star/form/DatabaseDeleteEvent.idl55
-rw-r--r--offapi/com/sun/star/form/DatabaseParameterEvent.idl70
-rw-r--r--offapi/com/sun/star/form/ErrorEvent.idl60
-rw-r--r--offapi/com/sun/star/form/FormButtonType.idl77
-rw-r--r--offapi/com/sun/star/form/FormComponent.idl129
-rw-r--r--offapi/com/sun/star/form/FormComponentType.idl144
-rw-r--r--offapi/com/sun/star/form/FormComponents.idl107
-rw-r--r--offapi/com/sun/star/form/FormControlModel.idl110
-rw-r--r--offapi/com/sun/star/form/FormController.idl114
-rw-r--r--offapi/com/sun/star/form/FormControllerDispatcher.idl57
-rw-r--r--offapi/com/sun/star/form/FormSubmitEncoding.idl71
-rw-r--r--offapi/com/sun/star/form/FormSubmitMethod.idl63
-rw-r--r--offapi/com/sun/star/form/Forms.idl72
-rw-r--r--offapi/com/sun/star/form/ListSourceType.idl89
-rw-r--r--offapi/com/sun/star/form/NavigationBarMode.idl83
-rw-r--r--offapi/com/sun/star/form/PropertyBrowserController.idl147
-rw-r--r--offapi/com/sun/star/form/TabulatorCycle.idl84
-rw-r--r--offapi/com/sun/star/form/XApproveActionBroadcaster.idl81
-rw-r--r--offapi/com/sun/star/form/XApproveActionListener.idl77
-rw-r--r--offapi/com/sun/star/form/XBoundComponent.idl75
-rw-r--r--offapi/com/sun/star/form/XBoundControl.idl74
-rw-r--r--offapi/com/sun/star/form/XChangeBroadcaster.idl85
-rw-r--r--offapi/com/sun/star/form/XChangeListener.idl73
-rw-r--r--offapi/com/sun/star/form/XConfirmDeleteBroadcaster.idl86
-rw-r--r--offapi/com/sun/star/form/XConfirmDeleteListener.idl71
-rw-r--r--offapi/com/sun/star/form/XDatabaseParameterBroadcaster.idl83
-rw-r--r--offapi/com/sun/star/form/XDatabaseParameterBroadcaster2.idl79
-rw-r--r--offapi/com/sun/star/form/XDatabaseParameterListener.idl72
-rw-r--r--offapi/com/sun/star/form/XDeleteListener.idl80
-rw-r--r--offapi/com/sun/star/form/XErrorBroadcaster.idl75
-rw-r--r--offapi/com/sun/star/form/XErrorListener.idl75
-rw-r--r--offapi/com/sun/star/form/XForm.idl59
-rw-r--r--offapi/com/sun/star/form/XFormComponent.idl59
-rw-r--r--offapi/com/sun/star/form/XFormController.idl67
-rw-r--r--offapi/com/sun/star/form/XFormControllerListener.idl84
-rw-r--r--offapi/com/sun/star/form/XFormsSupplier.idl105
-rw-r--r--offapi/com/sun/star/form/XFormsSupplier2.idl68
-rw-r--r--offapi/com/sun/star/form/XGrid.idl79
-rw-r--r--offapi/com/sun/star/form/XGridColumnFactory.idl93
-rw-r--r--offapi/com/sun/star/form/XGridControl.idl69
-rw-r--r--offapi/com/sun/star/form/XGridControlListener.idl57
-rw-r--r--offapi/com/sun/star/form/XGridFieldDataSupplier.idl97
-rw-r--r--offapi/com/sun/star/form/XGridPeer.idl80
-rw-r--r--offapi/com/sun/star/form/XImageProducerSupplier.idl69
-rw-r--r--offapi/com/sun/star/form/XInsertListener.idl77
-rw-r--r--offapi/com/sun/star/form/XLoadListener.idl114
-rw-r--r--offapi/com/sun/star/form/XLoadable.idl107
-rw-r--r--offapi/com/sun/star/form/XPositioningListener.idl70
-rw-r--r--offapi/com/sun/star/form/XReset.idl85
-rw-r--r--offapi/com/sun/star/form/XResetListener.idl91
-rw-r--r--offapi/com/sun/star/form/XRestoreListener.idl74
-rw-r--r--offapi/com/sun/star/form/XSubmit.idl106
-rw-r--r--offapi/com/sun/star/form/XSubmitListener.idl79
-rw-r--r--offapi/com/sun/star/form/XUpdateBroadcaster.idl84
-rw-r--r--offapi/com/sun/star/form/XUpdateListener.idl87
-rw-r--r--offapi/com/sun/star/form/binding/BindableControlModel.idl92
-rw-r--r--offapi/com/sun/star/form/binding/BindableDataAwareControlModel.idl132
-rw-r--r--offapi/com/sun/star/form/binding/BindableDatabaseCheckBox.idl95
-rw-r--r--offapi/com/sun/star/form/binding/BindableDatabaseComboBox.idl73
-rw-r--r--offapi/com/sun/star/form/binding/BindableDatabaseDateField.idl70
-rw-r--r--offapi/com/sun/star/form/binding/BindableDatabaseFormattedField.idl69
-rw-r--r--offapi/com/sun/star/form/binding/BindableDatabaseListBox.idl81
-rw-r--r--offapi/com/sun/star/form/binding/BindableDatabaseNumericField.idl69
-rw-r--r--offapi/com/sun/star/form/binding/BindableDatabaseRadioButton.idl92
-rw-r--r--offapi/com/sun/star/form/binding/BindableDatabaseTextField.idl72
-rw-r--r--offapi/com/sun/star/form/binding/BindableDatabaseTimeField.idl70
-rw-r--r--offapi/com/sun/star/form/binding/BindableIntegerValueRange.idl75
-rw-r--r--offapi/com/sun/star/form/binding/IncompatibleTypesException.idl54
-rw-r--r--offapi/com/sun/star/form/binding/InvalidBindingStateException.idl54
-rw-r--r--offapi/com/sun/star/form/binding/ListEntryEvent.idl74
-rw-r--r--offapi/com/sun/star/form/binding/ListEntrySource.idl74
-rw-r--r--offapi/com/sun/star/form/binding/ValueBinding.idl124
-rw-r--r--offapi/com/sun/star/form/binding/XBindableValue.idl78
-rw-r--r--offapi/com/sun/star/form/binding/XListEntryListener.idl89
-rw-r--r--offapi/com/sun/star/form/binding/XListEntrySink.idl68
-rw-r--r--offapi/com/sun/star/form/binding/XListEntrySource.idl100
-rw-r--r--offapi/com/sun/star/form/binding/XValueBinding.idl104
-rw-r--r--offapi/com/sun/star/form/binding/makefile.mk69
-rw-r--r--offapi/com/sun/star/form/component/CheckBox.idl92
-rw-r--r--offapi/com/sun/star/form/component/ComboBox.idl78
-rw-r--r--offapi/com/sun/star/form/component/CommandButton.idl116
-rw-r--r--offapi/com/sun/star/form/component/CurrencyField.idl77
-rw-r--r--offapi/com/sun/star/form/component/DataForm.idl232
-rw-r--r--offapi/com/sun/star/form/component/DatabaseCheckBox.idl64
-rw-r--r--offapi/com/sun/star/form/component/DatabaseComboBox.idl96
-rw-r--r--offapi/com/sun/star/form/component/DatabaseCurrencyField.idl59
-rw-r--r--offapi/com/sun/star/form/component/DatabaseDateField.idl59
-rw-r--r--offapi/com/sun/star/form/component/DatabaseFormattedField.idl73
-rw-r--r--offapi/com/sun/star/form/component/DatabaseImageControl.idl122
-rw-r--r--offapi/com/sun/star/form/component/DatabaseListBox.idl159
-rw-r--r--offapi/com/sun/star/form/component/DatabaseNumericField.idl59
-rw-r--r--offapi/com/sun/star/form/component/DatabasePatternField.idl74
-rw-r--r--offapi/com/sun/star/form/component/DatabaseRadioButton.idl59
-rw-r--r--offapi/com/sun/star/form/component/DatabaseTextField.idl73
-rw-r--r--offapi/com/sun/star/form/component/DatabaseTimeField.idl59
-rw-r--r--offapi/com/sun/star/form/component/DateField.idl81
-rw-r--r--offapi/com/sun/star/form/component/FileControl.idl78
-rw-r--r--offapi/com/sun/star/form/component/FixedText.idl64
-rw-r--r--offapi/com/sun/star/form/component/Form.idl93
-rw-r--r--offapi/com/sun/star/form/component/FormattedField.idl72
-rw-r--r--offapi/com/sun/star/form/component/GridControl.idl210
-rw-r--r--offapi/com/sun/star/form/component/GroupBox.idl60
-rw-r--r--offapi/com/sun/star/form/component/HTMLForm.idl106
-rw-r--r--offapi/com/sun/star/form/component/HiddenControl.idl65
-rw-r--r--offapi/com/sun/star/form/component/ImageButton.idl116
-rw-r--r--offapi/com/sun/star/form/component/ListBox.idl84
-rw-r--r--offapi/com/sun/star/form/component/NavigationToolBar.idl150
-rw-r--r--offapi/com/sun/star/form/component/NumericField.idl80
-rw-r--r--offapi/com/sun/star/form/component/PatternField.idl78
-rw-r--r--offapi/com/sun/star/form/component/RadioButton.idl112
-rw-r--r--offapi/com/sun/star/form/component/RichTextControl.idl91
-rw-r--r--offapi/com/sun/star/form/component/ScrollBar.idl78
-rw-r--r--offapi/com/sun/star/form/component/SpinButton.idl78
-rw-r--r--offapi/com/sun/star/form/component/SubmitButton.idl72
-rw-r--r--offapi/com/sun/star/form/component/TextField.idl89
-rw-r--r--offapi/com/sun/star/form/component/TimeField.idl81
-rw-r--r--offapi/com/sun/star/form/component/makefile.mk83
-rw-r--r--offapi/com/sun/star/form/control/CheckBox.idl70
-rw-r--r--offapi/com/sun/star/form/control/ComboBox.idl70
-rw-r--r--offapi/com/sun/star/form/control/CommandButton.idl88
-rw-r--r--offapi/com/sun/star/form/control/CurrencyField.idl71
-rw-r--r--offapi/com/sun/star/form/control/DateField.idl71
-rw-r--r--offapi/com/sun/star/form/control/FormattedField.idl76
-rw-r--r--offapi/com/sun/star/form/control/GridControl.idl172
-rw-r--r--offapi/com/sun/star/form/control/GroupBox.idl68
-rw-r--r--offapi/com/sun/star/form/control/ImageButton.idl88
-rw-r--r--offapi/com/sun/star/form/control/ImageControl.idl74
-rw-r--r--offapi/com/sun/star/form/control/InteractionGridControl.idl85
-rw-r--r--offapi/com/sun/star/form/control/ListBox.idl86
-rw-r--r--offapi/com/sun/star/form/control/NavigationToolBar.idl57
-rw-r--r--offapi/com/sun/star/form/control/NumericField.idl71
-rw-r--r--offapi/com/sun/star/form/control/PatternField.idl71
-rw-r--r--offapi/com/sun/star/form/control/RadioButton.idl70
-rw-r--r--offapi/com/sun/star/form/control/SubmitButton.idl88
-rw-r--r--offapi/com/sun/star/form/control/TextField.idl90
-rw-r--r--offapi/com/sun/star/form/control/TimeField.idl71
-rw-r--r--offapi/com/sun/star/form/control/makefile.mk64
-rw-r--r--offapi/com/sun/star/form/inspection/ButtonNavigationHandler.idl65
-rw-r--r--offapi/com/sun/star/form/inspection/CellBindingPropertyHandler.idl68
-rw-r--r--offapi/com/sun/star/form/inspection/DefaultFormComponentInspectorModel.idl101
-rw-r--r--offapi/com/sun/star/form/inspection/EditPropertyHandler.idl69
-rw-r--r--offapi/com/sun/star/form/inspection/EventHandler.idl63
-rw-r--r--offapi/com/sun/star/form/inspection/FormComponentPropertyHandler.idl56
-rw-r--r--offapi/com/sun/star/form/inspection/SubmissionPropertyHandler.idl67
-rw-r--r--offapi/com/sun/star/form/inspection/XMLFormsPropertyHandler.idl73
-rw-r--r--offapi/com/sun/star/form/inspection/XSDValidationPropertyHandler.idl77
-rw-r--r--offapi/com/sun/star/form/inspection/makefile.mk54
-rw-r--r--offapi/com/sun/star/form/makefile.mk104
-rw-r--r--offapi/com/sun/star/form/modules.idl68
-rw-r--r--offapi/com/sun/star/form/runtime/FeatureState.idl62
-rw-r--r--offapi/com/sun/star/form/runtime/FilterEvent.idl65
-rw-r--r--offapi/com/sun/star/form/runtime/FormController.idl52
-rw-r--r--offapi/com/sun/star/form/runtime/FormFeature.idl155
-rw-r--r--offapi/com/sun/star/form/runtime/FormOperations.idl91
-rw-r--r--offapi/com/sun/star/form/runtime/XFeatureInvalidation.idl76
-rw-r--r--offapi/com/sun/star/form/runtime/XFilterController.idl181
-rw-r--r--offapi/com/sun/star/form/runtime/XFilterControllerListener.idl85
-rw-r--r--offapi/com/sun/star/form/runtime/XFormController.idl374
-rw-r--r--offapi/com/sun/star/form/runtime/XFormControllerContext.idl58
-rw-r--r--offapi/com/sun/star/form/runtime/XFormOperations.idl284
-rw-r--r--offapi/com/sun/star/form/runtime/makefile.mk56
-rw-r--r--offapi/com/sun/star/form/submission/XSubmission.idl114
-rw-r--r--offapi/com/sun/star/form/submission/XSubmissionSupplier.idl60
-rw-r--r--offapi/com/sun/star/form/submission/XSubmissionVetoListener.idl71
-rw-r--r--offapi/com/sun/star/form/submission/makefile.mk48
-rw-r--r--offapi/com/sun/star/form/validation/ValidatableBindableControlModel.idl79
-rw-r--r--offapi/com/sun/star/form/validation/ValidatableControlModel.idl97
-rw-r--r--offapi/com/sun/star/form/validation/XFormComponentValidityListener.idl63
-rw-r--r--offapi/com/sun/star/form/validation/XValidatable.idl77
-rw-r--r--offapi/com/sun/star/form/validation/XValidatableFormComponent.idl126
-rw-r--r--offapi/com/sun/star/form/validation/XValidator.idl107
-rw-r--r--offapi/com/sun/star/form/validation/XValidityConstraintListener.idl60
-rw-r--r--offapi/com/sun/star/form/validation/makefile.mk53
-rw-r--r--offapi/com/sun/star/formula/AccessibleFormulaText.idl69
-rw-r--r--offapi/com/sun/star/formula/AccessibleFormulaView.idl70
-rw-r--r--offapi/com/sun/star/formula/FormulaProperties.idl347
-rw-r--r--offapi/com/sun/star/formula/SymbolDescriptor.idl113
-rw-r--r--offapi/com/sun/star/formula/makefile.mk49
-rw-r--r--offapi/com/sun/star/frame/BorderWidths.idl68
-rw-r--r--offapi/com/sun/star/frame/CommandGroup.idl179
-rw-r--r--offapi/com/sun/star/frame/Components.idl61
-rw-r--r--offapi/com/sun/star/frame/ContentHandler.idl70
-rw-r--r--offapi/com/sun/star/frame/ContentHandlerFactory.idl111
-rw-r--r--offapi/com/sun/star/frame/ControlCommand.idl67
-rw-r--r--offapi/com/sun/star/frame/ControlEvent.idl74
-rw-r--r--offapi/com/sun/star/frame/Controller.idl130
-rw-r--r--offapi/com/sun/star/frame/Desktop.idl100
-rw-r--r--offapi/com/sun/star/frame/DesktopTask.idl109
-rw-r--r--offapi/com/sun/star/frame/DesktopTasks.idl50
-rw-r--r--offapi/com/sun/star/frame/DispatchDescriptor.idl93
-rw-r--r--offapi/com/sun/star/frame/DispatchHelper.idl67
-rw-r--r--offapi/com/sun/star/frame/DispatchInformation.idl67
-rw-r--r--offapi/com/sun/star/frame/DispatchProvider.idl86
-rw-r--r--offapi/com/sun/star/frame/DispatchRecorder.idl75
-rw-r--r--offapi/com/sun/star/frame/DispatchRecorderSupplier.idl68
-rw-r--r--offapi/com/sun/star/frame/DispatchResultEvent.idl73
-rw-r--r--offapi/com/sun/star/frame/DispatchResultState.idl59
-rw-r--r--offapi/com/sun/star/frame/DispatchStatement.idl105
-rw-r--r--offapi/com/sun/star/frame/DocumentTemplates.idl55
-rw-r--r--offapi/com/sun/star/frame/DoubleInitializationException.idl54
-rw-r--r--offapi/com/sun/star/frame/FeatureStateEvent.idl95
-rw-r--r--offapi/com/sun/star/frame/Frame.idl206
-rw-r--r--offapi/com/sun/star/frame/FrameAction.idl151
-rw-r--r--offapi/com/sun/star/frame/FrameActionEvent.idl69
-rw-r--r--offapi/com/sun/star/frame/FrameControl.idl80
-rw-r--r--offapi/com/sun/star/frame/FrameLoader.idl99
-rw-r--r--offapi/com/sun/star/frame/FrameLoaderFactory.idl110
-rw-r--r--offapi/com/sun/star/frame/FrameSearchFlag.idl130
-rw-r--r--offapi/com/sun/star/frame/FramesContainer.idl61
-rw-r--r--offapi/com/sun/star/frame/GlobalEventBroadcaster.idl66
-rw-r--r--offapi/com/sun/star/frame/IllegalArgumentIOException.idl54
-rw-r--r--offapi/com/sun/star/frame/LayoutManager.idl132
-rw-r--r--offapi/com/sun/star/frame/LayoutManagerEvents.idl133
-rw-r--r--offapi/com/sun/star/frame/MediaTypeDetectionHelper.idl61
-rw-r--r--offapi/com/sun/star/frame/ModuleManager.idl78
-rw-r--r--offapi/com/sun/star/frame/PopupMenuController.idl153
-rw-r--r--offapi/com/sun/star/frame/PopupMenuControllerFactory.idl85
-rw-r--r--offapi/com/sun/star/frame/ProtocolHandler.idl97
-rw-r--r--offapi/com/sun/star/frame/SessionManager.idl84
-rw-r--r--offapi/com/sun/star/frame/Settings.idl50
-rw-r--r--offapi/com/sun/star/frame/StatusbarController.idl142
-rw-r--r--offapi/com/sun/star/frame/StatusbarControllerFactory.idl91
-rw-r--r--offapi/com/sun/star/frame/SynchronousFrameLoader.idl99
-rw-r--r--offapi/com/sun/star/frame/Task.idl78
-rw-r--r--offapi/com/sun/star/frame/TemplateAccess.idl62
-rw-r--r--offapi/com/sun/star/frame/TerminationVetoException.idl61
-rw-r--r--offapi/com/sun/star/frame/TitleChangedEvent.idl53
-rw-r--r--offapi/com/sun/star/frame/ToolbarController.idl146
-rw-r--r--offapi/com/sun/star/frame/TransientDocumentsDocumentContentFactory.idl56
-rw-r--r--offapi/com/sun/star/frame/UnknownModuleException.idl51
-rw-r--r--offapi/com/sun/star/frame/WindowArrange.idl74
-rw-r--r--offapi/com/sun/star/frame/XBorderResizeListener.idl66
-rw-r--r--offapi/com/sun/star/frame/XBrowseHistoryRegistry.idl66
-rw-r--r--offapi/com/sun/star/frame/XComponentLoader.idl192
-rw-r--r--offapi/com/sun/star/frame/XComponentRegistry.idl60
-rw-r--r--offapi/com/sun/star/frame/XConfigManager.idl118
-rw-r--r--offapi/com/sun/star/frame/XControlNotificationListener.idl65
-rw-r--r--offapi/com/sun/star/frame/XController.idl125
-rw-r--r--offapi/com/sun/star/frame/XController2.idl81
-rw-r--r--offapi/com/sun/star/frame/XControllerBorder.idl91
-rw-r--r--offapi/com/sun/star/frame/XDesktop.idl165
-rw-r--r--offapi/com/sun/star/frame/XDesktopTask.idl69
-rw-r--r--offapi/com/sun/star/frame/XDispatch.idl164
-rw-r--r--offapi/com/sun/star/frame/XDispatchHelper.idl96
-rw-r--r--offapi/com/sun/star/frame/XDispatchInformationProvider.idl91
-rw-r--r--offapi/com/sun/star/frame/XDispatchProvider.idl109
-rw-r--r--offapi/com/sun/star/frame/XDispatchProviderInterception.idl90
-rw-r--r--offapi/com/sun/star/frame/XDispatchProviderInterceptor.idl100
-rw-r--r--offapi/com/sun/star/frame/XDispatchRecorder.idl146
-rw-r--r--offapi/com/sun/star/frame/XDispatchRecorderSupplier.idl130
-rw-r--r--offapi/com/sun/star/frame/XDispatchResultListener.idl64
-rw-r--r--offapi/com/sun/star/frame/XDocumentTemplates.idl215
-rw-r--r--offapi/com/sun/star/frame/XExtendedFilterDetection.idl65
-rw-r--r--offapi/com/sun/star/frame/XFilterDetect.idl58
-rw-r--r--offapi/com/sun/star/frame/XFrame.idl388
-rw-r--r--offapi/com/sun/star/frame/XFrameActionListener.idl70
-rw-r--r--offapi/com/sun/star/frame/XFrameLoader.idl109
-rw-r--r--offapi/com/sun/star/frame/XFrameLoaderQuery.idl82
-rw-r--r--offapi/com/sun/star/frame/XFrameSetModel.idl58
-rw-r--r--offapi/com/sun/star/frame/XFrames.idl102
-rw-r--r--offapi/com/sun/star/frame/XFramesSupplier.idl106
-rw-r--r--offapi/com/sun/star/frame/XInplaceLayout.idl67
-rw-r--r--offapi/com/sun/star/frame/XInterceptorInfo.idl73
-rw-r--r--offapi/com/sun/star/frame/XLayoutManager.idl510
-rw-r--r--offapi/com/sun/star/frame/XLayoutManagerEventBroadcaster.idl68
-rw-r--r--offapi/com/sun/star/frame/XLayoutManagerListener.idl72
-rw-r--r--offapi/com/sun/star/frame/XLoadEventListener.idl68
-rw-r--r--offapi/com/sun/star/frame/XLoadable.idl85
-rw-r--r--offapi/com/sun/star/frame/XMenuBarAcceptor.idl68
-rw-r--r--offapi/com/sun/star/frame/XMenuBarMergingAcceptor.idl82
-rw-r--r--offapi/com/sun/star/frame/XModel.idl236
-rw-r--r--offapi/com/sun/star/frame/XModel2.idl152
-rw-r--r--offapi/com/sun/star/frame/XModule.idl79
-rw-r--r--offapi/com/sun/star/frame/XModuleManager.idl115
-rw-r--r--offapi/com/sun/star/frame/XNotifyingDispatch.idl73
-rw-r--r--offapi/com/sun/star/frame/XPopupMenuController.idl81
-rw-r--r--offapi/com/sun/star/frame/XRecordableDispatch.idl114
-rw-r--r--offapi/com/sun/star/frame/XSessionManagerClient.idl106
-rw-r--r--offapi/com/sun/star/frame/XSessionManagerListener.idl103
-rw-r--r--offapi/com/sun/star/frame/XSessionManagerListener2.idl53
-rw-r--r--offapi/com/sun/star/frame/XStatusListener.idl70
-rw-r--r--offapi/com/sun/star/frame/XStatusbarController.idl172
-rw-r--r--offapi/com/sun/star/frame/XStorable.idl176
-rw-r--r--offapi/com/sun/star/frame/XStorable2.idl92
-rw-r--r--offapi/com/sun/star/frame/XSubToolbarController.idl102
-rw-r--r--offapi/com/sun/star/frame/XSynchronousDispatch.idl77
-rw-r--r--offapi/com/sun/star/frame/XSynchronousFrameLoader.idl95
-rw-r--r--offapi/com/sun/star/frame/XTask.idl73
-rw-r--r--offapi/com/sun/star/frame/XTasksSupplier.idl70
-rw-r--r--offapi/com/sun/star/frame/XTerminateListener.idl89
-rw-r--r--offapi/com/sun/star/frame/XTerminateListener2.idl69
-rw-r--r--offapi/com/sun/star/frame/XTitle.idl62
-rw-r--r--offapi/com/sun/star/frame/XTitleChangeBroadcaster.idl62
-rw-r--r--offapi/com/sun/star/frame/XTitleChangeListener.idl57
-rw-r--r--offapi/com/sun/star/frame/XToolbarController.idl110
-rw-r--r--offapi/com/sun/star/frame/XToolbarControllerListener.idl64
-rw-r--r--offapi/com/sun/star/frame/XTransientDocumentsDocumentContentFactory.idl92
-rw-r--r--offapi/com/sun/star/frame/XUIControllerRegistration.idl107
-rw-r--r--offapi/com/sun/star/frame/XUntitledNumbers.idl118
-rw-r--r--offapi/com/sun/star/frame/XUrlList.idl52
-rw-r--r--offapi/com/sun/star/frame/XWindowArranger.idl59
-rw-r--r--offapi/com/sun/star/frame/makefile.mk166
-rw-r--r--offapi/com/sun/star/frame/status/ClipboardFormats.idl63
-rw-r--r--offapi/com/sun/star/frame/status/FontHeight.idl70
-rw-r--r--offapi/com/sun/star/frame/status/ItemState.idl85
-rw-r--r--offapi/com/sun/star/frame/status/ItemStatus.idl62
-rw-r--r--offapi/com/sun/star/frame/status/LeftRightMargin.idl58
-rw-r--r--offapi/com/sun/star/frame/status/Template.idl60
-rw-r--r--offapi/com/sun/star/frame/status/UpperLowerMargin.idl58
-rw-r--r--offapi/com/sun/star/frame/status/UpperLowerMarginScale.idl70
-rw-r--r--offapi/com/sun/star/frame/status/Verb.idl72
-rw-r--r--offapi/com/sun/star/frame/status/Visibility.idl53
-rw-r--r--offapi/com/sun/star/frame/status/makefile.mk55
-rw-r--r--offapi/com/sun/star/gallery/GalleryItem.idl100
-rw-r--r--offapi/com/sun/star/gallery/GalleryItemType.idl62
-rw-r--r--offapi/com/sun/star/gallery/GalleryTheme.idl57
-rw-r--r--offapi/com/sun/star/gallery/GalleryThemeProvider.idl73
-rw-r--r--offapi/com/sun/star/gallery/XGalleryItem.idl59
-rw-r--r--offapi/com/sun/star/gallery/XGalleryTheme.idl172
-rw-r--r--offapi/com/sun/star/gallery/XGalleryThemeProvider.idl94
-rw-r--r--offapi/com/sun/star/gallery/makefile.mk51
-rw-r--r--offapi/com/sun/star/geometry/AffineMatrix2D.idl93
-rw-r--r--offapi/com/sun/star/geometry/AffineMatrix3D.idl113
-rw-r--r--offapi/com/sun/star/geometry/EllipticalArc.idl94
-rw-r--r--offapi/com/sun/star/geometry/IntegerBezierSegment2D.idl67
-rw-r--r--offapi/com/sun/star/geometry/IntegerPoint2D.idl52
-rw-r--r--offapi/com/sun/star/geometry/IntegerRectangle2D.idl79
-rw-r--r--offapi/com/sun/star/geometry/IntegerSize2D.idl51
-rw-r--r--offapi/com/sun/star/geometry/Matrix2D.idl90
-rw-r--r--offapi/com/sun/star/geometry/RealBezierSegment2D.idl67
-rw-r--r--offapi/com/sun/star/geometry/RealPoint2D.idl52
-rw-r--r--offapi/com/sun/star/geometry/RealRectangle2D.idl79
-rw-r--r--offapi/com/sun/star/geometry/RealRectangle3D.idl79
-rw-r--r--offapi/com/sun/star/geometry/RealSize2D.idl51
-rw-r--r--offapi/com/sun/star/geometry/XMapping2D.idl72
-rw-r--r--offapi/com/sun/star/geometry/makefile.mk59
-rwxr-xr-xoffapi/com/sun/star/graphic/Graphic.idl62
-rw-r--r--offapi/com/sun/star/graphic/GraphicColorMode.idl59
-rwxr-xr-xoffapi/com/sun/star/graphic/GraphicDescriptor.idl151
-rw-r--r--offapi/com/sun/star/graphic/GraphicObject.idl63
-rwxr-xr-xoffapi/com/sun/star/graphic/GraphicProvider.idl53
-rwxr-xr-xoffapi/com/sun/star/graphic/GraphicRendererVCL.idl79
-rwxr-xr-xoffapi/com/sun/star/graphic/GraphicType.idl57
-rwxr-xr-xoffapi/com/sun/star/graphic/MediaProperties.idl128
-rwxr-xr-xoffapi/com/sun/star/graphic/XGraphic.idl65
-rw-r--r--offapi/com/sun/star/graphic/XGraphicObject.idl65
-rwxr-xr-xoffapi/com/sun/star/graphic/XGraphicProvider.idl119
-rwxr-xr-xoffapi/com/sun/star/graphic/XGraphicRenderer.idl54
-rw-r--r--offapi/com/sun/star/graphic/XGraphicTransformer.idl57
-rw-r--r--offapi/com/sun/star/graphic/XPrimitive2D.idl93
-rw-r--r--offapi/com/sun/star/graphic/XPrimitive3D.idl80
-rw-r--r--offapi/com/sun/star/graphic/XPrimitiveFactory2D.idl101
-rwxr-xr-xoffapi/com/sun/star/graphic/makefile.mk62
-rw-r--r--offapi/com/sun/star/i18n/AmPmValue.idl50
-rw-r--r--offapi/com/sun/star/i18n/Boundary.idl56
-rw-r--r--offapi/com/sun/star/i18n/BreakIterator.idl59
-rw-r--r--offapi/com/sun/star/i18n/BreakType.idl56
-rw-r--r--offapi/com/sun/star/i18n/CTLScriptType.idl68
-rw-r--r--offapi/com/sun/star/i18n/Calendar.idl68
-rw-r--r--offapi/com/sun/star/i18n/CalendarDisplayCode.idl90
-rw-r--r--offapi/com/sun/star/i18n/CalendarDisplayIndex.idl58
-rw-r--r--offapi/com/sun/star/i18n/CalendarFieldIndex.idl137
-rw-r--r--offapi/com/sun/star/i18n/CalendarItem.idl60
-rw-r--r--offapi/com/sun/star/i18n/ChapterCollator.idl49
-rw-r--r--offapi/com/sun/star/i18n/CharType.idl85
-rw-r--r--offapi/com/sun/star/i18n/CharacterClassification.idl55
-rw-r--r--offapi/com/sun/star/i18n/CharacterIteratorMode.idl57
-rw-r--r--offapi/com/sun/star/i18n/Collator.idl55
-rw-r--r--offapi/com/sun/star/i18n/CollatorOptions.idl53
-rw-r--r--offapi/com/sun/star/i18n/Currency.idl84
-rw-r--r--offapi/com/sun/star/i18n/Currency2.idl68
-rw-r--r--offapi/com/sun/star/i18n/DirectionProperty.idl67
-rw-r--r--offapi/com/sun/star/i18n/ForbiddenCharacters.idl57
-rw-r--r--offapi/com/sun/star/i18n/FormatElement.idl77
-rw-r--r--offapi/com/sun/star/i18n/Implementation.idl55
-rw-r--r--offapi/com/sun/star/i18n/IndexEntrySupplier.idl53
-rw-r--r--offapi/com/sun/star/i18n/InputSequenceCheckMode.idl61
-rw-r--r--offapi/com/sun/star/i18n/InputSequenceChecker.idl55
-rw-r--r--offapi/com/sun/star/i18n/KCharacterType.idl78
-rw-r--r--offapi/com/sun/star/i18n/KNumberFormatType.idl54
-rw-r--r--offapi/com/sun/star/i18n/KNumberFormatUsage.idl63
-rw-r--r--offapi/com/sun/star/i18n/KParseTokens.idl178
-rw-r--r--offapi/com/sun/star/i18n/KParseType.idl92
-rw-r--r--offapi/com/sun/star/i18n/LanguageCountryInfo.idl63
-rw-r--r--offapi/com/sun/star/i18n/LineBreakHyphenationOptions.idl59
-rw-r--r--offapi/com/sun/star/i18n/LineBreakResults.idl57
-rw-r--r--offapi/com/sun/star/i18n/LineBreakUserOptions.idl62
-rw-r--r--offapi/com/sun/star/i18n/LocaleCalendar.idl53
-rw-r--r--offapi/com/sun/star/i18n/LocaleData.idl52
-rw-r--r--offapi/com/sun/star/i18n/LocaleDataItem.idl85
-rw-r--r--offapi/com/sun/star/i18n/LocaleItem.idl102
-rw-r--r--offapi/com/sun/star/i18n/Months.idl72
-rw-r--r--offapi/com/sun/star/i18n/MultipleCharsOutputException.idl58
-rw-r--r--offapi/com/sun/star/i18n/NativeNumberMode.idl144
-rw-r--r--offapi/com/sun/star/i18n/NativeNumberSupplier.idl53
-rw-r--r--offapi/com/sun/star/i18n/NativeNumberXmlAttributes.idl68
-rw-r--r--offapi/com/sun/star/i18n/NumberFormatCode.idl62
-rw-r--r--offapi/com/sun/star/i18n/NumberFormatIndex.idl280
-rw-r--r--offapi/com/sun/star/i18n/NumberFormatMapper.idl52
-rw-r--r--offapi/com/sun/star/i18n/OrdinalSuffix.idl59
-rw-r--r--offapi/com/sun/star/i18n/ParseResult.idl83
-rw-r--r--offapi/com/sun/star/i18n/ScriptDirection.idl60
-rw-r--r--offapi/com/sun/star/i18n/ScriptType.idl61
-rw-r--r--offapi/com/sun/star/i18n/TextConversion.idl57
-rw-r--r--offapi/com/sun/star/i18n/TextConversionOption.idl71
-rw-r--r--offapi/com/sun/star/i18n/TextConversionResult.idl67
-rw-r--r--offapi/com/sun/star/i18n/TextConversionType.idl64
-rw-r--r--offapi/com/sun/star/i18n/Transliteration.idl53
-rw-r--r--offapi/com/sun/star/i18n/TransliterationModules.idl119
-rw-r--r--offapi/com/sun/star/i18n/TransliterationModulesExtra.idl76
-rw-r--r--offapi/com/sun/star/i18n/TransliterationModulesNew.idl175
-rw-r--r--offapi/com/sun/star/i18n/TransliterationType.idl81
-rw-r--r--offapi/com/sun/star/i18n/UnicodeScript.idl136
-rw-r--r--offapi/com/sun/star/i18n/UnicodeType.idl79
-rw-r--r--offapi/com/sun/star/i18n/Weekdays.idl65
-rw-r--r--offapi/com/sun/star/i18n/WordType.idl73
-rw-r--r--offapi/com/sun/star/i18n/XBreakIterator.idl374
-rw-r--r--offapi/com/sun/star/i18n/XCalendar.idl228
-rw-r--r--offapi/com/sun/star/i18n/XCharacterClassification.idl286
-rw-r--r--offapi/com/sun/star/i18n/XCollator.idl174
-rw-r--r--offapi/com/sun/star/i18n/XExtendedCalendar.idl85
-rw-r--r--offapi/com/sun/star/i18n/XExtendedIndexEntrySupplier.idl157
-rw-r--r--offapi/com/sun/star/i18n/XExtendedInputSequenceChecker.idl64
-rw-r--r--offapi/com/sun/star/i18n/XExtendedTextConversion.idl82
-rw-r--r--offapi/com/sun/star/i18n/XExtendedTransliteration.idl105
-rw-r--r--offapi/com/sun/star/i18n/XForbiddenCharacters.idl86
-rw-r--r--offapi/com/sun/star/i18n/XIndexEntrySupplier.idl78
-rw-r--r--offapi/com/sun/star/i18n/XInputSequenceChecker.idl60
-rw-r--r--offapi/com/sun/star/i18n/XLocaleData.idl137
-rw-r--r--offapi/com/sun/star/i18n/XLocaleData2.idl62
-rw-r--r--offapi/com/sun/star/i18n/XNativeNumberSupplier.idl95
-rw-r--r--offapi/com/sun/star/i18n/XNumberFormatCode.idl97
-rw-r--r--offapi/com/sun/star/i18n/XOrdinalSuffix.idl70
-rw-r--r--offapi/com/sun/star/i18n/XScriptTypeDetector.idl91
-rw-r--r--offapi/com/sun/star/i18n/XTextConversion.idl161
-rw-r--r--offapi/com/sun/star/i18n/XTransliteration.idl331
-rw-r--r--offapi/com/sun/star/i18n/makefile.mk129
-rw-r--r--offapi/com/sun/star/i18n/reservedWords.idl80
-rw-r--r--offapi/com/sun/star/image/ImageMap.idl64
-rw-r--r--offapi/com/sun/star/image/ImageMapCircleObject.idl65
-rw-r--r--offapi/com/sun/star/image/ImageMapObject.idl84
-rw-r--r--offapi/com/sun/star/image/ImageMapPolygonObject.idl63
-rw-r--r--offapi/com/sun/star/image/ImageMapRectangleObject.idl62
-rw-r--r--offapi/com/sun/star/image/makefile.mk50
-rw-r--r--offapi/com/sun/star/inspection/DefaultHelpProvider.idl71
-rw-r--r--offapi/com/sun/star/inspection/GenericPropertyHandler.idl63
-rw-r--r--offapi/com/sun/star/inspection/InteractiveSelectionResult.idl76
-rw-r--r--offapi/com/sun/star/inspection/LineDescriptor.idl201
-rw-r--r--offapi/com/sun/star/inspection/ObjectInspector.idl111
-rw-r--r--offapi/com/sun/star/inspection/ObjectInspectorModel.idl121
-rw-r--r--offapi/com/sun/star/inspection/PropertyCategoryDescriptor.idl67
-rw-r--r--offapi/com/sun/star/inspection/PropertyControlType.idl153
-rw-r--r--offapi/com/sun/star/inspection/PropertyLineElement.idl61
-rw-r--r--offapi/com/sun/star/inspection/XHyperlinkControl.idl69
-rw-r--r--offapi/com/sun/star/inspection/XNumericControl.idl98
-rw-r--r--offapi/com/sun/star/inspection/XObjectInspector.idl133
-rw-r--r--offapi/com/sun/star/inspection/XObjectInspectorModel.idl192
-rw-r--r--offapi/com/sun/star/inspection/XObjectInspectorUI.idl187
-rw-r--r--offapi/com/sun/star/inspection/XPropertyControl.idl120
-rw-r--r--offapi/com/sun/star/inspection/XPropertyControlContext.idl60
-rw-r--r--offapi/com/sun/star/inspection/XPropertyControlFactory.idl81
-rw-r--r--offapi/com/sun/star/inspection/XPropertyControlObserver.idl75
-rw-r--r--offapi/com/sun/star/inspection/XPropertyHandler.idl471
-rw-r--r--offapi/com/sun/star/inspection/XStringListControl.idl73
-rw-r--r--offapi/com/sun/star/inspection/XStringRepresentation.idl76
-rw-r--r--offapi/com/sun/star/inspection/makefile.mk66
-rw-r--r--offapi/com/sun/star/installation/InstallationCheck.idl64
-rw-r--r--offapi/com/sun/star/installation/InstallationCheckService.idl61
-rw-r--r--offapi/com/sun/star/installation/InternetSettings.idl52
-rw-r--r--offapi/com/sun/star/installation/ProtDlgRes.idl72
-rw-r--r--offapi/com/sun/star/installation/ProtocolHandlerCheck.idl52
-rw-r--r--offapi/com/sun/star/installation/ProtocolHandlerCheckService.idl52
-rw-r--r--offapi/com/sun/star/installation/XInstallationCheck.idl114
-rw-r--r--offapi/com/sun/star/installation/XProtocolHandlerCheck.idl91
-rw-r--r--offapi/com/sun/star/installation/makefile.mk55
-rw-r--r--offapi/com/sun/star/installation/protocols.idl94
-rw-r--r--offapi/com/sun/star/ldap/LdapConnectionException.idl49
-rw-r--r--offapi/com/sun/star/ldap/LdapGenericException.idl55
-rw-r--r--offapi/com/sun/star/ldap/makefile.mk47
-rw-r--r--offapi/com/sun/star/linguistic2/ConversionDictionary.idl81
-rw-r--r--offapi/com/sun/star/linguistic2/ConversionDictionaryList.idl70
-rw-r--r--offapi/com/sun/star/linguistic2/ConversionDictionaryType.idl56
-rw-r--r--offapi/com/sun/star/linguistic2/ConversionDirection.idl57
-rw-r--r--offapi/com/sun/star/linguistic2/ConversionPropertyType.idl114
-rw-r--r--offapi/com/sun/star/linguistic2/Dictionary.idl82
-rw-r--r--offapi/com/sun/star/linguistic2/DictionaryEvent.idl83
-rw-r--r--offapi/com/sun/star/linguistic2/DictionaryEventFlags.idl86
-rw-r--r--offapi/com/sun/star/linguistic2/DictionaryList.idl64
-rw-r--r--offapi/com/sun/star/linguistic2/DictionaryListEvent.idl95
-rw-r--r--offapi/com/sun/star/linguistic2/DictionaryListEventFlags.idl102
-rw-r--r--offapi/com/sun/star/linguistic2/DictionaryType.idl71
-rw-r--r--offapi/com/sun/star/linguistic2/HangulHanjaConversionDictionary.idl60
-rw-r--r--offapi/com/sun/star/linguistic2/Hyphenator.idl67
-rw-r--r--offapi/com/sun/star/linguistic2/LanguageGuessing.idl44
-rw-r--r--offapi/com/sun/star/linguistic2/LinguProperties.idl183
-rw-r--r--offapi/com/sun/star/linguistic2/LinguServiceEvent.idl71
-rw-r--r--offapi/com/sun/star/linguistic2/LinguServiceEventFlags.idl73
-rw-r--r--offapi/com/sun/star/linguistic2/LinguServiceManager.idl60
-rw-r--r--offapi/com/sun/star/linguistic2/Proofreader.idl63
-rw-r--r--offapi/com/sun/star/linguistic2/ProofreadingIterator.idl57
-rw-r--r--offapi/com/sun/star/linguistic2/ProofreadingResult.idl99
-rw-r--r--offapi/com/sun/star/linguistic2/SingleProofreadingError.idl81
-rw-r--r--offapi/com/sun/star/linguistic2/SpellChecker.idl67
-rw-r--r--offapi/com/sun/star/linguistic2/SpellFailure.idl68
-rw-r--r--offapi/com/sun/star/linguistic2/Thesaurus.idl65
-rw-r--r--offapi/com/sun/star/linguistic2/XAvailableLocales.idl66
-rw-r--r--offapi/com/sun/star/linguistic2/XConversionDictionary.idl243
-rw-r--r--offapi/com/sun/star/linguistic2/XConversionDictionaryList.idl219
-rw-r--r--offapi/com/sun/star/linguistic2/XConversionPropertyType.idl110
-rw-r--r--offapi/com/sun/star/linguistic2/XDictionary.idl275
-rw-r--r--offapi/com/sun/star/linguistic2/XDictionary1.idl112
-rw-r--r--offapi/com/sun/star/linguistic2/XDictionaryEntry.idl97
-rw-r--r--offapi/com/sun/star/linguistic2/XDictionaryEventListener.idl72
-rw-r--r--offapi/com/sun/star/linguistic2/XDictionaryList.idl261
-rw-r--r--offapi/com/sun/star/linguistic2/XDictionaryListEventListener.idl74
-rw-r--r--offapi/com/sun/star/linguistic2/XHyphenatedWord.idl117
-rw-r--r--offapi/com/sun/star/linguistic2/XHyphenator.idl215
-rw-r--r--offapi/com/sun/star/linguistic2/XLanguageGuessing.idl203
-rw-r--r--offapi/com/sun/star/linguistic2/XLinguServiceEventBroadcaster.idl93
-rw-r--r--offapi/com/sun/star/linguistic2/XLinguServiceEventListener.idl71
-rw-r--r--offapi/com/sun/star/linguistic2/XLinguServiceManager.idl194
-rw-r--r--offapi/com/sun/star/linguistic2/XMeaning.idl72
-rw-r--r--offapi/com/sun/star/linguistic2/XPossibleHyphens.idl102
-rw-r--r--offapi/com/sun/star/linguistic2/XProofreader.idl129
-rw-r--r--offapi/com/sun/star/linguistic2/XProofreadingIterator.idl127
-rw-r--r--offapi/com/sun/star/linguistic2/XSearchableDictionary.idl71
-rw-r--r--offapi/com/sun/star/linguistic2/XSearchableDictionaryList.idl95
-rw-r--r--offapi/com/sun/star/linguistic2/XSetSpellAlternatives.idl74
-rw-r--r--offapi/com/sun/star/linguistic2/XSpellAlternatives.idl100
-rw-r--r--offapi/com/sun/star/linguistic2/XSpellChecker.idl137
-rw-r--r--offapi/com/sun/star/linguistic2/XSpellChecker1.idl81
-rw-r--r--offapi/com/sun/star/linguistic2/XSupportedLanguages.idl60
-rw-r--r--offapi/com/sun/star/linguistic2/XSupportedLocales.idl85
-rw-r--r--offapi/com/sun/star/linguistic2/XThesaurus.idl99
-rw-r--r--offapi/com/sun/star/linguistic2/makefile.mk101
-rw-r--r--offapi/com/sun/star/logging/ConsoleHandler.idl82
-rw-r--r--offapi/com/sun/star/logging/CsvLogFormatter.idl63
-rw-r--r--offapi/com/sun/star/logging/DocumentIOLogRing.idl63
-rw-r--r--offapi/com/sun/star/logging/FileHandler.idl97
-rw-r--r--offapi/com/sun/star/logging/LogLevel.idl87
-rw-r--r--offapi/com/sun/star/logging/LogRecord.idl96
-rw-r--r--offapi/com/sun/star/logging/LoggerPool.idl34
-rw-r--r--offapi/com/sun/star/logging/PlainTextFormatter.idl60
-rw-r--r--offapi/com/sun/star/logging/SimpleLogRing.idl69
-rw-r--r--offapi/com/sun/star/logging/XConsoleHandler.idl67
-rw-r--r--offapi/com/sun/star/logging/XCsvLogFormatter.idl83
-rw-r--r--offapi/com/sun/star/logging/XLogFormatter.idl88
-rw-r--r--offapi/com/sun/star/logging/XLogHandler.idl110
-rw-r--r--offapi/com/sun/star/logging/XLogger.idl148
-rw-r--r--offapi/com/sun/star/logging/XLoggerPool.idl73
-rw-r--r--offapi/com/sun/star/logging/XSimpleLogRing.idl74
-rw-r--r--offapi/com/sun/star/logging/makefile.mk55
-rw-r--r--offapi/com/sun/star/mail/MailAttachment.idl67
-rw-r--r--offapi/com/sun/star/mail/MailException.idl49
-rw-r--r--offapi/com/sun/star/mail/MailMessage.idl111
-rw-r--r--offapi/com/sun/star/mail/MailServer.idl65
-rw-r--r--offapi/com/sun/star/mail/MailServiceProvider.idl62
-rw-r--r--offapi/com/sun/star/mail/MailServiceType.idl50
-rw-r--r--offapi/com/sun/star/mail/NoMailServiceProviderException.idl52
-rw-r--r--offapi/com/sun/star/mail/NoMailTransportProviderException.idl52
-rw-r--r--offapi/com/sun/star/mail/SendMailMessageFailedException.idl68
-rw-r--r--offapi/com/sun/star/mail/XAuthenticator.idl66
-rw-r--r--offapi/com/sun/star/mail/XConnectionListener.idl73
-rw-r--r--offapi/com/sun/star/mail/XMailMessage.idl158
-rw-r--r--offapi/com/sun/star/mail/XMailServer.idl279
-rw-r--r--offapi/com/sun/star/mail/XMailService.idl229
-rw-r--r--offapi/com/sun/star/mail/XMailServiceProvider.idl70
-rw-r--r--offapi/com/sun/star/mail/XSmtpService.idl107
-rw-r--r--offapi/com/sun/star/mail/makefile.mk58
-rw-r--r--offapi/com/sun/star/makefile.mk46
-rw-r--r--offapi/com/sun/star/media/Manager.idl42
-rw-r--r--offapi/com/sun/star/media/XFrameGrabber.idl51
-rw-r--r--offapi/com/sun/star/media/XManager.idl53
-rw-r--r--offapi/com/sun/star/media/XPlayer.idl182
-rw-r--r--offapi/com/sun/star/media/XPlayerWindow.idl65
-rw-r--r--offapi/com/sun/star/media/ZoomLevel.idl94
-rw-r--r--offapi/com/sun/star/media/makefile.mk50
-rw-r--r--offapi/com/sun/star/modules.idl259
-rw-r--r--offapi/com/sun/star/mozilla/MenuMultipleChange.idl116
-rw-r--r--offapi/com/sun/star/mozilla/MenuProxy.idl63
-rw-r--r--offapi/com/sun/star/mozilla/MenuProxyListener.idl62
-rw-r--r--offapi/com/sun/star/mozilla/MenuSingleChange.idl74
-rw-r--r--offapi/com/sun/star/mozilla/MozillaBootstrap.idl62
-rw-r--r--offapi/com/sun/star/mozilla/MozillaProductType.idl64
-rw-r--r--offapi/com/sun/star/mozilla/XCloseSessionListener.idl62
-rw-r--r--offapi/com/sun/star/mozilla/XCodeProxy.idl67
-rw-r--r--offapi/com/sun/star/mozilla/XMenuProxy.idl91
-rw-r--r--offapi/com/sun/star/mozilla/XMenuProxyListener.idl89
-rw-r--r--offapi/com/sun/star/mozilla/XMozillaBootstrap.idl69
-rw-r--r--offapi/com/sun/star/mozilla/XPluginInstance.idl146
-rw-r--r--offapi/com/sun/star/mozilla/XPluginInstanceNotifySink.idl65
-rw-r--r--offapi/com/sun/star/mozilla/XPluginInstancePeer.idl170
-rw-r--r--offapi/com/sun/star/mozilla/XPluginInstanceSyncPeer.idl73
-rw-r--r--offapi/com/sun/star/mozilla/XPluginWindowPeer.idl62
-rw-r--r--offapi/com/sun/star/mozilla/XProfileDiscover.idl127
-rw-r--r--offapi/com/sun/star/mozilla/XProfileManager.idl116
-rw-r--r--offapi/com/sun/star/mozilla/XProxyRunner.idl69
-rw-r--r--offapi/com/sun/star/mozilla/XRemoteServiceManagerProvider.idl61
-rw-r--r--offapi/com/sun/star/mozilla/makefile.mk67
-rw-r--r--offapi/com/sun/star/office/XAnnotation.idl102
-rw-r--r--offapi/com/sun/star/office/XAnnotationAccess.idl72
-rw-r--r--offapi/com/sun/star/office/XAnnotationEnumeration.idl71
-rw-r--r--offapi/com/sun/star/office/makefile.mk47
-rw-r--r--offapi/com/sun/star/oooimprovement/Core.idl55
-rw-r--r--offapi/com/sun/star/oooimprovement/CoreController.idl56
-rw-r--r--offapi/com/sun/star/oooimprovement/XCore.idl59
-rw-r--r--offapi/com/sun/star/oooimprovement/XCoreController.idl57
-rw-r--r--offapi/com/sun/star/oooimprovement/makefile.mk44
-rw-r--r--offapi/com/sun/star/packages/EncryptionNotAllowedException.idl53
-rw-r--r--offapi/com/sun/star/packages/NoEncryptionException.idl53
-rw-r--r--offapi/com/sun/star/packages/NoRawFormatException.idl54
-rw-r--r--offapi/com/sun/star/packages/Package.idl126
-rw-r--r--offapi/com/sun/star/packages/PackageFolder.idl108
-rw-r--r--offapi/com/sun/star/packages/PackageFolderEnumeration.idl54
-rw-r--r--offapi/com/sun/star/packages/PackageStream.idl95
-rw-r--r--offapi/com/sun/star/packages/WrongPasswordException.idl53
-rw-r--r--offapi/com/sun/star/packages/XDataSinkEncrSupport.idl171
-rw-r--r--offapi/com/sun/star/packages/makefile.mk55
-rw-r--r--offapi/com/sun/star/packages/manifest/XManifestReader.idl56
-rw-r--r--offapi/com/sun/star/packages/manifest/XManifestWriter.idl57
-rw-r--r--offapi/com/sun/star/packages/manifest/makefile.mk47
-rw-r--r--offapi/com/sun/star/packages/zip/XZipFileAccess.idl79
-rw-r--r--offapi/com/sun/star/packages/zip/ZipConstants.idl311
-rw-r--r--offapi/com/sun/star/packages/zip/ZipEntry.idl122
-rw-r--r--offapi/com/sun/star/packages/zip/ZipException.idl60
-rw-r--r--offapi/com/sun/star/packages/zip/ZipFileAccess.idl72
-rwxr-xr-xoffapi/com/sun/star/packages/zip/ZipIOException.idl55
-rw-r--r--offapi/com/sun/star/packages/zip/makefile.mk51
-rw-r--r--offapi/com/sun/star/plugin/PluginDescription.idl56
-rw-r--r--offapi/com/sun/star/plugin/PluginException.idl57
-rw-r--r--offapi/com/sun/star/plugin/PluginManager.idl52
-rw-r--r--offapi/com/sun/star/plugin/PluginMode.idl49
-rw-r--r--offapi/com/sun/star/plugin/PluginVariable.idl57
-rw-r--r--offapi/com/sun/star/plugin/XPlugin.idl82
-rw-r--r--offapi/com/sun/star/plugin/XPluginContext.idl198
-rw-r--r--offapi/com/sun/star/plugin/XPluginManager.idl137
-rw-r--r--offapi/com/sun/star/plugin/makefile.mk53
-rw-r--r--offapi/com/sun/star/presentation/AnimationEffect.idl944
-rw-r--r--offapi/com/sun/star/presentation/AnimationSpeed.idl65
-rw-r--r--offapi/com/sun/star/presentation/ChartShape.idl62
-rw-r--r--offapi/com/sun/star/presentation/ClickAction.idl132
-rw-r--r--offapi/com/sun/star/presentation/CustomPresentation.idl68
-rw-r--r--offapi/com/sun/star/presentation/CustomPresentationAccess.idl71
-rw-r--r--offapi/com/sun/star/presentation/DateTimeShape.idl62
-rw-r--r--offapi/com/sun/star/presentation/DocumentSettings.idl120
-rw-r--r--offapi/com/sun/star/presentation/DrawPage.idl177
-rw-r--r--offapi/com/sun/star/presentation/EffectCommands.idl76
-rw-r--r--offapi/com/sun/star/presentation/EffectNodeType.idl81
-rw-r--r--offapi/com/sun/star/presentation/EffectPresetClass.idl81
-rw-r--r--offapi/com/sun/star/presentation/FadeEffect.idl388
-rw-r--r--offapi/com/sun/star/presentation/FooterShape.idl62
-rw-r--r--offapi/com/sun/star/presentation/GraphicObjectShape.idl62
-rw-r--r--offapi/com/sun/star/presentation/HandoutShape.idl62
-rw-r--r--offapi/com/sun/star/presentation/HandoutView.idl59
-rw-r--r--offapi/com/sun/star/presentation/HeaderShape.idl62
-rw-r--r--offapi/com/sun/star/presentation/NotesShape.idl62
-rw-r--r--offapi/com/sun/star/presentation/NotesView.idl59
-rw-r--r--offapi/com/sun/star/presentation/OLE2Shape.idl62
-rw-r--r--offapi/com/sun/star/presentation/OutlineView.idl109
-rw-r--r--offapi/com/sun/star/presentation/OutlinerShape.idl62
-rw-r--r--offapi/com/sun/star/presentation/PageShape.idl62
-rw-r--r--offapi/com/sun/star/presentation/ParagraphTarget.idl58
-rw-r--r--offapi/com/sun/star/presentation/Presentation.idl159
-rw-r--r--offapi/com/sun/star/presentation/Presentation2.idl65
-rw-r--r--offapi/com/sun/star/presentation/PresentationDocument.idl105
-rw-r--r--offapi/com/sun/star/presentation/PresentationRange.idl63
-rw-r--r--offapi/com/sun/star/presentation/PresentationView.idl117
-rw-r--r--offapi/com/sun/star/presentation/PreviewView.idl119
-rw-r--r--offapi/com/sun/star/presentation/Shape.idl180
-rw-r--r--offapi/com/sun/star/presentation/ShapeAnimationSubType.idl66
-rw-r--r--offapi/com/sun/star/presentation/SlideNumberShape.idl62
-rw-r--r--offapi/com/sun/star/presentation/SlidesView.idl110
-rw-r--r--offapi/com/sun/star/presentation/SubtitleShape.idl62
-rw-r--r--offapi/com/sun/star/presentation/TextAnimationType.idl63
-rw-r--r--offapi/com/sun/star/presentation/TitleTextShape.idl62
-rw-r--r--offapi/com/sun/star/presentation/XCustomPresentationSupplier.idl66
-rw-r--r--offapi/com/sun/star/presentation/XHandoutMasterSupplier.idl58
-rw-r--r--offapi/com/sun/star/presentation/XPresentation.idl72
-rw-r--r--offapi/com/sun/star/presentation/XPresentation2.idl99
-rw-r--r--offapi/com/sun/star/presentation/XPresentationPage.idl61
-rw-r--r--offapi/com/sun/star/presentation/XPresentationSupplier.idl62
-rw-r--r--offapi/com/sun/star/presentation/XShapeEventListener.idl66
-rw-r--r--offapi/com/sun/star/presentation/XSlideShow.idl378
-rw-r--r--offapi/com/sun/star/presentation/XSlideShowController.idl308
-rw-r--r--offapi/com/sun/star/presentation/XSlideShowListener.idl80
-rw-r--r--offapi/com/sun/star/presentation/XSlideShowView.idl187
-rw-r--r--offapi/com/sun/star/presentation/XTransition.idl64
-rw-r--r--offapi/com/sun/star/presentation/XTransitionFactory.idl92
-rw-r--r--offapi/com/sun/star/presentation/makefile.mk96
-rw-r--r--offapi/com/sun/star/presentation/textfield/DateTime.idl51
-rw-r--r--offapi/com/sun/star/presentation/textfield/Footer.idl51
-rw-r--r--offapi/com/sun/star/presentation/textfield/Header.idl51
-rw-r--r--offapi/com/sun/star/presentation/textfield/makefile.mk48
-rw-r--r--offapi/com/sun/star/rdf/BlankNode.idl82
-rw-r--r--offapi/com/sun/star/rdf/FileFormat.idl82
-rw-r--r--offapi/com/sun/star/rdf/Literal.idl92
-rw-r--r--offapi/com/sun/star/rdf/ParseException.idl55
-rw-r--r--offapi/com/sun/star/rdf/QueryException.idl56
-rw-r--r--offapi/com/sun/star/rdf/Repository.idl60
-rw-r--r--offapi/com/sun/star/rdf/RepositoryException.idl56
-rw-r--r--offapi/com/sun/star/rdf/Statement.idl63
-rw-r--r--offapi/com/sun/star/rdf/URI.idl102
-rw-r--r--offapi/com/sun/star/rdf/URIs.idl333
-rw-r--r--offapi/com/sun/star/rdf/XBlankNode.idl60
-rw-r--r--offapi/com/sun/star/rdf/XDocumentMetadataAccess.idl452
-rw-r--r--offapi/com/sun/star/rdf/XDocumentRepository.idl243
-rw-r--r--offapi/com/sun/star/rdf/XLiteral.idl72
-rw-r--r--offapi/com/sun/star/rdf/XMetadatable.idl106
-rw-r--r--offapi/com/sun/star/rdf/XNamedGraph.idl229
-rw-r--r--offapi/com/sun/star/rdf/XNode.idl79
-rw-r--r--offapi/com/sun/star/rdf/XQuerySelectResult.idl76
-rw-r--r--offapi/com/sun/star/rdf/XReifiedStatement.idl57
-rw-r--r--offapi/com/sun/star/rdf/XRepository.idl465
-rw-r--r--offapi/com/sun/star/rdf/XRepositorySupplier.idl63
-rw-r--r--offapi/com/sun/star/rdf/XResource.idl61
-rw-r--r--offapi/com/sun/star/rdf/XURI.idl77
-rw-r--r--offapi/com/sun/star/rdf/makefile.mk71
-rw-r--r--offapi/com/sun/star/rendering/AnimationAttributes.idl71
-rw-r--r--offapi/com/sun/star/rendering/AnimationRepeat.idl84
-rwxr-xr-xoffapi/com/sun/star/rendering/BlendMode.idl62
-rw-r--r--offapi/com/sun/star/rendering/CanvasFactory.idl58
-rw-r--r--offapi/com/sun/star/rendering/Caret.idl70
-rw-r--r--offapi/com/sun/star/rendering/ColorComponentTag.idl140
-rw-r--r--offapi/com/sun/star/rendering/ColorProfile.idl43
-rw-r--r--offapi/com/sun/star/rendering/ColorSpaceType.idl126
-rw-r--r--offapi/com/sun/star/rendering/CompositeOperation.idl158
-rw-r--r--offapi/com/sun/star/rendering/EmphasisMark.idl87
-rw-r--r--offapi/com/sun/star/rendering/FillRule.idl63
-rw-r--r--offapi/com/sun/star/rendering/FloatingPointBitmapFormat.idl67
-rw-r--r--offapi/com/sun/star/rendering/FloatingPointBitmapLayout.idl113
-rw-r--r--offapi/com/sun/star/rendering/FontInfo.idl126
-rw-r--r--offapi/com/sun/star/rendering/FontMetrics.idl107
-rw-r--r--offapi/com/sun/star/rendering/FontRequest.idl121
-rw-r--r--offapi/com/sun/star/rendering/IntegerBitmapLayout.idl127
-rw-r--r--offapi/com/sun/star/rendering/InterpolationMode.idl97
-rw-r--r--offapi/com/sun/star/rendering/Panose.idl67
-rw-r--r--offapi/com/sun/star/rendering/PanoseArmStyle.idl50
-rw-r--r--offapi/com/sun/star/rendering/PanoseContrast.idl48
-rw-r--r--offapi/com/sun/star/rendering/PanoseFamilyTypes.idl44
-rw-r--r--offapi/com/sun/star/rendering/PanoseLetterForm.idl54
-rw-r--r--offapi/com/sun/star/rendering/PanoseMidline.idl52
-rw-r--r--offapi/com/sun/star/rendering/PanoseProportion.idl48
-rw-r--r--offapi/com/sun/star/rendering/PanoseSerifStyle.idl54
-rw-r--r--offapi/com/sun/star/rendering/PanoseStrokeVariation.idl47
-rw-r--r--offapi/com/sun/star/rendering/PanoseWeight.idl50
-rw-r--r--offapi/com/sun/star/rendering/PanoseXHeight.idl46
-rw-r--r--offapi/com/sun/star/rendering/PathCapType.idl59
-rw-r--r--offapi/com/sun/star/rendering/PathJoinType.idl73
-rw-r--r--offapi/com/sun/star/rendering/RenderState.idl108
-rw-r--r--offapi/com/sun/star/rendering/RenderingIntent.idl89
-rw-r--r--offapi/com/sun/star/rendering/RepaintResult.idl58
-rw-r--r--offapi/com/sun/star/rendering/StringContext.idl68
-rw-r--r--offapi/com/sun/star/rendering/StrokeAttributes.idl154
-rw-r--r--offapi/com/sun/star/rendering/TextDirection.idl53
-rw-r--r--offapi/com/sun/star/rendering/TextHit.idl70
-rw-r--r--offapi/com/sun/star/rendering/Texture.idl156
-rw-r--r--offapi/com/sun/star/rendering/TexturingMode.idl70
-rw-r--r--offapi/com/sun/star/rendering/ViewState.idl77
-rw-r--r--offapi/com/sun/star/rendering/VolatileContentDestroyedException.idl49
-rw-r--r--offapi/com/sun/star/rendering/XAnimatedSprite.idl196
-rw-r--r--offapi/com/sun/star/rendering/XAnimation.idl123
-rw-r--r--offapi/com/sun/star/rendering/XBezierPolyPolygon2D.idl175
-rw-r--r--offapi/com/sun/star/rendering/XBitmap.idl115
-rw-r--r--offapi/com/sun/star/rendering/XBitmapCanvas.idl151
-rw-r--r--offapi/com/sun/star/rendering/XBitmapPalette.idl126
-rw-r--r--offapi/com/sun/star/rendering/XBufferController.idl134
-rw-r--r--offapi/com/sun/star/rendering/XCachedPrimitive.idl73
-rw-r--r--offapi/com/sun/star/rendering/XCanvas.idl744
-rw-r--r--offapi/com/sun/star/rendering/XCanvasFont.idl140
-rw-r--r--offapi/com/sun/star/rendering/XColorSpace.idl292
-rw-r--r--offapi/com/sun/star/rendering/XCustomSprite.idl77
-rw-r--r--offapi/com/sun/star/rendering/XGraphicDevice.idl303
-rw-r--r--offapi/com/sun/star/rendering/XHalfFloatBitmap.idl97
-rw-r--r--offapi/com/sun/star/rendering/XHalfFloatReadOnlyBitmap.idl113
-rw-r--r--offapi/com/sun/star/rendering/XIeeeDoubleBitmap.idl141
-rw-r--r--offapi/com/sun/star/rendering/XIeeeDoubleReadOnlyBitmap.idl140
-rw-r--r--offapi/com/sun/star/rendering/XIeeeFloatBitmap.idl140
-rw-r--r--offapi/com/sun/star/rendering/XIeeeFloatReadOnlyBitmap.idl139
-rw-r--r--offapi/com/sun/star/rendering/XIntegerBitmap.idl147
-rw-r--r--offapi/com/sun/star/rendering/XIntegerBitmapColorSpace.idl276
-rw-r--r--offapi/com/sun/star/rendering/XIntegerReadOnlyBitmap.idl160
-rw-r--r--offapi/com/sun/star/rendering/XLinePolyPolygon2D.idl123
-rw-r--r--offapi/com/sun/star/rendering/XParametricPolyPolygon2D.idl108
-rw-r--r--offapi/com/sun/star/rendering/XPolyPolygon2D.idl136
-rw-r--r--offapi/com/sun/star/rendering/XSimpleCanvas.idl291
-rw-r--r--offapi/com/sun/star/rendering/XSprite.idl214
-rw-r--r--offapi/com/sun/star/rendering/XSpriteCanvas.idl160
-rw-r--r--offapi/com/sun/star/rendering/XTextLayout.idl432
-rw-r--r--offapi/com/sun/star/rendering/XVolatileBitmap.idl54
-rw-r--r--offapi/com/sun/star/rendering/makefile.mk117
-rw-r--r--offapi/com/sun/star/report/Calculation.idl136
-rw-r--r--offapi/com/sun/star/report/ForceNewPage.idl69
-rw-r--r--offapi/com/sun/star/report/GroupKeepTogether.idl61
-rw-r--r--offapi/com/sun/star/report/GroupOn.idl92
-rw-r--r--offapi/com/sun/star/report/KeepTogether.idl64
-rw-r--r--offapi/com/sun/star/report/ReportPrintOption.idl67
-rw-r--r--offapi/com/sun/star/report/SectionPageBreak.idl60
-rw-r--r--offapi/com/sun/star/report/XFixedLine.idl108
-rw-r--r--offapi/com/sun/star/report/XFixedText.idl55
-rw-r--r--offapi/com/sun/star/report/XFormatCondition.idl61
-rw-r--r--offapi/com/sun/star/report/XFormattedField.idl72
-rw-r--r--offapi/com/sun/star/report/XFunction.idl90
-rw-r--r--offapi/com/sun/star/report/XFunctions.idl80
-rw-r--r--offapi/com/sun/star/report/XFunctionsSupplier.idl51
-rw-r--r--offapi/com/sun/star/report/XGroup.idl149
-rw-r--r--offapi/com/sun/star/report/XGroups.idl83
-rw-r--r--offapi/com/sun/star/report/XImageControl.idl92
-rw-r--r--offapi/com/sun/star/report/XReportComponent.idl200
-rw-r--r--offapi/com/sun/star/report/XReportControlFormat.idl613
-rw-r--r--offapi/com/sun/star/report/XReportControlModel.idl115
-rw-r--r--offapi/com/sun/star/report/XReportDefinition.idl362
-rw-r--r--offapi/com/sun/star/report/XReportEngine.idl169
-rw-r--r--offapi/com/sun/star/report/XSection.idl195
-rw-r--r--offapi/com/sun/star/report/XShape.idl96
-rw-r--r--offapi/com/sun/star/report/inspection/DataProviderHandler.idl55
-rw-r--r--offapi/com/sun/star/report/inspection/DefaultComponentInspectorModel.idl96
-rw-r--r--offapi/com/sun/star/report/inspection/ReportComponentHandler.idl55
-rw-r--r--offapi/com/sun/star/report/inspection/makefile.mk49
-rw-r--r--offapi/com/sun/star/report/makefile.mk69
-rw-r--r--offapi/com/sun/star/report/meta/XFormulaParser.idl72
-rw-r--r--offapi/com/sun/star/report/meta/XFunctionCategory.idl76
-rw-r--r--offapi/com/sun/star/report/meta/XFunctionDescription.idl87
-rw-r--r--offapi/com/sun/star/report/meta/XFunctionManager.idl74
-rw-r--r--offapi/com/sun/star/report/meta/makefile.mk49
-rw-r--r--offapi/com/sun/star/report/modules.idl45
-rw-r--r--offapi/com/sun/star/resource/MissingResourceException.idl53
-rw-r--r--offapi/com/sun/star/resource/OfficeResourceLoader.idl81
-rw-r--r--offapi/com/sun/star/resource/StringResource.idl51
-rw-r--r--offapi/com/sun/star/resource/StringResourceWithLocation.idl97
-rw-r--r--offapi/com/sun/star/resource/StringResourceWithStorage.idl92
-rw-r--r--offapi/com/sun/star/resource/XLocale.idl275
-rw-r--r--offapi/com/sun/star/resource/XResourceBundle.idl243
-rw-r--r--offapi/com/sun/star/resource/XResourceBundleLoader.idl86
-rw-r--r--offapi/com/sun/star/resource/XStringResourceManager.idl317
-rw-r--r--offapi/com/sun/star/resource/XStringResourcePersistence.idl247
-rw-r--r--offapi/com/sun/star/resource/XStringResourceResolver.idl201
-rw-r--r--offapi/com/sun/star/resource/XStringResourceSupplier.idl70
-rw-r--r--offapi/com/sun/star/resource/XStringResourceWithLocation.idl89
-rw-r--r--offapi/com/sun/star/resource/XStringResourceWithStorage.idl89
-rw-r--r--offapi/com/sun/star/resource/makefile.mk59
-rw-r--r--offapi/com/sun/star/scanner/ScanError.idl83
-rw-r--r--offapi/com/sun/star/scanner/ScannerContext.idl58
-rw-r--r--offapi/com/sun/star/scanner/ScannerException.idl61
-rw-r--r--offapi/com/sun/star/scanner/ScannerManager.idl56
-rw-r--r--offapi/com/sun/star/scanner/XScannerManager.idl107
-rw-r--r--offapi/com/sun/star/scanner/makefile.mk50
-rw-r--r--offapi/com/sun/star/script/DocumentDialogLibraryContainer.idl82
-rw-r--r--offapi/com/sun/star/script/DocumentScriptLibraryContainer.idl83
-rw-r--r--offapi/com/sun/star/script/LibraryNotLoadedException.idl55
-rw-r--r--offapi/com/sun/star/script/ModuleInfo.idl55
-rw-r--r--offapi/com/sun/star/script/ModuleSizeExceededRequest.idl55
-rw-r--r--offapi/com/sun/star/script/ModuleType.idl72
-rw-r--r--offapi/com/sun/star/script/XLibraryContainer.idl123
-rw-r--r--offapi/com/sun/star/script/XLibraryContainer2.idl99
-rw-r--r--offapi/com/sun/star/script/XLibraryContainer3.idl66
-rw-r--r--offapi/com/sun/star/script/XLibraryContainerExport.idl80
-rw-r--r--offapi/com/sun/star/script/XLibraryContainerPassword.idl143
-rw-r--r--offapi/com/sun/star/script/XPersistentLibraryContainer.idl104
-rw-r--r--offapi/com/sun/star/script/XStorageBasedLibraryContainer.idl105
-rwxr-xr-xoffapi/com/sun/star/script/browse/BrowseNode.idl62
-rwxr-xr-xoffapi/com/sun/star/script/browse/BrowseNodeFactory.idl64
-rwxr-xr-xoffapi/com/sun/star/script/browse/BrowseNodeFactoryViewTypes.idl51
-rwxr-xr-xoffapi/com/sun/star/script/browse/BrowseNodeTypes.idl56
-rwxr-xr-xoffapi/com/sun/star/script/browse/XBrowseNode.idl83
-rw-r--r--offapi/com/sun/star/script/browse/XBrowseNodeFactory.idl66
-rw-r--r--offapi/com/sun/star/script/browse/makefile.mk52
-rw-r--r--offapi/com/sun/star/script/makefile.mk58
-rwxr-xr-xoffapi/com/sun/star/script/provider/LanguageScriptProvider.idl55
-rwxr-xr-xoffapi/com/sun/star/script/provider/MasterScriptProvider.idl55
-rwxr-xr-xoffapi/com/sun/star/script/provider/MasterScriptProviderFactory.idl64
-rw-r--r--offapi/com/sun/star/script/provider/ScriptErrorRaisedException.idl59
-rw-r--r--offapi/com/sun/star/script/provider/ScriptExceptionRaisedException.idl53
-rw-r--r--offapi/com/sun/star/script/provider/ScriptFrameworkErrorException.idl59
-rw-r--r--offapi/com/sun/star/script/provider/ScriptFrameworkErrorType.idl62
-rwxr-xr-xoffapi/com/sun/star/script/provider/ScriptProvider.idl61
-rw-r--r--offapi/com/sun/star/script/provider/ScriptProviderForBasic.idl54
-rwxr-xr-xoffapi/com/sun/star/script/provider/ScriptProviderForBeanShell.idl54
-rwxr-xr-xoffapi/com/sun/star/script/provider/ScriptProviderForJava.idl54
-rwxr-xr-xoffapi/com/sun/star/script/provider/ScriptProviderForJavaScript.idl54
-rwxr-xr-xoffapi/com/sun/star/script/provider/ScriptURIHelper.idl72
-rw-r--r--offapi/com/sun/star/script/provider/XScript.idl102
-rw-r--r--offapi/com/sun/star/script/provider/XScriptContext.idl114
-rw-r--r--offapi/com/sun/star/script/provider/XScriptProvider.idl74
-rw-r--r--offapi/com/sun/star/script/provider/XScriptProviderFactory.idl72
-rw-r--r--offapi/com/sun/star/script/provider/XScriptProviderSupplier.idl64
-rw-r--r--offapi/com/sun/star/script/provider/XScriptURIHelper.idl88
-rwxr-xr-xoffapi/com/sun/star/script/provider/makefile.mk68
-rwxr-xr-xoffapi/com/sun/star/script/vba/VBAEventId.idl140
-rwxr-xr-xoffapi/com/sun/star/script/vba/VBAEventProcessor.idl49
-rwxr-xr-xoffapi/com/sun/star/script/vba/VBASpreadsheetEventProcessor.idl50
-rwxr-xr-xoffapi/com/sun/star/script/vba/VBATextEventProcessor.idl50
-rw-r--r--offapi/com/sun/star/script/vba/XVBACompatibility.idl50
-rwxr-xr-xoffapi/com/sun/star/script/vba/XVBAEventProcessor.idl106
-rw-r--r--offapi/com/sun/star/script/vba/XVBAModuleInfo.idl75
-rwxr-xr-xoffapi/com/sun/star/script/vba/makefile.mk52
-rw-r--r--offapi/com/sun/star/sdb/BooleanComparisonMode.idl74
-rw-r--r--offapi/com/sun/star/sdb/CallableStatement.idl59
-rw-r--r--offapi/com/sun/star/sdb/Column.idl59
-rw-r--r--offapi/com/sun/star/sdb/ColumnDescriptorControl.idl52
-rw-r--r--offapi/com/sun/star/sdb/ColumnDescriptorControlModel.idl94
-rw-r--r--offapi/com/sun/star/sdb/ColumnSettings.idl134
-rw-r--r--offapi/com/sun/star/sdb/CommandType.idl61
-rw-r--r--offapi/com/sun/star/sdb/Connection.idl98
-rw-r--r--offapi/com/sun/star/sdb/ContentLoader.idl103
-rw-r--r--offapi/com/sun/star/sdb/DataAccessDescriptor.idl270
-rw-r--r--offapi/com/sun/star/sdb/DataAccessDescriptorFactory.idl49
-rw-r--r--offapi/com/sun/star/sdb/DataColumn.idl76
-rw-r--r--offapi/com/sun/star/sdb/DataSettings.idl98
-rw-r--r--offapi/com/sun/star/sdb/DataSource.idl255
-rw-r--r--offapi/com/sun/star/sdb/DataSourceBrowser.idl290
-rw-r--r--offapi/com/sun/star/sdb/DatabaseAccess.idl119
-rw-r--r--offapi/com/sun/star/sdb/DatabaseAccessConnection.idl100
-rw-r--r--offapi/com/sun/star/sdb/DatabaseAccessContext.idl92
-rw-r--r--offapi/com/sun/star/sdb/DatabaseAccessDataSource.idl79
-rw-r--r--offapi/com/sun/star/sdb/DatabaseContext.idl110
-rw-r--r--offapi/com/sun/star/sdb/DatabaseDocument.idl76
-rw-r--r--offapi/com/sun/star/sdb/DatabaseEnvironment.idl72
-rw-r--r--offapi/com/sun/star/sdb/DatabaseInteractionHandler.idl71
-rw-r--r--offapi/com/sun/star/sdb/DatabaseRegistrationEvent.idl61
-rw-r--r--offapi/com/sun/star/sdb/DatasourceAdministrationDialog.idl129
-rw-r--r--offapi/com/sun/star/sdb/DefinitionContainer.idl97
-rw-r--r--offapi/com/sun/star/sdb/DefinitionContent.idl76
-rw-r--r--offapi/com/sun/star/sdb/Document.idl64
-rw-r--r--offapi/com/sun/star/sdb/DocumentContainer.idl129
-rw-r--r--offapi/com/sun/star/sdb/DocumentDataSource.idl65
-rw-r--r--offapi/com/sun/star/sdb/DocumentDefinition.idl100
-rw-r--r--offapi/com/sun/star/sdb/DocumentSaveRequest.idl70
-rw-r--r--offapi/com/sun/star/sdb/ErrorCondition.idl180
-rw-r--r--offapi/com/sun/star/sdb/ErrorMessageDialog.idl171
-rw-r--r--offapi/com/sun/star/sdb/Forms.idl55
-rw-r--r--offapi/com/sun/star/sdb/InteractionHandler.idl49
-rw-r--r--offapi/com/sun/star/sdb/OfficeDatabaseDocument.idl250
-rw-r--r--offapi/com/sun/star/sdb/OrderColumn.idl55
-rw-r--r--offapi/com/sun/star/sdb/ParametersRequest.idl78
-rw-r--r--offapi/com/sun/star/sdb/PreparedStatement.idl62
-rw-r--r--offapi/com/sun/star/sdb/Query.idl91
-rw-r--r--offapi/com/sun/star/sdb/QueryDefinition.idl88
-rw-r--r--offapi/com/sun/star/sdb/QueryDescriptor.idl106
-rw-r--r--offapi/com/sun/star/sdb/QueryDesign.idl201
-rw-r--r--offapi/com/sun/star/sdb/RelationDesign.idl93
-rw-r--r--offapi/com/sun/star/sdb/Reports.idl55
-rw-r--r--offapi/com/sun/star/sdb/ResultColumn.idl123
-rw-r--r--offapi/com/sun/star/sdb/ResultSet.idl62
-rw-r--r--offapi/com/sun/star/sdb/RowChangeAction.idl59
-rw-r--r--offapi/com/sun/star/sdb/RowChangeEvent.idl59
-rw-r--r--offapi/com/sun/star/sdb/RowSet.idl400
-rw-r--r--offapi/com/sun/star/sdb/RowSetVetoException.idl51
-rw-r--r--offapi/com/sun/star/sdb/RowsChangeEvent.idl52
-rw-r--r--offapi/com/sun/star/sdb/SQLContext.idl65
-rw-r--r--offapi/com/sun/star/sdb/SQLErrorEvent.idl55
-rw-r--r--offapi/com/sun/star/sdb/SQLFilterOperator.idl78
-rw-r--r--offapi/com/sun/star/sdb/SQLQueryComposer.idl75
-rw-r--r--offapi/com/sun/star/sdb/SingleSelectQueryAnalyzer.idl90
-rw-r--r--offapi/com/sun/star/sdb/SingleSelectQueryComposer.idl73
-rw-r--r--offapi/com/sun/star/sdb/Table.idl67
-rw-r--r--offapi/com/sun/star/sdb/TableDescriptor.idl61
-rw-r--r--offapi/com/sun/star/sdb/TableDesign.idl96
-rw-r--r--offapi/com/sun/star/sdb/XAlterQuery.idl63
-rw-r--r--offapi/com/sun/star/sdb/XBookmarksSupplier.idl68
-rw-r--r--offapi/com/sun/star/sdb/XColumn.idl304
-rw-r--r--offapi/com/sun/star/sdb/XColumnUpdate.idl230
-rw-r--r--offapi/com/sun/star/sdb/XCommandPreparation.idl81
-rw-r--r--offapi/com/sun/star/sdb/XCompletedConnection.idl72
-rw-r--r--offapi/com/sun/star/sdb/XCompletedExecution.idl63
-rw-r--r--offapi/com/sun/star/sdb/XDataAccessDescriptorFactory.idl64
-rw-r--r--offapi/com/sun/star/sdb/XDatabaseAccess.idl74
-rw-r--r--offapi/com/sun/star/sdb/XDatabaseAccessListener.idl53
-rw-r--r--offapi/com/sun/star/sdb/XDatabaseEnvironment.idl73
-rw-r--r--offapi/com/sun/star/sdb/XDatabaseRegistrations.idl159
-rw-r--r--offapi/com/sun/star/sdb/XDatabaseRegistrationsListener.idl71
-rw-r--r--offapi/com/sun/star/sdb/XDocumentDataSource.idl75
-rw-r--r--offapi/com/sun/star/sdb/XFormDocumentsSupplier.idl61
-rw-r--r--offapi/com/sun/star/sdb/XInteractionDocumentSave.idl65
-rw-r--r--offapi/com/sun/star/sdb/XInteractionSupplyParameters.idl62
-rw-r--r--offapi/com/sun/star/sdb/XOfficeDatabaseDocument.idl78
-rw-r--r--offapi/com/sun/star/sdb/XParametersSupplier.idl60
-rw-r--r--offapi/com/sun/star/sdb/XQueriesSupplier.idl63
-rw-r--r--offapi/com/sun/star/sdb/XQueryDefinitionsSupplier.idl59
-rw-r--r--offapi/com/sun/star/sdb/XReportDocumentsSupplier.idl61
-rw-r--r--offapi/com/sun/star/sdb/XResultSetAccess.idl70
-rw-r--r--offapi/com/sun/star/sdb/XRowSetApproveBroadcaster.idl66
-rw-r--r--offapi/com/sun/star/sdb/XRowSetApproveListener.idl77
-rw-r--r--offapi/com/sun/star/sdb/XRowSetChangeBroadcaster.idl63
-rw-r--r--offapi/com/sun/star/sdb/XRowSetChangeListener.idl59
-rw-r--r--offapi/com/sun/star/sdb/XRowSetSupplier.idl73
-rw-r--r--offapi/com/sun/star/sdb/XRowsChangeBroadcaster.idl66
-rw-r--r--offapi/com/sun/star/sdb/XRowsChangeListener.idl60
-rw-r--r--offapi/com/sun/star/sdb/XSQLErrorBroadcaster.idl70
-rw-r--r--offapi/com/sun/star/sdb/XSQLErrorListener.idl62
-rw-r--r--offapi/com/sun/star/sdb/XSQLQueryComposer.idl175
-rw-r--r--offapi/com/sun/star/sdb/XSQLQueryComposerFactory.idl60
-rw-r--r--offapi/com/sun/star/sdb/XSingleSelectQueryAnalyzer.idl262
-rw-r--r--offapi/com/sun/star/sdb/XSingleSelectQueryComposer.idl274
-rw-r--r--offapi/com/sun/star/sdb/XSubDocument.idl102
-rw-r--r--offapi/com/sun/star/sdb/application/CopyTableContinuation.idl69
-rw-r--r--offapi/com/sun/star/sdb/application/CopyTableOperation.idl72
-rw-r--r--offapi/com/sun/star/sdb/application/CopyTableRowEvent.idl71
-rw-r--r--offapi/com/sun/star/sdb/application/CopyTableWizard.idl231
-rw-r--r--offapi/com/sun/star/sdb/application/DatabaseObject.idl77
-rw-r--r--offapi/com/sun/star/sdb/application/DatabaseObjectContainer.idl104
-rw-r--r--offapi/com/sun/star/sdb/application/DefaultViewController.idl101
-rw-r--r--offapi/com/sun/star/sdb/application/NamedDatabaseObject.idl87
-rw-r--r--offapi/com/sun/star/sdb/application/XCopyTableListener.idl98
-rw-r--r--offapi/com/sun/star/sdb/application/XCopyTableWizard.idl153
-rw-r--r--offapi/com/sun/star/sdb/application/XDatabaseDocumentUI.idl330
-rw-r--r--offapi/com/sun/star/sdb/application/XTableUIProvider.idl123
-rw-r--r--offapi/com/sun/star/sdb/application/makefile.mk60
-rw-r--r--offapi/com/sun/star/sdb/makefile.mk147
-rw-r--r--offapi/com/sun/star/sdb/tools/CompositionType.idl89
-rw-r--r--offapi/com/sun/star/sdb/tools/XConnectionSupplier.idl67
-rw-r--r--offapi/com/sun/star/sdb/tools/XConnectionTools.idl146
-rw-r--r--offapi/com/sun/star/sdb/tools/XDataSourceMetaData.idl53
-rw-r--r--offapi/com/sun/star/sdb/tools/XIndexAlteration.idl96
-rw-r--r--offapi/com/sun/star/sdb/tools/XKeyAlteration.idl96
-rw-r--r--offapi/com/sun/star/sdb/tools/XObjectNames.idl179
-rw-r--r--offapi/com/sun/star/sdb/tools/XTableAlteration.idl115
-rw-r--r--offapi/com/sun/star/sdb/tools/XTableName.idl154
-rw-r--r--offapi/com/sun/star/sdb/tools/XTableRename.idl78
-rw-r--r--offapi/com/sun/star/sdb/tools/XViewAccess.idl88
-rw-r--r--offapi/com/sun/star/sdb/tools/makefile.mk59
-rw-r--r--offapi/com/sun/star/sdbc/BatchUpdateException.idl68
-rw-r--r--offapi/com/sun/star/sdbc/BestRowScope.idl86
-rw-r--r--offapi/com/sun/star/sdbc/BestRowType.idl83
-rw-r--r--offapi/com/sun/star/sdbc/CallableStatement.idl110
-rw-r--r--offapi/com/sun/star/sdbc/ChangeAction.idl61
-rw-r--r--offapi/com/sun/star/sdbc/ChangeEvent.idl53
-rw-r--r--offapi/com/sun/star/sdbc/ColumnSearch.idl107
-rw-r--r--offapi/com/sun/star/sdbc/ColumnType.idl83
-rw-r--r--offapi/com/sun/star/sdbc/ColumnValue.idl57
-rw-r--r--offapi/com/sun/star/sdbc/Connection.idl92
-rw-r--r--offapi/com/sun/star/sdbc/ConnectionPool.idl57
-rw-r--r--offapi/com/sun/star/sdbc/ConnectionProperties.idl71
-rw-r--r--offapi/com/sun/star/sdbc/DBASEConnectionProperties.idl66
-rw-r--r--offapi/com/sun/star/sdbc/DataTruncation.idl92
-rw-r--r--offapi/com/sun/star/sdbc/DataType.idl147
-rw-r--r--offapi/com/sun/star/sdbc/Deferrability.idl77
-rw-r--r--offapi/com/sun/star/sdbc/Driver.idl75
-rw-r--r--offapi/com/sun/star/sdbc/DriverManager.idl76
-rw-r--r--offapi/com/sun/star/sdbc/DriverPropertyInfo.idl87
-rw-r--r--offapi/com/sun/star/sdbc/FILEConnectionProperties.idl69
-rw-r--r--offapi/com/sun/star/sdbc/FLATConnectionProperties.idl86
-rw-r--r--offapi/com/sun/star/sdbc/FetchDirection.idl61
-rw-r--r--offapi/com/sun/star/sdbc/IndexType.idl103
-rw-r--r--offapi/com/sun/star/sdbc/JDBCConnectionProperties.idl119
-rw-r--r--offapi/com/sun/star/sdbc/KeyRule.idl192
-rw-r--r--offapi/com/sun/star/sdbc/ODBCConnectionProperties.idl94
-rw-r--r--offapi/com/sun/star/sdbc/PreparedStatement.idl272
-rw-r--r--offapi/com/sun/star/sdbc/ProcedureColumn.idl116
-rw-r--r--offapi/com/sun/star/sdbc/ProcedureResult.idl89
-rw-r--r--offapi/com/sun/star/sdbc/ResultSet.idl249
-rw-r--r--offapi/com/sun/star/sdbc/ResultSetConcurrency.idl58
-rw-r--r--offapi/com/sun/star/sdbc/ResultSetType.idl67
-rw-r--r--offapi/com/sun/star/sdbc/RowSet.idl188
-rw-r--r--offapi/com/sun/star/sdbc/SQLException.idl81
-rw-r--r--offapi/com/sun/star/sdbc/SQLWarning.idl55
-rw-r--r--offapi/com/sun/star/sdbc/Statement.idl233
-rw-r--r--offapi/com/sun/star/sdbc/TransactionIsolation.idl85
-rw-r--r--offapi/com/sun/star/sdbc/XArray.idl255
-rw-r--r--offapi/com/sun/star/sdbc/XBatchExecution.idl83
-rw-r--r--offapi/com/sun/star/sdbc/XBlob.idl251
-rw-r--r--offapi/com/sun/star/sdbc/XClob.idl210
-rw-r--r--offapi/com/sun/star/sdbc/XCloseable.idl59
-rw-r--r--offapi/com/sun/star/sdbc/XColumnLocate.idl76
-rw-r--r--offapi/com/sun/star/sdbc/XConnection.idl438
-rw-r--r--offapi/com/sun/star/sdbc/XDataSource.idl106
-rw-r--r--offapi/com/sun/star/sdbc/XDatabaseMetaData.idl2610
-rw-r--r--offapi/com/sun/star/sdbc/XDatabaseMetaData2.idl66
-rw-r--r--offapi/com/sun/star/sdbc/XDriver.idl182
-rw-r--r--offapi/com/sun/star/sdbc/XDriverAccess.idl64
-rw-r--r--offapi/com/sun/star/sdbc/XDriverManager.idl126
-rw-r--r--offapi/com/sun/star/sdbc/XGeneratedResultSet.idl71
-rw-r--r--offapi/com/sun/star/sdbc/XIsolatedConnection.idl85
-rw-r--r--offapi/com/sun/star/sdbc/XMultipleResults.idl117
-rw-r--r--offapi/com/sun/star/sdbc/XOutParameters.idl148
-rw-r--r--offapi/com/sun/star/sdbc/XParameters.idl458
-rw-r--r--offapi/com/sun/star/sdbc/XPooledConnection.idl80
-rw-r--r--offapi/com/sun/star/sdbc/XPreparedBatchExecution.idl86
-rw-r--r--offapi/com/sun/star/sdbc/XPreparedStatement.idl117
-rw-r--r--offapi/com/sun/star/sdbc/XRef.idl65
-rw-r--r--offapi/com/sun/star/sdbc/XResultSet.idl345
-rw-r--r--offapi/com/sun/star/sdbc/XResultSetMetaData.idl286
-rw-r--r--offapi/com/sun/star/sdbc/XResultSetMetaDataSupplier.idl73
-rw-r--r--offapi/com/sun/star/sdbc/XResultSetUpdate.idl143
-rw-r--r--offapi/com/sun/star/sdbc/XRow.idl349
-rw-r--r--offapi/com/sun/star/sdbc/XRowSet.idl86
-rw-r--r--offapi/com/sun/star/sdbc/XRowSetListener.idl73
-rw-r--r--offapi/com/sun/star/sdbc/XRowUpdate.idl269
-rw-r--r--offapi/com/sun/star/sdbc/XSQLData.idl146
-rw-r--r--offapi/com/sun/star/sdbc/XSQLInput.idl300
-rw-r--r--offapi/com/sun/star/sdbc/XSQLOutput.idl310
-rw-r--r--offapi/com/sun/star/sdbc/XStatement.idl142
-rw-r--r--offapi/com/sun/star/sdbc/XStruct.idl111
-rw-r--r--offapi/com/sun/star/sdbc/XWarningsSupplier.idl84
-rw-r--r--offapi/com/sun/star/sdbc/makefile.mk118
-rw-r--r--offapi/com/sun/star/sdbcx/CheckOption.idl61
-rw-r--r--offapi/com/sun/star/sdbcx/Column.idl125
-rw-r--r--offapi/com/sun/star/sdbcx/ColumnDescriptor.idl107
-rw-r--r--offapi/com/sun/star/sdbcx/CompareBookmark.idl69
-rw-r--r--offapi/com/sun/star/sdbcx/Container.idl101
-rw-r--r--offapi/com/sun/star/sdbcx/DatabaseDefinition.idl80
-rw-r--r--offapi/com/sun/star/sdbcx/Descriptor.idl67
-rw-r--r--offapi/com/sun/star/sdbcx/Driver.idl78
-rw-r--r--offapi/com/sun/star/sdbcx/Group.idl68
-rw-r--r--offapi/com/sun/star/sdbcx/GroupDescriptor.idl53
-rw-r--r--offapi/com/sun/star/sdbcx/Index.idl97
-rw-r--r--offapi/com/sun/star/sdbcx/IndexColumn.idl56
-rw-r--r--offapi/com/sun/star/sdbcx/IndexColumnDescriptor.idl56
-rw-r--r--offapi/com/sun/star/sdbcx/IndexDescriptor.idl73
-rw-r--r--offapi/com/sun/star/sdbcx/Key.idl93
-rw-r--r--offapi/com/sun/star/sdbcx/KeyColumn.idl54
-rw-r--r--offapi/com/sun/star/sdbcx/KeyColumnDescriptor.idl57
-rw-r--r--offapi/com/sun/star/sdbcx/KeyDescriptor.idl75
-rw-r--r--offapi/com/sun/star/sdbcx/KeyType.idl59
-rw-r--r--offapi/com/sun/star/sdbcx/PreparedStatement.idl59
-rw-r--r--offapi/com/sun/star/sdbcx/Privilege.idl91
-rw-r--r--offapi/com/sun/star/sdbcx/PrivilegeObject.idl60
-rw-r--r--offapi/com/sun/star/sdbcx/ReferenceColumn.idl57
-rw-r--r--offapi/com/sun/star/sdbcx/ResultSet.idl84
-rw-r--r--offapi/com/sun/star/sdbcx/Statement.idl64
-rw-r--r--offapi/com/sun/star/sdbcx/Table.idl134
-rw-r--r--offapi/com/sun/star/sdbcx/TableDescriptor.idl88
-rw-r--r--offapi/com/sun/star/sdbcx/User.idl68
-rw-r--r--offapi/com/sun/star/sdbcx/UserDescriptor.idl56
-rw-r--r--offapi/com/sun/star/sdbcx/View.idl108
-rw-r--r--offapi/com/sun/star/sdbcx/ViewDescriptor.idl74
-rw-r--r--offapi/com/sun/star/sdbcx/XAlterTable.idl97
-rw-r--r--offapi/com/sun/star/sdbcx/XAlterView.idl67
-rw-r--r--offapi/com/sun/star/sdbcx/XAppend.idl75
-rw-r--r--offapi/com/sun/star/sdbcx/XAuthorizable.idl110
-rw-r--r--offapi/com/sun/star/sdbcx/XColumnsSupplier.idl64
-rw-r--r--offapi/com/sun/star/sdbcx/XCreateCatalog.idl74
-rw-r--r--offapi/com/sun/star/sdbcx/XDataDefinitionSupplier.idl92
-rw-r--r--offapi/com/sun/star/sdbcx/XDataDescriptorFactory.idl58
-rw-r--r--offapi/com/sun/star/sdbcx/XDeleteRows.idl67
-rw-r--r--offapi/com/sun/star/sdbcx/XDrop.idl81
-rw-r--r--offapi/com/sun/star/sdbcx/XDropCatalog.idl76
-rw-r--r--offapi/com/sun/star/sdbcx/XGroupsSupplier.idl60
-rw-r--r--offapi/com/sun/star/sdbcx/XIndexesSupplier.idl60
-rw-r--r--offapi/com/sun/star/sdbcx/XKeysSupplier.idl60
-rw-r--r--offapi/com/sun/star/sdbcx/XRename.idl70
-rw-r--r--offapi/com/sun/star/sdbcx/XRowLocate.idl158
-rw-r--r--offapi/com/sun/star/sdbcx/XTablesSupplier.idl60
-rw-r--r--offapi/com/sun/star/sdbcx/XUser.idl59
-rw-r--r--offapi/com/sun/star/sdbcx/XUsersSupplier.idl64
-rw-r--r--offapi/com/sun/star/sdbcx/XViewsSupplier.idl60
-rw-r--r--offapi/com/sun/star/sdbcx/makefile.mk97
-rw-r--r--offapi/com/sun/star/security/CertificateCharacters.idl61
-rw-r--r--offapi/com/sun/star/security/CertificateContainer.idl46
-rw-r--r--offapi/com/sun/star/security/CertificateContainerStatus.idl64
-rw-r--r--offapi/com/sun/star/security/CertificateException.idl54
-rw-r--r--offapi/com/sun/star/security/CertificateValidity.idl133
-rw-r--r--offapi/com/sun/star/security/CryptographyException.idl55
-rw-r--r--offapi/com/sun/star/security/DocumentDigitalSignatures.idl55
-rw-r--r--offapi/com/sun/star/security/DocumentSignatureInformation.idl86
-rw-r--r--offapi/com/sun/star/security/EncryptionException.idl55
-rw-r--r--offapi/com/sun/star/security/KeyException.idl55
-rw-r--r--offapi/com/sun/star/security/KeyUsage.idl49
-rw-r--r--offapi/com/sun/star/security/NoPasswordException.idl55
-rw-r--r--offapi/com/sun/star/security/SecurityInfrastructureException.idl55
-rw-r--r--offapi/com/sun/star/security/SerialNumberAdapter.idl57
-rw-r--r--offapi/com/sun/star/security/SignatureException.idl55
-rw-r--r--offapi/com/sun/star/security/XCertificate.idl137
-rw-r--r--offapi/com/sun/star/security/XCertificateContainer.idl66
-rw-r--r--offapi/com/sun/star/security/XCertificateExtension.idl65
-rw-r--r--offapi/com/sun/star/security/XDocumentDigitalSignatures.idl153
-rw-r--r--offapi/com/sun/star/security/XSerialNumberAdapter.idl59
-rw-r--r--offapi/com/sun/star/security/makefile.mk67
-rw-r--r--offapi/com/sun/star/setup/ActionType.idl67
-rw-r--r--offapi/com/sun/star/setup/BaseAction.idl48
-rw-r--r--offapi/com/sun/star/setup/CopyFileAction.idl64
-rw-r--r--offapi/com/sun/star/setup/DeleteDirAction.idl44
-rw-r--r--offapi/com/sun/star/setup/DeleteFileAction.idl60
-rw-r--r--offapi/com/sun/star/setup/DeleteFolderAction.idl44
-rw-r--r--offapi/com/sun/star/setup/DeleteFolderItemAction.idl47
-rw-r--r--offapi/com/sun/star/setup/DownloadAction.idl50
-rw-r--r--offapi/com/sun/star/setup/FontAction.idl50
-rw-r--r--offapi/com/sun/star/setup/InstallEnvironment.idl116
-rw-r--r--offapi/com/sun/star/setup/InstallResponse.idl62
-rw-r--r--offapi/com/sun/star/setup/InstallType.idl61
-rw-r--r--offapi/com/sun/star/setup/MakeDirAction.idl47
-rw-r--r--offapi/com/sun/star/setup/MakeFolderAction.idl47
-rw-r--r--offapi/com/sun/star/setup/MakeFolderItemAction.idl56
-rw-r--r--offapi/com/sun/star/setup/MakeShortcutAction.idl53
-rw-r--r--offapi/com/sun/star/setup/MirrorEntry.idl46
-rw-r--r--offapi/com/sun/star/setup/ModuleInfo.idl70
-rw-r--r--offapi/com/sun/star/setup/ModuleState.idl46
-rw-r--r--offapi/com/sun/star/setup/OSType.idl74
-rw-r--r--offapi/com/sun/star/setup/ProductRegistration.idl93
-rw-r--r--offapi/com/sun/star/setup/ProfileItemAction.idl56
-rw-r--r--offapi/com/sun/star/setup/Setup.idl49
-rw-r--r--offapi/com/sun/star/setup/SizeInfo.idl49
-rw-r--r--offapi/com/sun/star/setup/UnzipAction.idl70
-rw-r--r--offapi/com/sun/star/setup/UpdateType.idl49
-rw-r--r--offapi/com/sun/star/setup/VersionIdentifier.idl57
-rw-r--r--offapi/com/sun/star/setup/WindowsRegistryAction.idl62
-rw-r--r--offapi/com/sun/star/setup/XSetup.idl108
-rw-r--r--offapi/com/sun/star/setup/makefile.mk74
-rw-r--r--offapi/com/sun/star/sheet/AccessibleCell.idl135
-rw-r--r--offapi/com/sun/star/sheet/AccessibleCsvCell.idl81
-rw-r--r--offapi/com/sun/star/sheet/AccessibleCsvRuler.idl80
-rw-r--r--offapi/com/sun/star/sheet/AccessibleCsvTable.idl91
-rw-r--r--offapi/com/sun/star/sheet/AccessiblePageHeaderFooterAreasView.idl148
-rw-r--r--offapi/com/sun/star/sheet/AccessibleSpreadsheet.idl157
-rw-r--r--offapi/com/sun/star/sheet/AccessibleSpreadsheetDocumentView.idl166
-rw-r--r--offapi/com/sun/star/sheet/AccessibleSpreadsheetPageView.idl183
-rw-r--r--offapi/com/sun/star/sheet/ActivationEvent.idl64
-rw-r--r--offapi/com/sun/star/sheet/AddIn.idl160
-rw-r--r--offapi/com/sun/star/sheet/AddressConvention.idl70
-rw-r--r--offapi/com/sun/star/sheet/Border.idl72
-rw-r--r--offapi/com/sun/star/sheet/CellAnnotation.idl91
-rw-r--r--offapi/com/sun/star/sheet/CellAnnotationShape.idl57
-rw-r--r--offapi/com/sun/star/sheet/CellAnnotations.idl75
-rw-r--r--offapi/com/sun/star/sheet/CellAnnotationsEnumeration.idl62
-rw-r--r--offapi/com/sun/star/sheet/CellAreaLink.idl121
-rw-r--r--offapi/com/sun/star/sheet/CellAreaLinks.idl83
-rw-r--r--offapi/com/sun/star/sheet/CellAreaLinksEnumeration.idl62
-rw-r--r--offapi/com/sun/star/sheet/CellDeleteMode.idl78
-rw-r--r--offapi/com/sun/star/sheet/CellFlags.idl114
-rw-r--r--offapi/com/sun/star/sheet/CellFormatRanges.idl79
-rw-r--r--offapi/com/sun/star/sheet/CellFormatRangesEnumeration.idl62
-rw-r--r--offapi/com/sun/star/sheet/CellInsertMode.idl78
-rw-r--r--offapi/com/sun/star/sheet/Cells.idl62
-rw-r--r--offapi/com/sun/star/sheet/CellsEnumeration.idl62
-rw-r--r--offapi/com/sun/star/sheet/ComplexReference.idl63
-rw-r--r--offapi/com/sun/star/sheet/ConditionOperator.idl108
-rw-r--r--offapi/com/sun/star/sheet/ConsolidationDescriptor.idl61
-rw-r--r--offapi/com/sun/star/sheet/DDEItemInfo.idl65
-rw-r--r--offapi/com/sun/star/sheet/DDELink.idl94
-rw-r--r--offapi/com/sun/star/sheet/DDELinkInfo.idl80
-rw-r--r--offapi/com/sun/star/sheet/DDELinkMode.idl70
-rw-r--r--offapi/com/sun/star/sheet/DDELinks.idl98
-rw-r--r--offapi/com/sun/star/sheet/DDELinksEnumeration.idl62
-rw-r--r--offapi/com/sun/star/sheet/DataImportMode.idl72
-rw-r--r--offapi/com/sun/star/sheet/DataPilotDescriptor.idl151
-rw-r--r--offapi/com/sun/star/sheet/DataPilotField.idl248
-rw-r--r--offapi/com/sun/star/sheet/DataPilotFieldAutoShowInfo.idl83
-rw-r--r--offapi/com/sun/star/sheet/DataPilotFieldFilter.idl51
-rw-r--r--offapi/com/sun/star/sheet/DataPilotFieldGroup.idl133
-rw-r--r--offapi/com/sun/star/sheet/DataPilotFieldGroupBy.idl138
-rw-r--r--offapi/com/sun/star/sheet/DataPilotFieldGroupEnumeration.idl64
-rw-r--r--offapi/com/sun/star/sheet/DataPilotFieldGroupInfo.idl164
-rw-r--r--offapi/com/sun/star/sheet/DataPilotFieldGroupItem.idl60
-rw-r--r--offapi/com/sun/star/sheet/DataPilotFieldGroups.idl127
-rw-r--r--offapi/com/sun/star/sheet/DataPilotFieldGroupsEnumeration.idl64
-rw-r--r--offapi/com/sun/star/sheet/DataPilotFieldLayoutInfo.idl66
-rw-r--r--offapi/com/sun/star/sheet/DataPilotFieldLayoutMode.idl86
-rw-r--r--offapi/com/sun/star/sheet/DataPilotFieldOrientation.idl78
-rw-r--r--offapi/com/sun/star/sheet/DataPilotFieldReference.idl91
-rw-r--r--offapi/com/sun/star/sheet/DataPilotFieldReferenceItemType.idl68
-rw-r--r--offapi/com/sun/star/sheet/DataPilotFieldReferenceType.idl175
-rw-r--r--offapi/com/sun/star/sheet/DataPilotFieldShowItemsMode.idl64
-rw-r--r--offapi/com/sun/star/sheet/DataPilotFieldSortInfo.idl74
-rw-r--r--offapi/com/sun/star/sheet/DataPilotFieldSortMode.idl81
-rw-r--r--offapi/com/sun/star/sheet/DataPilotFields.idl84
-rw-r--r--offapi/com/sun/star/sheet/DataPilotFieldsEnumeration.idl62
-rw-r--r--offapi/com/sun/star/sheet/DataPilotItem.idl90
-rw-r--r--offapi/com/sun/star/sheet/DataPilotItems.idl80
-rw-r--r--offapi/com/sun/star/sheet/DataPilotItemsEnumeration.idl62
-rw-r--r--offapi/com/sun/star/sheet/DataPilotOutputRangeType.idl72
-rw-r--r--offapi/com/sun/star/sheet/DataPilotSource.idl129
-rw-r--r--offapi/com/sun/star/sheet/DataPilotSourceDimension.idl166
-rw-r--r--offapi/com/sun/star/sheet/DataPilotSourceDimensions.idl62
-rw-r--r--offapi/com/sun/star/sheet/DataPilotSourceHierarchies.idl64
-rw-r--r--offapi/com/sun/star/sheet/DataPilotSourceHierarchy.idl72
-rw-r--r--offapi/com/sun/star/sheet/DataPilotSourceLevel.idl110
-rw-r--r--offapi/com/sun/star/sheet/DataPilotSourceLevels.idl63
-rw-r--r--offapi/com/sun/star/sheet/DataPilotSourceMember.idl99
-rw-r--r--offapi/com/sun/star/sheet/DataPilotSourceMembers.idl63
-rw-r--r--offapi/com/sun/star/sheet/DataPilotTable.idl80
-rw-r--r--offapi/com/sun/star/sheet/DataPilotTableHeaderData.idl79
-rw-r--r--offapi/com/sun/star/sheet/DataPilotTablePositionData.idl90
-rw-r--r--offapi/com/sun/star/sheet/DataPilotTablePositionType.idl78
-rw-r--r--offapi/com/sun/star/sheet/DataPilotTableResultData.idl86
-rw-r--r--offapi/com/sun/star/sheet/DataPilotTables.idl77
-rw-r--r--offapi/com/sun/star/sheet/DataPilotTablesEnumeration.idl62
-rw-r--r--offapi/com/sun/star/sheet/DataResult.idl62
-rw-r--r--offapi/com/sun/star/sheet/DataResultFlags.idl69
-rw-r--r--offapi/com/sun/star/sheet/DatabaseImportDescriptor.idl94
-rw-r--r--offapi/com/sun/star/sheet/DatabaseRange.idl172
-rw-r--r--offapi/com/sun/star/sheet/DatabaseRanges.idl83
-rw-r--r--offapi/com/sun/star/sheet/DatabaseRangesEnumeration.idl62
-rw-r--r--offapi/com/sun/star/sheet/DocumentSettings.idl137
-rw-r--r--offapi/com/sun/star/sheet/ExternalDocLink.idl54
-rw-r--r--offapi/com/sun/star/sheet/ExternalDocLinks.idl52
-rw-r--r--offapi/com/sun/star/sheet/ExternalLinkInfo.idl77
-rw-r--r--offapi/com/sun/star/sheet/ExternalLinkType.idl64
-rw-r--r--offapi/com/sun/star/sheet/ExternalReference.idl96
-rw-r--r--offapi/com/sun/star/sheet/ExternalSheetCache.idl52
-rw-r--r--offapi/com/sun/star/sheet/FillDateMode.idl75
-rw-r--r--offapi/com/sun/star/sheet/FillDirection.idl73
-rw-r--r--offapi/com/sun/star/sheet/FillMode.idl93
-rw-r--r--offapi/com/sun/star/sheet/FilterConnection.idl61
-rw-r--r--offapi/com/sun/star/sheet/FilterFormulaParser.idl52
-rw-r--r--offapi/com/sun/star/sheet/FilterOperator.idl120
-rw-r--r--offapi/com/sun/star/sheet/FilterOperator2.idl161
-rw-r--r--offapi/com/sun/star/sheet/FormulaLanguage.idl70
-rw-r--r--offapi/com/sun/star/sheet/FormulaMapGroup.idl77
-rw-r--r--offapi/com/sun/star/sheet/FormulaMapGroupSpecialOffset.idl210
-rw-r--r--offapi/com/sun/star/sheet/FormulaOpCodeMapEntry.idl65
-rw-r--r--offapi/com/sun/star/sheet/FormulaParser.idl118
-rw-r--r--offapi/com/sun/star/sheet/FormulaResult.idl66
-rw-r--r--offapi/com/sun/star/sheet/FormulaToken.idl64
-rw-r--r--offapi/com/sun/star/sheet/FunctionAccess.idl95
-rw-r--r--offapi/com/sun/star/sheet/FunctionArgument.idl69
-rw-r--r--offapi/com/sun/star/sheet/FunctionCategory.idl116
-rw-r--r--offapi/com/sun/star/sheet/FunctionDescription.idl89
-rw-r--r--offapi/com/sun/star/sheet/FunctionDescriptionEnumeration.idl62
-rw-r--r--offapi/com/sun/star/sheet/FunctionDescriptions.idl91
-rw-r--r--offapi/com/sun/star/sheet/GeneralFunction.idl128
-rw-r--r--offapi/com/sun/star/sheet/GlobalSheetSettings.idl192
-rw-r--r--offapi/com/sun/star/sheet/GoalResult.idl58
-rw-r--r--offapi/com/sun/star/sheet/HeaderFooterContent.idl60
-rw-r--r--offapi/com/sun/star/sheet/LabelRange.idl61
-rw-r--r--offapi/com/sun/star/sheet/LabelRanges.idl87
-rw-r--r--offapi/com/sun/star/sheet/LabelRangesEnumeration.idl62
-rw-r--r--offapi/com/sun/star/sheet/LocalizedName.idl65
-rw-r--r--offapi/com/sun/star/sheet/MemberResult.idl68
-rw-r--r--offapi/com/sun/star/sheet/MemberResultFlags.idl77
-rw-r--r--offapi/com/sun/star/sheet/MoveDirection.idl73
-rw-r--r--offapi/com/sun/star/sheet/NamedRange.idl112
-rw-r--r--offapi/com/sun/star/sheet/NamedRangeFlag.idl72
-rw-r--r--offapi/com/sun/star/sheet/NamedRanges.idl102
-rw-r--r--offapi/com/sun/star/sheet/NamedRangesEnumeration.idl62
-rw-r--r--offapi/com/sun/star/sheet/NoConvergenceException.idl52
-rw-r--r--offapi/com/sun/star/sheet/PasteOperation.idl79
-rw-r--r--offapi/com/sun/star/sheet/RangeSelectionArguments.idl72
-rw-r--r--offapi/com/sun/star/sheet/RangeSelectionEvent.idl57
-rw-r--r--offapi/com/sun/star/sheet/RecentFunctions.idl58
-rw-r--r--offapi/com/sun/star/sheet/ReferenceFlags.idl97
-rw-r--r--