bump product version to 5.0.4.1
[LibreOffice.git] / include / svx / graphctl.hxx
blob31f62f718265660afa0cee3fbd7ba80e8085db0a
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
19 #ifndef INCLUDED_SVX_GRAPHCTL_HXX
20 #define INCLUDED_SVX_GRAPHCTL_HXX
22 #include <vcl/ctrl.hxx>
23 #include <vcl/graph.hxx>
24 #include <svx/svxdllapi.h>
26 #include <svx/svdview.hxx>
27 #include <svx/svdobj.hxx>
29 class GraphCtrlUserCall;
30 class SvxGraphCtrlAccessibleContext;
32 #define WB_SDRMODE ((WinBits)0x0080)
33 #define WB_ANIMATION ((WinBits)0x0100)
35 class SVX_DLLPUBLIC GraphCtrl : public Control
37 friend class GraphCtrlView;
38 friend class GraphCtrlUserCall;
40 Graphic aGraphic;
41 Idle aUpdateIdle;
42 Link<> aMousePosLink;
43 Link<> aGraphSizeLink;
44 Link<> aMarkObjLink;
45 Link<> aUpdateLink;
46 MapMode aMap100;
47 Size aGraphSize;
48 Point aMousePos;
49 GraphCtrlUserCall* pUserCall;
50 WinBits nWinStyle;
51 SdrObjKind eObjKind;
52 sal_uInt16 nPolyEdit;
53 bool bEditMode;
54 bool bSdrMode;
55 bool bAnim;
57 DECL_LINK_TYPED( UpdateHdl, Idle*, void );
59 SvxGraphCtrlAccessibleContext* mpAccContext;
61 protected:
63 SdrModel* pModel;
64 SdrView* pView;
66 virtual void Paint( vcl::RenderContext& rRenderContext, const Rectangle& rRect ) SAL_OVERRIDE;
67 virtual void Resize() SAL_OVERRIDE;
68 virtual void KeyInput(const KeyEvent& rKEvt) SAL_OVERRIDE;
69 virtual void MouseButtonDown(const MouseEvent& rMEvt) SAL_OVERRIDE;
70 virtual void MouseButtonUp(const MouseEvent& rMEvt) SAL_OVERRIDE;
71 virtual void MouseMove(const MouseEvent& rMEvt) SAL_OVERRIDE;
73 virtual void InitSdrModel();
75 virtual void SdrObjCreated( const SdrObject& rObj );
76 virtual void SdrObjChanged( const SdrObject& rObj );
77 virtual void MarkListHasChanged();
79 inline SdrObjUserCall* GetSdrUserCall();
81 public:
83 GraphCtrl( vcl::Window* pParent, WinBits nStyle );
84 virtual ~GraphCtrl();
85 virtual void dispose() SAL_OVERRIDE;
87 void SetWinStyle( WinBits nWinBits );
88 WinBits GetWinStyle() const { return nWinStyle; }
90 void SetGraphic( const Graphic& rGraphic, bool bNewModel = true );
91 const Graphic& GetGraphic() const { return aGraphic; }
92 const Size& GetGraphicSize() const { return aGraphSize; }
94 const Point& GetMousePos() const { return aMousePos; }
96 void SetEditMode( const bool bEditMode );
97 bool IsEditMode() const { return bEditMode; }
99 void SetPolyEditMode( const sal_uInt16 nPolyEdit );
100 sal_uInt16 GetPolyEditMode() const { return nPolyEdit; }
102 void SetObjKind( const SdrObjKind eObjKind );
103 SdrObjKind GetObjKind() const { return eObjKind; }
105 SdrModel* GetSdrModel() const { return pModel; }
106 SdrView* GetSdrView() const { return pView; }
107 SdrObject* GetSelectedSdrObject() const;
108 bool IsChanged() const { return bSdrMode && pModel->IsChanged(); }
110 void SetMousePosLink( const Link<>& rLink ) { aMousePosLink = rLink; }
111 const Link<>& GetMousePosLink() const { return aMousePosLink; }
113 void SetGraphSizeLink( const Link<>& rLink ) { aGraphSizeLink = rLink; }
114 const Link<>& GetGraphSizeLink() const { return aGraphSizeLink; }
116 void SetMarkObjLink( const Link<>& rLink ) { aMarkObjLink = rLink; }
117 const Link<>& GetMarkObjLink() const { return aMarkObjLink; }
119 void SetUpdateLink( const Link<>& rLink ) { aUpdateLink = rLink; }
120 const Link<>& GetUpdateLink() const { return aUpdateLink; }
122 virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > CreateAccessible() SAL_OVERRIDE;
126 class GraphCtrlUserCall : public SdrObjUserCall
128 GraphCtrl& rWin;
130 public:
132 GraphCtrlUserCall(GraphCtrl& rGraphWin)
133 : rWin(rGraphWin)
136 virtual ~GraphCtrlUserCall()
139 virtual void Changed(const SdrObject& rObj, SdrUserCallType eType, const Rectangle& rOldBoundRect) SAL_OVERRIDE;
142 SdrObjUserCall* GraphCtrl::GetSdrUserCall()
144 return pUserCall;
147 class GraphCtrlView : public SdrView
149 GraphCtrl& rGraphCtrl;
151 protected:
153 virtual void MarkListHasChanged() SAL_OVERRIDE
155 SdrView::MarkListHasChanged();
156 rGraphCtrl.MarkListHasChanged();
159 public:
160 GraphCtrlView(SdrModel* pModel, GraphCtrl* pWindow)
161 : SdrView(pModel, pWindow)
162 , rGraphCtrl(*pWindow)
165 virtual ~GraphCtrlView()
169 #endif // INCLUDED_SVX_GRAPHCTL_HXX
171 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */