summaryrefslogtreecommitdiff
path: root/include/svx/sdasaitm.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/svx/sdasaitm.hxx')
-rw-r--r--include/svx/sdasaitm.hxx71
1 files changed, 71 insertions, 0 deletions
diff --git a/include/svx/sdasaitm.hxx b/include/svx/sdasaitm.hxx
new file mode 100644
index 000000000000..67e97fb0c454
--- /dev/null
+++ b/include/svx/sdasaitm.hxx
@@ -0,0 +1,71 @@
+/* -*- 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 _SDASAITM_HXX
+#define _SDASAITM_HXX
+
+#include <vector>
+
+#include <svl/poolitem.hxx>
+
+class SdrCustomShapeAdjustmentValue
+{
+ sal_uInt32 nValue;
+
+ friend class SdrCustomShapeAdjustmentItem;
+
+ public :
+
+ void SetValue( sal_Int32 nVal ) { nValue = nVal; };
+ sal_Int32 GetValue() const { return nValue; };
+
+};
+
+class SdrCustomShapeAdjustmentItem : public SfxPoolItem
+{
+ std::vector<SdrCustomShapeAdjustmentValue> aAdjustmentValueList;
+
+ public :
+
+ TYPEINFO();
+ SVX_DLLPUBLIC SdrCustomShapeAdjustmentItem();
+ SdrCustomShapeAdjustmentItem( SvStream& rIn, sal_uInt16 nVersion );
+ SVX_DLLPUBLIC ~SdrCustomShapeAdjustmentItem();
+
+ virtual int operator==( const SfxPoolItem& ) const;
+ virtual SfxItemPresentation GetPresentation(SfxItemPresentation ePresentation,
+ SfxMapUnit eCoreMetric, SfxMapUnit ePresentationMetric,
+ OUString &rText, const IntlWrapper * = 0) const;
+ virtual SfxPoolItem* Create( SvStream&, sal_uInt16 nItem ) const;
+ virtual SvStream& Store( SvStream&, sal_uInt16 nVersion ) const;
+ virtual SfxPoolItem* Clone( SfxItemPool* pPool = NULL ) const;
+ virtual sal_uInt16 GetVersion( sal_uInt16 nFileFormatVersion ) const;
+
+ virtual bool QueryValue( com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) const;
+ virtual bool PutValue( const com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 );
+
+ sal_uInt32 GetCount() const { return aAdjustmentValueList.size(); };
+ SVX_DLLPUBLIC const SdrCustomShapeAdjustmentValue& GetValue( sal_uInt32 nIndex ) const;
+ SVX_DLLPUBLIC void SetValue( sal_uInt32 nIndex,
+ const SdrCustomShapeAdjustmentValue& rVal );
+};
+
+#endif
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */