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 :
21 : #include <svx/selectioncontroller.hxx>
22 :
23 : namespace sdr
24 : {
25 :
26 0 : bool SelectionController::onKeyInput(const KeyEvent& /*rKEvt*/, Window* /*pWin*/)
27 : {
28 0 : return false;
29 : }
30 :
31 0 : bool SelectionController::onMouseButtonDown(const MouseEvent& /*rMEvt*/, Window* /*pWin*/)
32 : {
33 0 : return false;
34 : }
35 :
36 0 : bool SelectionController::onMouseButtonUp(const MouseEvent& /*rMEvt*/, Window* /*pWin*/)
37 : {
38 0 : return false;
39 : }
40 :
41 0 : bool SelectionController::onMouseMove(const MouseEvent& /*rMEvt*/, Window* /*pWin*/)
42 : {
43 0 : return false;
44 : }
45 :
46 0 : void SelectionController::onSelectionHasChanged()
47 : {
48 0 : }
49 :
50 0 : void SelectionController::GetState( SfxItemSet& /*rSet*/ )
51 : {
52 0 : }
53 :
54 0 : void SelectionController::Execute( SfxRequest& /*rReq*/ )
55 : {
56 0 : }
57 :
58 0 : bool SelectionController::DeleteMarked()
59 : {
60 0 : return false;
61 : }
62 :
63 0 : bool SelectionController::GetAttributes(SfxItemSet& /*rTargetSet*/, bool /*bOnlyHardAttr*/) const
64 : {
65 0 : return false;
66 : }
67 :
68 0 : bool SelectionController::SetAttributes(const SfxItemSet& /*rSet*/, bool /*bReplaceAll*/)
69 : {
70 0 : return false;
71 : }
72 :
73 0 : bool SelectionController::GetStyleSheet( SfxStyleSheet* &/*rpStyleSheet*/ ) const
74 : {
75 0 : return false;
76 : }
77 :
78 0 : bool SelectionController::SetStyleSheet( SfxStyleSheet* /*pStyleSheet*/, bool /*bDontRemoveHardAttr*/ )
79 : {
80 0 : return false;
81 : }
82 :
83 0 : bool SelectionController::GetMarkedObjModel( SdrPage* /*pNewPage*/ )
84 : {
85 0 : return false;
86 : }
87 :
88 0 : bool SelectionController::PasteObjModel( const SdrModel& /*rModel*/ )
89 : {
90 0 : return false;
91 : }
92 :
93 0 : bool SelectionController::TakeFormatPaintBrush( boost::shared_ptr< SfxItemSet >& /*rFormatSet*/ )
94 : {
95 0 : return false;
96 : }
97 :
98 0 : bool SelectionController::ApplyFormatPaintBrush( SfxItemSet& /*rFormatSet*/, bool /*bNoCharacterFormats*/, bool /*bNoParagraphFormats*/ )
99 : {
100 0 : return false;
101 : }
102 :
103 : }
104 :
105 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|