Line data Source code
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 <editeng/eeitem.hxx>
21 : #include <svx/fontwork.hxx>
22 : #include <svl/srchitem.hxx>
23 : #include <sfx2/app.hxx>
24 : #include <sfx2/objface.hxx>
25 : #include <sfx2/request.hxx>
26 : #include <svl/whiter.hxx>
27 : #include <vcl/msgbox.hxx>
28 :
29 : #include "oleobjsh.hxx"
30 : #include "drwlayer.hxx"
31 : #include "sc.hrc"
32 : #include "viewdata.hxx"
33 : #include "document.hxx"
34 : #include "docpool.hxx"
35 : #include "drawview.hxx"
36 : #include "scresid.hxx"
37 : #include <svx/svdobj.hxx>
38 : #include <sfx2/sidebar/EnumContext.hxx>
39 :
40 : #define ScOleObjectShell
41 : #include "scslots.hxx"
42 :
43 :
44 0 : SFX_IMPL_INTERFACE(ScOleObjectShell, ScDrawShell, ScResId(SCSTR_OLEOBJECTSHELL) )
45 : {
46 0 : SFX_OBJECTBAR_REGISTRATION( SFX_OBJECTBAR_OBJECT|SFX_VISIBILITY_STANDARD|SFX_VISIBILITY_SERVER,
47 0 : ScResId(RID_DRAW_OBJECTBAR) );
48 0 : SFX_POPUPMENU_REGISTRATION( ScResId(RID_POPUP_OLE) );
49 0 : }
50 :
51 0 : TYPEINIT1( ScOleObjectShell, ScDrawShell );
52 :
53 0 : ScOleObjectShell::ScOleObjectShell(ScViewData* pData) :
54 0 : ScDrawShell(pData)
55 : {
56 0 : SetHelpId(HID_SCSHELL_OLEOBEJCTSH);
57 0 : SetName(OUString("OleObject"));
58 0 : SfxShell::SetContextName(sfx2::sidebar::EnumContext::GetContextName(sfx2::sidebar::EnumContext::Context_OLE));
59 0 : }
60 :
61 0 : ScOleObjectShell::~ScOleObjectShell()
62 : {
63 0 : }
64 :
65 0 : void ScOleObjectShell::HandleSelectionChange (void)
66 : {
67 : // Do not call the implementation in the base class. Let
68 : // Activate()/Deactivate() handle context switches.
69 0 : }
70 :
71 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|