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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
/* -*- 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 "ThemePanel.hxx"
#include <sal/config.h>
#include <doc.hxx>
#include <docsh.hxx>
#include <drawdoc.hxx>
#include <IDocumentDrawModelAccess.hxx>
#include <ThemeColorChanger.hxx>
#include <vcl/settings.hxx>
#include <vcl/svapp.hxx>
#include <docmodel/theme/Theme.hxx>
#include <svx/svdpage.hxx>
#include <svx/dialog/ThemeColorValueSet.hxx>
#include <com/sun/star/lang/IllegalArgumentException.hpp>
namespace sw::sidebar
{
std::unique_ptr<PanelLayout> ThemePanel::Create(weld::Widget* pParent)
{
if (pParent == nullptr)
throw css::lang::IllegalArgumentException("no parent Window given to PagePropertyPanel::Create", nullptr, 0);
return std::make_unique<ThemePanel>(pParent);
}
ThemePanel::ThemePanel(weld::Widget* pParent)
: PanelLayout(pParent, "ThemePanel", "modules/swriter/ui/sidebartheme.ui")
, mxValueSetColors(new svx::ThemeColorValueSet)
, mxValueSetColorsWin(new weld::CustomWeld(*m_xBuilder, "valueset_colors", *mxValueSetColors))
, mxApplyButton(m_xBuilder->weld_button("apply"))
{
mxValueSetColors->SetColCount(2);
mxValueSetColors->SetLineCount(3);
mxValueSetColors->SetColor(Application::GetSettings().GetStyleSettings().GetFaceColor());
mxApplyButton->connect_clicked(LINK(this, ThemePanel, ClickHdl));
mxValueSetColors->SetDoubleClickHdl(LINK(this, ThemePanel, DoubleClickValueSetHdl));
auto const& rColorSets = svx::ColorSets::get();
for (model::ColorSet const& rColorSet : rColorSets.getColorSetVector())
{
mxValueSetColors->insert(rColorSet);
}
mxValueSetColors->SetOptimalSize();
if (!rColorSets.getColorSetVector().empty())
mxValueSetColors->SelectItem(1); // ItemId 1, position 0
}
ThemePanel::~ThemePanel()
{
mxValueSetColorsWin.reset();
mxValueSetColors.reset();
mxApplyButton.reset();
}
IMPL_LINK_NOARG(ThemePanel, ClickHdl, weld::Button&, void)
{
DoubleClickHdl();
}
IMPL_LINK_NOARG(ThemePanel, DoubleClickValueSetHdl, ValueSet*, void)
{
DoubleClickHdl();
}
IMPL_LINK_NOARG(ThemePanel, DoubleClickHdl, weld::TreeView&, bool)
{
DoubleClickHdl();
return true;
}
void ThemePanel::DoubleClickHdl()
{
SwDocShell* pDocSh = static_cast<SwDocShell*>(SfxObjectShell::Current());
if (!pDocSh)
return;
sal_uInt32 nItemId = mxValueSetColors->GetSelectedItemId();
if (!nItemId)
return;
sal_uInt32 nIndex = nItemId - 1;
auto const& rColorSets = svx::ColorSets::get();
model::ColorSet const& rColorSet = rColorSets.getColorSet(nIndex);
ThemeColorChanger aChanger(pDocSh);
aChanger.apply(std::make_shared<model::ColorSet>(rColorSet));
}
void ThemePanel::NotifyItemUpdate(const sal_uInt16 /*nSId*/,
const SfxItemState /*eState*/,
const SfxPoolItem* /*pState*/)
{
}
} // end of namespace ::sw::sidebar
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|