~ubuntu-branches/ubuntu/karmic/openoffice.org-l10n/karmic

« back to all changes in this revision

Viewing changes to ooo-build/patches/emf+/emf+-offapi.diff

  • Committer: Bazaar Package Importer
  • Author(s): Chris Cheney
  • Date: 2008-01-08 23:17:08 UTC
  • mfrom: (1.1.15 upstream)
  • Revision ID: james.westby@ubuntu.com-20080108231708-7f5yc4h021ikwgyz
Tags: 1:2.3.1-3ubuntu1
* Copy of the openoffice.org source.
  - debian/changelog: Change source name.
  - debian/control.in: Change source name.
  - debian/control: Regenerate control file.

* Resynchronise with Debian (r989). Remaining changes:
  - debian/broffice.org.postrm.in:
    . Change diversions to ubuntu bitmap filenames.
  - debian/broffice.org.preinst.in:
    . Change diversions to ubuntu bitmap filenames.
  - debian/control.2.in:
    . Add file for Ubuntu.
  - debian/control.in:
    . Change maintainer line.
    . Use imagemagick instead of graphicsmagick.
    . Change bzr repo location.
    . Use java-runtime-depends variable for java dependencies.
    . Make openoffice.org-core Depends on openoffice.org-hyphenation.
    . Add package openoffice.org-style-human.
    . Various other minor Ubuntu changes.
  - debian/control.l10n.in:
    . Add file for Ubuntu.
  - debian/control.lang.in:
    . Add L10N_COMMON to Depends.
  - debian/control.mozilla.in:
    . Add Xb-Npp-xxx tags according to "firefox distro add-on suport" spec.
  - debian/control.ubuntu.in:
    . Add file for Ubuntu.
  - debian/deppackage.postinst.in:
    . Add file for Ubuntu.
  - debian/module-po.map:
    . Add file for Ubuntu.
  - debian/ooo-build-ubuntu.diff:
    . Various Ubuntu specific changes to ooo-build.
  - debian/rules:
    . Add USE_LZMA_COMPRESS option.
    . Add USE_COMMON_DOCDIR option.
    . Add support to build on lpia.
    . Add support to build l10n as a separate source.
    . Add java-runtime-depends variable for java dependencies.
    . Add support to chmod +x programs in debian dir.
    . Add support to uuencode binary files in ubuntu dir.
    . Add support to Ubuntu specific bitmaps.
    . Use imagemagick instead of graphicsmagick.
    . Add support for openoffice.org-style-human package.
    . Add support for launchpad translations.
    . Various Ubuntu specific changes.
  - debian/scripts/convert2po:
    . Add file for Ubuntu.
  - debian/scripts/fix_image_rgb:
    . Use imagemagick instead of graphicsmagick.
  - debian/scripts/gsifilter.py:
    . Add file for Ubuntu.
  - debian/scripts/splitgsi:
    . Add file for Ubuntu.
  - debian/template.desktop.in:
    . Add NoDisplay=true.
  - ooo-build/configure.in:
    . Added support for Hardy.
  - ooo-build/distro-configs/UbuntuHardy.conf.in:
    . Added support for Hardy.
  - ooo-build/distro-configs/UbuntuHardy64.conf.in:
    . Added support for Hardy.
  - ooo-build/patches/src680/apply:
    . Added support for Hardy.
  - ooo-build/patches/src680/ubuntu-lpi.diff:
    . Updated patch.
  - ubuntu/*
    . Various Ubuntu specific changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
diff -rup offapi-orig/com/sun/star/rendering/XColorSpace.idl offapi/com/sun/star/rendering/XColorSpace.idl
 
2
--- offapi-orig/com/sun/star/rendering/XColorSpace.idl  2007-09-05 21:51:02.000000000 +0200
 
3
+++ offapi/com/sun/star/rendering/XColorSpace.idl       2007-09-05 22:00:41.000000000 +0200
 
4
@@ -63,6 +63,7 @@ interface XColorSpace
 
5
 
 
6
 /// Shorthand for the device-dependent color components, and easier to read
 
7
 typedef double ColorComponent;
 
8
+typedef sequence<ColorComponent> Color;
 
9
 
 
10
 }; }; }; };
 
11
 
 
12
diff -rup offapi-orig/com/sun/star/rendering/XParametricPolyPolygon2DFactory.idl offapi/com/sun/star/rendering/XParametricPolyPolygon2DFactory.idl
 
13
--- offapi-orig/com/sun/star/rendering/XParametricPolyPolygon2DFactory.idl      2007-09-05 21:51:02.000000000 +0200
 
14
+++ offapi/com/sun/star/rendering/XParametricPolyPolygon2DFactory.idl   2007-09-06 17:04:28.000000000 +0200
 
15
@@ -60,11 +60,11 @@ interface XParametricPolyPolygon2DFactor
 
16
 {
 
17
     /** Create a linear gradient.
 
18
 
 
19
-               The gradient varies linearly between leftColor and rightColor
 
20
+               The gradient varies linearly between colors. the color positions on <0, 1> interval are given by stops values
 
21
                in the x direction, and has constant color for fixed x
 
22
                coordinate value in y direction
 
23
      */
 
