1*f6e50924SAndrew Rist /**************************************************************
2cdf0e10cSrcweir *
3*f6e50924SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
4*f6e50924SAndrew Rist * or more contributor license agreements. See the NOTICE file
5*f6e50924SAndrew Rist * distributed with this work for additional information
6*f6e50924SAndrew Rist * regarding copyright ownership. The ASF licenses this file
7*f6e50924SAndrew Rist * to you under the Apache License, Version 2.0 (the
8*f6e50924SAndrew Rist * "License"); you may not use this file except in compliance
9*f6e50924SAndrew Rist * with the License. You may obtain a copy of the License at
10*f6e50924SAndrew Rist *
11*f6e50924SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0
12*f6e50924SAndrew Rist *
13*f6e50924SAndrew Rist * Unless required by applicable law or agreed to in writing,
14*f6e50924SAndrew Rist * software distributed under the License is distributed on an
15*f6e50924SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*f6e50924SAndrew Rist * KIND, either express or implied. See the License for the
17*f6e50924SAndrew Rist * specific language governing permissions and limitations
18*f6e50924SAndrew Rist * under the License.
19*f6e50924SAndrew Rist *
20*f6e50924SAndrew Rist *************************************************************/
21*f6e50924SAndrew Rist
22*f6e50924SAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
25cdf0e10cSrcweir #include "precompiled_svx.hxx"
26cdf0e10cSrcweir
27cdf0e10cSrcweir // include ---------------------------------------------------------------
28cdf0e10cSrcweir #include <tools/shl.hxx>
29cdf0e10cSrcweir #ifndef _STATUS_HXX //autogen
30cdf0e10cSrcweir #include <vcl/status.hxx>
31cdf0e10cSrcweir #endif
32cdf0e10cSrcweir #include <svl/eitem.hxx>
33cdf0e10cSrcweir #include <sfx2/app.hxx>
34cdf0e10cSrcweir #include <sfx2/dispatch.hxx>
35cdf0e10cSrcweir
36cdf0e10cSrcweir #define _SVX_INSCTRL_CXX
37cdf0e10cSrcweir
38cdf0e10cSrcweir #include <svx/dialogs.hrc>
39cdf0e10cSrcweir
40cdf0e10cSrcweir #include "svx/insctrl.hxx"
41cdf0e10cSrcweir #include <svx/dialmgr.hxx>
42cdf0e10cSrcweir
43cdf0e10cSrcweir #define PAINT_OFFSET 5
44cdf0e10cSrcweir
45cdf0e10cSrcweir SFX_IMPL_STATUSBAR_CONTROL(SvxInsertStatusBarControl, SfxBoolItem);
46cdf0e10cSrcweir
47cdf0e10cSrcweir // class SvxInsertStatusBarControl ---------------------------------------
48cdf0e10cSrcweir
SvxInsertStatusBarControl(sal_uInt16 _nSlotId,sal_uInt16 _nId,StatusBar & rStb)49cdf0e10cSrcweir SvxInsertStatusBarControl::SvxInsertStatusBarControl( sal_uInt16 _nSlotId,
50cdf0e10cSrcweir sal_uInt16 _nId,
51cdf0e10cSrcweir StatusBar& rStb ) :
52cdf0e10cSrcweir
53cdf0e10cSrcweir SfxStatusBarControl( _nSlotId, _nId, rStb ),
54cdf0e10cSrcweir bInsert( sal_True )
55cdf0e10cSrcweir {
56cdf0e10cSrcweir }
57cdf0e10cSrcweir
58cdf0e10cSrcweir // -----------------------------------------------------------------------
59cdf0e10cSrcweir
~SvxInsertStatusBarControl()60cdf0e10cSrcweir SvxInsertStatusBarControl::~SvxInsertStatusBarControl()
61cdf0e10cSrcweir {
62cdf0e10cSrcweir }
63cdf0e10cSrcweir
64cdf0e10cSrcweir // -----------------------------------------------------------------------
65cdf0e10cSrcweir
StateChanged(sal_uInt16,SfxItemState eState,const SfxPoolItem * pState)66cdf0e10cSrcweir void SvxInsertStatusBarControl::StateChanged( sal_uInt16 , SfxItemState eState,
67cdf0e10cSrcweir const SfxPoolItem* pState )
68cdf0e10cSrcweir {
69cdf0e10cSrcweir if ( SFX_ITEM_AVAILABLE != eState )
70cdf0e10cSrcweir GetStatusBar().SetItemText( GetId(), String() );
71cdf0e10cSrcweir else
72cdf0e10cSrcweir {
73cdf0e10cSrcweir DBG_ASSERT( pState->ISA( SfxBoolItem ), "invalid item type" );
74cdf0e10cSrcweir SfxBoolItem* pItem = (SfxBoolItem*)pState;
75cdf0e10cSrcweir bInsert = pItem->GetValue();
76cdf0e10cSrcweir DrawItemText_Impl();
77cdf0e10cSrcweir }
78cdf0e10cSrcweir }
79cdf0e10cSrcweir
80cdf0e10cSrcweir // -----------------------------------------------------------------------
81cdf0e10cSrcweir
Click()82cdf0e10cSrcweir void SvxInsertStatusBarControl::Click()
83cdf0e10cSrcweir {
84cdf0e10cSrcweir if ( !GetStatusBar().GetItemText( GetId() ).Len() )
85cdf0e10cSrcweir return;
86cdf0e10cSrcweir bInsert = !bInsert;
87cdf0e10cSrcweir SfxBoolItem aIns( GetSlotId(), bInsert );
88cdf0e10cSrcweir
89cdf0e10cSrcweir ::com::sun::star::uno::Any a;
90cdf0e10cSrcweir ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > aArgs( 1 );
91cdf0e10cSrcweir aArgs[0].Name = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "InsertMode" ));
92cdf0e10cSrcweir aIns.QueryValue( a );
93cdf0e10cSrcweir aArgs[0].Value = a;
94cdf0e10cSrcweir
95cdf0e10cSrcweir execute( aArgs );
96cdf0e10cSrcweir }
97cdf0e10cSrcweir
98cdf0e10cSrcweir // -----------------------------------------------------------------------
99cdf0e10cSrcweir
Paint(const UserDrawEvent &)100cdf0e10cSrcweir void SvxInsertStatusBarControl::Paint( const UserDrawEvent& )
101cdf0e10cSrcweir {
102cdf0e10cSrcweir DrawItemText_Impl();
103cdf0e10cSrcweir }
104cdf0e10cSrcweir
105cdf0e10cSrcweir // -----------------------------------------------------------------------
106cdf0e10cSrcweir
DrawItemText_Impl()107cdf0e10cSrcweir void SvxInsertStatusBarControl::DrawItemText_Impl()
108cdf0e10cSrcweir {
109cdf0e10cSrcweir sal_uInt16 _nId = RID_SVXSTR_OVERWRITE_TEXT;
110cdf0e10cSrcweir
111cdf0e10cSrcweir if ( bInsert )
112cdf0e10cSrcweir _nId = RID_SVXSTR_INSERT_TEXT;
113cdf0e10cSrcweir GetStatusBar().SetItemText( GetId(), SVX_RESSTR( _nId ) );
114cdf0e10cSrcweir }
115cdf0e10cSrcweir
GetDefItemWidth(const StatusBar & rStb)116cdf0e10cSrcweir sal_uIntPtr SvxInsertStatusBarControl::GetDefItemWidth(const StatusBar& rStb)
117cdf0e10cSrcweir {
118cdf0e10cSrcweir long nWidth1 = rStb.GetTextWidth(SVX_RESSTR(RID_SVXSTR_OVERWRITE_TEXT));
119cdf0e10cSrcweir long nWidth2 = rStb.GetTextWidth(SVX_RESSTR(RID_SVXSTR_INSERT_TEXT));
120cdf0e10cSrcweir
121cdf0e10cSrcweir if(nWidth1<nWidth2)
122cdf0e10cSrcweir nWidth1=nWidth2;
123cdf0e10cSrcweir
124cdf0e10cSrcweir return nWidth1+PAINT_OFFSET;
125cdf0e10cSrcweir }
126cdf0e10cSrcweir
127cdf0e10cSrcweir
128