LibreOffice Module sw (master) 1
barcfg.cxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 */
19
20#include <osl/diagnose.h>
21#include <com/sun/star/uno/Sequence.hxx>
22#include <wrtsh.hxx>
23#include <barcfg.hxx>
24
25using namespace utl;
26using namespace com::sun::star::uno;
27
28#define SEL_TYPE_TABLE_TEXT 0
29#define SEL_TYPE_LIST_TEXT 1
30#define SEL_TYPE_TABLE_LIST 2
31#define SEL_TYPE_BEZIER 3
32#define SEL_TYPE_GRAPHIC 4
33
35 ConfigItem(bWeb ? OUString("Office.WriterWeb/ObjectBar") : OUString("Office.Writer/ObjectBar"),
37{
38 for(int i = 0; i <= SEL_TYPE_GRAPHIC; ++i)
39 m_aTbxIdArray[i] = -1;
40
42 Sequence<Any> aValues = GetProperties(aNames);
43 const Any* pValues = aValues.getConstArray();
44 OSL_ENSURE(aValues.getLength() == aNames.getLength(), "GetProperties failed");
45 if(aValues.getLength() == aNames.getLength())
46 {
47 for(int nProp = 0; nProp < aNames.getLength(); nProp++)
48 {
49 if(pValues[nProp].hasValue())
50 {
51 sal_Int32 nVal = 0;
52 pValues[nProp] >>= nVal;
53 m_aTbxIdArray[nProp] = nVal;
54 }
55 }
56 }
57}
58
60{
61}
62
63static sal_Int32 lcl_getArrayIndex(SelectionType nSelType)
64{
65 sal_Int32 nRet = -1;
66 if(nSelType & SelectionType::NumberList)
67 {
68 if(nSelType & SelectionType::Table)
70 else
71 nRet = SEL_TYPE_LIST_TEXT;
72 }
73 else if(nSelType & SelectionType::Table)
75 else if(nSelType & SelectionType::Ornament)
76 nRet = SEL_TYPE_BEZIER;
77 else if(nSelType & SelectionType::Graphic)
78 nRet = SEL_TYPE_GRAPHIC;
79 return nRet;
80}
81
83{
84 sal_Int32 nProp = lcl_getArrayIndex(nSelType);
85 if(nProp >= 0)
86 {
87 m_aTbxIdArray[nProp] = static_cast<sal_Int32>(eBarId);
89 }
90}
91
93{
94 static const char* aPropNames[] =
95 {
96 "Selection/Table", // SEL_TYPE_TABLE_TEXT
97 "Selection/NumberedList", // SEL_TYPE_LIST_TEXT
98 "Selection/NumberedList_InTable", // SEL_TYPE_TABLE_LIST
99 "Selection/BezierObject", // SEL_TYPE_BEZIER
100 "Selection/Graphic" //SEL_TYPE_GRAPHIC
101 };
102 const int nCount = 5;
104 OUString* pNames = aNames.getArray();
105 for(int i = 0; i < nCount; i++)
106 pNames[i] = OUString::createFromAscii(aPropNames[i]);
107 return aNames;
108}
109
111{
113
114 Sequence<Any> aValues(aNames.getLength());
115 Any* pValues = aValues.getArray();
116
117 for(int nProp = 0; nProp < aNames.getLength(); nProp++)
118 pValues[nProp] <<= m_aTbxIdArray[nProp];
119 PutProperties(aNames, aValues);
120}
121
122void SwToolbarConfigItem::Notify( const css::uno::Sequence< OUString >& ) {}
123
124/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
const PropertyValue * pValues
#define SEL_TYPE_TABLE_LIST
Definition: barcfg.cxx:30
static sal_Int32 lcl_getArrayIndex(SelectionType nSelType)
Definition: barcfg.cxx:63
#define SEL_TYPE_LIST_TEXT
Definition: barcfg.cxx:29
#define SEL_TYPE_TABLE_TEXT
Definition: barcfg.cxx:28
#define SEL_TYPE_BEZIER
Definition: barcfg.cxx:31
#define SEL_TYPE_GRAPHIC
Definition: barcfg.cxx:32
static css::uno::Sequence< OUString > GetPropertyNames()
Definition: barcfg.cxx:92
sal_Int32 m_aTbxIdArray[5]
Definition: barcfg.hxx:29
virtual ~SwToolbarConfigItem() override
Definition: barcfg.cxx:59
virtual void ImplCommit() override
Definition: barcfg.cxx:110
void SetTopToolbar(SelectionType nSelType, ToolbarId eBarId)
Definition: barcfg.cxx:82
virtual void Notify(const css::uno::Sequence< OUString > &aPropertyNames) override
Definition: barcfg.cxx:122
SwToolbarConfigItem(bool bWeb)
Definition: barcfg.cxx:34
static bool PutProperties(css::uno::Reference< css::container::XHierarchicalNameAccess > const &xHierarchyAccess, const css::uno::Sequence< OUString > &rNames, const css::uno::Sequence< css::uno::Any > &rValues, bool bAllLocales)
static css::uno::Sequence< css::uno::Any > GetProperties(css::uno::Reference< css::container::XHierarchicalNameAccess > const &xHierarchyAccess, const css::uno::Sequence< OUString > &rNames, bool bAllLocales)
ConfigItemMode
int nCount
SelectionType
int i
const PropertyStruct aPropNames[]
ToolbarId