LibreOffice Module sw (master) 1
viewcoll.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 <cmdid.h>
21#include <uiitems.hxx>
22#include <sfx2/bindings.hxx>
23#include <sfx2/request.hxx>
24#include <svl/stritem.hxx>
25#include <svl/style.hxx>
26#include <osl/diagnose.h>
27
28#include <view.hxx>
29#include <wrtsh.hxx>
30
32{
33 const SfxItemSet* pArgs = rReq.GetArgs();
34 const SfxPoolItem* pItem = nullptr;
35 sal_uInt16 nWhich = rReq.GetSlot();
36 switch( nWhich )
37 {
38 case FN_SET_PAGE:
39 {
40 OSL_ENSURE(false, "Not implemented");
41 }
42 break;
44 {
45 if( pArgs )
46 {
47 if (SfxItemState::SET == pArgs->GetItemState( nWhich , true, &pItem ))
48 {
49 if( static_cast<const SfxStringItem*>(pItem)->GetValue() !=
51 {
52 SfxStringItem aName(SID_STYLE_APPLY,
53 static_cast<const SfxStringItem*>(pItem)->GetValue());
54 SfxUInt16Item aFamItem( SID_STYLE_FAMILY,
55 sal_uInt16(SfxStyleFamily::Page));
57 SfxRequest aReq(SID_STYLE_APPLY, SfxCallMode::SLOT, GetPool());
58 aReq.AppendItem(aName);
59 aReq.AppendItem(aFamItem);
60 aReq.AppendItem(aShell);
61 GetCurShell()->ExecuteSlot(aReq);
62 }
63 }
64 }
65 else
66 {
67 SfxRequest aReq(FN_FORMAT_PAGE_DLG, SfxCallMode::SLOT, GetPool());
68 GetCurShell()->ExecuteSlot(aReq);
69 }
70 }
71 break;
72 default:
73 OSL_FAIL("wrong CommandProcessor for Dispatch");
74 return;
75 }
76}
77
78/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
SfxItemState GetItemState(sal_uInt16 nWhich, bool bSrchInParent=true, const SfxPoolItem **ppItem=nullptr) const
sal_uInt16 GetSlot() const
const SfxItemSet * GetArgs() const
void AppendItem(const SfxPoolItem &)
SfxItemPool & GetPool() const
const SfxPoolItem * ExecuteSlot(SfxRequest &rReq, const SfxInterface *pIF=nullptr)
void ExecColl(SfxRequest const &)
Definition: viewcoll.cxx:31
SfxShell * GetCurShell()
Definition: view.hxx:586
SwWrtShell & GetWrtShell() const
Definition: view.hxx:423
SwWrtShell * GetWrtShellPtr() const
Definition: view.hxx:424
#define FN_SET_PAGE_STYLE
Definition: cmdid.h:374
#define FN_PARAM_WRTSHELL
Definition: cmdid.h:829
#define FN_FORMAT_PAGE_DLG
Definition: cmdid.h:350
#define FN_SET_PAGE
Definition: cmdid.h:173
OUString aName
void GetCurPageStyle(SwPaM const &rPaM, OUString &rString)
const char GetValue[]