Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 :
21 : #undef SC_DLLIMPLEMENTATION
22 :
23 :
24 :
25 : //------------------------------------------------------------------
26 :
27 : #define _TPHF_CXX
28 : #include "scitems.hxx"
29 : #include <sfx2/basedlgs.hxx>
30 : #include <svl/style.hxx>
31 : #include <vcl/svapp.hxx>
32 : #include <vcl/msgbox.hxx>
33 :
34 : #include "tphf.hxx"
35 : #include "sc.hrc"
36 : #include "globstr.hrc"
37 : #include "tabvwsh.hxx"
38 : #include "viewdata.hxx"
39 : #include "document.hxx"
40 : #include "hfedtdlg.hxx"
41 : #include "styledlg.hxx"
42 : #include "scresid.hxx"
43 : #include "scuitphfedit.hxx"
44 : #undef _TPHF_CXX
45 :
46 :
47 :
48 : //==================================================================
49 : // class ScHFPage
50 : //==================================================================
51 :
52 0 : ScHFPage::ScHFPage( Window* pParent, sal_uInt16 nResId,
53 : const SfxItemSet& rSet, sal_uInt16 nSetId )
54 :
55 : : SvxHFPage ( pParent, nResId, rSet, nSetId ),
56 : aBtnEdit ( this, ScResId( RID_SCBTN_HFEDIT ) ),
57 0 : aDataSet ( *rSet.GetPool(),
58 : ATTR_PAGE_HEADERLEFT, ATTR_PAGE_FOOTERRIGHT,
59 : ATTR_PAGE, ATTR_PAGE, 0 ),
60 : nPageUsage ( (sal_uInt16)SVX_PAGE_ALL ),
61 0 : pStyleDlg ( NULL )
62 : {
63 0 : SetExchangeSupport();
64 :
65 0 : SfxViewShell* pSh = SfxViewShell::Current();
66 0 : ScTabViewShell* pViewSh = PTR_CAST(ScTabViewShell,pSh);
67 0 : Point aPos( aBackgroundBtn.GetPosPixel() );
68 :
69 : // aBackgroundBtn position not changed anymore
70 :
71 0 : aPos.X() += aBackgroundBtn.GetSizePixel().Width();
72 0 : aPos.X() += LogicToPixel( Size(3,0), MAP_APPFONT ).Width();
73 0 : aBtnEdit.SetPosPixel( aPos );
74 0 : aBtnEdit.Show();
75 :
76 0 : aDataSet.Put( rSet );
77 :
78 0 : if ( pViewSh )
79 : {
80 0 : ScViewData* pViewData = pViewSh->GetViewData();
81 0 : ScDocument* pDoc = pViewData->GetDocument();
82 :
83 0 : aStrPageStyle = pDoc->GetPageStyle( pViewData->GetTabNo() );
84 : }
85 :
86 0 : aBtnEdit.SetClickHdl ( LINK( this, ScHFPage, BtnHdl ) );
87 0 : aTurnOnBox.SetClickHdl ( LINK( this, ScHFPage, TurnOnHdl ) );
88 :
89 0 : if ( nId == SID_ATTR_PAGE_HEADERSET )
90 0 : aBtnEdit.SetHelpId( HID_SC_HEADER_EDIT );
91 : else
92 0 : aBtnEdit.SetHelpId( HID_SC_FOOTER_EDIT );
93 :
94 0 : aBtnEdit.SetAccessibleRelationMemberOf(&aFrm);
95 0 : }
96 :
97 : //------------------------------------------------------------------
98 :
99 0 : ScHFPage::~ScHFPage()
100 : {
101 0 : }
102 :
103 : //------------------------------------------------------------------
104 :
105 0 : void ScHFPage::Reset( const SfxItemSet& rSet )
106 : {
107 0 : SvxHFPage::Reset( rSet );
108 0 : TurnOnHdl( 0 );
109 0 : }
110 :
111 : //------------------------------------------------------------------
112 :
113 0 : sal_Bool ScHFPage::FillItemSet( SfxItemSet& rOutSet )
114 : {
115 0 : sal_Bool bResult = SvxHFPage::FillItemSet( rOutSet );
116 :
117 0 : if ( nId == SID_ATTR_PAGE_HEADERSET )
118 : {
119 0 : rOutSet.Put( aDataSet.Get( ATTR_PAGE_HEADERLEFT ) );
120 0 : rOutSet.Put( aDataSet.Get( ATTR_PAGE_HEADERRIGHT ) );
121 : }
122 : else
123 : {
124 0 : rOutSet.Put( aDataSet.Get( ATTR_PAGE_FOOTERLEFT ) );
125 0 : rOutSet.Put( aDataSet.Get( ATTR_PAGE_FOOTERRIGHT ) );
126 : }
127 :
128 0 : return bResult;
129 : }
130 :
131 : //------------------------------------------------------------------
132 :
133 0 : void ScHFPage::ActivatePage( const SfxItemSet& rSet )
134 : {
135 0 : sal_uInt16 nPageWhich = GetWhich( SID_ATTR_PAGE );
136 : const SvxPageItem& rPageItem = (const SvxPageItem&)
137 0 : rSet.Get(nPageWhich);
138 :
139 0 : nPageUsage = rPageItem.GetPageUsage();
140 :
141 0 : if ( pStyleDlg )
142 0 : aStrPageStyle = pStyleDlg->GetStyleSheet().GetName();
143 :
144 0 : aDataSet.Put( rSet.Get(ATTR_PAGE) );
145 :
146 0 : SvxHFPage::ActivatePage( rSet );
147 0 : }
148 :
149 : //------------------------------------------------------------------
150 :
151 0 : int ScHFPage::DeactivatePage( SfxItemSet* pSetP )
152 : {
153 0 : if ( LEAVE_PAGE == SvxHFPage::DeactivatePage( pSetP ) )
154 0 : if ( pSetP )
155 0 : FillItemSet( *pSetP );
156 :
157 0 : return LEAVE_PAGE;
158 : }
159 :
160 : //------------------------------------------------------------------
161 :
162 0 : void ScHFPage::ActivatePage()
163 : {
164 0 : }
165 :
166 0 : void ScHFPage::DeactivatePage()
167 : {
168 0 : }
169 :
170 : //------------------------------------------------------------------
171 : // Handler:
172 : //------------------------------------------------------------------
173 :
174 0 : IMPL_LINK_NOARG(ScHFPage, TurnOnHdl)
175 : {
176 0 : SvxHFPage::TurnOnHdl( &aTurnOnBox );
177 :
178 0 : if ( aTurnOnBox.IsChecked() )
179 0 : aBtnEdit.Enable();
180 : else
181 0 : aBtnEdit.Disable();
182 :
183 0 : return 0;
184 : }
185 :
186 :
187 : //------------------------------------------------------------------
188 :
189 0 : IMPL_LINK_NOARG(ScHFPage, BtnHdl)
190 : {
191 : // Wenn der Bearbeiten-Dialog direkt aus dem Click-Handler des Buttons
192 : // aufgerufen wird, funktioniert im Bearbeiten-Dialog unter OS/2 das
193 : // GrabFocus nicht (Bug #41805#).
194 : // Mit dem neuen StarView sollte dieser Workaround wieder raus koennen!
195 :
196 0 : Application::PostUserEvent( LINK( this, ScHFPage, HFEditHdl ) );
197 0 : return 0;
198 : }
199 :
200 0 : IMPL_LINK_NOARG(ScHFPage, HFEditHdl)
201 : {
202 0 : SfxViewShell* pViewSh = SfxViewShell::Current();
203 :
204 0 : if ( !pViewSh )
205 : {
206 : OSL_FAIL( "Current ViewShell not found." );
207 0 : return 0;
208 : }
209 :
210 0 : if ( aCntSharedBox.IsEnabled()
211 0 : && !aCntSharedBox.IsChecked() )
212 : {
213 : sal_uInt16 nResId = ( nId == SID_ATTR_PAGE_HEADERSET )
214 : ? RID_SCDLG_HFED_HEADER
215 0 : : RID_SCDLG_HFED_FOOTER;
216 :
217 : ScHFEditDlg* pDlg
218 : = new ScHFEditDlg( pViewSh->GetViewFrame(), this,
219 0 : aDataSet, aStrPageStyle, nResId );
220 :
221 0 : if ( pDlg->Execute() == RET_OK )
222 : {
223 0 : aDataSet.Put( *pDlg->GetOutputItemSet() );
224 : }
225 :
226 0 : delete pDlg;
227 : }
228 : else
229 : {
230 0 : String aText;
231 0 : SfxSingleTabDialog* pDlg = new SfxSingleTabDialog( this, aDataSet, 42 );
232 0 : sal_Bool bRightPage = aCntSharedBox.IsChecked()
233 0 : || ( SVX_PAGE_LEFT != SvxPageUsage(nPageUsage) );
234 :
235 0 : if ( nId == SID_ATTR_PAGE_HEADERSET )
236 : {
237 0 : aText = ScGlobal::GetRscString( STR_PAGEHEADER );
238 0 : if ( bRightPage )
239 0 : pDlg->SetTabPage( ScRightHeaderEditPage::Create( pDlg, aDataSet ) );
240 : else
241 0 : pDlg->SetTabPage( ScLeftHeaderEditPage::Create( pDlg, aDataSet ) );
242 : }
243 : else
244 : {
245 0 : aText = ScGlobal::GetRscString( STR_PAGEFOOTER );
246 0 : if ( bRightPage )
247 0 : pDlg->SetTabPage( ScRightFooterEditPage::Create( pDlg, aDataSet ) );
248 : else
249 0 : pDlg->SetTabPage( ScLeftFooterEditPage::Create( pDlg, aDataSet ) );
250 : }
251 :
252 0 : SvxNumType eNumType = ((const SvxPageItem&)aDataSet.Get(ATTR_PAGE)).GetNumType();
253 0 : ((ScHFEditPage*)pDlg->GetTabPage())->SetNumType(eNumType);
254 :
255 0 : aText.AppendAscii(RTL_CONSTASCII_STRINGPARAM( " (" ));
256 0 : aText += ScGlobal::GetRscString( STR_PAGESTYLE );
257 0 : aText.AppendAscii(RTL_CONSTASCII_STRINGPARAM( ": " ));
258 0 : aText += aStrPageStyle;
259 0 : aText += ')';
260 :
261 0 : pDlg->SetText( aText );
262 :
263 0 : if ( pDlg->Execute() == RET_OK )
264 : {
265 0 : aDataSet.Put( *pDlg->GetOutputItemSet() );
266 : }
267 :
268 0 : delete pDlg;
269 : }
270 :
271 0 : return 0;
272 : }
273 :
274 : //==================================================================
275 : // class ScHeaderPage
276 : //==================================================================
277 :
278 0 : ScHeaderPage::ScHeaderPage( Window* pParent, const SfxItemSet& rSet )
279 0 : : ScHFPage( pParent, RID_SVXPAGE_HEADER, rSet, SID_ATTR_PAGE_HEADERSET )
280 : {
281 0 : }
282 :
283 : //------------------------------------------------------------------
284 :
285 0 : SfxTabPage* ScHeaderPage::Create( Window* pParent, const SfxItemSet& rCoreSet )
286 : {
287 0 : return ( new ScHeaderPage( pParent, rCoreSet ) );
288 : }
289 :
290 : //------------------------------------------------------------------
291 :
292 0 : sal_uInt16* ScHeaderPage::GetRanges()
293 : {
294 0 : return SvxHeaderPage::GetRanges();
295 : }
296 :
297 : //==================================================================
298 : // class ScFooterPage
299 : //==================================================================
300 :
301 0 : ScFooterPage::ScFooterPage( Window* pParent, const SfxItemSet& rSet )
302 0 : : ScHFPage( pParent, RID_SVXPAGE_FOOTER, rSet, SID_ATTR_PAGE_FOOTERSET )
303 : {
304 0 : }
305 :
306 : //------------------------------------------------------------------
307 :
308 0 : SfxTabPage* ScFooterPage::Create( Window* pParent, const SfxItemSet& rCoreSet )
309 : {
310 0 : return ( new ScFooterPage( pParent, rCoreSet ) );
311 : }
312 :
313 : //------------------------------------------------------------------
314 :
315 0 : sal_uInt16* ScFooterPage::GetRanges()
316 : {
317 0 : return SvxHeaderPage::GetRanges();
318 0 : }
319 :
320 :
321 :
322 :
323 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|