Files
loongoffice/sfx2/source/view/classificationcontroller.cxx
Stephan Bergmann 196d191136 loplugin:unnecessaryoverride (dtors) in sfx2
Change-Id: Ic086a22bccd267824e68df6c963df8da76e6df2c
2016-12-05 08:59:52 +01:00

369 lines
14 KiB
C++

/* -*- 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/.
*/
#include <cppuhelper/implbase.hxx>
#include <svtools/toolboxcontroller.hxx>
#include <com/sun/star/lang/XServiceInfo.hpp>
#include <com/sun/star/uno/XComponentContext.hpp>
#include <com/sun/star/frame/XFrame.hpp>
#include <vcl/vclptr.hxx>
#include <vcl/lstbox.hxx>
#include <vcl/svapp.hxx>
#include <toolkit/helper/vclunohelper.hxx>
#include <vcl/toolbox.hxx>
#include <vcl/fixed.hxx>
#include <sfx2/viewfrm.hxx>
#include <sfx2/classificationhelper.hxx>
#include <sfx2/sfx.hrc>
#include <sfx2/sfxresid.hxx>
#include <cppuhelper/supportsservice.hxx>
#include <comphelper/propertysequence.hxx>
#include <comphelper/dispatchcommand.hxx>
#include <comphelper/configurationlistener.hxx>
using namespace com::sun::star;
namespace sfx2
{
class ClassificationCategoriesController;
using ClassificationPropertyListenerBase = comphelper::ConfigurationListenerProperty<OUString>;
/// Listens to configuration changes, so no restart is needed after setting the classification path.
class ClassificationPropertyListener : public ClassificationPropertyListenerBase
{
ClassificationCategoriesController& m_rController;
public:
ClassificationPropertyListener(const rtl::Reference<comphelper::ConfigurationListener>& xListener, ClassificationCategoriesController& rController);
void setProperty(const uno::Any& rProperty) override;
};
using ClassificationCategoriesControllerBase = cppu::ImplInheritanceHelper<svt::ToolboxController, lang::XServiceInfo>;
class ClassificationControl;
/// Controller for .uno:ClassificationApply.
class ClassificationCategoriesController : public ClassificationCategoriesControllerBase
{
VclPtr<ClassificationControl> m_pClassification;
rtl::Reference<comphelper::ConfigurationListener> m_xListener;
ClassificationPropertyListener m_aPropertyListener;
DECL_LINK(SelectHdl, ListBox&, void);
public:
explicit ClassificationCategoriesController(const uno::Reference<uno::XComponentContext>& rContext);
// XServiceInfo
OUString SAL_CALL getImplementationName() throw (uno::RuntimeException, std::exception) override;
sal_Bool SAL_CALL supportsService(const OUString& rServiceName) throw (uno::RuntimeException, std::exception) override;
uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() throw (uno::RuntimeException, std::exception) override;
// XComponent
void SAL_CALL dispose() throw (uno::RuntimeException, std::exception) override;
// XToolbarController
uno::Reference<awt::XWindow> SAL_CALL createItemWindow(const uno::Reference<awt::XWindow>& rParent) throw (uno::RuntimeException, std::exception) override;
// XStatusListener
void SAL_CALL statusChanged(const frame::FeatureStateEvent& rEvent) throw (uno::RuntimeException, std::exception) override;
void removeEntries();
};
/// Classification control is the parent of all widgets that belongs to ClassificationCategoriesController.
class SAL_WARN_UNUSED ClassificationControl : public vcl::Window
{
std::map<SfxClassificationPolicyType, VclPtr<FixedText>> m_pLabels;
std::map<SfxClassificationPolicyType, VclPtr<ListBox>> m_pCategories;
void SetOptimalSize();
void DataChanged(const DataChangedEvent& rEvent) override;
public:
explicit ClassificationControl(vcl::Window* pParent);
~ClassificationControl() override;
void dispose() override;
void Resize() override;
const VclPtr<ListBox>& getCategories(SfxClassificationPolicyType eType);
std::size_t getLabelsSize();
OUString getCategoryType(ListBox& rCategory);
};
ClassificationPropertyListener::ClassificationPropertyListener(const rtl::Reference<comphelper::ConfigurationListener>& xListener, ClassificationCategoriesController& rController)
: ClassificationPropertyListenerBase(xListener, "WritePath")
, m_rController(rController)
{
}
void ClassificationPropertyListener::setProperty(const uno::Any& /*rProperty*/)
{
// So that its gets re-filled with entries from the new policy.
m_rController.removeEntries();
}
ClassificationCategoriesController::ClassificationCategoriesController(const uno::Reference<uno::XComponentContext>& rContext)
: ClassificationCategoriesControllerBase(rContext, uno::Reference<frame::XFrame>(), OUString(".uno:ClassificationApply"))
, m_pClassification(nullptr)
, m_xListener(new comphelper::ConfigurationListener("/org.openoffice.Office.Paths/Paths/Classification"))
, m_aPropertyListener(m_xListener, *this)
{
}
OUString ClassificationCategoriesController::getImplementationName() throw (uno::RuntimeException, std::exception)
{
return OUString("com.sun.star.comp.sfx2.ClassificationCategoriesController");
}
sal_Bool ClassificationCategoriesController::supportsService(const OUString& rServiceName) throw (uno::RuntimeException, std::exception)
{
return cppu::supportsService(this, rServiceName);
}
uno::Sequence<OUString> ClassificationCategoriesController::getSupportedServiceNames() throw (uno::RuntimeException, std::exception)
{
uno::Sequence<OUString> aServices
{
"com.sun.star.frame.ToolbarController"
};
return aServices;
}
void ClassificationCategoriesController::dispose() throw (uno::RuntimeException, std::exception)
{
SolarMutexGuard aSolarMutexGuard;
svt::ToolboxController::dispose();
m_pClassification.disposeAndClear();
m_aPropertyListener.dispose();
m_xListener->dispose();
}
uno::Reference<awt::XWindow> ClassificationCategoriesController::createItemWindow(const uno::Reference<awt::XWindow>& rParent) throw (uno::RuntimeException, std::exception)
{
VclPtr<vcl::Window> pParent = VCLUnoHelper::GetWindow(rParent);
auto pToolbar = dynamic_cast<ToolBox*>(pParent.get());
if (pToolbar)
{
m_pClassification = VclPtr<ClassificationControl>::Create(pToolbar);
for (size_t i = m_pClassification->getLabelsSize(); i > 0; --i)
{
auto eType = static_cast<SfxClassificationPolicyType>(i);
m_pClassification->getCategories(eType)->SetSelectHdl(LINK(this, ClassificationCategoriesController, SelectHdl));
}
}
return uno::Reference<awt::XWindow>(VCLUnoHelper::GetInterface(m_pClassification));
}
IMPL_LINK(ClassificationCategoriesController, SelectHdl, ListBox&, rCategory, void)
{
OUString aEntry = rCategory.GetSelectEntry();
OUString aType = m_pClassification->getCategoryType(rCategory);
uno::Sequence<beans::PropertyValue> aPropertyValues(comphelper::InitPropertySequence(
{
{"Name", uno::makeAny(aEntry)},
{"Type", uno::makeAny(aType)},
}));
comphelper::dispatchCommand(".uno:ClassificationApply", aPropertyValues);
}
void ClassificationCategoriesController::statusChanged(const frame::FeatureStateEvent& /*rEvent*/) throw (uno::RuntimeException, std::exception)
{
if (!m_pClassification)
return;
SfxObjectShell* pObjectShell = SfxObjectShell::Current();
if (!pObjectShell)
return;
SfxClassificationHelper aHelper(pObjectShell->getDocProperties());
for (size_t i = m_pClassification->getLabelsSize(); i > 0; --i)
{
auto eType = static_cast<SfxClassificationPolicyType>(i);
VclPtr<ListBox> pCategories = m_pClassification->getCategories(eType);
if (pCategories->GetEntryCount() == 0)
{
std::vector<OUString> aNames = aHelper.GetBACNames();
for (const OUString& rName : aNames)
pCategories->InsertEntry(rName);
// Normally VclBuilder::makeObject() does this.
pCategories->EnableAutoSize(true);
}
}
// Restore state based on the doc. model.
for (size_t i = m_pClassification->getLabelsSize(); i > 0; --i)
{
auto eType = static_cast<SfxClassificationPolicyType>(i);
const OUString& rCategoryName = aHelper.GetBACName(eType);
if (!rCategoryName.isEmpty())
{
VclPtr<ListBox> pCategories = m_pClassification->getCategories(eType);
pCategories->SelectEntry(rCategoryName);
}
}
}
void ClassificationCategoriesController::removeEntries()
{
if (m_pClassification)
{
for (size_t i = m_pClassification->getLabelsSize(); i > 0; --i)
{
auto eType = static_cast<SfxClassificationPolicyType>(i);
VclPtr<ListBox> pCategories = m_pClassification->getCategories(eType);
pCategories->Clear();
}
}
}
// WB_NOLABEL means here that the control won't be replaced with a label
// when it wouldn't fit the available space.
ClassificationControl::ClassificationControl(vcl::Window* pParent)
: Window(pParent, WB_DIALOGCONTROL | WB_NOLABEL)
{
m_pLabels[SfxClassificationPolicyType::IntellectualProperty] = VclPtr<FixedText>::Create(this, WB_CENTER);
m_pLabels[SfxClassificationPolicyType::NationalSecurity] = VclPtr<FixedText>::Create(this, WB_CENTER);
m_pLabels[SfxClassificationPolicyType::ExportControl] = VclPtr<FixedText>::Create(this, WB_CENTER);
for (auto& rPair : m_pLabels)
{
OUString aText;
switch (rPair.first)
{
case SfxClassificationPolicyType::IntellectualProperty:
aText = SfxResId(STR_CLASSIFIED_INTELLECTUAL_PROPERTY);
break;
case SfxClassificationPolicyType::NationalSecurity:
aText = SfxResId(STR_CLASSIFIED_NATIONAL_SECURITY);
break;
case SfxClassificationPolicyType::ExportControl:
aText = SfxResId(STR_CLASSIFIED_EXPORT_CONTROL);
break;
}
auto& pLabel = rPair.second;
Size aTextSize(pLabel->GetTextWidth(aText), pLabel->GetTextHeight());
// Padding.
aTextSize.Width() += 12;
pLabel->SetText(aText);
pLabel->SetSizePixel(aTextSize);
pLabel->Show();
}
m_pCategories[SfxClassificationPolicyType::IntellectualProperty] = VclPtr<ListBox>::Create(this, WB_CLIPCHILDREN|WB_LEFT|WB_VCENTER|WB_3DLOOK|WB_DROPDOWN|WB_SIMPLEMODE);
m_pCategories[SfxClassificationPolicyType::NationalSecurity] = VclPtr<ListBox>::Create(this, WB_CLIPCHILDREN|WB_LEFT|WB_VCENTER|WB_3DLOOK|WB_DROPDOWN|WB_SIMPLEMODE);
m_pCategories[SfxClassificationPolicyType::ExportControl] = VclPtr<ListBox>::Create(this, WB_CLIPCHILDREN|WB_LEFT|WB_VCENTER|WB_3DLOOK|WB_DROPDOWN|WB_SIMPLEMODE);
for (auto& rPair : m_pCategories)
rPair.second->Show();
SetOptimalSize();
}
ClassificationControl::~ClassificationControl()
{
disposeOnce();
}
void ClassificationControl::dispose()
{
for (auto& rPair : m_pLabels)
rPair.second.disposeAndClear();
for (auto& rPair : m_pCategories)
rPair.second.disposeAndClear();
vcl::Window::dispose();
}
void ClassificationControl::Resize()
{
// Give the label what it wants, and the remaining size to the listbox.
Size aSize(GetOutputSizePixel());
long nXPosition = 0;
for (size_t i = m_pLabels.size(); i > 0; --i)
{
auto eType = static_cast<SfxClassificationPolicyType>(i);
auto& pLabel = m_pLabels[eType];
long nWLabel = pLabel->GetOutputSizePixel().Width();
long nW = aSize.Width() / m_pLabels.size();
long nH = aSize.Height();
long nPrefHeight = pLabel->get_preferred_size().Height();
long nOffset = (nH - nPrefHeight) / 2;
pLabel->SetPosSizePixel(Point(nXPosition, nOffset), Size(nWLabel, nPrefHeight));
auto& pCategories = m_pCategories[eType];
nPrefHeight = pCategories->get_preferred_size().Height();
nOffset = (nH - nPrefHeight) / 2;
pCategories->SetPosSizePixel(Point(nXPosition + nWLabel, nOffset), Size(nW - nWLabel, nPrefHeight));
nXPosition += nW;
}
}
const VclPtr<ListBox>& ClassificationControl::getCategories(SfxClassificationPolicyType eType)
{
return m_pCategories[eType];
}
std::size_t ClassificationControl::getLabelsSize()
{
return m_pLabels.size();
}
OUString ClassificationControl::getCategoryType(ListBox& rCategory)
{
OUString aRet;
auto it = std::find_if(m_pCategories.begin(), m_pCategories.end(), [&rCategory](const std::pair<SfxClassificationPolicyType, VclPtr<ListBox>>& rPair)
{
return rPair.second.get() == &rCategory;
});
if (it != m_pCategories.end())
aRet = SfxClassificationHelper::policyTypeToString(it->first);
return aRet;
}
void ClassificationControl::SetOptimalSize()
{
// Same as SvxColorDockingWindow.
const Size aLogicalAttrSize(150 * m_pLabels.size(), 0);
Size aSize(LogicToPixel(aLogicalAttrSize,MapUnit::MapAppFont));
auto& pLabel = m_pLabels[SfxClassificationPolicyType::IntellectualProperty];
auto& pCategories = m_pCategories[SfxClassificationPolicyType::IntellectualProperty];
Point aPosition = pCategories->GetPosPixel();
aSize.Height() = std::max(aSize.Height(), pLabel->get_preferred_size().Height());
aSize.Height() = std::max(aSize.Height(), pCategories->get_preferred_size().Height());
aSize.Width() = aPosition.X() + aSize.Width();
SetSizePixel(aSize);
}
void ClassificationControl::DataChanged(const DataChangedEvent& rEvent)
{
if ((rEvent.GetType() == DataChangedEventType::SETTINGS) && (rEvent.GetFlags() & AllSettingsFlags::STYLE))
SetOptimalSize();
Window::DataChanged(rEvent);
}
} // namespace sfx2
extern "C" SAL_DLLPUBLIC_EXPORT uno::XInterface* SAL_CALL com_sun_star_sfx2_ClassificationCategoriesController_get_implementation(uno::XComponentContext* pContext, const uno::Sequence<uno::Any>&)
{
return cppu::acquire(new sfx2::ClassificationCategoriesController(pContext));
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */