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 
onKeyInput(const KeyEvent &,vcl::Window *)26 bool SelectionController::onKeyInput(const KeyEvent& /*rKEvt*/, vcl::Window* /*pWin*/)
27 {
28     return false;
29 }
30 
onMouseButtonDown(const MouseEvent &,vcl::Window *)31 bool SelectionController::onMouseButtonDown(const MouseEvent& /*rMEvt*/, vcl::Window* /*pWin*/)
32 {
33     return false;
34 }
35 
onMouseButtonUp(const MouseEvent &,vcl::Window *)36 bool SelectionController::onMouseButtonUp(const MouseEvent& /*rMEvt*/, vcl::Window* /*pWin*/)
37 {
38     return false;
39 }
40 
onMouseMove(const MouseEvent &,vcl::Window *)41 bool SelectionController::onMouseMove(const MouseEvent& /*rMEvt*/, vcl::Window* /*pWin*/)
42 {
43     return false;
44 }
45 
onSelectionHasChanged()46 void SelectionController::onSelectionHasChanged()
47 {
48 }
49 
onSelectAll()50 void SelectionController::onSelectAll()
51 {
52 }
53 
GetState(SfxItemSet &)54 void SelectionController::GetState( SfxItemSet& /*rSet*/ )
55 {
56 }
57 
Execute(SfxRequest &)58 void SelectionController::Execute( SfxRequest& /*rReq*/ )
59 {
60 }
61 
DeleteMarked()62 bool SelectionController::DeleteMarked()
63 {
64     return false;
65 }
66 
GetAttributes(SfxItemSet &,bool) const67 bool SelectionController::GetAttributes(SfxItemSet& /*rTargetSet*/, bool /*bOnlyHardAttr*/) const
68 {
69     return false;
70 }
71 
SetAttributes(const SfxItemSet &,bool)72 bool SelectionController::SetAttributes(const SfxItemSet& /*rSet*/, bool /*bReplaceAll*/)
73 {
74     return false;
75 }
76 
GetStyleSheet(SfxStyleSheet * &) const77 bool SelectionController::GetStyleSheet( SfxStyleSheet* &/*rpStyleSheet*/ ) const
78 {
79     return false;
80 }
81 
SetStyleSheet(SfxStyleSheet *,bool)82 bool SelectionController::SetStyleSheet( SfxStyleSheet* /*pStyleSheet*/, bool /*bDontRemoveHardAttr*/ )
83 {
84     return false;
85 }
86 
GetMarkedSdrObjClone(SdrModel &)87 SdrObject* SelectionController::GetMarkedSdrObjClone( SdrModel& /*rTargetModel*/ )
88 {
89     return nullptr;
90 }
91 
PasteObjModel(const SdrModel &)92 bool SelectionController::PasteObjModel( const SdrModel& /*rModel*/ )
93 {
94     return false;
95 }
96 
ApplyFormatPaintBrush(SfxItemSet &,bool,bool)97 bool SelectionController::ApplyFormatPaintBrush( SfxItemSet& /*rFormatSet*/, bool /*bNoCharacterFormats*/, bool /*bNoParagraphFormats*/ )
98 {
99     return false;
100 }
101 
hasSelectedCells() const102 bool SelectionController::hasSelectedCells() const
103 {
104     return false;
105 }
106 
getSelectedCells(table::CellPos &,table::CellPos &)107 void SelectionController::getSelectedCells(table::CellPos& /*rFirstPos*/, table::CellPos& /*rLastPos*/)
108 {
109 }
110 
setCursorLogicPosition(const Point &,bool)111 bool SelectionController::setCursorLogicPosition(const Point& /*rPosition*/, bool /*bPoint*/)
112 {
113     return false;
114 }
115 
116 
ChangeFontSize(bool,const FontList *)117 bool SelectionController::ChangeFontSize(bool /*bGrow*/, const FontList* /*pFontList*/)
118 {
119     return false;
120 }
121 
122 }
123 
124 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
125