24
-    XParametricPolyPolygon2D   createLinearHorizontalGradient( [in] sequence<ColorComponent> leftColor, [in] sequence<ColorComponent> rightColor )
 
25
+    XParametricPolyPolygon2D   createLinearHorizontalGradient( [in] sequence<Color> colors, [in] sequence<double> stops )
 
26
         raises (com::sun::star::lang::IllegalArgumentException); 
 
27
 
 
28
     /** Create an axial gradient.
 
29
@@ -74,7 +74,7 @@ interface XParametricPolyPolygon2DFactor
 
30
                x direction. For fixed x coordinate, the gradient has constant
 
31
                color value in y direction.
 
32
      */
 
33
-    XParametricPolyPolygon2D   createAxialHorizontalGradient( [in] sequence<ColorComponent> middleColor, [in] sequence<ColorComponent> endColor )
 
34
+    XParametricPolyPolygon2D   createAxialHorizontalGradient( [in] sequence<Color> colors, [in] sequence<double> stops )
 
35
         raises (com::sun::star::lang::IllegalArgumentException); 
 
36
 
 
37
     /** Create an elliptical gradient.
 
38
@@ -89,7 +89,7 @@ interface XParametricPolyPolygon2DFactor
 
39
                center color: the gradient will not collapse into a single
 
40
                point, but become a line of center color.
 
41
      */
 
42
-    XParametricPolyPolygon2D   createEllipticalGradient( [in] sequence<ColorComponent> centerColor, [in] sequence<ColorComponent> endColor, [in] ::com::sun::star::geometry::RealRectangle2D boundRect )
 
43
+    XParametricPolyPolygon2D   createEllipticalGradient( [in] sequence<Color> colors, [in] sequence<double> stops, [in] ::com::sun::star::geometry::RealRectangle2D boundRect )
 
44
         raises (com::sun::star::lang::IllegalArgumentException); 
 
45
 
 
46
     /** Create a rectangular gradient.
 
47
@@ -104,7 +104,7 @@ interface XParametricPolyPolygon2DFactor
 
48
                the center color: the gradient will not collapse into a single
 
49
                point, but become a line of center color.
 
50
      */
 
51
-    XParametricPolyPolygon2D   createRectangularGradient( [in] sequence<ColorComponent> centerColor, [in] sequence<ColorComponent> endColor, [in] ::com::sun::star::geometry::RealRectangle2D boundRect )
 
52
+    XParametricPolyPolygon2D   createRectangularGradient( [in] sequence<Color> colors, [in] sequence<double> stops, [in] ::com::sun::star::geometry::RealRectangle2D boundRect )
 
53
         raises (com::sun::star::lang::IllegalArgumentException); 
 
54
 
 
55
     /** Create a line hash of vertical lines.