LibreOffice Module sw (master) 1
mediash.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 <sfx2/request.hxx>
22#include <svx/svdview.hxx>
23#include <view.hxx>
24#include <wrtsh.hxx>
25#include <mediash.hxx>
26
27#include <sfx2/objface.hxx>
28#include <vcl/EnumContext.hxx>
30
31#define ShellClass_SwMediaShell
32#include <swslots.hxx>
33
34using namespace svx;
35
37
38void SwMediaShell::InitInterface_Impl()
39{
40 GetStaticInterface()->RegisterPopupMenu("media");
41
42 GetStaticInterface()->RegisterObjectBar(SFX_OBJECTBAR_OBJECT, SfxVisibilityFlags::Invisible,
43 ToolbarId::Media_Toolbox);
44}
45
47{
48 SwWrtShell* pSh = &GetShell();
49 SdrView* pSdrView = pSh->GetDrawView();
50
51 if (!pSdrView)
52 return;
53
54 const bool bChanged = pSdrView->GetModel().IsChanged();
55 pSdrView->GetModel().SetChanged(false);
56
57 switch (rReq.GetSlot())
58 {
59 case SID_DELETE:
60 if (pSh->IsObjSelected())
61 {
62 pSh->SetModified();
63 pSh->DelSelectedObj();
64
65 if (pSh->IsSelFrameMode())
66 pSh->LeaveSelFrameMode();
67
68 GetView().AttrChangedNotify(nullptr);
69 }
70 break;
71
72 case SID_AVMEDIA_TOOLBOX:
73 if (pSh->IsObjSelected())
74 MediaShellHelpers::Execute(pSdrView, rReq);
75 break;
76
77 default:
78 break;
79 }
80
81 if (pSdrView->GetModel().IsChanged())
83 else if (bChanged)
84 pSdrView->GetModel().SetChanged();
85}
86
88{
89 MediaShellHelpers::GetState(GetShell().GetDrawView(), rSet);
90}
91
93 : SwBaseShell(_rView)
94{
95 SetName("Media Playback");
97}
98
99/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
virtual void SetChanged(bool bFlg=true)
bool IsChanged() const
SdrModel & GetModel() const
sal_uInt16 GetSlot() const
void SetContextName(const OUString &rsContextName)
void SetName(const OUString &rName)
SwWrtShell & GetShell()
Definition: basesh.cxx:3001
SwView & GetView()
Definition: basesh.hxx:59
void SetModified()
Definition: edws.cxx:70
void DelSelectedObj()
Definition: feshview.cxx:2257
size_t IsObjSelected() const
Definition: feshview.cxx:1125
void GetMediaState(SfxItemSet &)
Definition: mediash.cxx:87
SwMediaShell(SwView &rView)
Definition: mediash.cxx:92
void ExecMedia(SfxRequest const &)
Definition: mediash.cxx:46
SdrView * GetDrawView()
Definition: vnew.cxx:386
Definition: view.hxx:146
Used by the UI to modify the document model.
Definition: wrtsh.hxx:97
bool IsSelFrameMode() const
Definition: wrtsh.hxx:177
void LeaveSelFrameMode()
Definition: select.cxx:729
static const OUString & GetContextName(const Context eContext)
#define SFX_OBJECTBAR_OBJECT
static SfxItemSet & rSet
#define SFX_IMPL_INTERFACE(Class, SuperClass)