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 
GetState(SfxItemSet &)50 void SelectionController::GetState( SfxItemSet& /*rSet*/ )
51 {
52 }
53 
Execute(SfxRequest &)54 void SelectionController::Execute( SfxRequest& /*rReq*/ )
55 {
56 }
57 
DeleteMarked()58 bool SelectionController::DeleteMarked()
59 {
60     return false;
61 }
62 
GetAttributes(SfxItemSet &,bool) const63 bool SelectionController::GetAttributes(SfxItemSet& /*rTargetSet*/, bool /*bOnlyHardAttr*/) const
64 {
65     return false;
66 }
67 
SetAttributes(const SfxItemSet &,bool)68 bool SelectionController::SetAttributes(const SfxItemSet& /*rSet*/, bool /*bReplaceAll*/)
69 {
70     return false;
71 }
72 
GetStyleSheet(SfxStyleSheet * &) const73 bool SelectionController::GetStyleSheet( SfxStyleSheet* &/*rpStyleSheet*/ ) const
74 {
75     return false;
76 }
77 
SetStyleSheet(SfxStyleSheet *,bool)78 bool SelectionController::SetStyleSheet( SfxStyleSheet* /*pStyleSheet*/, bool /*bDontRemoveHardAttr*/ )
79 {
80     return false;
81 }
82 
GetMarkedSdrObjClone(SdrModel &)83 SdrObject* SelectionController::GetMarkedSdrObjClone( SdrModel& /*rTargetModel*/ )
84 {
85     return nullptr;
86 }
87 
PasteObjModel(const SdrModel &)88 bool SelectionController::PasteObjModel( const SdrModel& /*rModel*/ )
89 {
90     return false;
91 }
92 
ApplyFormatPaintBrush(SfxItemSet &,bool,bool)93 bool SelectionController::ApplyFormatPaintBrush( SfxItemSet& /*rFormatSet*/, bool /*bNoCharacterFormats*/, bool /*bNoParagraphFormats*/ )
94 {
95     return false;
96 }
97 
hasSelectedCells() const98 bool SelectionController::hasSelectedCells() const
99 {
100     return false;
101 }
102 
getSelectedCells(table::CellPos &,table::CellPos &)103 void SelectionController::getSelectedCells(table::CellPos& /*rFirstPos*/, table::CellPos& /*rLastPos*/)
104 {
105 }
106 
setCursorLogicPosition(const Point &,bool)107 bool SelectionController::setCursorLogicPosition(const Point& /*rPosition*/, bool /*bPoint*/)
108 {
109     return false;
110 }
111 
112 
ChangeFontSize(bool,const FontList *)113 bool SelectionController::ChangeFontSize(bool /*bGrow*/, const FontList* /*pFontList*/)
114 {
115     return false;
116 }
117 
118 }
119 
120 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
121