From 48b6afeef26d498f4338170e53306257ef9914d4 Mon Sep 17 00:00:00 2001
From: Miklos Vajna <vmiklos@collabora.co.uk>
Date: Fri, 30 Oct 2015 13:57:28 +0100
Subject: [PATCH 254/398] ScTabView::getRowColumnHeaders: include info about
columns, too
Change-Id: Id7db9fa9b451dcf2423142b38c2c12b369e16fae
(cherry picked from commit ac47e5758e56ac30d98c1d6386dfad24ac59b1f6)
---
sc/source/ui/view/tabview.cxx | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/sc/source/ui/view/tabview.cxx b/sc/source/ui/view/tabview.cxx
index f177bbe704f1..4dccc9b4032a 100644
--- a/sc/source/ui/view/tabview.cxx
+++ b/sc/source/ui/view/tabview.cxx
@@ -2324,8 +2324,20 @@ OUString ScTabView::getRowColumnHeaders()
aRows.push_back(std::make_pair("", aRow));
}
+ boost::property_tree::ptree aCols;
+ for (SCCOL nCol = 0; nCol < nEndCol; ++nCol)
+ {
+ boost::property_tree::ptree aCol;
+ sal_uInt16 nSize = pColBar[SC_SPLIT_LEFT]->GetEntrySize(nCol);
+ aCol.put("size", OString::number(nSize).getStr());
+ OUString aText = pColBar[SC_SPLIT_LEFT]->GetEntryText(nCol);
+ aCol.put("text", aText.toUtf8().getStr());
+ aCols.push_back(std::make_pair("", aCol));
+ }
+
boost::property_tree::ptree aTree;
aTree.add_child("rows", aRows);
+ aTree.add_child("columns", aCols);
std::stringstream aStream;
boost::property_tree::write_json(aStream, aTree);
return OUString::fromUtf8(aStream.str().c_str());
--
2.12.0