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 : #ifndef INCLUDED_SVX_SELECTIONCONTROLLER_HXX
21 : #define INCLUDED_SVX_SELECTIONCONTROLLER_HXX
22 :
23 : #include <svx/svxdllapi.h>
24 : #include <cppuhelper/weak.hxx>
25 : #include <memory>
26 :
27 : class KeyEvent;
28 : class MouseEvent;
29 : namespace vcl { class Window; }
30 : class SfxItemSet;
31 : class SfxRequest;
32 : class SfxStyleSheet;
33 : class SdrPage;
34 : class SdrModel;
35 : class Point;
36 :
37 : namespace sdr
38 : {
39 :
40 0 : class SVX_DLLPUBLIC SelectionController: public cppu::OWeakObject
41 : {
42 : public:
43 : virtual bool onKeyInput(const KeyEvent& rKEvt, vcl::Window* pWin);
44 : virtual bool onMouseButtonDown(const MouseEvent& rMEvt, vcl::Window* pWin);
45 : virtual bool onMouseButtonUp(const MouseEvent& rMEvt, vcl::Window* pWin);
46 : virtual bool onMouseMove(const MouseEvent& rMEvt, vcl::Window* pWin);
47 :
48 : virtual void onSelectionHasChanged();
49 :
50 : virtual void GetState( SfxItemSet& rSet );
51 : virtual void Execute( SfxRequest& rReq );
52 :
53 : virtual bool DeleteMarked();
54 :
55 : virtual bool GetAttributes(SfxItemSet& rTargetSet, bool bOnlyHardAttr) const;
56 : virtual bool SetAttributes(const SfxItemSet& rSet, bool bReplaceAll);
57 :
58 : virtual bool GetStyleSheet( SfxStyleSheet* &rpStyleSheet ) const;
59 : virtual bool SetStyleSheet( SfxStyleSheet* pStyleSheet, bool bDontRemoveHardAttr );
60 :
61 : virtual bool GetMarkedObjModel( SdrPage* pNewPage );
62 : virtual bool PasteObjModel( const SdrModel& rModel );
63 :
64 : /** returns a format paint brush set from the current selection */
65 : virtual bool TakeFormatPaintBrush( std::shared_ptr< SfxItemSet >& rFormatSet );
66 :
67 : /** applies a format paint brush set from the current selection.
68 : if bNoCharacterFormats is true, no character attributes are changed.
69 : if bNoParagraphFormats is true, no paragraph attributes are changed.
70 : */
71 : virtual bool ApplyFormatPaintBrush( SfxItemSet& rFormatSet, bool bNoCharacterFormats, bool bNoParagraphFormats );
72 : /// This is a table object, and one or more of its cells are selected.
73 : virtual bool hasSelectedCells() const;
74 : /// Allows adjusting the point or mark of the selection to a document coordinate.
75 : virtual bool setCursorLogicPosition(const Point& rPosition, bool bPoint);
76 : };
77 :
78 : }
79 :
80 : #endif // INCLUDED_SVX_SELECTIONCONTROLLER_HXX
81 :
82 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|