1*efeef26fSAndrew Rist /**************************************************************
2cdf0e10cSrcweir *
3*efeef26fSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
4*efeef26fSAndrew Rist * or more contributor license agreements. See the NOTICE file
5*efeef26fSAndrew Rist * distributed with this work for additional information
6*efeef26fSAndrew Rist * regarding copyright ownership. The ASF licenses this file
7*efeef26fSAndrew Rist * to you under the Apache License, Version 2.0 (the
8*efeef26fSAndrew Rist * "License"); you may not use this file except in compliance
9*efeef26fSAndrew Rist * with the License. You may obtain a copy of the License at
10cdf0e10cSrcweir *
11*efeef26fSAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir *
13*efeef26fSAndrew Rist * Unless required by applicable law or agreed to in writing,
14*efeef26fSAndrew Rist * software distributed under the License is distributed on an
15*efeef26fSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*efeef26fSAndrew Rist * KIND, either express or implied. See the License for the
17*efeef26fSAndrew Rist * specific language governing permissions and limitations
18*efeef26fSAndrew Rist * under the License.
19cdf0e10cSrcweir *
20*efeef26fSAndrew Rist *************************************************************/
21*efeef26fSAndrew Rist
22*efeef26fSAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
25cdf0e10cSrcweir #include "precompiled_sw.hxx"
26cdf0e10cSrcweir
27cdf0e10cSrcweir
28cdf0e10cSrcweir #include "textcontrolcombo.hxx"
29cdf0e10cSrcweir
30cdf0e10cSrcweir
TextControlCombo(Window * _pParent,const ResId & _rResId,Control & _rCtrl,FixedText & _rFTbefore,FixedText & _rFTafter)31cdf0e10cSrcweir TextControlCombo::TextControlCombo( Window* _pParent, const ResId& _rResId,
32cdf0e10cSrcweir Control& _rCtrl, FixedText& _rFTbefore, FixedText& _rFTafter )
33cdf0e10cSrcweir :Window ( _pParent, _rResId )
34cdf0e10cSrcweir ,mrCtrl ( _rCtrl )
35cdf0e10cSrcweir ,mrFTbefore ( _rFTbefore )
36cdf0e10cSrcweir ,mrFTafter ( _rFTafter )
37cdf0e10cSrcweir {
38cdf0e10cSrcweir }
39cdf0e10cSrcweir
~TextControlCombo()40cdf0e10cSrcweir TextControlCombo::~TextControlCombo()
41cdf0e10cSrcweir {
42cdf0e10cSrcweir }
43cdf0e10cSrcweir
Arrange(FixedText & _rFTcomplete,sal_Bool)44cdf0e10cSrcweir void TextControlCombo::Arrange( FixedText& _rFTcomplete, sal_Bool /*bShow*/ )
45cdf0e10cSrcweir {
46cdf0e10cSrcweir Point aBasePos( GetPosPixel() );
47cdf0e10cSrcweir Size aMetricVals( GetSizePixel() );
48cdf0e10cSrcweir
49cdf0e10cSrcweir long nTextHeight = _rFTcomplete.GetSizePixel().Height();
50cdf0e10cSrcweir long nCtrlHeight = mrCtrl.GetSizePixel().Height();
51cdf0e10cSrcweir
52cdf0e10cSrcweir // calc y positions / center vertical
53cdf0e10cSrcweir long nYFT = aBasePos.Y();
54cdf0e10cSrcweir long nYCtrl = nYFT;
55cdf0e10cSrcweir if( nCtrlHeight > nTextHeight )
56cdf0e10cSrcweir nYFT += aMetricVals.Height();
57cdf0e10cSrcweir else
58cdf0e10cSrcweir nYCtrl += aMetricVals.Height();
59cdf0e10cSrcweir
60cdf0e10cSrcweir // separate text parts
61cdf0e10cSrcweir const String aReplStr( RTL_CONSTASCII_STRINGPARAM( "%POSITION_OF_CONTROL" ) );
62cdf0e10cSrcweir String aTxtBefore( _rFTcomplete.GetText() );
63cdf0e10cSrcweir String aTxtAfter;
64cdf0e10cSrcweir xub_StrLen nReplPos = aTxtBefore.Search( aReplStr );
65cdf0e10cSrcweir if( nReplPos != STRING_NOTFOUND )
66cdf0e10cSrcweir {
67cdf0e10cSrcweir xub_StrLen nStrStartAfter = nReplPos + aReplStr.Len();
68cdf0e10cSrcweir aTxtAfter = String( aTxtBefore, nStrStartAfter, aTxtBefore.Len() - nStrStartAfter );
69cdf0e10cSrcweir aTxtBefore.Erase( nReplPos );
70cdf0e10cSrcweir }
71cdf0e10cSrcweir
72cdf0e10cSrcweir // arrange and fill Fixed Texts
73cdf0e10cSrcweir long nX = aBasePos.X();
74cdf0e10cSrcweir long nWidth = GetTextWidth( aTxtBefore );
75cdf0e10cSrcweir
76cdf0e10cSrcweir mrFTbefore.SetText( aTxtBefore );
77cdf0e10cSrcweir mrFTbefore.SetPosSizePixel( nX, nYFT, nWidth, nTextHeight );
78cdf0e10cSrcweir
79cdf0e10cSrcweir nX += nWidth;
80cdf0e10cSrcweir nX += aMetricVals.Width();
81cdf0e10cSrcweir mrCtrl.SetPosPixel( Point( nX, nYCtrl ) );
82cdf0e10cSrcweir
83cdf0e10cSrcweir nX += mrCtrl.GetSizePixel().Width();
84cdf0e10cSrcweir nX += aMetricVals.Width();
85cdf0e10cSrcweir mrFTafter.SetText( aTxtAfter );
86cdf0e10cSrcweir mrFTafter.SetPosSizePixel( nX, nYFT, GetTextWidth( aTxtAfter ), nTextHeight );
87cdf0e10cSrcweir
88cdf0e10cSrcweir _rFTcomplete.Hide();
89cdf0e10cSrcweir
90cdf0e10cSrcweir Show();
91cdf0e10cSrcweir
92cdf0e10cSrcweir Window::Hide();
93cdf0e10cSrcweir }
94cdf0e10cSrcweir
Show(sal_Bool _bVisible,sal_uInt16 _nFlags)95cdf0e10cSrcweir void TextControlCombo::Show( sal_Bool _bVisible, sal_uInt16 _nFlags )
96cdf0e10cSrcweir {
97cdf0e10cSrcweir mrCtrl.Show( _bVisible, _nFlags );
98cdf0e10cSrcweir mrFTbefore.Show( _bVisible, _nFlags );
99cdf0e10cSrcweir mrFTafter.Show( _bVisible, _nFlags );
100cdf0e10cSrcweir }
101cdf0e10cSrcweir
Enable(sal_Bool _bEnable,sal_Bool _bChild)102cdf0e10cSrcweir void TextControlCombo::Enable( sal_Bool _bEnable, sal_Bool _bChild )
103cdf0e10cSrcweir {
104cdf0e10cSrcweir mrCtrl.Enable( _bEnable, _bChild );
105cdf0e10cSrcweir mrFTbefore.Enable( _bEnable, _bChild );
106cdf0e10cSrcweir mrFTafter.Enable( _bEnable, _bChild );
107cdf0e10cSrcweir }
108cdf0e10cSrcweir
109cdf0e10cSrcweir
110