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/intitem.hxx> 33cdf0e10cSrcweir #include <sfx2/dispatch.hxx> 34cdf0e10cSrcweir #include <tools/urlobj.hxx> 35cdf0e10cSrcweir 36cdf0e10cSrcweir #define _SVX_SELCTRL_CXX 37cdf0e10cSrcweir 38cdf0e10cSrcweir #include "svx/selctrl.hxx" 39cdf0e10cSrcweir #include <svx/dialmgr.hxx> 40cdf0e10cSrcweir 41cdf0e10cSrcweir #include <svx/dialogs.hrc> 42cdf0e10cSrcweir 43cdf0e10cSrcweir #define PAINT_OFFSET 5 44cdf0e10cSrcweir 45cdf0e10cSrcweir SFX_IMPL_STATUSBAR_CONTROL(SvxSelectionModeControl, SfxUInt16Item); 46cdf0e10cSrcweir 47cdf0e10cSrcweir // class SvxSelectionModeControl ----------------------------------------- 48cdf0e10cSrcweir 49cdf0e10cSrcweir SvxSelectionModeControl::SvxSelectionModeControl( sal_uInt16 _nSlotId, 50cdf0e10cSrcweir sal_uInt16 _nId, 51cdf0e10cSrcweir StatusBar& rStb ) : 52cdf0e10cSrcweir SfxStatusBarControl( _nSlotId, _nId, rStb ), 53cdf0e10cSrcweir nState( 0 ) 54cdf0e10cSrcweir { 55cdf0e10cSrcweir } 56cdf0e10cSrcweir 57cdf0e10cSrcweir // ----------------------------------------------------------------------- 58cdf0e10cSrcweir 59cdf0e10cSrcweir void SvxSelectionModeControl::StateChanged( sal_uInt16, SfxItemState eState, 60cdf0e10cSrcweir const SfxPoolItem* pState ) 61cdf0e10cSrcweir { 62cdf0e10cSrcweir if ( SFX_ITEM_AVAILABLE != eState ) 63cdf0e10cSrcweir GetStatusBar().SetItemText( GetId(), String() ); 64cdf0e10cSrcweir else 65cdf0e10cSrcweir { 66cdf0e10cSrcweir DBG_ASSERT( pState->ISA( SfxUInt16Item ), "invalid item type" ); 67cdf0e10cSrcweir SfxUInt16Item* pItem = (SfxUInt16Item*)pState; 68cdf0e10cSrcweir nState = pItem->GetValue(); 69cdf0e10cSrcweir DrawItemText_Impl(); 70cdf0e10cSrcweir } 71cdf0e10cSrcweir } 72cdf0e10cSrcweir 73cdf0e10cSrcweir // ----------------------------------------------------------------------- 74cdf0e10cSrcweir 75cdf0e10cSrcweir void SvxSelectionModeControl::Click() 76cdf0e10cSrcweir { 77cdf0e10cSrcweir if ( !GetStatusBar().GetItemText( GetId() ).Len() ) 78cdf0e10cSrcweir return; 79cdf0e10cSrcweir nState++; 80cdf0e10cSrcweir if ( nState > 3 ) 81cdf0e10cSrcweir nState = 0; 82cdf0e10cSrcweir 83cdf0e10cSrcweir ::com::sun::star::uno::Any a; 84cdf0e10cSrcweir SfxUInt16Item aState( GetSlotId(), nState ); 85cdf0e10cSrcweir INetURLObject aObj( m_aCommandURL ); 86cdf0e10cSrcweir 87cdf0e10cSrcweir ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > aArgs( 1 ); 88cdf0e10cSrcweir aArgs[0].Name = aObj.GetURLPath(); 89cdf0e10cSrcweir aState.QueryValue( a ); 90cdf0e10cSrcweir aArgs[0].Value = a; 91cdf0e10cSrcweir 92cdf0e10cSrcweir execute( aArgs ); 93cdf0e10cSrcweir } 94cdf0e10cSrcweir 95cdf0e10cSrcweir // ----------------------------------------------------------------------- 96cdf0e10cSrcweir 97cdf0e10cSrcweir void SvxSelectionModeControl::Paint( const UserDrawEvent& ) 98cdf0e10cSrcweir { 99cdf0e10cSrcweir DrawItemText_Impl(); 100cdf0e10cSrcweir } 101cdf0e10cSrcweir 102cdf0e10cSrcweir // ----------------------------------------------------------------------- 103cdf0e10cSrcweir 104cdf0e10cSrcweir void SvxSelectionModeControl::DrawItemText_Impl() 105cdf0e10cSrcweir { 106cdf0e10cSrcweir String sTxt; 107cdf0e10cSrcweir sal_uInt16 _nId = 0; 108cdf0e10cSrcweir 109cdf0e10cSrcweir switch ( nState ) 110cdf0e10cSrcweir { 111cdf0e10cSrcweir case 0: 112cdf0e10cSrcweir _nId = RID_SVXSTR_SELMODE_STD; 113cdf0e10cSrcweir break; 114cdf0e10cSrcweir case 1: 115cdf0e10cSrcweir _nId = RID_SVXSTR_SELMODE_ER; 116cdf0e10cSrcweir break; 117cdf0e10cSrcweir case 2: 118cdf0e10cSrcweir _nId = RID_SVXSTR_SELMODE_ERG; 119cdf0e10cSrcweir break; 120cdf0e10cSrcweir case 3: 121cdf0e10cSrcweir _nId = RID_SVXSTR_SELMODE_BLK; 122cdf0e10cSrcweir break; 123cdf0e10cSrcweir default: DBG_ERROR( "invalid selection mode!" ); 124cdf0e10cSrcweir } 125cdf0e10cSrcweir 126cdf0e10cSrcweir if ( _nId ) 127cdf0e10cSrcweir sTxt = SVX_RESSTR( _nId ); 128cdf0e10cSrcweir GetStatusBar().SetItemText( GetId(), sTxt ); 129cdf0e10cSrcweir } 130cdf0e10cSrcweir 131cdf0e10cSrcweir sal_uIntPtr SvxSelectionModeControl::GetDefItemWidth(const StatusBar& rStb) 132cdf0e10cSrcweir { 133cdf0e10cSrcweir long nWidth1 = rStb.GetTextWidth(SVX_RESSTR(RID_SVXSTR_SELMODE_STD)); 134cdf0e10cSrcweir long nWidth2 = rStb.GetTextWidth(SVX_RESSTR(RID_SVXSTR_SELMODE_ER)); 135cdf0e10cSrcweir long nWidth3 = rStb.GetTextWidth(SVX_RESSTR(RID_SVXSTR_SELMODE_ERG)); 136cdf0e10cSrcweir long nWidth4 = rStb.GetTextWidth(SVX_RESSTR(RID_SVXSTR_SELMODE_BLK)); 137cdf0e10cSrcweir 138cdf0e10cSrcweir if(nWidth1<nWidth2) 139cdf0e10cSrcweir nWidth1=nWidth2; 140cdf0e10cSrcweir 141cdf0e10cSrcweir if(nWidth1<nWidth3) 142cdf0e10cSrcweir nWidth1=nWidth3; 143cdf0e10cSrcweir 144cdf0e10cSrcweir if(nWidth1<nWidth4) 145cdf0e10cSrcweir nWidth1=nWidth4; 146cdf0e10cSrcweir 147cdf0e10cSrcweir return nWidth1+PAINT_OFFSET; 148cdf0e10cSrcweir } 149cdf0e10cSrcweir 150cdf0e10cSrcweir 151