summaryrefslogtreecommitdiff
path: root/cui
diff options
context:
space:
mode:
authorSumit Chauhan <sumitcn25@gmail.com>2019-06-28 14:17:58 +0530
committerSzymon Kłos <szymon.klos@collabora.com>2019-06-28 21:15:00 +0200
commit9105b85c708f42024ce063b9a944466c0afdfe9a (patch)
tree945ec0b232c8ec7add142beff140bfad6512a0f5 /cui
parent049189f49dba87e0b6d948e2b6a5e416f1fca36b (diff)
Category Target and Function Target enhanced in customization Tab
Better filters available in Category Target for selecting category . We now have sfxlo-PriorityHBox , sfxlo-PriorityMergedHBox and svtlo-ManagedMenuButton as category.Changes are also done in Function Target, lists are now more generic. Change-Id: Ia52890c09bb8083c2f907b5a9fe90eab4ec86aeb Reviewed-on: https://gerrit.libreoffice.org/74836 Tested-by: Jenkins Reviewed-by: Szymon Kłos <szymon.klos@collabora.com>
Diffstat (limited to 'cui')
-rw-r--r--cui/source/customize/SvxNotebookbarConfigPage.cxx268
-rw-r--r--cui/source/inc/SvxNotebookbarConfigPage.hxx20
-rw-r--r--cui/source/inc/cfg.hxx4
3 files changed, 221 insertions, 71 deletions
diff --git a/cui/source/customize/SvxNotebookbarConfigPage.cxx b/cui/source/customize/SvxNotebookbarConfigPage.cxx
index c8ad0b8d3c18..1938e8a1835e 100644
--- a/cui/source/customize/SvxNotebookbarConfigPage.cxx
+++ b/cui/source/customize/SvxNotebookbarConfigPage.cxx
@@ -64,19 +64,26 @@
#include <CustomNotebookbarGenerator.hxx>
#include <sfx2/notebookbar/SfxNotebookBar.hxx>
#include <unotools/configmgr.hxx>
+#include <comphelper/processfactory.hxx>
+#include <com/sun/star/frame/theUICommandDescription.hpp>
-static bool isCategoryAvailable(OUString& sClassId, OUString& sUIItemID, OUString& sActiveCategory,
+namespace uno = com::sun::star::uno;
+namespace frame = com::sun::star::frame;
+namespace lang = com::sun::star::lang;
+namespace container = com::sun::star::container;
+namespace beans = com::sun::star::beans;
+namespace graphic = com::sun::star::graphic;
+
+static bool isCategoryAvailable(OUString& sClassId, OUString& sUIItemId, OUString& sActiveCategory,
bool& isCategory)
{
- if (sClassId == "GtkMenu" && sUIItemID != sActiveCategory)
+ if (sUIItemId == sActiveCategory)
+ return true;
+ else if ((sClassId == "GtkMenu" || sClassId == "GtkGrid") && sUIItemId != sActiveCategory)
{
isCategory = false;
return false;
}
- else if (sActiveCategory == "All Commands")
- return true;
- else if (sUIItemID == sActiveCategory)
- return true;
return false;
}
@@ -104,6 +111,20 @@ static OUString getFileName(const OUString& aFileName)
return "None";
}
+static OUString getModuleId(const OUString& sModuleName)
+{
+ if (sModuleName == "Writer")
+ return OUString("com.sun.star.text.TextDocument");
+ else if (sModuleName == "Draw")
+ return OUString("com.sun.star.drawing.DrawingDocument");
+ else if (sModuleName == "Impress")
+ return OUString("com.sun.star.presentation.PresentationDocument");
+ else if (sModuleName == "Calc")
+ return OUString("com.sun.star.sheet.SpreadsheetDocument");
+ else
+ return OUString("None");
+}
+
SvxNotebookbarConfigPage::SvxNotebookbarConfigPage(TabPageParent pParent, const SfxItemSet& rSet)
: SvxConfigPage(pParent, rSet)
{
@@ -180,8 +201,8 @@ void SvxNotebookbarConfigPage::Init()
m_xSaveInListBox->append(sSaveInListBoxID, sScopeName);
m_xSaveInListBox->set_active_id(sSaveInListBoxID);
- m_xTopLevelListBox->append("All Commands", "All Commands");
- m_xTopLevelListBox->set_active_id("All Commands");
+ m_xTopLevelListBox->append("NotebookBar", "All Commands");
+ m_xTopLevelListBox->set_active_id("NotebookBar");
SelectElement();
}
@@ -223,18 +244,69 @@ short SvxNotebookbarConfigPage::QueryReset()
return nValue;
}
-void SvxConfigPage::InsertEntryIntoNotebookbarTabUI(OUString& sUIItemID, OUString& sUIItemCommand,
- int nPos, int nStartCol, int nSpace)
+void SvxConfigPage::InsertEntryIntoNotebookbarTabUI(OUString& sClassId, OUString& sUIItemId,
+ OUString& sUIItemCommand, int nPos,
+ int nStartCol)
{
- auto xImage = GetSaveInData()->GetImage(sUIItemCommand);
- if (xImage.is())
- m_xContentsListBox->set_image(nPos, xImage, nStartCol);
- OUStringBuffer sDataInTree;
- for (int nIdx = 0; nIdx < nSpace; nIdx++)
- sDataInTree.append(" ");
- sDataInTree.append("-> ");
- sDataInTree.append(sUIItemID);
- m_xContentsListBox->set_text(nPos, sDataInTree.makeStringAndClear(), nStartCol + 1);
+ OUString sAppName, sFileName;
+ CustomNotebookbarGenerator::getFileNameAndAppName(sAppName, sFileName);
+
+ css::uno::Reference<css::container::XNameAccess> m_xCommandToLabelMap,
+ m_xGlobalCommandToLabelMap;
+ uno::Reference<uno::XComponentContext> xContext = ::comphelper::getProcessComponentContext();
+ uno::Reference<container::XNameAccess> xNameAccess(
+ css::frame::theUICommandDescription::get(xContext));
+
+ uno::Sequence<beans::PropertyValue> aPropSeq, aGlobalPropSeq;
+
+ xNameAccess->getByName("com.sun.star.text.GlobalDocument") >>= m_xGlobalCommandToLabelMap;
+ xNameAccess->getByName(getModuleId(sAppName)) >>= m_xCommandToLabelMap;
+
+ try
+ {
+ uno::Any aModuleVal = m_xCommandToLabelMap->getByName(sUIItemCommand);
+
+ aModuleVal >>= aPropSeq;
+ }
+ catch (container::NoSuchElementException&)
+ {
+ }
+
+ try
+ {
+ uno::Any aGlobalVal = m_xGlobalCommandToLabelMap->getByName(sUIItemCommand);
+ aGlobalVal >>= aGlobalPropSeq;
+ }
+ catch (container::NoSuchElementException&)
+ {
+ }
+
+ OUString aLabel;
+ for (sal_Int32 i = 0; i < aPropSeq.getLength(); ++i)
+ if (aPropSeq[i].Name == "Name")
+ aPropSeq[i].Value >>= aLabel;
+ if (aLabel.isEmpty())
+ for (sal_Int32 i = 0; i < aGlobalPropSeq.getLength(); ++i)
+ if (aGlobalPropSeq[i].Name == "Name")
+ aGlobalPropSeq[i].Value >>= aLabel;
+
+ OUString aName = SvxConfigPageHelper::stripHotKey(aLabel);
+
+ if (sClassId == "GtkSeparatorMenuItem" || sClassId == "GtkSeparator")
+ {
+ OUString sDataInTree = "--------------------------------------------";
+ m_xContentsListBox->set_text(nPos, sDataInTree, nStartCol + 1);
+ }
+ else
+ {
+ if (aName.isEmpty())
+ aName = sUIItemId;
+ auto xImage = GetSaveInData()->GetImage(sUIItemCommand);
+ if (xImage.is())
+ m_xContentsListBox->set_image(nPos, xImage, nStartCol);
+ m_xContentsListBox->set_text(nPos, aName, nStartCol + 1);
+ m_xContentsListBox->set_id(nPos, sUIItemId);
+ }
}
void SvxNotebookbarConfigPage::getNodeValue(xmlNode* pNodePtr, NotebookbarEntries& aNodeEntries)
@@ -268,9 +340,10 @@ void SvxNotebookbarConfigPage::getNodeValue(xmlNode* pNodePtr, NotebookbarEntrie
}
void SvxNotebookbarConfigPage::searchNodeandAttribute(std::vector<NotebookbarEntries>& aEntries,
- std::vector<OUString>& aCategoryList,
- OUString& sActiveCategory, xmlNode* pNodePtr,
- int nPos, bool isCategory)
+ std::vector<CategoriesEntries>& aCategoryList,
+ OUString& sActiveCategory,
+ CategoriesEntries& aCurItemEntry,
+ xmlNode* pNodePtr, bool isCategory)
{
pNodePtr = pNodePtr->xmlChildrenNode;
while (pNodePtr)
@@ -279,11 +352,12 @@ void SvxNotebookbarConfigPage::searchNodeandAttribute(std::vector<NotebookbarEnt
{
const char* cNodeName = reinterpret_cast<const char*>(pNodePtr->name);
OUString sNodeName = charToString(cNodeName);
+ OUString sSecondVal;
if (sNodeName == "object")
{
xmlChar* UriValue = xmlGetProp(pNodePtr, reinterpret_cast<const xmlChar*>("id"));
const char* cUIItemID = reinterpret_cast<const char*>(UriValue);
- OUString sUIItemID = charToString(cUIItemID);
+ OUString sUIItemId = charToString(cUIItemID);
xmlFree(UriValue);
UriValue = xmlGetProp(pNodePtr, reinterpret_cast<const xmlChar*>("class"));
@@ -291,45 +365,93 @@ void SvxNotebookbarConfigPage::searchNodeandAttribute(std::vector<NotebookbarEnt
OUString sClassId = charToString(cClassId);
xmlFree(UriValue);
- NotebookbarEntries nodeEntries;
- if (sClassId == "sfxlo-PriorityHBox" || sClassId == "GtkMenu")
- aCategoryList.push_back(sUIItemID);
+ CategoriesEntries aCategoryEntry;
+ if (sClassId == "sfxlo-PriorityHBox")
+ {
+ aCategoryEntry.sDisplayName = sUIItemId;
+ aCategoryEntry.sUIItemId = sUIItemId;
+ aCategoryEntry.sClassType = sClassId;
+ aCategoryList.push_back(aCategoryEntry);
- if (isCategoryAvailable(sClassId, sUIItemID, sActiveCategory, isCategory)
+ aCurItemEntry = aCategoryEntry;
+ }
+ else if (sClassId == "sfxlo-PriorityMergedHBox")
+ {
+ aCategoryEntry.sDisplayName = aCurItemEntry.sDisplayName + " | " + sUIItemId;
+ aCategoryEntry.sUIItemId = sUIItemId;
+ aCategoryEntry.sClassType = sClassId;
+
+ if (aCurItemEntry.sClassType == sClassId)
+ {
+ sal_Int32 rPos = 0;
+ aCategoryEntry.sDisplayName
+ = aCurItemEntry.sDisplayName.getToken(rPos, ' ', rPos) + " | "
+ + sUIItemId;
+ }
+ aCategoryList.push_back(aCategoryEntry);
+ aCurItemEntry = aCategoryEntry;
+ }
+ else if (sClassId == "svtlo-ManagedMenuButton")
+ {
+ sal_Int32 rPos = 1;
+ sSecondVal = sUIItemId.getToken(rPos, ':', rPos);
+ if (!sSecondVal.isEmpty())
+ {
+ aCategoryEntry.sDisplayName
+ = aCurItemEntry.sDisplayName + " | " + sSecondVal;
+ aCategoryEntry.sUIItemId = sSecondVal;
+ aCategoryList.push_back(aCategoryEntry);
+ }
+ }
+
+ NotebookbarEntries nodeEntries;
+ if (isCategoryAvailable(sClassId, sUIItemId, sActiveCategory, isCategory)
|| isCategory)
{
isCategory = true;
if (sClassId == "GtkMenuItem" || sClassId == "GtkToolButton"
- || sClassId == "GtkMenuToolButton")
+ || sClassId == "GtkMenuToolButton"
+ || (sClassId == "svtlo-ManagedMenuButton" && sSecondVal.isEmpty()))
{
- nodeEntries.sUIItemID = sUIItemID;
- nodeEntries.nPos = nPos;
+ nodeEntries.sClassId = sClassId;
+ nodeEntries.sUIItemId = sUIItemId;
+ nodeEntries.sDisplayName = sUIItemId;
+
getNodeValue(pNodePtr, nodeEntries);
aEntries.push_back(nodeEntries);
}
- else
+ else if (sClassId == "GtkSeparatorMenuItem" || sClassId == "GtkSeparator")
+ {
+ nodeEntries.sClassId = sClassId;
+ nodeEntries.sUIItemId = sUIItemId;
+ nodeEntries.sDisplayName = "Null";
+ nodeEntries.sVisibleValue = "Null";
+ nodeEntries.sActionName = "Null";
+ aEntries.push_back(nodeEntries);
+ }
+ else if (sClassId == "sfxlo-PriorityHBox"
+ || sClassId == "sfxlo-PriorityMergedHBox"
+ || sClassId == "svtlo-ManagedMenuButton")
{
- nodeEntries.sUIItemID = sUIItemID;
- nodeEntries.nPos = nPos;
+ nodeEntries.sClassId = sClassId;
+ nodeEntries.sUIItemId = sUIItemId;
+ nodeEntries.sDisplayName
+ = aCategoryList[aCategoryList.size() - 1].sDisplayName;
nodeEntries.sVisibleValue = "Null";
nodeEntries.sActionName = "Null";
aEntries.push_back(nodeEntries);
}
}
}
- if (isCategory)
- searchNodeandAttribute(aEntries, aCategoryList, sActiveCategory, pNodePtr, nPos + 1,
- isCategory);
- else
- searchNodeandAttribute(aEntries, aCategoryList, sActiveCategory, pNodePtr, nPos,
- isCategory);
+ searchNodeandAttribute(aEntries, aCategoryList, sActiveCategory, aCurItemEntry,
+ pNodePtr, isCategory);
}
pNodePtr = pNodePtr->next;
}
}
void SvxNotebookbarConfigPage::FillFunctionsList(std::vector<NotebookbarEntries>& aEntries,
- std::vector<OUString>& aCategoryList,
+ std::vector<CategoriesEntries>& aCategoryList,
OUString& sActiveCategory)
{
xmlDocPtr pDoc;
@@ -338,8 +460,10 @@ void SvxNotebookbarConfigPage::FillFunctionsList(std::vector<NotebookbarEntries>
char* cUIFileUIPath = CustomNotebookbarGenerator::convertToCharPointer(sUIFilePath);
pDoc = xmlParseFile(cUIFileUIPath);
pNodePtr = xmlDocGetRootElement(pDoc);
- int aRightPos = 0;
- searchNodeandAttribute(aEntries, aCategoryList, sActiveCategory, pNodePtr, aRightPos, false);
+
+ CategoriesEntries aCurItemEntry;
+ searchNodeandAttribute(aEntries, aCategoryList, sActiveCategory, aCurItemEntry, pNodePtr,
+ false);
if (pDoc != nullptr)
{
xmlFreeDoc(pDoc);
@@ -351,13 +475,41 @@ void SvxNotebookbarConfigPage::SelectElement()
{
m_xContentsListBox->clear();
std::vector<NotebookbarEntries> aEntries;
- std::vector<OUString> aCategoryList;
+ std::vector<CategoriesEntries> aCategoryList;
OUString sActiveCategory = m_xTopLevelListBox->get_active_id();
FillFunctionsList(aEntries, aCategoryList, sActiveCategory);
if (m_xTopLevelListBox->get_count() == 1)
+ {
for (unsigned long nIdx = 0; nIdx < aCategoryList.size(); nIdx++)
- m_xTopLevelListBox->append(aCategoryList[nIdx], aCategoryList[nIdx]);
+ m_xTopLevelListBox->append(aCategoryList[nIdx].sUIItemId,
+ aCategoryList[nIdx].sDisplayName);
+ }
+ unsigned long nStart = 0;
+ if (aEntries[nStart].sClassId == "sfxlo-PriorityHBox"
+ || aEntries[nStart].sClassId == "sfxlo-PriorityMergedHBox")
+ nStart = 1;
+
+ std::vector<NotebookbarEntries> aTempEntries;
+ for (unsigned long nIdx = nStart; nIdx < aEntries.size(); nIdx++)
+ {
+ if (aEntries[nIdx].sClassId == "svtlo-ManagedMenuButton")
+ {
+ aTempEntries.push_back(aEntries[nIdx]);
+ std::vector<NotebookbarEntries> aGtkEntries;
+ sal_Int32 rPos = 1;
+ sActiveCategory = aEntries[nIdx].sUIItemId.getToken(rPos, ':', rPos);
+ FillFunctionsList(aGtkEntries, aCategoryList, sActiveCategory);
+ for (unsigned long Idx = 0; Idx < aGtkEntries.size(); Idx++)
+ aTempEntries.push_back(aGtkEntries[Idx]);
+ aGtkEntries.clear();
+ }
+ else
+ aTempEntries.push_back(aEntries[nIdx]);
+ }
+
+ aEntries = aTempEntries;
+ aTempEntries.clear();
sal_Int64 nId = 0;
for (unsigned long nIdx = 0; nIdx < aEntries.size(); nIdx++)
@@ -375,8 +527,8 @@ void SvxNotebookbarConfigPage::SelectElement()
m_xContentsListBox->set_toggle(nIdx, TRISTATE_FALSE, 0);
}
}
- InsertEntryIntoNotebookbarTabUI(aEntries[nIdx].sUIItemID, aEntries[nIdx].sActionName, nIdx,
- 1, aEntries[nIdx].nPos);
+ InsertEntryIntoNotebookbarTabUI(aEntries[nIdx].sClassId, aEntries[nIdx].sDisplayName,
+ aEntries[nIdx].sActionName, nIdx, 1);
++nId;
}
aEntries.clear();
@@ -393,19 +545,7 @@ SvxNotebookbarEntriesListBox::SvxNotebookbarEntriesListBox(std::unique_ptr<weld:
SvxNotebookbarEntriesListBox::~SvxNotebookbarEntriesListBox() {}
-static OUString getUIItemID(OUString sString)
-{
- sal_Int32 rPos = 1;
- sString = sString.getToken(rPos, '>', rPos);
- OUStringBuffer sUIItemID;
- for (int nIdx = 1; nIdx < sString.getLength(); nIdx++)
- {
- sUIItemID.append(sString[nIdx]);
- }
- return sUIItemID.makeStringAndClear();
-}
-
-static void EditRegistryFile(OUString& sUIItemID, OUString& sSetEntry,
+static void EditRegistryFile(OUString& sUIItemId, OUString& sSetEntry,
OUString& sNotebookbarInterface)
{
int nFlag = 0;
@@ -416,7 +556,7 @@ static void EditRegistryFile(OUString& sUIItemID, OUString& sSetEntry,
{
sal_Int32 rPos = 0;
OUString sFirstValue = aOldEntries[nIdx].getToken(rPos, ',', rPos);
- if (sFirstValue == sUIItemID)
+ if (sFirstValue == sUIItemId)
{
aOldEntries[nIdx] = sSetEntry;
nFlag = 1;
@@ -438,21 +578,21 @@ static void EditRegistryFile(OUString& sUIItemID, OUString& sSetEntry,
void SvxNotebookbarEntriesListBox::ChangedVisibility(int nRow)
{
- OUString sUIItemID = m_xControl->get_selected_text();
+ OUString sUIItemId = m_xControl->get_selected_id();
OUString sAppName;
OUString sFileName;
CustomNotebookbarGenerator::getFileNameAndAppName(sAppName, sFileName);
OUString sNotebookbarInterface = getFileName(sFileName);
+
OUString sVisible;
- sUIItemID = getUIItemID(sUIItemID);
if (m_xControl->get_toggle(nRow, 0) == TRISTATE_TRUE)
sVisible = "True";
else
sVisible = "False";
- OUString sSetEntries = sUIItemID + ",visible," + sVisible;
+ OUString sSetEntries = sUIItemId + ",visible," + sVisible;
Sequence<OUString> sSeqOfEntries(1);
sSeqOfEntries[0] = sSetEntries;
- EditRegistryFile(sUIItemID, sSetEntries, sNotebookbarInterface);
+ EditRegistryFile(sUIItemId, sSetEntries, sNotebookbarInterface);
CustomNotebookbarGenerator::modifyCustomizedUIFile(sSeqOfEntries);
OUString sUIPath = "modules/s" + sAppName.toAsciiLowerCase() + "/ui/";
sfx2::SfxNotebookBar::ReloadNotebookBar(sUIPath);
diff --git a/cui/source/inc/SvxNotebookbarConfigPage.hxx b/cui/source/inc/SvxNotebookbarConfigPage.hxx
index 8add4f12c56d..56298e4edbba 100644
--- a/cui/source/inc/SvxNotebookbarConfigPage.hxx
+++ b/cui/source/inc/SvxNotebookbarConfigPage.hxx
@@ -48,14 +48,22 @@ private:
void DeleteSelectedContent() override;
void DeleteSelectedTopLevel() override;
virtual void SelectElement() override;
+ void SetElement();
public:
struct NotebookbarEntries
{
- OUString sUIItemID;
+ OUString sUIItemId;
+ OUString sClassId;
OUString sActionName;
+ OUString sDisplayName;
OUString sVisibleValue;
- int nPos;
+ };
+ struct CategoriesEntries
+ {
+ OUString sDisplayName;
+ OUString sUIItemId;
+ OUString sClassType;
};
SvxNotebookbarConfigPage(TabPageParent pParent, const SfxItemSet& rItemSet);
virtual ~SvxNotebookbarConfigPage() override;
@@ -63,10 +71,12 @@ public:
const css::uno::Reference<css::ui::XUIConfigurationManager>&,
const OUString& aModuleId, bool docConfig) override;
static void FillFunctionsList(std::vector<NotebookbarEntries>& aEntries,
- std::vector<OUString>& aCategoryList, OUString& sActiveCategory);
+ std::vector<CategoriesEntries>& aCategoryList,
+ OUString& sActiveCategory);
static void searchNodeandAttribute(std::vector<NotebookbarEntries>& aEntries,
- std::vector<OUString>& aCategoryList,
- OUString& sActiveCategory, xmlNode* pNodePtr, int nPos,
+ std::vector<CategoriesEntries>& aCategoryList,
+ OUString& sActiveCategory,
+ CategoriesEntries& aCurCategoryEntry, xmlNode* pNodePtr,
bool isCategory);
static void getNodeValue(xmlNode* pNodePtr, NotebookbarEntries& aNodeEntries);
};
diff --git a/cui/source/inc/cfg.hxx b/cui/source/inc/cfg.hxx
index 2a88e269396c..5b7cd8230fb4 100644
--- a/cui/source/inc/cfg.hxx
+++ b/cui/source/inc/cfg.hxx
@@ -448,8 +448,8 @@ protected:
void InsertEntryIntoUI(SvxConfigEntry* pNewEntryData,
int nPos, int nStartCol);
- void InsertEntryIntoNotebookbarTabUI(OUString& sUIItemId, OUString& sUIItemCommand, int nPos,
- int nStartCol, int nSpace);
+ void InsertEntryIntoNotebookbarTabUI(OUString& sClassId ,OUString& sUIItemId, OUString& sUIItemCommand, int nPos,
+ int nStartCol);
SvxEntries* FindParentForChild( SvxEntries* pParentEntries,
SvxConfigEntry* pChildData );