1 /*************************************************************************
2  *
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * Copyright 2000, 2010 Oracle and/or its affiliates.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * This file is part of OpenOffice.org.
10  *
11  * OpenOffice.org is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU Lesser General Public License version 3
13  * only, as published by the Free Software Foundation.
14  *
15  * OpenOffice.org is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Lesser General Public License version 3 for more details
19  * (a copy is included in the LICENSE file that accompanied this code).
20  *
21  * You should have received a copy of the GNU Lesser General Public License
22  * version 3 along with OpenOffice.org.  If not, see
23  * <http://www.openoffice.org/license.html>
24  * for a copy of the LGPLv3 License.
25  *
26  ************************************************************************/
27 
28 // MARKER(update_precomp.py): autogen include statement, do not remove
29 #include "precompiled_framework.hxx"
30 #include <uielement/statusbar.hxx>
31 
32 //_________________________________________________________________________________________________________________
33 //	interface includes
34 //_________________________________________________________________________________________________________________
35 
36 //_________________________________________________________________________________________________________________
37 //	other includes
38 //_________________________________________________________________________________________________________________
39 
40 #include <vcl/svapp.hxx>
41 
42 namespace framework
43 {
44 
45 FrameworkStatusBar::FrameworkStatusBar(
46     Window*           pParent,
47     WinBits           nWinBits ) :
48     StatusBar( pParent, nWinBits ),
49     m_pMgr( NULL ),
50     m_bShow( sal_False ),
51     m_bLock( sal_False )
52 {
53     // set optimal size
54     SetOutputSizePixel( CalcWindowSizePixel() );
55 }
56 
57 FrameworkStatusBar::~FrameworkStatusBar()
58 {
59 }
60 
61 void FrameworkStatusBar::SetStatusBarManager( StatusBarManager* pStatusBarManager )
62 {
63     vos::OGuard aSolarMutexGuard( Application::GetSolarMutex() );
64     m_pMgr = pStatusBarManager;
65 }
66 
67 void FrameworkStatusBar::UserDraw(const UserDrawEvent& rUDEvt)
68 {
69     if ( m_pMgr )
70         m_pMgr->UserDraw( rUDEvt );
71 }
72 
73 void FrameworkStatusBar::Command( const CommandEvent& rEvt )
74 {
75     if ( m_pMgr )
76         m_pMgr->Command( rEvt );
77 }
78 
79 void FrameworkStatusBar::StateChanged( StateChangedType nType )
80 {
81     if ( m_pMgr )
82         m_pMgr->StateChanged( nType );
83 }
84 
85 void FrameworkStatusBar::DataChanged( const DataChangedEvent& rDCEvt )
86 {
87     StatusBar::DataChanged( rDCEvt );
88     if ( m_pMgr )
89         m_pMgr->DataChanged( rDCEvt );
90 }
91 
92 void FrameworkStatusBar::MouseMove( const MouseEvent& rMEvt )
93 {
94     StatusBar::MouseMove( rMEvt );
95     if ( m_pMgr )
96         m_pMgr->MouseMove( rMEvt );
97 }
98 
99 void FrameworkStatusBar::MouseButtonDown( const MouseEvent& rMEvt )
100 {
101     StatusBar::MouseButtonDown( rMEvt );
102     if ( m_pMgr )
103         m_pMgr->MouseButtonDown( rMEvt );
104 }
105 
106 void FrameworkStatusBar::MouseButtonUp( const MouseEvent& rMEvt )
107 {
108     StatusBar::MouseButtonUp( rMEvt );
109     if ( m_pMgr )
110         m_pMgr->MouseButtonUp( rMEvt );
111 }
112 
113 }
114