xref: /aoo42x/main/svx/source/stbctrls/modctrl.cxx (revision b7f017ae)
1f6e50924SAndrew Rist /**************************************************************
2*b7f017aeSmseidel  *
3f6e50924SAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4f6e50924SAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5f6e50924SAndrew Rist  * distributed with this work for additional information
6f6e50924SAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7f6e50924SAndrew Rist  * to you under the Apache License, Version 2.0 (the
8f6e50924SAndrew Rist  * "License"); you may not use this file except in compliance
9f6e50924SAndrew Rist  * with the License.  You may obtain a copy of the License at
10*b7f017aeSmseidel  *
11f6e50924SAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*b7f017aeSmseidel  *
13f6e50924SAndrew Rist  * Unless required by applicable law or agreed to in writing,
14f6e50924SAndrew Rist  * software distributed under the License is distributed on an
15f6e50924SAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16f6e50924SAndrew Rist  * KIND, either express or implied.  See the License for the
17f6e50924SAndrew Rist  * specific language governing permissions and limitations
18f6e50924SAndrew Rist  * under the License.
19*b7f017aeSmseidel  *
20f6e50924SAndrew Rist  *************************************************************/
21f6e50924SAndrew Rist 
22f6e50924SAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
25cdf0e10cSrcweir #include "precompiled_svx.hxx"
26cdf0e10cSrcweir 
27cdf0e10cSrcweir // include ---------------------------------------------------------------
28cdf0e10cSrcweir 
29cdf0e10cSrcweir #ifndef _STATUS_HXX //autogen
30cdf0e10cSrcweir #include <vcl/status.hxx>
31cdf0e10cSrcweir #endif
32cdf0e10cSrcweir #include <svl/eitem.hxx>
33cdf0e10cSrcweir #include <sfx2/app.hxx>
34cdf0e10cSrcweir 
35cdf0e10cSrcweir #define _SVX_MODCTRL_CXX
36cdf0e10cSrcweir 
37cdf0e10cSrcweir #include <svx/dialogs.hrc>
38cdf0e10cSrcweir 
39cdf0e10cSrcweir #include "svx/modctrl.hxx"
40cdf0e10cSrcweir #include <svx/dialmgr.hxx>
41cdf0e10cSrcweir 
42cdf0e10cSrcweir SFX_IMPL_STATUSBAR_CONTROL(SvxModifyControl, SfxBoolItem);
43cdf0e10cSrcweir 
44cdf0e10cSrcweir // class SvxModifyControl ------------------------------------------------
45cdf0e10cSrcweir 
SvxModifyControl(sal_uInt16 _nSlotId,sal_uInt16 _nId,StatusBar & rStb)46cdf0e10cSrcweir SvxModifyControl::SvxModifyControl( sal_uInt16 _nSlotId,
47*b7f017aeSmseidel 									sal_uInt16 _nId,
48cdf0e10cSrcweir 									StatusBar& rStb ) :
49cdf0e10cSrcweir 
50cdf0e10cSrcweir 	SfxStatusBarControl( _nSlotId, _nId, rStb ),
51cdf0e10cSrcweir 	bState( sal_True )
52cdf0e10cSrcweir {
53cdf0e10cSrcweir }
54cdf0e10cSrcweir 
55cdf0e10cSrcweir // -----------------------------------------------------------------------
56cdf0e10cSrcweir 
StateChanged(sal_uInt16,SfxItemState eState,const SfxPoolItem * pState)57cdf0e10cSrcweir void SvxModifyControl::StateChanged( sal_uInt16, SfxItemState eState,
58cdf0e10cSrcweir 									 const SfxPoolItem* pState )
59cdf0e10cSrcweir {
60cdf0e10cSrcweir 	if ( SFX_ITEM_AVAILABLE != eState )
61cdf0e10cSrcweir 		GetStatusBar().SetItemText( GetId(), String() );
62cdf0e10cSrcweir 	else
63cdf0e10cSrcweir 	{
64cdf0e10cSrcweir 		DBG_ASSERT( pState->ISA( SfxBoolItem ), "invalid item type" );
65cdf0e10cSrcweir 		SfxBoolItem* pItem = (SfxBoolItem*)pState;
66cdf0e10cSrcweir 		bState = pItem->GetValue();
67cdf0e10cSrcweir 		DrawItemText_Impl();
68cdf0e10cSrcweir 	}
69cdf0e10cSrcweir }
70cdf0e10cSrcweir 
71cdf0e10cSrcweir // -----------------------------------------------------------------------
72cdf0e10cSrcweir 
Paint(const UserDrawEvent &)73cdf0e10cSrcweir void SvxModifyControl::Paint( const UserDrawEvent& )
74cdf0e10cSrcweir {
75cdf0e10cSrcweir 	DrawItemText_Impl();
76cdf0e10cSrcweir }
77cdf0e10cSrcweir 
78cdf0e10cSrcweir // -----------------------------------------------------------------------
79cdf0e10cSrcweir 
DrawItemText_Impl()80cdf0e10cSrcweir void SvxModifyControl::DrawItemText_Impl()
81cdf0e10cSrcweir {
82cdf0e10cSrcweir 	String sMode;
83cdf0e10cSrcweir 
84cdf0e10cSrcweir 	if ( bState )
85cdf0e10cSrcweir 		sMode = '*';
86cdf0e10cSrcweir 	GetStatusBar().SetItemText( GetId(), sMode );
87cdf0e10cSrcweir }
88cdf0e10cSrcweir 
GetDefItemWidth(const StatusBar & rStb)89cdf0e10cSrcweir sal_uIntPtr SvxModifyControl::GetDefItemWidth(const StatusBar& rStb)
90cdf0e10cSrcweir {
91cdf0e10cSrcweir 	return rStb.GetTextWidth(String::CreateFromAscii("XX"));
92cdf0e10cSrcweir }
93cdf0e10cSrcweir 
94*b7f017aeSmseidel /* vim: set noet sw=4 ts=4: */
95