summaryrefslogtreecommitdiffstats
path: root/filter/source/graphicfilter/icgm/outact.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'filter/source/graphicfilter/icgm/outact.hxx')
-rw-r--r--filter/source/graphicfilter/icgm/outact.hxx108
1 files changed, 108 insertions, 0 deletions
diff --git a/filter/source/graphicfilter/icgm/outact.hxx b/filter/source/graphicfilter/icgm/outact.hxx
new file mode 100644
index 000000000..b06fffda8
--- /dev/null
+++ b/filter/source/graphicfilter/icgm/outact.hxx
@@ -0,0 +1,108 @@
+/* -*- 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 .
+ */
+
+#pragma once
+
+#include <com/sun/star/awt/Gradient.hpp>
+#include <com/sun/star/document/XActionLockable.hpp>
+#include <com/sun/star/drawing/XDrawPages.hpp>
+#include <com/sun/star/drawing/XDrawPage.hpp>
+#include <com/sun/star/drawing/XShape.hpp>
+#include <com/sun/star/lang/XMultiServiceFactory.hpp>
+#include <com/sun/star/beans/XPropertySet.hpp>
+
+
+#define CGM_OUTACT_MAX_GROUP_LEVEL 64
+
+#include "cgm.hxx"
+#include <tools/poly.hxx>
+#include <array>
+#include <memory>
+
+class CGM;
+class CGMBitmapDescriptor;
+
+class CGMImpressOutAct
+{
+ sal_uInt16 mnCurrentPage; // defaulted to zero
+
+ sal_uInt32 mnGroupActCount; // grouping
+ sal_uInt32 mnGroupLevel;
+ std::array<sal_uInt32, CGM_OUTACT_MAX_GROUP_LEVEL>
+ maGroupLevel;
+
+ std::vector<PolyFlags> maFlags;
+ std::vector<Point> maPoints;
+ tools::PolyPolygon maPolyPolygon;
+ std::unique_ptr<css::awt::Gradient>
+ mpGradient;
+
+ CGM* mpCGM;
+
+ css::uno::Reference< css::drawing::XDrawPages > maXDrawPages;
+ css::uno::Reference< css::drawing::XDrawPage > maXDrawPage;
+
+ css::uno::Reference< css::lang::XMultiServiceFactory > maXMultiServiceFactory;
+ css::uno::Reference< css::drawing::XShape > maXShape;
+
+ css::uno::Reference< css::beans::XPropertySet > maXPropSet;
+ css::uno::Reference< css::drawing::XShapes > maXShapes;
+ std::vector<css::uno::Reference<css::document::XActionLockable>> maLockedNewXShapes;
+
+ sal_uInt32 nFinalTextCount;
+
+ bool ImplCreateShape( const OUString& rType );
+ bool ImplInitPage();
+ void ImplSetOrientation( FloatPoint const & RefPoint, double Orientation );
+ void ImplSetLineBundle();
+ void ImplSetFillBundle();
+ void ImplSetTextBundle( const css::uno::Reference< css::beans::XPropertySet > & );
+public:
+ CGMImpressOutAct( CGM&, const css::uno::Reference< css::frame::XModel > & );
+ ~CGMImpressOutAct();
+ void InsertPage();
+ void BeginGroup();
+ void EndGroup();
+ void EndGrouping();
+ void DrawRectangle( FloatRect const & );
+ void DrawEllipse( FloatPoint const & center, FloatPoint const &, double& Orientation );
+ void DrawEllipticalArc( FloatPoint const & center, FloatPoint const & size, double& orientation,
+ sal_uInt32 etype, double& startangle, double& endangle );
+ void DrawBitmap( CGMBitmapDescriptor* );
+ void DrawPolygon( tools::Polygon& );
+ void DrawPolyLine( tools::Polygon& );
+ void DrawPolybezier( tools::Polygon& );
+ void DrawPolyPolygon( tools::PolyPolygon const & );
+ void DrawText(css::awt::Point const & TextRectPos, css::awt::Size const & TextRectSize, const OUString& rString, FinalFlag);
+ void AppendText( const char* String );
+
+ void FirstOutPut() { mpCGM->mbFirstOutPut = false; } ;
+ void BeginFigure();
+ void CloseRegion();
+ void NewRegion();
+ void EndFigure();
+ void RegPolyLine( tools::Polygon const &, bool bReverse = false );
+ void SetGradientOffset( tools::Long nHorzOfs, tools::Long nVertOfs );
+ void SetGradientAngle( tools::Long nAngle );
+ void SetGradientDescriptor( sal_uInt32 nColorFrom, sal_uInt32 nColorTo );
+ void SetGradientStyle( sal_uInt32 nStyle );
+};
+
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */