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 : #include <vcl/wrkwin.hxx>
21 : #include <tools/urlobj.hxx>
22 : #include <vcl/msgbox.hxx>
23 : #include <unotools/pathoptions.hxx>
24 : #include <sfx2/app.hxx>
25 : #include <sfx2/dialoghelper.hxx>
26 : #include <sfx2/filedlghelper.hxx>
27 : #include "com/sun/star/ui/dialogs/TemplateDescription.hpp"
28 :
29 : #include <cuires.hrc>
30 : #include "helpid.hrc"
31 : #include "svx/xattr.hxx"
32 : #include <svx/xtable.hxx>
33 : #include <svx/xpool.hxx>
34 : #include "svx/drawitem.hxx"
35 : #include "cuitabarea.hxx"
36 : #include "defdlgname.hxx"
37 : #include "dlgname.hxx"
38 : #include <svx/svxdlg.hxx>
39 : #include <dialmgr.hxx>
40 : #include <svx/dialmgr.hxx>
41 : #include <svx/dialogs.hrc>
42 : #include "paragrph.hrc"
43 : #include <boost/scoped_ptr.hpp>
44 :
45 : using namespace com::sun::star;
46 :
47 0 : SvxGradientTabPage::SvxGradientTabPage
48 : (
49 : vcl::Window* pParent,
50 : const SfxItemSet& rInAttrs
51 : ) :
52 : SfxTabPage ( pParent, "GradientPage", "cui/ui/gradientpage.ui", &rInAttrs ),
53 :
54 : rOutAttrs ( rInAttrs ),
55 :
56 : pnGradientListState ( 0 ),
57 : pnColorListState ( 0 ),
58 : pPageType ( 0 ),
59 : nDlgType ( 0 ),
60 : pPos ( 0 ),
61 : pbAreaTP ( 0 ),
62 :
63 0 : pXPool ( static_cast<XOutdevItemPool*>( rInAttrs.GetPool() )),
64 : aXFStyleItem ( drawing::FillStyle_GRADIENT ),
65 : aXGradientItem ( OUString(), XGradient( COL_BLACK, COL_WHITE ) ),
66 : aXFillAttr ( pXPool ),
67 0 : rXFSet ( aXFillAttr.GetItemSet() )
68 : {
69 0 : get(m_pLbGradientType, "gradienttypelb");
70 0 : get(m_pFtCenterX, "centerxft");
71 0 : get(m_pMtrCenterX, "centerxmtr");
72 0 : get(m_pFtCenterY, "centeryft");
73 0 : get(m_pMtrCenterY, "centerymtr");
74 0 : get(m_pFtAngle, "angleft");
75 0 : get(m_pMtrAngle, "anglemtr");
76 0 : get(m_pMtrBorder, "bordermtr");
77 0 : get(m_pLbColorFrom, "colorfromlb");
78 0 : get(m_pMtrColorFrom, "colorfrommtr");
79 0 : get(m_pLbColorTo, "colortolb");
80 0 : get(m_pMtrColorTo, "colortomtr");
81 0 : get(m_pLbGradients, "gradientslb");
82 0 : Size aSize = getDrawListBoxOptimalSize(this);
83 0 : m_pLbGradients->set_width_request(aSize.Width());
84 0 : m_pLbGradients->set_height_request(aSize.Height());
85 0 : get(m_pCtlPreview, "previewctl");
86 0 : aSize = getDrawPreviewOptimalSize(this);
87 0 : m_pCtlPreview->set_width_request(aSize.Width());
88 0 : m_pCtlPreview->set_height_request(aSize.Height());
89 0 : get(m_pBtnAdd, "add");
90 0 : get(m_pBtnModify, "modify");
91 0 : get(m_pBtnDelete, "delete");
92 0 : get(m_pBtnLoad, "load");
93 0 : get(m_pBtnSave, "save");
94 :
95 0 : m_pLbGradients->SetAccessibleName(GetText());
96 :
97 :
98 : // this page needs ExchangeSupport
99 0 : SetExchangeSupport();
100 :
101 : // as long as NOT supported by the item
102 :
103 0 : m_pMtrColorTo->SetValue( 100 );
104 0 : m_pMtrColorFrom->SetValue( 100 );
105 :
106 : // setting the output device
107 0 : rXFSet.Put( aXFStyleItem );
108 0 : rXFSet.Put( aXGradientItem );
109 0 : m_pCtlPreview->SetAttributes( aXFillAttr.GetItemSet() );
110 :
111 : // overload the handler
112 : m_pLbGradients->SetSelectHdl(
113 0 : LINK( this, SvxGradientTabPage, ChangeGradientHdl_Impl ) );
114 0 : m_pBtnAdd->SetClickHdl( LINK( this, SvxGradientTabPage, ClickAddHdl_Impl ) );
115 : m_pBtnModify->SetClickHdl(
116 0 : LINK( this, SvxGradientTabPage, ClickModifyHdl_Impl ) );
117 : m_pBtnDelete->SetClickHdl(
118 0 : LINK( this, SvxGradientTabPage, ClickDeleteHdl_Impl ) );
119 :
120 0 : Link aLink = LINK( this, SvxGradientTabPage, ModifiedHdl_Impl );
121 0 : m_pLbGradientType->SetSelectHdl( aLink );
122 0 : m_pMtrCenterX->SetModifyHdl( aLink );
123 0 : m_pMtrCenterY->SetModifyHdl( aLink );
124 0 : m_pMtrAngle->SetModifyHdl( aLink );
125 0 : m_pMtrBorder->SetModifyHdl( aLink );
126 0 : m_pMtrColorFrom->SetModifyHdl( aLink );
127 0 : m_pLbColorFrom->SetSelectHdl( aLink );
128 0 : m_pMtrColorTo->SetModifyHdl( aLink );
129 0 : m_pLbColorTo->SetSelectHdl( aLink );
130 :
131 : m_pBtnLoad->SetClickHdl(
132 0 : LINK( this, SvxGradientTabPage, ClickLoadHdl_Impl ) );
133 : m_pBtnSave->SetClickHdl(
134 0 : LINK( this, SvxGradientTabPage, ClickSaveHdl_Impl ) );
135 :
136 : // #i76307# always paint the preview in LTR, because this is what the document does
137 0 : m_pCtlPreview->EnableRTL( false );
138 :
139 0 : setPreviewsToSamePlace(pParent, this);
140 0 : }
141 :
142 :
143 :
144 0 : void SvxGradientTabPage::Construct()
145 : {
146 0 : m_pLbColorFrom->Fill( pColorList );
147 0 : m_pLbColorTo->CopyEntries( *m_pLbColorFrom );
148 :
149 0 : m_pLbGradients->Fill( pGradientList );
150 0 : }
151 :
152 :
153 :
154 0 : void SvxGradientTabPage::ActivatePage( const SfxItemSet& )
155 : {
156 : sal_Int32 nPos;
157 : sal_Int32 nCount;
158 :
159 0 : if( nDlgType == 0 ) // area dialog
160 : {
161 0 : *pbAreaTP = false;
162 :
163 0 : if( pColorList.is() )
164 : {
165 : // ColorList
166 0 : if( *pnColorListState & CT_CHANGED ||
167 0 : *pnColorListState & CT_MODIFIED )
168 : {
169 0 : if( *pnColorListState & CT_CHANGED )
170 0 : pColorList = static_cast<SvxAreaTabDialog*>( GetParentDialog() )->GetNewColorList();
171 :
172 : // LbColorFrom
173 0 : nPos = m_pLbColorFrom->GetSelectEntryPos();
174 0 : m_pLbColorFrom->Clear();
175 0 : m_pLbColorFrom->Fill( pColorList );
176 0 : nCount = m_pLbColorFrom->GetEntryCount();
177 0 : if( nCount == 0 )
178 : ; // this case should not occur
179 0 : else if( nCount <= nPos )
180 0 : m_pLbColorFrom->SelectEntryPos( 0 );
181 : else
182 0 : m_pLbColorFrom->SelectEntryPos( nPos );
183 :
184 : // LbColorTo
185 0 : nPos = m_pLbColorTo->GetSelectEntryPos();
186 0 : m_pLbColorTo->Clear();
187 0 : m_pLbColorTo->CopyEntries( *m_pLbColorFrom );
188 0 : nCount = m_pLbColorTo->GetEntryCount();
189 0 : if( nCount == 0 )
190 : ; // this case should not occur
191 0 : else if( nCount <= nPos )
192 0 : m_pLbColorTo->SelectEntryPos( 0 );
193 : else
194 0 : m_pLbColorTo->SelectEntryPos( nPos );
195 :
196 0 : ModifiedHdl_Impl( this );
197 : }
198 :
199 : // determining (and possibly cutting) the name and
200 : // displaying it in the GroupBox
201 0 : OUString aString( CUI_RES( RID_SVXSTR_TABLE ) );
202 0 : aString += ": ";
203 0 : INetURLObject aURL( pGradientList->GetPath() );
204 :
205 0 : aURL.Append( pGradientList->GetName() );
206 : DBG_ASSERT( aURL.GetProtocol() != INET_PROT_NOT_VALID, "invalid URL" );
207 :
208 0 : if ( aURL.getBase().getLength() > 18 )
209 : {
210 0 : aString += aURL.getBase().copy( 0, 15 );
211 0 : aString += "...";
212 : }
213 : else
214 0 : aString += aURL.getBase();
215 :
216 0 : if ( *pPageType == PT_GRADIENT && *pPos != LISTBOX_ENTRY_NOTFOUND )
217 : {
218 0 : m_pLbGradients->SelectEntryPos( *pPos );
219 : }
220 : // colors could have been deleted
221 0 : ChangeGradientHdl_Impl( this );
222 :
223 0 : *pPageType = PT_GRADIENT;
224 0 : *pPos = LISTBOX_ENTRY_NOTFOUND;
225 : }
226 : }
227 0 : }
228 :
229 :
230 :
231 0 : int SvxGradientTabPage::DeactivatePage( SfxItemSet* _pSet )
232 : {
233 0 : if( CheckChanges_Impl() == -1L )
234 0 : return KEEP_PAGE;
235 :
236 0 : if( _pSet )
237 0 : FillItemSet( _pSet );
238 :
239 0 : return LEAVE_PAGE;
240 : }
241 :
242 :
243 :
244 0 : long SvxGradientTabPage::CheckChanges_Impl()
245 : {
246 : // is used here in order to NOT lose changes
247 0 : XGradient aTmpGradient( m_pLbColorFrom->GetSelectEntryColor(),
248 0 : m_pLbColorTo->GetSelectEntryColor(),
249 0 : (XGradientStyle) m_pLbGradientType->GetSelectEntryPos(),
250 0 : static_cast<long>(m_pMtrAngle->GetValue() * 10), // should be changed in resource
251 0 : (sal_uInt16) m_pMtrCenterX->GetValue(),
252 0 : (sal_uInt16) m_pMtrCenterY->GetValue(),
253 0 : (sal_uInt16) m_pMtrBorder->GetValue(),
254 0 : (sal_uInt16) m_pMtrColorFrom->GetValue(),
255 0 : (sal_uInt16) m_pMtrColorTo->GetValue() );
256 :
257 0 : sal_Int32 nPos = m_pLbGradients->GetSelectEntryPos();
258 0 : if( nPos != LISTBOX_ENTRY_NOTFOUND )
259 : {
260 0 : XGradient aGradient = pGradientList->GetGradient( nPos )->GetGradient();
261 :
262 0 : if( !( aTmpGradient == aGradient ) )
263 : {
264 0 : ResMgr& rMgr = CUI_MGR();
265 0 : Image aWarningBoxImage = WarningBox::GetStandardImage();
266 0 : boost::scoped_ptr<SvxMessDialog> aMessDlg(new SvxMessDialog(GetParentDialog(),
267 0 : SVX_RESSTR( RID_SVXSTR_GRADIENT ),
268 0 : CUI_RESSTR( RID_SVXSTR_ASK_CHANGE_GRADIENT ),
269 0 : &aWarningBoxImage ));
270 : DBG_ASSERT(aMessDlg, "Dialog creation failed!");
271 : aMessDlg->SetButtonText( MESS_BTN_1,
272 0 : OUString( ResId( RID_SVXSTR_CHANGE, rMgr ) ) );
273 : aMessDlg->SetButtonText( MESS_BTN_2,
274 0 : OUString( ResId( RID_SVXSTR_ADD, rMgr ) ) );
275 :
276 0 : short nRet = aMessDlg->Execute();
277 :
278 0 : switch( nRet )
279 : {
280 : case RET_BTN_1:
281 : {
282 0 : ClickModifyHdl_Impl( this );
283 0 : aGradient = pGradientList->GetGradient( nPos )->GetGradient();
284 : }
285 0 : break;
286 :
287 : case RET_BTN_2:
288 : {
289 0 : ClickAddHdl_Impl( this );
290 0 : nPos = m_pLbGradients->GetSelectEntryPos();
291 0 : aGradient = pGradientList->GetGradient( nPos )->GetGradient();
292 : }
293 0 : break;
294 :
295 : case RET_CANCEL:
296 0 : break;
297 0 : }
298 : }
299 : }
300 0 : nPos = m_pLbGradients->GetSelectEntryPos();
301 0 : if( nPos != LISTBOX_ENTRY_NOTFOUND )
302 : {
303 0 : *pPos = nPos;
304 : }
305 0 : return 0L;
306 : }
307 :
308 :
309 :
310 0 : bool SvxGradientTabPage::FillItemSet( SfxItemSet* rSet )
311 : {
312 0 : if( nDlgType == 0 && *pPageType == PT_GRADIENT && *pbAreaTP == false )
313 : {
314 : // CheckChanges(); <-- duplicate inquiry ?
315 :
316 0 : boost::scoped_ptr<XGradient> pXGradient;
317 0 : OUString aString;
318 0 : sal_Int32 nPos = m_pLbGradients->GetSelectEntryPos();
319 0 : if( nPos != LISTBOX_ENTRY_NOTFOUND )
320 : {
321 0 : pXGradient.reset(new XGradient( pGradientList->GetGradient( nPos )->GetGradient() ));
322 0 : aString = m_pLbGradients->GetSelectEntry();
323 :
324 : }
325 : else
326 : // gradient was passed (unidentified)
327 : {
328 0 : pXGradient.reset(new XGradient( m_pLbColorFrom->GetSelectEntryColor(),
329 0 : m_pLbColorTo->GetSelectEntryColor(),
330 0 : (XGradientStyle) m_pLbGradientType->GetSelectEntryPos(),
331 0 : static_cast<long>(m_pMtrAngle->GetValue() * 10), // should be changed in resource
332 0 : (sal_uInt16) m_pMtrCenterX->GetValue(),
333 0 : (sal_uInt16) m_pMtrCenterY->GetValue(),
334 0 : (sal_uInt16) m_pMtrBorder->GetValue(),
335 0 : (sal_uInt16) m_pMtrColorFrom->GetValue(),
336 0 : (sal_uInt16) m_pMtrColorTo->GetValue() ));
337 : }
338 : DBG_ASSERT( pXGradient, "XGradient konnte nicht erzeugt werden" );
339 0 : rSet->Put( XFillStyleItem( drawing::FillStyle_GRADIENT ) );
340 0 : rSet->Put( XFillGradientItem( aString, *pXGradient ) );
341 : }
342 0 : return true;
343 : }
344 :
345 :
346 :
347 0 : void SvxGradientTabPage::Reset( const SfxItemSet* )
348 : {
349 : // m_pLbGradients->SelectEntryPos( 0 );
350 0 : ChangeGradientHdl_Impl( this );
351 :
352 : // determine state of the buttons
353 0 : if( pGradientList->Count() )
354 : {
355 0 : m_pBtnModify->Enable();
356 0 : m_pBtnDelete->Enable();
357 0 : m_pBtnSave->Enable();
358 : }
359 : else
360 : {
361 0 : m_pBtnModify->Disable();
362 0 : m_pBtnDelete->Disable();
363 0 : m_pBtnSave->Disable();
364 : }
365 0 : }
366 :
367 :
368 :
369 0 : SfxTabPage* SvxGradientTabPage::Create( vcl::Window* pWindow,
370 : const SfxItemSet* rOutAttrs )
371 : {
372 0 : return new SvxGradientTabPage( pWindow, *rOutAttrs );
373 : }
374 :
375 :
376 :
377 0 : IMPL_LINK( SvxGradientTabPage, ModifiedHdl_Impl, void *, pControl )
378 : {
379 0 : XGradientStyle eXGS = (XGradientStyle) m_pLbGradientType->GetSelectEntryPos();
380 :
381 0 : XGradient aXGradient( m_pLbColorFrom->GetSelectEntryColor(),
382 0 : m_pLbColorTo->GetSelectEntryColor(),
383 : eXGS,
384 0 : static_cast<long>(m_pMtrAngle->GetValue() * 10), // should be changed in resource
385 0 : (sal_uInt16) m_pMtrCenterX->GetValue(),
386 0 : (sal_uInt16) m_pMtrCenterY->GetValue(),
387 0 : (sal_uInt16) m_pMtrBorder->GetValue(),
388 0 : (sal_uInt16) m_pMtrColorFrom->GetValue(),
389 0 : (sal_uInt16) m_pMtrColorTo->GetValue() );
390 :
391 : // enable/disable controls
392 0 : if( pControl == m_pLbGradientType || pControl == this )
393 0 : SetControlState_Impl( eXGS );
394 :
395 : // displaying in XOutDev
396 0 : rXFSet.Put( XFillGradientItem( OUString(), aXGradient ) );
397 0 : m_pCtlPreview->SetAttributes( aXFillAttr.GetItemSet() );
398 :
399 0 : m_pCtlPreview->Invalidate();
400 :
401 0 : return 0L;
402 : }
403 :
404 :
405 :
406 0 : IMPL_LINK_NOARG(SvxGradientTabPage, ClickAddHdl_Impl)
407 : {
408 0 : OUString aNewName( SVX_RES( RID_SVXSTR_GRADIENT ) );
409 0 : OUString aDesc( CUI_RES( RID_SVXSTR_DESC_GRADIENT ) );
410 0 : OUString aName;
411 :
412 0 : long nCount = pGradientList->Count();
413 0 : long j = 1;
414 0 : bool bDifferent = false;
415 :
416 0 : while( !bDifferent )
417 : {
418 0 : aName = aNewName;
419 0 : aName += " ";
420 0 : aName += OUString::number( j++ );
421 0 : bDifferent = true;
422 :
423 0 : for( long i = 0; i < nCount && bDifferent; i++ )
424 0 : if( aName == pGradientList->GetGradient( i )->GetName() )
425 0 : bDifferent = false;
426 : }
427 :
428 0 : SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create();
429 : DBG_ASSERT(pFact, "Dialog creation failed!");
430 0 : boost::scoped_ptr<AbstractSvxNameDialog> pDlg(pFact->CreateSvxNameDialog( GetParentDialog(), aName, aDesc ));
431 : DBG_ASSERT(pDlg, "Dialog creation failed!");
432 0 : boost::scoped_ptr<MessageDialog> pWarnBox;
433 0 : sal_uInt16 nError = 1;
434 :
435 0 : while( pDlg->Execute() == RET_OK )
436 : {
437 0 : pDlg->GetName( aName );
438 :
439 0 : bDifferent = true;
440 :
441 0 : for( long i = 0; i < nCount && bDifferent; i++ )
442 0 : if( aName == pGradientList->GetGradient( i )->GetName() )
443 0 : bDifferent = false;
444 :
445 0 : if( bDifferent )
446 : {
447 0 : nError = 0;
448 0 : break;
449 : }
450 :
451 0 : if( !pWarnBox )
452 : {
453 0 : pWarnBox.reset(new MessageDialog( GetParentDialog()
454 : ,"DuplicateNameDialog"
455 0 : ,"cui/ui/queryduplicatedialog.ui"));
456 : }
457 :
458 0 : if( pWarnBox->Execute() != RET_OK )
459 0 : break;
460 : }
461 0 : pDlg.reset();
462 0 : pWarnBox.reset();
463 :
464 0 : if( !nError )
465 : {
466 0 : XGradient aXGradient( m_pLbColorFrom->GetSelectEntryColor(),
467 0 : m_pLbColorTo->GetSelectEntryColor(),
468 0 : (XGradientStyle) m_pLbGradientType->GetSelectEntryPos(),
469 0 : static_cast<long>(m_pMtrAngle->GetValue() * 10), // should be changed in resource
470 0 : (sal_uInt16) m_pMtrCenterX->GetValue(),
471 0 : (sal_uInt16) m_pMtrCenterY->GetValue(),
472 0 : (sal_uInt16) m_pMtrBorder->GetValue(),
473 0 : (sal_uInt16) m_pMtrColorFrom->GetValue(),
474 0 : (sal_uInt16) m_pMtrColorTo->GetValue() );
475 0 : XGradientEntry* pEntry = new XGradientEntry( aXGradient, aName );
476 :
477 0 : pGradientList->Insert( pEntry, nCount );
478 :
479 0 : m_pLbGradients->Append( *pEntry, pGradientList->GetUiBitmap( nCount ) );
480 :
481 0 : m_pLbGradients->SelectEntryPos( m_pLbGradients->GetEntryCount() - 1 );
482 :
483 : #ifdef WNT
484 : // hack: #31355# W.P.
485 : Rectangle aRect( m_pLbGradients->GetPosPixel(), m_pLbGradients->GetSizePixel() );
486 : if( sal_True ) { // ??? overlapped with pDlg
487 : // and srolling
488 : Invalidate( aRect );
489 : }
490 : #endif
491 :
492 0 : *pnGradientListState |= CT_MODIFIED;
493 :
494 0 : ChangeGradientHdl_Impl( this );
495 : }
496 :
497 : // determine button state
498 0 : if( pGradientList->Count() )
499 : {
500 0 : m_pBtnModify->Enable();
501 0 : m_pBtnDelete->Enable();
502 0 : m_pBtnSave->Enable();
503 : }
504 0 : return 0L;
505 : }
506 :
507 :
508 :
509 0 : IMPL_LINK_NOARG(SvxGradientTabPage, ClickModifyHdl_Impl)
510 : {
511 0 : sal_Int32 nPos = m_pLbGradients->GetSelectEntryPos();
512 :
513 0 : if ( nPos != LISTBOX_ENTRY_NOTFOUND )
514 : {
515 0 : OUString aDesc( CUI_RES( RID_SVXSTR_DESC_GRADIENT ) );
516 0 : OUString aName( pGradientList->GetGradient( nPos )->GetName() );
517 0 : OUString aOldName = aName;
518 :
519 0 : SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create();
520 : DBG_ASSERT(pFact, "Dialog creation failed!");
521 0 : boost::scoped_ptr<AbstractSvxNameDialog> pDlg(pFact->CreateSvxNameDialog( GetParentDialog(), aName, aDesc ));
522 : DBG_ASSERT(pDlg, "Dialog creation failed!");
523 :
524 0 : long nCount = pGradientList->Count();
525 0 : bool bDifferent = false;
526 0 : bool bLoop = true;
527 :
528 0 : while( bLoop && pDlg->Execute() == RET_OK )
529 : {
530 0 : pDlg->GetName( aName );
531 0 : bDifferent = true;
532 :
533 0 : for( long i = 0; i < nCount && bDifferent; i++ )
534 : {
535 0 : if( aName == pGradientList->GetGradient( i )->GetName() &&
536 0 : aName != aOldName )
537 0 : bDifferent = false;
538 : }
539 :
540 0 : if( bDifferent )
541 : {
542 0 : bLoop = false;
543 0 : XGradient aXGradient( m_pLbColorFrom->GetSelectEntryColor(),
544 0 : m_pLbColorTo->GetSelectEntryColor(),
545 0 : (XGradientStyle) m_pLbGradientType->GetSelectEntryPos(),
546 0 : static_cast<long>(m_pMtrAngle->GetValue() * 10), // should be changed in resource
547 0 : (sal_uInt16) m_pMtrCenterX->GetValue(),
548 0 : (sal_uInt16) m_pMtrCenterY->GetValue(),
549 0 : (sal_uInt16) m_pMtrBorder->GetValue(),
550 0 : (sal_uInt16) m_pMtrColorFrom->GetValue(),
551 0 : (sal_uInt16) m_pMtrColorTo->GetValue() );
552 :
553 0 : XGradientEntry* pEntry = new XGradientEntry( aXGradient, aName );
554 :
555 0 : delete pGradientList->Replace( pEntry, nPos );
556 :
557 0 : m_pLbGradients->Modify( *pEntry, nPos, pGradientList->GetUiBitmap( nPos ) );
558 :
559 0 : m_pLbGradients->SelectEntryPos( nPos );
560 :
561 0 : *pnGradientListState |= CT_MODIFIED;
562 : }
563 : else
564 : {
565 0 : MessageDialog aBox( GetParentDialog()
566 : ,"DuplicateNameDialog"
567 0 : ,"cui/ui/queryduplicatedialog.ui");
568 0 : aBox.Execute();
569 : }
570 :
571 0 : }
572 : }
573 0 : return 0L;
574 : }
575 :
576 :
577 :
578 0 : IMPL_LINK_NOARG(SvxGradientTabPage, ClickDeleteHdl_Impl)
579 : {
580 0 : sal_Int32 nPos = m_pLbGradients->GetSelectEntryPos();
581 :
582 0 : if( nPos != LISTBOX_ENTRY_NOTFOUND )
583 : {
584 0 : MessageDialog aQueryBox( GetParentDialog(),"AskDelGradientDialog","cui/ui/querydeletegradientdialog.ui");
585 :
586 0 : if ( aQueryBox.Execute() == RET_YES )
587 : {
588 0 : delete pGradientList->Remove( nPos );
589 0 : m_pLbGradients->RemoveEntry( nPos );
590 0 : m_pLbGradients->SelectEntryPos( 0 );
591 :
592 0 : m_pCtlPreview->Invalidate();
593 :
594 0 : ChangeGradientHdl_Impl( this );
595 :
596 0 : *pnGradientListState |= CT_MODIFIED;
597 0 : }
598 : }
599 : // determine button state
600 0 : if( !pGradientList->Count() )
601 : {
602 0 : m_pBtnModify->Disable();
603 0 : m_pBtnDelete->Disable();
604 0 : m_pBtnSave->Disable();
605 : }
606 0 : return 0L;
607 : }
608 :
609 :
610 :
611 0 : IMPL_LINK_NOARG(SvxGradientTabPage, ClickLoadHdl_Impl)
612 : {
613 0 : ResMgr& rMgr = CUI_MGR();
614 0 : sal_uInt16 nReturn = RET_YES;
615 :
616 0 : if ( *pnGradientListState & CT_MODIFIED )
617 : {
618 0 : nReturn = MessageDialog( GetParentDialog()
619 : ,"AskSaveList"
620 0 : ,"cui/ui/querysavelistdialog.ui").Execute();
621 :
622 0 : if ( nReturn == RET_YES )
623 0 : pGradientList->Save();
624 : }
625 :
626 0 : if ( nReturn != RET_CANCEL )
627 : {
628 0 : ::sfx2::FileDialogHelper aDlg( com::sun::star::ui::dialogs::TemplateDescription::FILEOPEN_SIMPLE, 0 );
629 0 : OUString aStrFilterType( "*.sog" );
630 0 : aDlg.AddFilter( aStrFilterType, aStrFilterType );
631 0 : INetURLObject aFile( SvtPathOptions().GetPalettePath() );
632 0 : aDlg.SetDisplayDirectory( aFile.GetMainURL( INetURLObject::NO_DECODE ) );
633 :
634 0 : if( aDlg.Execute() == ERRCODE_NONE )
635 : {
636 0 : EnterWait();
637 :
638 0 : INetURLObject aURL( aDlg.GetPath() );
639 0 : INetURLObject aPathURL( aURL );
640 :
641 0 : aPathURL.removeSegment();
642 0 : aPathURL.removeFinalSlash();
643 :
644 : // save list
645 : XGradientListRef pGrdList = XPropertyList::AsGradientList(
646 : XPropertyList::CreatePropertyList(
647 : XGRADIENT_LIST,
648 0 : aPathURL.GetMainURL(INetURLObject::NO_DECODE), ""));
649 0 : pGrdList->SetName( aURL.getName() );
650 :
651 0 : if ( pGrdList->Load() )
652 : {
653 0 : pGradientList = pGrdList;
654 0 : static_cast<SvxAreaTabDialog*>( GetParentDialog() )->
655 0 : SetNewGradientList( pGradientList );
656 :
657 0 : m_pLbGradients->Clear();
658 0 : m_pLbGradients->Fill( pGradientList );
659 0 : Reset( &rOutAttrs );
660 :
661 0 : pGradientList->SetName( aURL.getName() );
662 :
663 : // determining (possibly cutting) the name
664 : // and displaying it in the GroupBox
665 0 : OUString aString( ResId( RID_SVXSTR_TABLE, rMgr ) );
666 0 : aString += ": ";
667 :
668 0 : if ( aURL.getBase().getLength() > 18 )
669 : {
670 0 : aString += aURL.getBase().copy( 0, 15 );
671 0 : aString += "...";
672 : }
673 : else
674 0 : aString += aURL.getBase();
675 :
676 0 : *pnGradientListState |= CT_CHANGED;
677 0 : *pnGradientListState &= ~CT_MODIFIED;
678 0 : LeaveWait();
679 : }
680 : else
681 : {
682 0 : LeaveWait();
683 0 : MessageDialog( GetParentDialog()
684 : ,"NoLoadedFileDialog"
685 0 : ,"cui/ui/querynoloadedfiledialog.ui").Execute();
686 0 : }
687 0 : }
688 : }
689 :
690 : // determine button state
691 0 : if( pGradientList->Count() )
692 : {
693 0 : m_pBtnModify->Enable();
694 0 : m_pBtnDelete->Enable();
695 0 : m_pBtnSave->Enable();
696 : }
697 : else
698 : {
699 0 : m_pBtnModify->Disable();
700 0 : m_pBtnDelete->Disable();
701 0 : m_pBtnSave->Disable();
702 : }
703 0 : return 0L;
704 : }
705 :
706 :
707 :
708 0 : IMPL_LINK_NOARG(SvxGradientTabPage, ClickSaveHdl_Impl)
709 : {
710 : ::sfx2::FileDialogHelper aDlg(
711 0 : com::sun::star::ui::dialogs::TemplateDescription::FILESAVE_SIMPLE, 0 );
712 0 : OUString aStrFilterType( "*.sog" );
713 0 : aDlg.AddFilter( aStrFilterType, aStrFilterType );
714 :
715 0 : INetURLObject aFile( SvtPathOptions().GetPalettePath() );
716 : DBG_ASSERT( aFile.GetProtocol() != INET_PROT_NOT_VALID, "invalid URL" );
717 :
718 0 : if( !pGradientList->GetName().isEmpty() )
719 : {
720 0 : aFile.Append( pGradientList->GetName() );
721 :
722 0 : if( aFile.getExtension().isEmpty() )
723 0 : aFile.SetExtension( OUString("sog") );
724 : }
725 :
726 0 : aDlg.SetDisplayDirectory( aFile.GetMainURL( INetURLObject::NO_DECODE ) );
727 0 : if ( aDlg.Execute() == ERRCODE_NONE )
728 : {
729 0 : INetURLObject aURL( aDlg.GetPath() );
730 0 : INetURLObject aPathURL( aURL );
731 :
732 0 : aPathURL.removeSegment();
733 0 : aPathURL.removeFinalSlash();
734 :
735 0 : pGradientList->SetName( aURL.getName() );
736 0 : pGradientList->SetPath( aPathURL.GetMainURL( INetURLObject::NO_DECODE ) );
737 :
738 0 : if( pGradientList->Save() )
739 : {
740 : // determining (possibly cutting) the name
741 : // and displaying it in the GroupBox
742 0 : OUString aString( CUI_RES( RID_SVXSTR_TABLE ) );
743 0 : aString += ": ";
744 :
745 0 : if ( aURL.getBase().getLength() > 18 )
746 : {
747 0 : aString += aURL.getBase().copy( 0, 15 );
748 0 : aString += "...";
749 : }
750 : else
751 0 : aString += aURL.getBase();
752 :
753 0 : *pnGradientListState |= CT_SAVED;
754 0 : *pnGradientListState &= ~CT_MODIFIED;
755 : }
756 : else
757 : {
758 0 : MessageDialog( GetParentDialog()
759 : ,"NoSaveFileDialog"
760 0 : ,"cui/ui/querynosavefiledialog.ui").Execute();
761 0 : }
762 : }
763 :
764 0 : return 0L;
765 : }
766 :
767 :
768 :
769 0 : IMPL_LINK_NOARG(SvxGradientTabPage, ChangeGradientHdl_Impl)
770 : {
771 0 : boost::scoped_ptr<XGradient> pGradient;
772 0 : int nPos = m_pLbGradients->GetSelectEntryPos();
773 :
774 0 : if( nPos != LISTBOX_ENTRY_NOTFOUND )
775 0 : pGradient.reset(new XGradient( ( (XGradientEntry*) pGradientList->GetGradient( nPos ) )->GetGradient() ));
776 : else
777 : {
778 0 : const SfxPoolItem* pPoolItem = NULL;
779 0 : if( SfxItemState::SET == rOutAttrs.GetItemState( GetWhich( XATTR_FILLSTYLE ), true, &pPoolItem ) )
780 : {
781 0 : if( ( drawing::FillStyle_GRADIENT == (drawing::FillStyle) static_cast<const XFillStyleItem*>( pPoolItem )->GetValue() ) &&
782 0 : ( SfxItemState::SET == rOutAttrs.GetItemState( GetWhich( XATTR_FILLGRADIENT ), true, &pPoolItem ) ) )
783 : {
784 0 : pGradient.reset(new XGradient( static_cast<const XFillGradientItem*>( pPoolItem )->GetGradientValue() ));
785 : }
786 : }
787 0 : if( !pGradient )
788 : {
789 0 : m_pLbGradients->SelectEntryPos( 0 );
790 0 : nPos = m_pLbGradients->GetSelectEntryPos();
791 0 : if( nPos != LISTBOX_ENTRY_NOTFOUND )
792 0 : pGradient.reset(new XGradient( ( (XGradientEntry*) pGradientList->GetGradient( nPos ) )->GetGradient() ));
793 : }
794 : }
795 :
796 0 : if( pGradient )
797 : {
798 0 : XGradientStyle eXGS = pGradient->GetGradientStyle();
799 :
800 : m_pLbGradientType->SelectEntryPos(
801 0 : sal::static_int_cast< sal_Int32 >( eXGS ) );
802 : // if the entry is not in the listbox,
803 : // colors are added temporarily
804 0 : m_pLbColorFrom->SetNoSelection();
805 0 : m_pLbColorFrom->SelectEntry( pGradient->GetStartColor() );
806 :
807 0 : if ( m_pLbColorFrom->GetSelectEntryCount() == 0 )
808 : {
809 0 : m_pLbColorFrom->InsertEntry( pGradient->GetStartColor(),
810 0 : OUString() );
811 0 : m_pLbColorFrom->SelectEntry( pGradient->GetStartColor() );
812 : }
813 0 : m_pLbColorTo->SetNoSelection();
814 0 : m_pLbColorTo->SelectEntry( pGradient->GetEndColor() );
815 :
816 0 : if ( m_pLbColorTo->GetSelectEntryCount() == 0 )
817 : {
818 0 : m_pLbColorTo->InsertEntry( pGradient->GetEndColor(), OUString() );
819 0 : m_pLbColorTo->SelectEntry( pGradient->GetEndColor() );
820 : }
821 :
822 0 : m_pMtrAngle->SetValue( pGradient->GetAngle() / 10 ); // should be changed in resource
823 0 : m_pMtrBorder->SetValue( pGradient->GetBorder() );
824 0 : m_pMtrCenterX->SetValue( pGradient->GetXOffset() );
825 0 : m_pMtrCenterY->SetValue( pGradient->GetYOffset() );
826 0 : m_pMtrColorFrom->SetValue( pGradient->GetStartIntens() );
827 0 : m_pMtrColorTo->SetValue( pGradient->GetEndIntens() );
828 :
829 : // disable/enable controls
830 0 : SetControlState_Impl( eXGS );
831 :
832 : // fill ItemSet and pass it on to aCtlPreview
833 0 : rXFSet.Put( XFillGradientItem( OUString(), *pGradient ) );
834 0 : m_pCtlPreview->SetAttributes( aXFillAttr.GetItemSet() );
835 :
836 0 : m_pCtlPreview->Invalidate();
837 : }
838 0 : return 0L;
839 : }
840 :
841 :
842 :
843 0 : void SvxGradientTabPage::SetControlState_Impl( XGradientStyle eXGS )
844 : {
845 0 : switch( eXGS )
846 : {
847 : case XGRAD_LINEAR:
848 : case XGRAD_AXIAL:
849 0 : m_pFtCenterX->Disable();
850 0 : m_pMtrCenterX->Disable();
851 0 : m_pFtCenterY->Disable();
852 0 : m_pMtrCenterY->Disable();
853 0 : m_pFtAngle->Enable();
854 0 : m_pMtrAngle->Enable();
855 0 : break;
856 :
857 : case XGRAD_RADIAL:
858 0 : m_pFtCenterX->Enable();
859 0 : m_pMtrCenterX->Enable();
860 0 : m_pFtCenterY->Enable();
861 0 : m_pMtrCenterY->Enable();
862 0 : m_pFtAngle->Disable();
863 0 : m_pMtrAngle->Disable();
864 0 : break;
865 :
866 : case XGRAD_ELLIPTICAL:
867 0 : m_pFtCenterX->Enable();
868 0 : m_pMtrCenterX->Enable();
869 0 : m_pFtCenterY->Enable();
870 0 : m_pMtrCenterY->Enable();
871 0 : m_pFtAngle->Enable();
872 0 : m_pMtrAngle->Enable();
873 0 : break;
874 :
875 : case XGRAD_SQUARE:
876 : case XGRAD_RECT:
877 0 : m_pFtCenterX->Enable();
878 0 : m_pMtrCenterX->Enable();
879 0 : m_pFtCenterY->Enable();
880 0 : m_pMtrCenterY->Enable();
881 0 : m_pFtAngle->Enable();
882 0 : m_pMtrAngle->Enable();
883 0 : break;
884 : }
885 0 : }
886 :
887 :
888 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|