~ubuntu-branches/ubuntu/oneiric/koffice/oneiric-updates

« back to all changes in this revision

Viewing changes to filters/karbon/svg/svgexport.h

  • Committer: Bazaar Package Importer
  • Author(s): Alessandro Ghersi
  • Date: 2010-10-27 17:52:57 UTC
  • mfrom: (0.12.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20101027175257-s04zqqk5bs8ckm9o
Tags: 1:2.2.83-0ubuntu1
* Merge with Debian git remaining changes:
 - Add build-deps on librcps-dev, opengtl-dev, libqtgtl-dev, freetds-dev,
   create-resources, libspnav-dev
 - Remove needless build-dep on libwv2-dev
 - koffice-libs recommends create-resources
 - krita recommends pstoedit
 - Keep our patches
* New upstream release 2.3 beta 3
  - Remove debian/patches fixed by upstream
  - Update install files

Show diffs side-by-side

added added

removed removed

Lines of Context:
75
75
    void getStroke(KoShape * shape, QTextStream *stream);
76
76
    void getEffects(KoShape *shape, QTextStream *stream);
77
77
    void getColorStops(const QGradientStops & colorStops);
78
 
    void getGradient(const QGradient * gradient, const QMatrix &gradientTransform);
 
78
    void getGradient(const QGradient * gradient, const QTransform &gradientTransform);
79
79
    void getPattern(KoPatternBackground * pattern, KoShape * shape);
80
 
    QString getTransform(const QMatrix &matrix, const QString &attributeName);
 
80
    QString getTransform(const QTransform &matrix, const QString &attributeName);
81
81
 
82
82
    QString getID(const KoShape *obj);
83
83
    QString createID(const KoShape * obj);
84
84
 
85
85
    /// Checks if the matrix only has translation set
86
 
    bool isTranslation(const QMatrix &);
 
86
    bool isTranslation(const QTransform &);
87
87
 
88
88
    QTextStream* m_stream;
89
89
    QTextStream* m_defs;
94
94
 
95
95
    QMap<const KoShape*, QString> m_shapeIds;
96
96
 
97
 
    QMatrix m_userSpaceMatrix;
 
97
    QTransform m_userSpaceMatrix;
98
98
 
99
99
};
100
100