[Libreoffice-commits] core.git: Branch 'feature/gsoc14-draw-chained-text-boxes' - include/svx svx/source
matteocam
matteo.campanelli at gmail.com
Thu Jun 25 12:38:36 PDT 2015
include/svx/svdotext.hxx | 2 +
include/svx/textchainflow.hxx | 44 +++++++++++++++++++++++++++++++++++++++++
svx/source/svdraw/svdotext.cxx | 1
3 files changed, 47 insertions(+)
New commits:
commit 61a2e01298b89f1a53a2ed7d553145dcf19b3623
Author: matteocam <matteo.campanelli at gmail.com>
Date: Thu Jun 25 15:33:29 2015 -0400
Added header for TextChainFlow
Change-Id: I64371ecb081025f81e9066c3183b58875803db56
diff --git a/include/svx/svdotext.hxx b/include/svx/svdotext.hxx
index e66dff0..b5dde0f 100644
--- a/include/svx/svdotext.hxx
+++ b/include/svx/svdotext.hxx
@@ -45,6 +45,7 @@ class SvxFieldItem;
class ImpSdrObjTextLink;
class EditStatus;
class TextChain;
+class TextChainFlow;
namespace sdr { namespace properties {
class TextProperties;
@@ -137,6 +138,7 @@ private:
friend class sdr::table::SdrTableRTFParser;
friend class TextChain;
+ friend class TextChainFlow;
// CustomShapeproperties need to access the "bTextFrame" member:
friend class sdr::properties::CustomShapeProperties;
diff --git a/include/svx/textchainflow.hxx b/include/svx/textchainflow.hxx
new file mode 100644
index 0000000..5b4b7b5
--- /dev/null
+++ b/include/svx/textchainflow.hxx
@@ -0,0 +1,44 @@
+/* -*- 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 INCLUDED_SVX_TEXTCHAINFLOW_HXX
+#define INCLUDED_SVX_TEXTCHAINFLOW_HXX
+
+#include <map>
+
+
+class SdrTextObj;
+
+namespace rtl {
+ class OUString;
+}
+
+class TextChainFlow {
+
+ public:
+ TextChainFlow() {}
+ ~TextChainFlow() {}
+
+ protected:
+};
+
+#endif // INCLUDED_SVX_TEXTCHAINFLOW_HXX
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
+
diff --git a/svx/source/svdraw/svdotext.cxx b/svx/source/svdraw/svdotext.cxx
index cfe7cbd..1e8d526 100644
--- a/svx/source/svdraw/svdotext.cxx
+++ b/svx/source/svdraw/svdotext.cxx
@@ -47,6 +47,7 @@
#include <svx/svdpool.hxx>
#include <svx/xflclit.hxx>
#include <svx/textchain.hxx>
+#include <svx/textchainflow.hxx>
#include <svl/style.hxx>
#include <editeng/editeng.hxx>
#include <editeng/overflowingtxt.hxx>
More information about the Libreoffice-commits
mailing list