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 : // set handler
112 0 : m_pLbGradients->SetSelectHdl(
113 0 : LINK( this, SvxGradientTabPage, ChangeGradientHdl_Impl ) );
114 0 : m_pBtnAdd->SetClickHdl( LINK( this, SvxGradientTabPage, ClickAddHdl_Impl ) );
115 0 : m_pBtnModify->SetClickHdl(
116 0 : LINK( this, SvxGradientTabPage, ClickModifyHdl_Impl ) );
117 0 : 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 0 : m_pBtnLoad->SetClickHdl(
132 0 : LINK( this, SvxGradientTabPage, ClickLoadHdl_Impl ) );
133 0 : 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 0 : SvxGradientTabPage::~SvxGradientTabPage()
143 : {
144 0 : disposeOnce();
145 0 : }
146 :
147 0 : void SvxGradientTabPage::dispose()
148 : {
149 0 : m_pLbGradientType.clear();
150 0 : m_pFtCenterX.clear();
151 0 : m_pMtrCenterX.clear();
152 0 : m_pFtCenterY.clear();
153 0 : m_pMtrCenterY.clear();
154 0 : m_pFtAngle.clear();
155 0 : m_pMtrAngle.clear();
156 0 : m_pMtrBorder.clear();
157 0 : m_pLbColorFrom.clear();
158 0 : m_pMtrColorFrom.clear();
159 0 : m_pLbColorTo.clear();
160 0 : m_pMtrColorTo.clear();
161 0 : m_pLbGradients.clear();
162 0 : m_pCtlPreview.clear();
163 0 : m_pBtnAdd.clear();
164 0 : m_pBtnModify.clear();
165 0 : m_pBtnDelete.clear();
166 0 : m_pBtnLoad.clear();
167 0 : m_pBtnSave.clear();
168 0 : SfxTabPage::dispose();
169 0 : }
170 :
171 :
172 0 : void SvxGradientTabPage::Construct()
173 : {
174 0 : m_pLbColorFrom->Fill( pColorList );
175 0 : m_pLbColorTo->CopyEntries( *m_pLbColorFrom );
176 :
177 0 : m_pLbGradients->Fill( pGradientList );
178 0 : }
179 :
180 :
181 :
182 0 : void SvxGradientTabPage::ActivatePage( const SfxItemSet& )
183 : {
184 : sal_Int32 nPos;
185 : sal_Int32 nCount;
186 :
187 0 : if( nDlgType == 0 ) // area dialog
188 : {
189 0 : *pbAreaTP = false;
190 :
191 0 : if( pColorList.is() )
192 : {
193 : // ColorList
194 0 : if( *pnColorListState & ChangeType::CHANGED ||
195 0 : *pnColorListState & ChangeType::MODIFIED )
196 : {
197 0 : if( *pnColorListState & ChangeType::CHANGED )
198 0 : pColorList = static_cast<SvxAreaTabDialog*>( GetParentDialog() )->GetNewColorList();
199 :
200 : // LbColorFrom
201 0 : nPos = m_pLbColorFrom->GetSelectEntryPos();
202 0 : m_pLbColorFrom->Clear();
203 0 : m_pLbColorFrom->Fill( pColorList );
204 0 : nCount = m_pLbColorFrom->GetEntryCount();
205 0 : if( nCount == 0 )
206 : ; // this case should not occur
207 0 : else if( nCount <= nPos )
208 0 : m_pLbColorFrom->SelectEntryPos( 0 );
209 : else
210 0 : m_pLbColorFrom->SelectEntryPos( nPos );
211 :
212 : // LbColorTo
213 0 : nPos = m_pLbColorTo->GetSelectEntryPos();
214 0 : m_pLbColorTo->Clear();
215 0 : m_pLbColorTo->CopyEntries( *m_pLbColorFrom );
216 0 : nCount = m_pLbColorTo->GetEntryCount();
217 0 : if( nCount == 0 )
218 : ; // this case should not occur
219 0 : else if( nCount <= nPos )
220 0 : m_pLbColorTo->SelectEntryPos( 0 );
221 : else
222 0 : m_pLbColorTo->SelectEntryPos( nPos );
223 :
224 0 : ModifiedHdl_Impl( this );
225 : }
226 :
227 : // determining (and possibly cutting) the name and
228 : // displaying it in the GroupBox
229 0 : OUString aString( CUI_RES( RID_SVXSTR_TABLE ) );
230 0 : aString += ": ";
231 0 : INetURLObject aURL( pGradientList->GetPath() );
232 :
233 0 : aURL.Append( pGradientList->GetName() );
234 : DBG_ASSERT( aURL.GetProtocol() != INetProtocol::NotValid, "invalid URL" );
235 :
236 0 : if ( aURL.getBase().getLength() > 18 )
237 : {
238 0 : aString += aURL.getBase().copy( 0, 15 );
239 0 : aString += "...";
240 : }
241 : else
242 0 : aString += aURL.getBase();
243 :
244 0 : if ( *pPageType == PT_GRADIENT && *pPos != LISTBOX_ENTRY_NOTFOUND )
245 : {
246 0 : m_pLbGradients->SelectEntryPos( *pPos );
247 : }
248 : // colors could have been deleted
249 0 : ChangeGradientHdl_Impl( this );
250 :
251 0 : *pPageType = PT_GRADIENT;
252 0 : *pPos = LISTBOX_ENTRY_NOTFOUND;
253 : }
254 : }
255 0 : }
256 :
257 :
258 :
259 0 : SfxTabPage::sfxpg SvxGradientTabPage::DeactivatePage( SfxItemSet* _pSet )
260 : {
261 0 : if( CheckChanges_Impl() == -1L )
262 0 : return KEEP_PAGE;
263 :
264 0 : if( _pSet )
265 0 : FillItemSet( _pSet );
266 :
267 0 : return LEAVE_PAGE;
268 : }
269 :
270 :
271 :
272 0 : long SvxGradientTabPage::CheckChanges_Impl()
273 : {
274 : // is used here in order to NOT lose changes
275 0 : XGradient aTmpGradient( m_pLbColorFrom->GetSelectEntryColor(),
276 0 : m_pLbColorTo->GetSelectEntryColor(),
277 0 : (css::awt::GradientStyle) m_pLbGradientType->GetSelectEntryPos(),
278 0 : static_cast<long>(m_pMtrAngle->GetValue() * 10), // should be changed in resource
279 0 : (sal_uInt16) m_pMtrCenterX->GetValue(),
280 0 : (sal_uInt16) m_pMtrCenterY->GetValue(),
281 0 : (sal_uInt16) m_pMtrBorder->GetValue(),
282 0 : (sal_uInt16) m_pMtrColorFrom->GetValue(),
283 0 : (sal_uInt16) m_pMtrColorTo->GetValue() );
284 :
285 0 : sal_Int32 nPos = m_pLbGradients->GetSelectEntryPos();
286 0 : if( nPos != LISTBOX_ENTRY_NOTFOUND )
287 : {
288 0 : XGradient aGradient = pGradientList->GetGradient( nPos )->GetGradient();
289 :
290 0 : if( !( aTmpGradient == aGradient ) )
291 : {
292 0 : ResMgr& rMgr = CUI_MGR();
293 0 : Image aWarningBoxImage = WarningBox::GetStandardImage();
294 0 : ScopedVclPtrInstance<SvxMessDialog> aMessDlg( GetParentDialog(),
295 0 : SVX_RESSTR( RID_SVXSTR_GRADIENT ),
296 0 : CUI_RESSTR( RID_SVXSTR_ASK_CHANGE_GRADIENT ),
297 0 : &aWarningBoxImage );
298 : DBG_ASSERT(aMessDlg, "Dialog creation failed!");
299 : aMessDlg->SetButtonText( MESS_BTN_1,
300 0 : OUString( ResId( RID_SVXSTR_CHANGE, rMgr ) ) );
301 : aMessDlg->SetButtonText( MESS_BTN_2,
302 0 : OUString( ResId( RID_SVXSTR_ADD, rMgr ) ) );
303 :
304 0 : short nRet = aMessDlg->Execute();
305 :
306 0 : switch( nRet )
307 : {
308 : case RET_BTN_1:
309 : {
310 0 : ClickModifyHdl_Impl( this );
311 0 : aGradient = pGradientList->GetGradient( nPos )->GetGradient();
312 : }
313 0 : break;
314 :
315 : case RET_BTN_2:
316 : {
317 0 : ClickAddHdl_Impl( this );
318 0 : nPos = m_pLbGradients->GetSelectEntryPos();
319 0 : aGradient = pGradientList->GetGradient( nPos )->GetGradient();
320 : }
321 0 : break;
322 :
323 : case RET_CANCEL:
324 0 : break;
325 0 : }
326 : }
327 : }
328 0 : nPos = m_pLbGradients->GetSelectEntryPos();
329 0 : if( nPos != LISTBOX_ENTRY_NOTFOUND )
330 : {
331 0 : *pPos = nPos;
332 : }
333 0 : return 0L;
334 : }
335 :
336 :
337 :
338 0 : bool SvxGradientTabPage::FillItemSet( SfxItemSet* rSet )
339 : {
340 0 : if( nDlgType == 0 && *pPageType == PT_GRADIENT && !*pbAreaTP )
341 : {
342 : // CheckChanges(); <-- duplicate inquiry ?
343 :
344 0 : boost::scoped_ptr<XGradient> pXGradient;
345 0 : OUString aString;
346 0 : sal_Int32 nPos = m_pLbGradients->GetSelectEntryPos();
347 0 : if( nPos != LISTBOX_ENTRY_NOTFOUND )
348 : {
349 0 : pXGradient.reset(new XGradient( pGradientList->GetGradient( nPos )->GetGradient() ));
350 0 : aString = m_pLbGradients->GetSelectEntry();
351 :
352 : }
353 : else
354 : // gradient was passed (unidentified)
355 : {
356 0 : pXGradient.reset(new XGradient( m_pLbColorFrom->GetSelectEntryColor(),
357 0 : m_pLbColorTo->GetSelectEntryColor(),
358 0 : (css::awt::GradientStyle) m_pLbGradientType->GetSelectEntryPos(),
359 0 : static_cast<long>(m_pMtrAngle->GetValue() * 10), // should be changed in resource
360 0 : (sal_uInt16) m_pMtrCenterX->GetValue(),
361 0 : (sal_uInt16) m_pMtrCenterY->GetValue(),
362 0 : (sal_uInt16) m_pMtrBorder->GetValue(),
363 0 : (sal_uInt16) m_pMtrColorFrom->GetValue(),
364 0 : (sal_uInt16) m_pMtrColorTo->GetValue() ));
365 : }
366 : DBG_ASSERT( pXGradient, "XGradient konnte nicht erzeugt werden" );
367 0 : rSet->Put( XFillStyleItem( drawing::FillStyle_GRADIENT ) );
368 0 : rSet->Put( XFillGradientItem( aString, *pXGradient ) );
369 : }
370 0 : return true;
371 : }
372 :
373 :
374 :
375 0 : void SvxGradientTabPage::Reset( const SfxItemSet* )
376 : {
377 : // m_pLbGradients->SelectEntryPos( 0 );
378 0 : ChangeGradientHdl_Impl( this );
379 :
380 : // determine state of the buttons
381 0 : if( pGradientList->Count() )
382 : {
383 0 : m_pBtnModify->Enable();
384 0 : m_pBtnDelete->Enable();
385 0 : m_pBtnSave->Enable();
386 : }
387 : else
388 : {
389 0 : m_pBtnModify->Disable();
390 0 : m_pBtnDelete->Disable();
391 0 : m_pBtnSave->Disable();
392 : }
393 0 : }
394 :
395 :
396 :
397 0 : VclPtr<SfxTabPage> SvxGradientTabPage::Create( vcl::Window* pWindow,
398 : const SfxItemSet* rOutAttrs )
399 : {
400 0 : return VclPtr<SvxGradientTabPage>::Create( pWindow, *rOutAttrs );
401 : }
402 :
403 :
404 :
405 0 : IMPL_LINK( SvxGradientTabPage, ModifiedHdl_Impl, void *, pControl )
406 : {
407 0 : css::awt::GradientStyle eXGS = (css::awt::GradientStyle) m_pLbGradientType->GetSelectEntryPos();
408 :
409 0 : XGradient aXGradient( m_pLbColorFrom->GetSelectEntryColor(),
410 0 : m_pLbColorTo->GetSelectEntryColor(),
411 : eXGS,
412 0 : static_cast<long>(m_pMtrAngle->GetValue() * 10), // should be changed in resource
413 0 : (sal_uInt16) m_pMtrCenterX->GetValue(),
414 0 : (sal_uInt16) m_pMtrCenterY->GetValue(),
415 0 : (sal_uInt16) m_pMtrBorder->GetValue(),
416 0 : (sal_uInt16) m_pMtrColorFrom->GetValue(),
417 0 : (sal_uInt16) m_pMtrColorTo->GetValue() );
418 :
419 : // enable/disable controls
420 0 : if( pControl == m_pLbGradientType || pControl == this )
421 0 : SetControlState_Impl( eXGS );
422 :
423 : // displaying in XOutDev
424 0 : rXFSet.Put( XFillGradientItem( OUString(), aXGradient ) );
425 0 : m_pCtlPreview->SetAttributes( aXFillAttr.GetItemSet() );
426 :
427 0 : m_pCtlPreview->Invalidate();
428 :
429 0 : return 0L;
430 : }
431 :
432 :
433 :
434 0 : IMPL_LINK_NOARG(SvxGradientTabPage, ClickAddHdl_Impl)
435 : {
436 0 : OUString aNewName( SVX_RES( RID_SVXSTR_GRADIENT ) );
437 0 : OUString aDesc( CUI_RES( RID_SVXSTR_DESC_GRADIENT ) );
438 0 : OUString aName;
439 :
440 0 : long nCount = pGradientList->Count();
441 0 : long j = 1;
442 0 : bool bDifferent = false;
443 :
444 0 : while( !bDifferent )
445 : {
446 0 : aName = aNewName;
447 0 : aName += " ";
448 0 : aName += OUString::number( j++ );
449 0 : bDifferent = true;
450 :
451 0 : for( long i = 0; i < nCount && bDifferent; i++ )
452 0 : if( aName == pGradientList->GetGradient( i )->GetName() )
453 0 : bDifferent = false;
454 : }
455 :
456 0 : SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create();
457 0 : boost::scoped_ptr<AbstractSvxNameDialog> pDlg(pFact->CreateSvxNameDialog( GetParentDialog(), aName, aDesc ));
458 0 : ScopedVclPtr<MessageDialog> pWarnBox;
459 0 : sal_uInt16 nError = 1;
460 :
461 0 : while (pDlg->Execute() == RET_OK)
462 : {
463 0 : pDlg->GetName( aName );
464 :
465 0 : bDifferent = true;
466 :
467 0 : for (long i = 0; i < nCount && bDifferent; ++i)
468 : {
469 0 : if( aName == pGradientList->GetGradient( i )->GetName() )
470 0 : bDifferent = false;
471 : }
472 :
473 0 : if (bDifferent)
474 : {
475 0 : nError = 0;
476 0 : break;
477 : }
478 :
479 0 : if( !pWarnBox )
480 : {
481 0 : pWarnBox.reset(VclPtr<MessageDialog>::Create( GetParentDialog()
482 : ,"DuplicateNameDialog"
483 0 : ,"cui/ui/queryduplicatedialog.ui"));
484 : }
485 :
486 0 : if( pWarnBox->Execute() != RET_OK )
487 0 : break;
488 : }
489 0 : pDlg.reset();
490 0 : pWarnBox.reset();
491 :
492 0 : if( !nError )
493 : {
494 0 : XGradient aXGradient( m_pLbColorFrom->GetSelectEntryColor(),
495 0 : m_pLbColorTo->GetSelectEntryColor(),
496 0 : (css::awt::GradientStyle) m_pLbGradientType->GetSelectEntryPos(),
497 0 : static_cast<long>(m_pMtrAngle->GetValue() * 10), // should be changed in resource
498 0 : (sal_uInt16) m_pMtrCenterX->GetValue(),
499 0 : (sal_uInt16) m_pMtrCenterY->GetValue(),
500 0 : (sal_uInt16) m_pMtrBorder->GetValue(),
501 0 : (sal_uInt16) m_pMtrColorFrom->GetValue(),
502 0 : (sal_uInt16) m_pMtrColorTo->GetValue() );
503 0 : XGradientEntry* pEntry = new XGradientEntry( aXGradient, aName );
504 :
505 0 : pGradientList->Insert( pEntry, nCount );
506 :
507 0 : m_pLbGradients->Append( *pEntry, pGradientList->GetUiBitmap( nCount ) );
508 :
509 0 : m_pLbGradients->SelectEntryPos( m_pLbGradients->GetEntryCount() - 1 );
510 :
511 : #ifdef WNT
512 : // hack: #31355# W.P.
513 : Rectangle aRect( m_pLbGradients->GetPosPixel(), m_pLbGradients->GetSizePixel() );
514 : if( sal_True ) { // ??? overlapped with pDlg
515 : // and srolling
516 : Invalidate( aRect );
517 : }
518 : #endif
519 :
520 0 : *pnGradientListState |= ChangeType::MODIFIED;
521 :
522 0 : ChangeGradientHdl_Impl( this );
523 : }
524 :
525 : // determine button state
526 0 : if( pGradientList->Count() )
527 : {
528 0 : m_pBtnModify->Enable();
529 0 : m_pBtnDelete->Enable();
530 0 : m_pBtnSave->Enable();
531 : }
532 0 : return 0L;
533 : }
534 :
535 :
536 :
537 0 : IMPL_LINK_NOARG(SvxGradientTabPage, ClickModifyHdl_Impl)
538 : {
539 0 : sal_Int32 nPos = m_pLbGradients->GetSelectEntryPos();
540 :
541 0 : if ( nPos != LISTBOX_ENTRY_NOTFOUND )
542 : {
543 0 : OUString aDesc( CUI_RES( RID_SVXSTR_DESC_GRADIENT ) );
544 0 : OUString aName( pGradientList->GetGradient( nPos )->GetName() );
545 0 : OUString aOldName = aName;
546 :
547 0 : SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create();
548 : DBG_ASSERT(pFact, "Dialog creation failed!");
549 0 : boost::scoped_ptr<AbstractSvxNameDialog> pDlg(pFact->CreateSvxNameDialog( GetParentDialog(), aName, aDesc ));
550 : DBG_ASSERT(pDlg, "Dialog creation failed!");
551 :
552 0 : long nCount = pGradientList->Count();
553 0 : bool bLoop = true;
554 :
555 0 : while( bLoop && pDlg->Execute() == RET_OK )
556 : {
557 0 : pDlg->GetName( aName );
558 0 : bool bDifferent = true;
559 :
560 0 : for( long i = 0; i < nCount && bDifferent; i++ )
561 : {
562 0 : if( aName == pGradientList->GetGradient( i )->GetName() &&
563 0 : aName != aOldName )
564 0 : bDifferent = false;
565 : }
566 :
567 0 : if( bDifferent )
568 : {
569 0 : bLoop = false;
570 0 : XGradient aXGradient( m_pLbColorFrom->GetSelectEntryColor(),
571 0 : m_pLbColorTo->GetSelectEntryColor(),
572 0 : (css::awt::GradientStyle) m_pLbGradientType->GetSelectEntryPos(),
573 0 : static_cast<long>(m_pMtrAngle->GetValue() * 10), // should be changed in resource
574 0 : (sal_uInt16) m_pMtrCenterX->GetValue(),
575 0 : (sal_uInt16) m_pMtrCenterY->GetValue(),
576 0 : (sal_uInt16) m_pMtrBorder->GetValue(),
577 0 : (sal_uInt16) m_pMtrColorFrom->GetValue(),
578 0 : (sal_uInt16) m_pMtrColorTo->GetValue() );
579 :
580 0 : XGradientEntry* pEntry = new XGradientEntry( aXGradient, aName );
581 :
582 0 : delete pGradientList->Replace( pEntry, nPos );
583 :
584 0 : m_pLbGradients->Modify( *pEntry, nPos, pGradientList->GetUiBitmap( nPos ) );
585 :
586 0 : m_pLbGradients->SelectEntryPos( nPos );
587 :
588 0 : *pnGradientListState |= ChangeType::MODIFIED;
589 : }
590 : else
591 : {
592 0 : ScopedVclPtrInstance<MessageDialog> aBox( GetParentDialog()
593 : ,"DuplicateNameDialog"
594 0 : ,"cui/ui/queryduplicatedialog.ui" );
595 0 : aBox->Execute();
596 : }
597 :
598 0 : }
599 : }
600 0 : return 0L;
601 : }
602 :
603 :
604 :
605 0 : IMPL_LINK_NOARG(SvxGradientTabPage, ClickDeleteHdl_Impl)
606 : {
607 0 : sal_Int32 nPos = m_pLbGradients->GetSelectEntryPos();
608 :
609 0 : if( nPos != LISTBOX_ENTRY_NOTFOUND )
610 : {
611 0 : ScopedVclPtrInstance< MessageDialog > aQueryBox( GetParentDialog(),"AskDelGradientDialog","cui/ui/querydeletegradientdialog.ui");
612 :
613 0 : if ( aQueryBox->Execute() == RET_YES )
614 : {
615 0 : delete pGradientList->Remove( nPos );
616 0 : m_pLbGradients->RemoveEntry( nPos );
617 0 : m_pLbGradients->SelectEntryPos( 0 );
618 :
619 0 : m_pCtlPreview->Invalidate();
620 :
621 0 : ChangeGradientHdl_Impl( this );
622 :
623 0 : *pnGradientListState |= ChangeType::MODIFIED;
624 0 : }
625 : }
626 : // determine button state
627 0 : if( !pGradientList->Count() )
628 : {
629 0 : m_pBtnModify->Disable();
630 0 : m_pBtnDelete->Disable();
631 0 : m_pBtnSave->Disable();
632 : }
633 0 : return 0L;
634 : }
635 :
636 :
637 :
638 0 : IMPL_LINK_NOARG(SvxGradientTabPage, ClickLoadHdl_Impl)
639 : {
640 0 : ResMgr& rMgr = CUI_MGR();
641 0 : sal_uInt16 nReturn = RET_YES;
642 :
643 0 : if ( *pnGradientListState & ChangeType::MODIFIED )
644 : {
645 0 : nReturn = ScopedVclPtrInstance<MessageDialog>::Create( GetParentDialog()
646 : ,"AskSaveList"
647 0 : ,"cui/ui/querysavelistdialog.ui")->Execute();
648 :
649 0 : if ( nReturn == RET_YES )
650 0 : pGradientList->Save();
651 : }
652 :
653 0 : if ( nReturn != RET_CANCEL )
654 : {
655 0 : ::sfx2::FileDialogHelper aDlg( com::sun::star::ui::dialogs::TemplateDescription::FILEOPEN_SIMPLE, 0 );
656 0 : OUString aStrFilterType( "*.sog" );
657 0 : aDlg.AddFilter( aStrFilterType, aStrFilterType );
658 0 : OUString aPalettePath(SvtPathOptions().GetPalettePath());
659 0 : OUString aLastDir;
660 0 : sal_Int32 nIndex = 0;
661 0 : do
662 : {
663 0 : aLastDir = aPalettePath.getToken(0, ';', nIndex);
664 : }
665 0 : while (nIndex >= 0);
666 :
667 0 : INetURLObject aFile(aLastDir);
668 0 : aDlg.SetDisplayDirectory( aFile.GetMainURL( INetURLObject::NO_DECODE ) );
669 :
670 0 : if( aDlg.Execute() == ERRCODE_NONE )
671 : {
672 0 : EnterWait();
673 :
674 0 : INetURLObject aURL( aDlg.GetPath() );
675 0 : INetURLObject aPathURL( aURL );
676 :
677 0 : aPathURL.removeSegment();
678 0 : aPathURL.removeFinalSlash();
679 :
680 : // save list
681 : XGradientListRef pGrdList = XPropertyList::AsGradientList(
682 : XPropertyList::CreatePropertyList(
683 : XGRADIENT_LIST,
684 0 : aPathURL.GetMainURL(INetURLObject::NO_DECODE), ""));
685 0 : pGrdList->SetName( aURL.getName() );
686 :
687 0 : if ( pGrdList->Load() )
688 : {
689 0 : pGradientList = pGrdList;
690 0 : static_cast<SvxAreaTabDialog*>( GetParentDialog() )->
691 0 : SetNewGradientList( pGradientList );
692 :
693 0 : m_pLbGradients->Clear();
694 0 : m_pLbGradients->Fill( pGradientList );
695 0 : Reset( &rOutAttrs );
696 :
697 0 : pGradientList->SetName( aURL.getName() );
698 :
699 : // determining (possibly cutting) the name
700 : // and displaying it in the GroupBox
701 0 : OUString aString( ResId( RID_SVXSTR_TABLE, rMgr ) );
702 0 : aString += ": ";
703 :
704 0 : if ( aURL.getBase().getLength() > 18 )
705 : {
706 0 : aString += aURL.getBase().copy( 0, 15 );
707 0 : aString += "...";
708 : }
709 : else
710 0 : aString += aURL.getBase();
711 :
712 0 : *pnGradientListState |= ChangeType::CHANGED;
713 0 : *pnGradientListState &= ~ChangeType::MODIFIED;
714 0 : LeaveWait();
715 : }
716 : else
717 : {
718 0 : LeaveWait();
719 0 : ScopedVclPtrInstance<MessageDialog>::Create( GetParentDialog()
720 : ,"NoLoadedFileDialog"
721 0 : ,"cui/ui/querynoloadedfiledialog.ui")->Execute();
722 0 : }
723 0 : }
724 : }
725 :
726 : // determine button state
727 0 : if( pGradientList->Count() )
728 : {
729 0 : m_pBtnModify->Enable();
730 0 : m_pBtnDelete->Enable();
731 0 : m_pBtnSave->Enable();
732 : }
733 : else
734 : {
735 0 : m_pBtnModify->Disable();
736 0 : m_pBtnDelete->Disable();
737 0 : m_pBtnSave->Disable();
738 : }
739 0 : return 0L;
740 : }
741 :
742 :
743 :
744 0 : IMPL_LINK_NOARG(SvxGradientTabPage, ClickSaveHdl_Impl)
745 : {
746 : ::sfx2::FileDialogHelper aDlg(
747 0 : com::sun::star::ui::dialogs::TemplateDescription::FILESAVE_SIMPLE, 0 );
748 0 : OUString aStrFilterType( "*.sog" );
749 0 : aDlg.AddFilter( aStrFilterType, aStrFilterType );
750 :
751 0 : OUString aPalettePath(SvtPathOptions().GetPalettePath());
752 0 : OUString aLastDir;
753 0 : sal_Int32 nIndex = 0;
754 0 : do
755 : {
756 0 : aLastDir = aPalettePath.getToken(0, ';', nIndex);
757 : }
758 0 : while (nIndex >= 0);
759 :
760 0 : INetURLObject aFile(aLastDir);
761 : DBG_ASSERT( aFile.GetProtocol() != INetProtocol::NotValid, "invalid URL" );
762 :
763 0 : if( !pGradientList->GetName().isEmpty() )
764 : {
765 0 : aFile.Append( pGradientList->GetName() );
766 :
767 0 : if( aFile.getExtension().isEmpty() )
768 0 : aFile.SetExtension( OUString("sog") );
769 : }
770 :
771 0 : aDlg.SetDisplayDirectory( aFile.GetMainURL( INetURLObject::NO_DECODE ) );
772 0 : if ( aDlg.Execute() == ERRCODE_NONE )
773 : {
774 0 : INetURLObject aURL( aDlg.GetPath() );
775 0 : INetURLObject aPathURL( aURL );
776 :
777 0 : aPathURL.removeSegment();
778 0 : aPathURL.removeFinalSlash();
779 :
780 0 : pGradientList->SetName( aURL.getName() );
781 0 : pGradientList->SetPath( aPathURL.GetMainURL( INetURLObject::NO_DECODE ) );
782 :
783 0 : if( pGradientList->Save() )
784 : {
785 : // determining (possibly cutting) the name
786 : // and displaying it in the GroupBox
787 0 : OUString aString( CUI_RES( RID_SVXSTR_TABLE ) );
788 0 : aString += ": ";
789 :
790 0 : if ( aURL.getBase().getLength() > 18 )
791 : {
792 0 : aString += aURL.getBase().copy( 0, 15 );
793 0 : aString += "...";
794 : }
795 : else
796 0 : aString += aURL.getBase();
797 :
798 0 : *pnGradientListState |= ChangeType::SAVED;
799 0 : *pnGradientListState &= ~ChangeType::MODIFIED;
800 : }
801 : else
802 : {
803 0 : ScopedVclPtrInstance<MessageDialog>::Create( GetParentDialog()
804 : ,"NoSaveFileDialog"
805 0 : ,"cui/ui/querynosavefiledialog.ui")->Execute();
806 0 : }
807 : }
808 :
809 0 : return 0L;
810 : }
811 :
812 :
813 :
814 0 : IMPL_LINK_NOARG(SvxGradientTabPage, ChangeGradientHdl_Impl)
815 : {
816 0 : boost::scoped_ptr<XGradient> pGradient;
817 0 : int nPos = m_pLbGradients->GetSelectEntryPos();
818 :
819 0 : if( nPos != LISTBOX_ENTRY_NOTFOUND )
820 0 : pGradient.reset(new XGradient( pGradientList->GetGradient( nPos )->GetGradient() ));
821 : else
822 : {
823 0 : const SfxPoolItem* pPoolItem = NULL;
824 0 : if( SfxItemState::SET == rOutAttrs.GetItemState( GetWhich( XATTR_FILLSTYLE ), true, &pPoolItem ) )
825 : {
826 0 : if( ( drawing::FillStyle_GRADIENT == (drawing::FillStyle) static_cast<const XFillStyleItem*>( pPoolItem )->GetValue() ) &&
827 0 : ( SfxItemState::SET == rOutAttrs.GetItemState( GetWhich( XATTR_FILLGRADIENT ), true, &pPoolItem ) ) )
828 : {
829 0 : pGradient.reset(new XGradient( static_cast<const XFillGradientItem*>( pPoolItem )->GetGradientValue() ));
830 : }
831 : }
832 0 : if( !pGradient )
833 : {
834 0 : m_pLbGradients->SelectEntryPos( 0 );
835 0 : nPos = m_pLbGradients->GetSelectEntryPos();
836 0 : if( nPos != LISTBOX_ENTRY_NOTFOUND )
837 0 : pGradient.reset(new XGradient( pGradientList->GetGradient( nPos )->GetGradient() ));
838 : }
839 : }
840 :
841 0 : if( pGradient )
842 : {
843 0 : css::awt::GradientStyle eXGS = pGradient->GetGradientStyle();
844 :
845 : m_pLbGradientType->SelectEntryPos(
846 0 : sal::static_int_cast< sal_Int32 >( eXGS ) );
847 : // if the entry is not in the listbox,
848 : // colors are added temporarily
849 0 : m_pLbColorFrom->SetNoSelection();
850 0 : m_pLbColorFrom->SelectEntry( pGradient->GetStartColor() );
851 :
852 0 : if ( m_pLbColorFrom->GetSelectEntryCount() == 0 )
853 : {
854 0 : m_pLbColorFrom->InsertEntry( pGradient->GetStartColor(),
855 0 : OUString() );
856 0 : m_pLbColorFrom->SelectEntry( pGradient->GetStartColor() );
857 : }
858 0 : m_pLbColorTo->SetNoSelection();
859 0 : m_pLbColorTo->SelectEntry( pGradient->GetEndColor() );
860 :
861 0 : if ( m_pLbColorTo->GetSelectEntryCount() == 0 )
862 : {
863 0 : m_pLbColorTo->InsertEntry( pGradient->GetEndColor(), OUString() );
864 0 : m_pLbColorTo->SelectEntry( pGradient->GetEndColor() );
865 : }
866 :
867 0 : m_pMtrAngle->SetValue( pGradient->GetAngle() / 10 ); // should be changed in resource
868 0 : m_pMtrBorder->SetValue( pGradient->GetBorder() );
869 0 : m_pMtrCenterX->SetValue( pGradient->GetXOffset() );
870 0 : m_pMtrCenterY->SetValue( pGradient->GetYOffset() );
871 0 : m_pMtrColorFrom->SetValue( pGradient->GetStartIntens() );
872 0 : m_pMtrColorTo->SetValue( pGradient->GetEndIntens() );
873 :
874 : // disable/enable controls
875 0 : SetControlState_Impl( eXGS );
876 :
877 : // fill ItemSet and pass it on to aCtlPreview
878 0 : rXFSet.Put( XFillGradientItem( OUString(), *pGradient ) );
879 0 : m_pCtlPreview->SetAttributes( aXFillAttr.GetItemSet() );
880 :
881 0 : m_pCtlPreview->Invalidate();
882 : }
883 0 : return 0L;
884 : }
885 :
886 :
887 :
888 0 : void SvxGradientTabPage::SetControlState_Impl( css::awt::GradientStyle eXGS )
889 : {
890 0 : switch( eXGS )
891 : {
892 : case css::awt::GradientStyle_LINEAR:
893 : case css::awt::GradientStyle_AXIAL:
894 0 : m_pFtCenterX->Disable();
895 0 : m_pMtrCenterX->Disable();
896 0 : m_pFtCenterY->Disable();
897 0 : m_pMtrCenterY->Disable();
898 0 : m_pFtAngle->Enable();
899 0 : m_pMtrAngle->Enable();
900 0 : break;
901 :
902 : case css::awt::GradientStyle_RADIAL:
903 0 : m_pFtCenterX->Enable();
904 0 : m_pMtrCenterX->Enable();
905 0 : m_pFtCenterY->Enable();
906 0 : m_pMtrCenterY->Enable();
907 0 : m_pFtAngle->Disable();
908 0 : m_pMtrAngle->Disable();
909 0 : break;
910 :
911 : case css::awt::GradientStyle_ELLIPTICAL:
912 0 : m_pFtCenterX->Enable();
913 0 : m_pMtrCenterX->Enable();
914 0 : m_pFtCenterY->Enable();
915 0 : m_pMtrCenterY->Enable();
916 0 : m_pFtAngle->Enable();
917 0 : m_pMtrAngle->Enable();
918 0 : break;
919 :
920 : case css::awt::GradientStyle_SQUARE:
921 : case css::awt::GradientStyle_RECT:
922 0 : m_pFtCenterX->Enable();
923 0 : m_pMtrCenterX->Enable();
924 0 : m_pFtCenterY->Enable();
925 0 : m_pMtrCenterY->Enable();
926 0 : m_pFtAngle->Enable();
927 0 : m_pMtrAngle->Enable();
928 0 : break;
929 : default:
930 0 : break;
931 : }
932 0 : }
933 :
934 :
935 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|