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 #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
SvxSelectionModeControl(sal_uInt16 _nSlotId,sal_uInt16 _nId,StatusBar & rStb)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
StateChanged(sal_uInt16,SfxItemState eState,const SfxPoolItem * pState)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
Click()75cdf0e10cSrcweir void SvxSelectionModeControl::Click()
76cdf0e10cSrcweir {
77cdf0e10cSrcweir if ( !GetStatusBar().GetItemText( GetId() ).Len() )
78cdf0e10cSrcweir return;
79cdf0e10cSrcweir nState++;
80cdf0e10cSrcweir if ( nState > 3 )
81cdf0e10cSrcweir nState = 0;
82cdf0e10cSrcweir
83*b7f017aeSmseidel ::com::sun::star::uno::Any a;
84*b7f017aeSmseidel SfxUInt16Item aState( GetSlotId(), nState );
85*b7f017aeSmseidel INetURLObject aObj( m_aCommandURL );
86*b7f017aeSmseidel
87*b7f017aeSmseidel ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > aArgs( 1 );
88*b7f017aeSmseidel aArgs[0].Name = aObj.GetURLPath();
89*b7f017aeSmseidel aState.QueryValue( a );
90*b7f017aeSmseidel aArgs[0].Value = a;
91*b7f017aeSmseidel
92*b7f017aeSmseidel execute( aArgs );
93cdf0e10cSrcweir }
94cdf0e10cSrcweir
95cdf0e10cSrcweir // -----------------------------------------------------------------------
96cdf0e10cSrcweir
Paint(const UserDrawEvent &)97cdf0e10cSrcweir void SvxSelectionModeControl::Paint( const UserDrawEvent& )
98cdf0e10cSrcweir {
99cdf0e10cSrcweir DrawItemText_Impl();
100cdf0e10cSrcweir }
101cdf0e10cSrcweir
102cdf0e10cSrcweir // -----------------------------------------------------------------------
103cdf0e10cSrcweir
DrawItemText_Impl()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
GetDefItemWidth(const StatusBar & rStb)131cdf0e10cSrcweir sal_uIntPtr SvxSelectionModeControl::GetDefItemWidth(const StatusBar& rStb)
132cdf0e10cSrcweir {
133*b7f017aeSmseidel long nWidth1 = rStb.GetTextWidth(SVX_RESSTR(RID_SVXSTR_SELMODE_STD));
134*b7f017aeSmseidel long nWidth2 = rStb.GetTextWidth(SVX_RESSTR(RID_SVXSTR_SELMODE_ER));
135*b7f017aeSmseidel long nWidth3 = rStb.GetTextWidth(SVX_RESSTR(RID_SVXSTR_SELMODE_ERG));
136*b7f017aeSmseidel 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
144*b7f017aeSmseidel if(nWidth1<nWidth4)
145cdf0e10cSrcweir nWidth1=nWidth4;
146cdf0e10cSrcweir
147cdf0e10cSrcweir return nWidth1+PAINT_OFFSET;
148cdf0e10cSrcweir }
149cdf0e10cSrcweir
150*b7f017aeSmseidel /* vim: set noet sw=4 ts=4: */
151