blob: 0b6ef370570f6b517f0ce2066f3befcbeb2d8ffe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
/* -*- 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 <svx/ClassificationField.hxx>
#include <svl/itempool.hxx>
#include <svl/itemset.hxx>
#include <editeng/wghtitem.hxx>
#include <editeng/eeitem.hxx>
#include "ClassificationEditView.hxx"
namespace svx {
ClassificationEditEngine::ClassificationEditEngine(SfxItemPool* pItemPool)
: EditEngine(pItemPool)
{}
OUString ClassificationEditEngine::CalcFieldValue(const SvxFieldItem& rField, sal_Int32 /*nPara*/,
sal_Int32 /*nPos*/, std::optional<Color>& /*rTxtColor*/, std::optional<Color>& /*rFldColor*/)
{
OUString aString;
const ClassificationField* pClassificationField = dynamic_cast<const ClassificationField*>(rField.GetField());
if (pClassificationField)
aString = pClassificationField->msDescription;
else
aString = "Unknown";
return aString;
}
ClassificationEditView::ClassificationEditView()
{
}
void ClassificationEditView::makeEditEngine()
{
m_xEditEngine.reset(new ClassificationEditEngine(EditEngine::CreatePool().get()));
}
ClassificationEditView::~ClassificationEditView()
{
}
void ClassificationEditView::InsertField(const SvxFieldItem& rFieldItem)
{
m_xEditView->InsertField(rFieldItem);
m_xEditView->Invalidate();
}
void ClassificationEditView::InvertSelectionWeight()
{
ESelection aSelection = m_xEditView->GetSelection();
for (sal_Int32 nParagraph = aSelection.nStartPara; nParagraph <= aSelection.nEndPara; ++nParagraph)
{
FontWeight eFontWeight = WEIGHT_BOLD;
SfxItemSet aSet(m_xEditEngine->GetParaAttribs(nParagraph));
if (const SfxPoolItem* pItem = aSet.GetItem(EE_CHAR_WEIGHT, false))
{
const SvxWeightItem* pWeightItem = dynamic_cast<const SvxWeightItem*>(pItem);
if (pWeightItem && pWeightItem->GetWeight() == WEIGHT_BOLD)
eFontWeight = WEIGHT_NORMAL;
}
SvxWeightItem aWeight(eFontWeight, EE_CHAR_WEIGHT);
aSet.Put(aWeight);
m_xEditEngine->SetParaAttribs(nParagraph, aSet);
}
m_xEditView->Invalidate();
}
} // end sfx2
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|