1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 
24 #ifndef _REPORT_SECTIONVIEW_HXX
25 #define _REPORT_SECTIONVIEW_HXX
26 
27 
28 #include <svx/svdview.hxx>
29 namespace rptui
30 {
31 class OReportWindow;
32 class OReportSection;
33 
34 //============================================================================
35 // OSectionView
36 //============================================================================
37 
38 class OSectionView : public SdrView
39 {
40 private:
41 	OReportWindow*		m_pReportWindow;
42 	OReportSection*		m_pSectionWindow;
43 
44 	void ObjectRemovedInAliveMode( const SdrObject* pObject );
45     OSectionView(const OSectionView&);
46     void operator =(const OSectionView&);
47 public:
48 	TYPEINFO();
49 
50 	OSectionView( SdrModel* pModel, OReportSection* _pSectionWindow, OReportWindow* pEditor );
51 	virtual ~OSectionView();
52 
53 	virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint );
54 	virtual void MarkListHasChanged();
55 	virtual void MakeVisible( const Rectangle& rRect, Window& rWin );
56 
getReportSection() const57 	inline OReportSection*	getReportSection() const { return m_pSectionWindow; }
58 
59     // switch the marked objects to the given layer.
60     void SetMarkedToLayer( SdrLayerID nLayerNo );
61 
62     // return true when only shapes are marked, otherwise false.
63     bool OnlyShapesMarked() const;
64 
65     /* returns the common layer id of the marked objects, otherwise -1 will be returned.
66     */
67     short GetLayerIdOfMarkedObjects() const;
68 
69     // returns true if objects at Drag & Drop is resize not move
70     bool IsDragResize() const;
71 };
72 }
73 #endif //_REPORT_SECTIONVIEW_HXX
74