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 : #include "scitems.hxx"
28 : #include <svx/algitem.hxx>
29 : #include <editeng/boxitem.hxx>
30 : #include <editeng/brshitem.hxx>
31 : #include <editeng/cntritem.hxx>
32 : #include <editeng/colritem.hxx>
33 : #include <editeng/crsditem.hxx>
34 : #include <editeng/fontitem.hxx>
35 : #include <editeng/postitem.hxx>
36 : #include <editeng/shdditem.hxx>
37 : #include <editeng/udlnitem.hxx>
38 : #include <editeng/wghtitem.hxx>
39 : #include <svl/zforlist.hxx>
40 : #include <vcl/msgbox.hxx>
41 : #include <comphelper/processfactory.hxx>
42 : #include <sfx2/sfxresid.hxx>
43 : #include "sc.hrc"
44 : #include "scmod.hxx"
45 : #include "attrib.hxx"
46 : #include "zforauto.hxx"
47 : #include "global.hxx"
48 : #include "globstr.hrc"
49 : #include "autoform.hxx"
50 : #include "strindlg.hxx"
51 : #include "miscdlgs.hrc"
52 : #include "scuiautofmt.hxx"
53 : #include "scresid.hxx"
54 : #include "document.hxx"
55 :
56 : //========================================================================
57 : // AutoFormat-Dialog:
58 :
59 0 : ScAutoFormatDlg::ScAutoFormatDlg( Window* pParent,
60 : ScAutoFormat* pAutoFormat,
61 : const ScAutoFormatData* pSelFormatData,
62 : ScDocument* pDoc ) :
63 :
64 : ModalDialog ( pParent, ScResId( RID_SCDLG_AUTOFORMAT ) ),
65 : //
66 : aFlFormat ( this, ScResId( FL_FORMAT ) ),
67 : aLbFormat ( this, ScResId( LB_FORMAT ) ),
68 0 : pWndPreview ( new ScAutoFmtPreview( this, ScResId( WND_PREVIEW ), pDoc ) ),
69 : aBtnOk ( this, ScResId( BTN_OK ) ),
70 : aBtnCancel ( this, ScResId( BTN_CANCEL ) ),
71 : aBtnHelp ( this, ScResId( BTN_HELP ) ),
72 : aBtnAdd ( this, ScResId( BTN_ADD ) ),
73 : aBtnRemove ( this, ScResId( BTN_REMOVE ) ),
74 : aBtnMore ( this, ScResId( BTN_MORE ) ),
75 : aFlFormatting ( this, ScResId( FL_FORMATTING ) ),
76 : aBtnNumFormat ( this, ScResId( BTN_NUMFORMAT ) ),
77 : aBtnBorder ( this, ScResId( BTN_BORDER ) ),
78 : aBtnFont ( this, ScResId( BTN_FONT ) ),
79 : aBtnPattern ( this, ScResId( BTN_PATTERN ) ),
80 : aBtnAlignment ( this, ScResId( BTN_ALIGNMENT ) ),
81 : aBtnAdjust ( this, ScResId( BTN_ADJUST ) ),
82 : aBtnRename ( this, ScResId( BTN_RENAME ) ),
83 : aStrTitle ( ScResId( STR_ADD_TITLE ) ),
84 : aStrLabel ( ScResId( STR_ADD_LABEL ) ),
85 : aStrClose ( ScResId( STR_BTN_CLOSE ) ),
86 : aStrDelTitle ( ScResId( STR_DEL_TITLE ) ),
87 : aStrDelMsg ( ScResId( STR_DEL_MSG ) ) ,
88 : aStrRename ( ScResId( STR_RENAME_TITLE ) ),
89 : //
90 : pFormat ( pAutoFormat ),
91 : pSelFmtData ( pSelFormatData ),
92 : nIndex ( 0 ),
93 : bCoreDataChanged( false ),
94 0 : bFmtInserted ( false )
95 : {
96 0 : Init();
97 0 : ScAutoFormat::iterator it = pFormat->begin();
98 0 : pWndPreview->NotifyChange(it->second);
99 0 : FreeResource();
100 0 : }
101 :
102 : //------------------------------------------------------------------------
103 :
104 0 : ScAutoFormatDlg::~ScAutoFormatDlg()
105 : {
106 0 : delete pWndPreview;
107 0 : }
108 :
109 : //------------------------------------------------------------------------
110 :
111 0 : void ScAutoFormatDlg::Init()
112 : {
113 0 : aLbFormat .SetSelectHdl( LINK( this, ScAutoFormatDlg, SelFmtHdl ) );
114 0 : aBtnNumFormat.SetClickHdl ( LINK( this, ScAutoFormatDlg, CheckHdl ) );
115 0 : aBtnBorder .SetClickHdl ( LINK( this, ScAutoFormatDlg, CheckHdl ) );
116 0 : aBtnFont .SetClickHdl ( LINK( this, ScAutoFormatDlg, CheckHdl ) );
117 0 : aBtnPattern .SetClickHdl ( LINK( this, ScAutoFormatDlg, CheckHdl ) );
118 0 : aBtnAlignment.SetClickHdl ( LINK( this, ScAutoFormatDlg, CheckHdl ) );
119 0 : aBtnAdjust .SetClickHdl ( LINK( this, ScAutoFormatDlg, CheckHdl ) );
120 0 : aBtnAdd .SetClickHdl ( LINK( this, ScAutoFormatDlg, AddHdl ) );
121 0 : aBtnRemove .SetClickHdl ( LINK( this, ScAutoFormatDlg, RemoveHdl ) );
122 0 : aBtnOk .SetClickHdl ( LINK( this, ScAutoFormatDlg, CloseHdl ) );
123 0 : aBtnCancel .SetClickHdl ( LINK( this, ScAutoFormatDlg, CloseHdl ) );
124 0 : aBtnRename .SetClickHdl ( LINK( this, ScAutoFormatDlg, RenameHdl ) );
125 0 : aLbFormat .SetDoubleClickHdl( LINK( this, ScAutoFormatDlg, DblClkHdl ) );
126 :
127 0 : aBtnMore.AddWindow( &aBtnRename );
128 0 : aBtnMore.AddWindow( &aBtnNumFormat );
129 0 : aBtnMore.AddWindow( &aBtnBorder );
130 0 : aBtnMore.AddWindow( &aBtnFont );
131 0 : aBtnMore.AddWindow( &aBtnPattern );
132 0 : aBtnMore.AddWindow( &aBtnAlignment );
133 0 : aBtnMore.AddWindow( &aBtnAdjust );
134 0 : aBtnMore.AddWindow( &aFlFormatting );
135 :
136 0 : ScAutoFormat::const_iterator it = pFormat->begin(), itEnd = pFormat->end();
137 0 : for (; it != itEnd; ++it)
138 0 : aLbFormat.InsertEntry(it->second->GetName());
139 :
140 0 : if (pFormat->size() == 1)
141 0 : aBtnRemove.Disable();
142 :
143 0 : aLbFormat.SelectEntryPos( 0 );
144 0 : aBtnRename.Disable();
145 0 : aBtnRemove.Disable();
146 :
147 0 : nIndex = 0;
148 0 : UpdateChecks();
149 :
150 0 : if ( !pSelFmtData )
151 : {
152 0 : aBtnAdd.Disable();
153 0 : aBtnRemove.Disable();
154 0 : bFmtInserted = true;
155 : }
156 0 : }
157 :
158 : //------------------------------------------------------------------------
159 :
160 0 : void ScAutoFormatDlg::UpdateChecks()
161 : {
162 0 : const ScAutoFormatData* pData = pFormat->findByIndex(nIndex);
163 :
164 0 : aBtnNumFormat.Check( pData->GetIncludeValueFormat() );
165 0 : aBtnBorder .Check( pData->GetIncludeFrame() );
166 0 : aBtnFont .Check( pData->GetIncludeFont() );
167 0 : aBtnPattern .Check( pData->GetIncludeBackground() );
168 0 : aBtnAlignment.Check( pData->GetIncludeJustify() );
169 0 : aBtnAdjust .Check( pData->GetIncludeWidthHeight() );
170 0 : }
171 :
172 : //------------------------------------------------------------------------
173 : // Handler:
174 : //---------
175 :
176 0 : IMPL_LINK( ScAutoFormatDlg, CloseHdl, PushButton *, pBtn )
177 : {
178 0 : if ( pBtn == &aBtnOk || pBtn == &aBtnCancel )
179 : {
180 0 : if ( bCoreDataChanged )
181 0 : ScGlobal::GetOrCreateAutoFormat()->Save();
182 :
183 0 : EndDialog( (pBtn == &aBtnOk) ? RET_OK : RET_CANCEL );
184 : }
185 0 : return 0;
186 : }
187 :
188 : //------------------------------------------------------------------------
189 :
190 0 : IMPL_LINK_NOARG_INLINE_START(ScAutoFormatDlg, DblClkHdl)
191 : {
192 0 : if ( bCoreDataChanged )
193 0 : ScGlobal::GetOrCreateAutoFormat()->Save();
194 :
195 0 : EndDialog( RET_OK );
196 0 : return 0;
197 : }
198 0 : IMPL_LINK_NOARG_INLINE_END(ScAutoFormatDlg, DblClkHdl)
199 :
200 : //------------------------------------------------------------------------
201 :
202 0 : IMPL_LINK( ScAutoFormatDlg, CheckHdl, Button *, pBtn )
203 : {
204 0 : ScAutoFormatData* pData = pFormat->findByIndex(nIndex);
205 0 : bool bCheck = ((CheckBox*)pBtn)->IsChecked();
206 :
207 0 : if ( pBtn == &aBtnNumFormat )
208 0 : pData->SetIncludeValueFormat( bCheck );
209 0 : else if ( pBtn == &aBtnBorder )
210 0 : pData->SetIncludeFrame( bCheck );
211 0 : else if ( pBtn == &aBtnFont )
212 0 : pData->SetIncludeFont( bCheck );
213 0 : else if ( pBtn == &aBtnPattern )
214 0 : pData->SetIncludeBackground( bCheck );
215 0 : else if ( pBtn == &aBtnAlignment )
216 0 : pData->SetIncludeJustify( bCheck );
217 0 : else if ( pBtn == &aBtnAdjust )
218 0 : pData->SetIncludeWidthHeight( bCheck );
219 :
220 0 : if ( !bCoreDataChanged )
221 : {
222 0 : aBtnCancel.SetText( aStrClose );
223 0 : bCoreDataChanged = true;
224 : }
225 :
226 0 : pWndPreview->NotifyChange( pData );
227 :
228 0 : return 0;
229 : }
230 :
231 : //------------------------------------------------------------------------
232 :
233 0 : IMPL_LINK_NOARG(ScAutoFormatDlg, AddHdl)
234 : {
235 0 : if ( !bFmtInserted && pSelFmtData )
236 : {
237 0 : String aStrStandard( SfxResId(STR_STANDARD) );
238 0 : rtl::OUString aFormatName;
239 : ScStringInputDlg* pDlg;
240 0 : bool bOk = false;
241 :
242 0 : while ( !bOk )
243 : {
244 : pDlg = new ScStringInputDlg( this,
245 : aStrTitle,
246 : aStrLabel,
247 : aFormatName,
248 0 : HID_SC_ADD_AUTOFMT, HID_SC_AUTOFMT_NAME );
249 :
250 0 : if ( pDlg->Execute() == RET_OK )
251 : {
252 0 : pDlg->GetInputString( aFormatName );
253 :
254 0 : if ( !aFormatName.isEmpty() && !aFormatName.equals(aStrStandard) )
255 : {
256 : ScAutoFormatData* pNewData
257 0 : = new ScAutoFormatData( *pSelFmtData );
258 :
259 0 : pNewData->SetName( aFormatName );
260 0 : bFmtInserted = pFormat->insert(pNewData);
261 :
262 0 : if ( bFmtInserted )
263 : {
264 0 : ScAutoFormat::const_iterator it = pFormat->find(pNewData);
265 0 : ScAutoFormat::const_iterator itBeg = pFormat->begin();
266 0 : size_t nPos = std::distance(itBeg, it);
267 0 : aLbFormat.InsertEntry(aFormatName, nPos);
268 0 : aLbFormat.SelectEntry( aFormatName );
269 0 : aBtnAdd.Disable();
270 :
271 0 : if ( !bCoreDataChanged )
272 : {
273 0 : aBtnCancel.SetText( aStrClose );
274 0 : bCoreDataChanged = true;
275 : }
276 :
277 0 : SelFmtHdl( 0 );
278 0 : bOk = sal_True;
279 : }
280 : else
281 0 : delete pNewData;
282 :
283 : }
284 :
285 0 : if ( !bFmtInserted )
286 : {
287 : sal_uInt16 nRet = ErrorBox( this,
288 : WinBits( WB_OK_CANCEL | WB_DEF_OK),
289 0 : ScGlobal::GetRscString(STR_INVALID_AFNAME)
290 0 : ).Execute();
291 :
292 0 : bOk = ( nRet == RET_CANCEL );
293 : }
294 : }
295 : else
296 0 : bOk = sal_True;
297 :
298 0 : delete pDlg;
299 0 : }
300 : }
301 :
302 0 : return 0;
303 : }
304 :
305 : //------------------------------------------------------------------------
306 :
307 0 : IMPL_LINK_NOARG(ScAutoFormatDlg, RemoveHdl)
308 : {
309 0 : if ( (nIndex > 0) && (aLbFormat.GetEntryCount() > 0) )
310 : {
311 0 : String aMsg( aStrDelMsg.GetToken( 0, '#' ) );
312 :
313 0 : aMsg += aLbFormat.GetSelectEntry();
314 0 : aMsg += aStrDelMsg.GetToken( 1, '#' );
315 :
316 0 : if ( RET_YES ==
317 0 : QueryBox( this, WinBits( WB_YES_NO | WB_DEF_YES ), aMsg ).Execute() )
318 : {
319 0 : aLbFormat.RemoveEntry( nIndex );
320 0 : aLbFormat.SelectEntryPos( nIndex-1 );
321 :
322 0 : if ( nIndex-1 == 0 )
323 0 : aBtnRemove.Disable();
324 :
325 0 : if ( !bCoreDataChanged )
326 : {
327 0 : aBtnCancel.SetText( aStrClose );
328 0 : bCoreDataChanged = true;
329 : }
330 :
331 0 : ScAutoFormat::iterator it = pFormat->begin();
332 0 : std::advance(it, nIndex);
333 0 : pFormat->erase(it);
334 0 : nIndex--;
335 :
336 0 : SelFmtHdl( 0 );
337 0 : }
338 : }
339 :
340 0 : SelFmtHdl( 0 );
341 :
342 0 : return 0;
343 : }
344 :
345 0 : IMPL_LINK_NOARG(ScAutoFormatDlg, RenameHdl)
346 : {
347 0 : sal_Bool bOk = false;
348 0 : while( !bOk )
349 : {
350 :
351 0 : rtl::OUString aFormatName = aLbFormat.GetSelectEntry();
352 0 : String aEntry;
353 :
354 : ScStringInputDlg* pDlg = new ScStringInputDlg( this,
355 : aStrRename,
356 : aStrLabel,
357 : aFormatName,
358 0 : HID_SC_REN_AFMT_DLG, HID_SC_REN_AFMT_NAME );
359 0 : if( pDlg->Execute() == RET_OK )
360 : {
361 0 : bool bFmtRenamed = false;
362 0 : pDlg->GetInputString( aFormatName );
363 :
364 0 : if (!aFormatName.isEmpty())
365 : {
366 0 : ScAutoFormat::iterator it = pFormat->begin(), itEnd = pFormat->end();
367 0 : for (; it != itEnd; ++it)
368 : {
369 0 : aEntry = it->second->GetName();
370 0 : if (aFormatName.equals(aEntry))
371 0 : break;
372 : }
373 0 : if (it == itEnd)
374 : {
375 : // Format mit dem Namen noch nicht vorhanden, also
376 : // umbenennen
377 :
378 0 : aLbFormat.RemoveEntry(nIndex );
379 0 : const ScAutoFormatData* p = pFormat->findByIndex(nIndex);
380 : ScAutoFormatData* pNewData
381 0 : = new ScAutoFormatData(*p);
382 :
383 0 : it = pFormat->begin();
384 0 : std::advance(it, nIndex);
385 0 : pFormat->erase(it);
386 :
387 0 : pNewData->SetName( aFormatName );
388 :
389 0 : pFormat->insert(pNewData);
390 :
391 0 : aLbFormat.SetUpdateMode(false);
392 0 : aLbFormat.Clear();
393 0 : for (it = pFormat->begin(); it != itEnd; ++it)
394 : {
395 0 : aEntry = it->second->GetName();
396 0 : aLbFormat.InsertEntry( aEntry );
397 : }
398 :
399 0 : aLbFormat.SetUpdateMode(true);
400 0 : aLbFormat.SelectEntry( aFormatName);
401 :
402 0 : if ( !bCoreDataChanged )
403 : {
404 0 : aBtnCancel.SetText( aStrClose );
405 0 : bCoreDataChanged = true;
406 : }
407 :
408 :
409 0 : SelFmtHdl( 0 );
410 0 : bOk = true;
411 0 : bFmtRenamed = true;
412 : }
413 : }
414 0 : if( !bFmtRenamed )
415 : {
416 : bOk = RET_CANCEL == ErrorBox( this,
417 : WinBits( WB_OK_CANCEL | WB_DEF_OK),
418 0 : ScGlobal::GetRscString(STR_INVALID_AFNAME)
419 0 : ).Execute();
420 : }
421 : }
422 : else
423 0 : bOk = true;
424 0 : delete pDlg;
425 0 : }
426 :
427 0 : return 0;
428 : }
429 :
430 : //------------------------------------------------------------------------
431 :
432 0 : IMPL_LINK_NOARG(ScAutoFormatDlg, SelFmtHdl)
433 : {
434 0 : nIndex = aLbFormat.GetSelectEntryPos();
435 0 : UpdateChecks();
436 :
437 0 : if ( nIndex == 0 )
438 : {
439 0 : aBtnRename.Disable();
440 0 : aBtnRemove.Disable();
441 : }
442 : else
443 : {
444 0 : aBtnRename.Enable();
445 0 : aBtnRemove.Enable();
446 : }
447 :
448 0 : ScAutoFormatData* p = pFormat->findByIndex(nIndex);
449 0 : pWndPreview->NotifyChange(p);
450 :
451 0 : return 0;
452 : }
453 :
454 : //------------------------------------------------------------------------
455 :
456 0 : rtl::OUString ScAutoFormatDlg::GetCurrFormatName()
457 : {
458 0 : const ScAutoFormatData* p = pFormat->findByIndex(nIndex);
459 0 : return p ? p->GetName() : rtl::OUString();
460 : }
461 :
462 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|