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 : #undef SC_DLLIMPLEMENTATION
21 :
22 : #include "scitems.hxx"
23 : #include <svx/algitem.hxx>
24 : #include <editeng/boxitem.hxx>
25 : #include <editeng/brushitem.hxx>
26 : #include <editeng/contouritem.hxx>
27 : #include <editeng/colritem.hxx>
28 : #include <editeng/crossedoutitem.hxx>
29 : #include <editeng/fontitem.hxx>
30 : #include <editeng/postitem.hxx>
31 : #include <editeng/shdditem.hxx>
32 : #include <editeng/udlnitem.hxx>
33 : #include <editeng/wghtitem.hxx>
34 : #include <svl/zforlist.hxx>
35 : #include <vcl/msgbox.hxx>
36 : #include <comphelper/processfactory.hxx>
37 : #include <sfx2/sfxresid.hxx>
38 : #include "sc.hrc"
39 : #include "scmod.hxx"
40 : #include "attrib.hxx"
41 : #include "zforauto.hxx"
42 : #include "global.hxx"
43 : #include "globstr.hrc"
44 : #include "autoform.hxx"
45 : #include "strindlg.hxx"
46 : #include "miscdlgs.hrc"
47 : #include "scuiautofmt.hxx"
48 : #include "scresid.hxx"
49 : #include "document.hxx"
50 : #include <boost/scoped_ptr.hpp>
51 :
52 : // AutoFormat-Dialog:
53 :
54 0 : ScAutoFormatDlg::ScAutoFormatDlg(vcl::Window* pParent,
55 : ScAutoFormat* pAutoFormat,
56 : const ScAutoFormatData* pSelFormatData,
57 : ScViewData *pViewData)
58 : : ModalDialog(pParent, "AutoFormatTableDialog",
59 : "modules/scalc/ui/autoformattable.ui")
60 : , aStrTitle(ScResId(STR_ADD_AUTOFORMAT_TITLE))
61 : , aStrLabel(ScResId(STR_ADD_AUTOFORMAT_LABEL))
62 : , aStrClose(ScResId(STR_BTN_AUTOFORMAT_CLOSE))
63 : , aStrDelMsg(ScResId(STR_DEL_AUTOFORMAT_MSG))
64 : , aStrRename(ScResId(STR_RENAME_AUTOFORMAT_TITLE))
65 : , pFormat(pAutoFormat)
66 : , pSelFmtData(pSelFormatData)
67 : , nIndex(0)
68 : , bCoreDataChanged(false)
69 0 : , bFmtInserted(false)
70 : {
71 0 : get(m_pLbFormat, "formatlb");
72 0 : get(m_pWndPreview, "preview");
73 0 : m_pWndPreview->DetectRTL(pViewData);
74 0 : get(m_pBtnOk, "ok");
75 0 : get(m_pBtnCancel, "cancel");
76 0 : get(m_pBtnAdd, "add");
77 0 : get(m_pBtnRemove, "remove");
78 0 : get(m_pBtnRename, "rename");
79 0 : get(m_pBtnNumFormat, "numformatcb");
80 0 : get(m_pBtnBorder, "bordercb");
81 0 : get(m_pBtnFont, "fontcb");
82 0 : get(m_pBtnPattern, "patterncb");
83 0 : get(m_pBtnAlignment, "alignmentcb");
84 0 : get(m_pBtnAdjust, "autofitcb");
85 :
86 0 : Init();
87 0 : ScAutoFormat::iterator it = pFormat->begin();
88 0 : m_pWndPreview->NotifyChange(it->second);
89 0 : }
90 :
91 0 : void ScAutoFormatDlg::Init()
92 : {
93 0 : m_pLbFormat->SetSelectHdl( LINK( this, ScAutoFormatDlg, SelFmtHdl ) );
94 0 : m_pBtnNumFormat->SetClickHdl ( LINK( this, ScAutoFormatDlg, CheckHdl ) );
95 0 : m_pBtnBorder->SetClickHdl ( LINK( this, ScAutoFormatDlg, CheckHdl ) );
96 0 : m_pBtnFont->SetClickHdl ( LINK( this, ScAutoFormatDlg, CheckHdl ) );
97 0 : m_pBtnPattern->SetClickHdl ( LINK( this, ScAutoFormatDlg, CheckHdl ) );
98 0 : m_pBtnAlignment->SetClickHdl ( LINK( this, ScAutoFormatDlg, CheckHdl ) );
99 0 : m_pBtnAdjust->SetClickHdl ( LINK( this, ScAutoFormatDlg, CheckHdl ) );
100 0 : m_pBtnAdd->SetClickHdl ( LINK( this, ScAutoFormatDlg, AddHdl ) );
101 0 : m_pBtnRemove->SetClickHdl ( LINK( this, ScAutoFormatDlg, RemoveHdl ) );
102 0 : m_pBtnOk->SetClickHdl ( LINK( this, ScAutoFormatDlg, CloseHdl ) );
103 0 : m_pBtnCancel->SetClickHdl ( LINK( this, ScAutoFormatDlg, CloseHdl ) );
104 0 : m_pBtnRename->SetClickHdl ( LINK( this, ScAutoFormatDlg, RenameHdl ) );
105 0 : m_pLbFormat->SetDoubleClickHdl( LINK( this, ScAutoFormatDlg, DblClkHdl ) );
106 :
107 0 : ScAutoFormat::const_iterator it = pFormat->begin(), itEnd = pFormat->end();
108 0 : for (; it != itEnd; ++it)
109 0 : m_pLbFormat->InsertEntry(it->second->GetName());
110 :
111 0 : if (pFormat->size() == 1)
112 0 : m_pBtnRemove->Disable();
113 :
114 0 : m_pLbFormat->SelectEntryPos( 0 );
115 0 : m_pBtnRename->Disable();
116 0 : m_pBtnRemove->Disable();
117 :
118 0 : nIndex = 0;
119 0 : UpdateChecks();
120 :
121 0 : if ( !pSelFmtData )
122 : {
123 0 : m_pBtnAdd->Disable();
124 0 : m_pBtnRemove->Disable();
125 0 : bFmtInserted = true;
126 : }
127 0 : }
128 :
129 0 : void ScAutoFormatDlg::UpdateChecks()
130 : {
131 0 : const ScAutoFormatData* pData = pFormat->findByIndex(nIndex);
132 :
133 0 : m_pBtnNumFormat->Check( pData->GetIncludeValueFormat() );
134 0 : m_pBtnBorder->Check( pData->GetIncludeFrame() );
135 0 : m_pBtnFont->Check( pData->GetIncludeFont() );
136 0 : m_pBtnPattern->Check( pData->GetIncludeBackground() );
137 0 : m_pBtnAlignment->Check( pData->GetIncludeJustify() );
138 0 : m_pBtnAdjust->Check( pData->GetIncludeWidthHeight() );
139 0 : }
140 :
141 : // Handler:
142 :
143 0 : IMPL_LINK( ScAutoFormatDlg, CloseHdl, PushButton *, pBtn )
144 : {
145 0 : if (pBtn == m_pBtnOk || pBtn == m_pBtnCancel)
146 : {
147 0 : if ( bCoreDataChanged )
148 0 : ScGlobal::GetOrCreateAutoFormat()->Save();
149 :
150 0 : EndDialog( (pBtn == m_pBtnOk) ? RET_OK : RET_CANCEL );
151 : }
152 0 : return 0;
153 : }
154 :
155 0 : IMPL_LINK_NOARG_INLINE_START(ScAutoFormatDlg, DblClkHdl)
156 : {
157 0 : if ( bCoreDataChanged )
158 0 : ScGlobal::GetOrCreateAutoFormat()->Save();
159 :
160 0 : EndDialog( RET_OK );
161 0 : return 0;
162 : }
163 0 : IMPL_LINK_NOARG_INLINE_END(ScAutoFormatDlg, DblClkHdl)
164 :
165 0 : IMPL_LINK( ScAutoFormatDlg, CheckHdl, Button *, pBtn )
166 : {
167 0 : ScAutoFormatData* pData = pFormat->findByIndex(nIndex);
168 0 : bool bCheck = static_cast<CheckBox*>(pBtn)->IsChecked();
169 :
170 0 : if ( pBtn == m_pBtnNumFormat )
171 0 : pData->SetIncludeValueFormat( bCheck );
172 0 : else if ( pBtn == m_pBtnBorder )
173 0 : pData->SetIncludeFrame( bCheck );
174 0 : else if ( pBtn == m_pBtnFont )
175 0 : pData->SetIncludeFont( bCheck );
176 0 : else if ( pBtn == m_pBtnPattern )
177 0 : pData->SetIncludeBackground( bCheck );
178 0 : else if ( pBtn == m_pBtnAlignment )
179 0 : pData->SetIncludeJustify( bCheck );
180 0 : else if ( pBtn == m_pBtnAdjust )
181 0 : pData->SetIncludeWidthHeight( bCheck );
182 :
183 0 : if ( !bCoreDataChanged )
184 : {
185 0 : m_pBtnCancel->SetText( aStrClose );
186 0 : bCoreDataChanged = true;
187 : }
188 :
189 0 : m_pWndPreview->NotifyChange( pData );
190 :
191 0 : return 0;
192 : }
193 :
194 0 : IMPL_LINK_NOARG(ScAutoFormatDlg, AddHdl)
195 : {
196 0 : if ( !bFmtInserted && pSelFmtData )
197 : {
198 0 : OUString aStrStandard( SfxResId(STR_STANDARD) );
199 0 : OUString aFormatName;
200 0 : bool bOk = false;
201 :
202 0 : while ( !bOk )
203 : {
204 : boost::scoped_ptr<ScStringInputDlg> pDlg(new ScStringInputDlg( this,
205 : aStrTitle,
206 : aStrLabel,
207 : aFormatName,
208 0 : HID_SC_ADD_AUTOFMT, HID_SC_AUTOFMT_NAME ));
209 :
210 0 : if ( pDlg->Execute() == RET_OK )
211 : {
212 0 : aFormatName = pDlg->GetInputString();
213 :
214 0 : if ( !aFormatName.isEmpty() && !aFormatName.equals(aStrStandard) )
215 : {
216 : ScAutoFormatData* pNewData
217 0 : = new ScAutoFormatData( *pSelFmtData );
218 :
219 0 : pNewData->SetName( aFormatName );
220 0 : bFmtInserted = pFormat->insert(pNewData);
221 :
222 0 : if ( bFmtInserted )
223 : {
224 0 : ScAutoFormat::const_iterator it = pFormat->find(pNewData);
225 0 : ScAutoFormat::const_iterator itBeg = pFormat->begin();
226 0 : size_t nPos = std::distance(itBeg, it);
227 0 : m_pLbFormat->InsertEntry(aFormatName, nPos);
228 0 : m_pLbFormat->SelectEntry( aFormatName );
229 0 : m_pBtnAdd->Disable();
230 :
231 0 : if ( !bCoreDataChanged )
232 : {
233 0 : m_pBtnCancel->SetText( aStrClose );
234 0 : bCoreDataChanged = true;
235 : }
236 :
237 0 : SelFmtHdl( 0 );
238 0 : bOk = true;
239 : }
240 : else
241 0 : delete pNewData;
242 :
243 : }
244 :
245 0 : if ( !bFmtInserted )
246 : {
247 : sal_uInt16 nRet = MessageDialog(this,
248 0 : ScGlobal::GetRscString(STR_INVALID_AFNAME),
249 : VCL_MESSAGE_ERROR,
250 : VCL_BUTTONS_OK_CANCEL
251 0 : ).Execute();
252 :
253 0 : bOk = ( nRet == RET_CANCEL );
254 : }
255 : }
256 : else
257 0 : bOk = true;
258 0 : }
259 : }
260 :
261 0 : return 0;
262 : }
263 :
264 0 : IMPL_LINK_NOARG(ScAutoFormatDlg, RemoveHdl)
265 : {
266 0 : if ( (nIndex > 0) && (m_pLbFormat->GetEntryCount() > 0) )
267 : {
268 0 : OUString aMsg( aStrDelMsg.getToken( 0, '#' ) );
269 :
270 0 : aMsg += m_pLbFormat->GetSelectEntry();
271 0 : aMsg += aStrDelMsg.getToken( 1, '#' );
272 :
273 0 : if ( RET_YES ==
274 0 : QueryBox( this, WinBits( WB_YES_NO | WB_DEF_YES ), aMsg ).Execute() )
275 : {
276 0 : m_pLbFormat->RemoveEntry( nIndex );
277 0 : m_pLbFormat->SelectEntryPos( nIndex-1 );
278 :
279 0 : if ( nIndex-1 == 0 )
280 0 : m_pBtnRemove->Disable();
281 :
282 0 : if ( !bCoreDataChanged )
283 : {
284 0 : m_pBtnCancel->SetText( aStrClose );
285 0 : bCoreDataChanged = true;
286 : }
287 :
288 0 : ScAutoFormat::iterator it = pFormat->begin();
289 0 : std::advance(it, nIndex);
290 0 : pFormat->erase(it);
291 0 : nIndex--;
292 :
293 0 : SelFmtHdl( 0 );
294 0 : }
295 : }
296 :
297 0 : SelFmtHdl( 0 );
298 :
299 0 : return 0;
300 : }
301 :
302 0 : IMPL_LINK_NOARG(ScAutoFormatDlg, RenameHdl)
303 : {
304 0 : bool bOk = false;
305 0 : while( !bOk )
306 : {
307 :
308 0 : OUString aFormatName = m_pLbFormat->GetSelectEntry();
309 0 : OUString aEntry;
310 :
311 : boost::scoped_ptr<ScStringInputDlg> pDlg(new ScStringInputDlg( this,
312 : aStrRename,
313 : aStrLabel,
314 : aFormatName,
315 0 : HID_SC_REN_AFMT_DLG, HID_SC_REN_AFMT_NAME ));
316 0 : if( pDlg->Execute() == RET_OK )
317 : {
318 0 : bool bFmtRenamed = false;
319 0 : aFormatName = pDlg->GetInputString();
320 :
321 0 : if (!aFormatName.isEmpty())
322 : {
323 0 : ScAutoFormat::iterator it = pFormat->begin(), itEnd = pFormat->end();
324 0 : for (; it != itEnd; ++it)
325 : {
326 0 : aEntry = it->second->GetName();
327 0 : if (aFormatName.equals(aEntry))
328 0 : break;
329 : }
330 0 : if (it == itEnd)
331 : {
332 : // no format with this name yet, so we can rename
333 :
334 0 : m_pLbFormat->RemoveEntry(nIndex );
335 0 : const ScAutoFormatData* p = pFormat->findByIndex(nIndex);
336 : ScAutoFormatData* pNewData
337 0 : = new ScAutoFormatData(*p);
338 :
339 0 : it = pFormat->begin();
340 0 : std::advance(it, nIndex);
341 0 : pFormat->erase(it);
342 :
343 0 : pNewData->SetName( aFormatName );
344 :
345 0 : pFormat->insert(pNewData);
346 :
347 0 : m_pLbFormat->SetUpdateMode(false);
348 0 : m_pLbFormat->Clear();
349 0 : for (it = pFormat->begin(); it != itEnd; ++it)
350 : {
351 0 : aEntry = it->second->GetName();
352 0 : m_pLbFormat->InsertEntry( aEntry );
353 : }
354 :
355 0 : m_pLbFormat->SetUpdateMode(true);
356 0 : m_pLbFormat->SelectEntry( aFormatName);
357 :
358 0 : if ( !bCoreDataChanged )
359 : {
360 0 : m_pBtnCancel->SetText( aStrClose );
361 0 : bCoreDataChanged = true;
362 : }
363 :
364 0 : SelFmtHdl( 0 );
365 0 : bOk = true;
366 0 : bFmtRenamed = true;
367 : }
368 : }
369 0 : if( !bFmtRenamed )
370 : {
371 : bOk = RET_CANCEL == MessageDialog( this,
372 0 : ScGlobal::GetRscString(STR_INVALID_AFNAME),
373 : VCL_MESSAGE_ERROR,
374 : VCL_BUTTONS_OK_CANCEL
375 0 : ).Execute();
376 : }
377 : }
378 : else
379 0 : bOk = true;
380 0 : }
381 :
382 0 : return 0;
383 : }
384 :
385 0 : IMPL_LINK_NOARG(ScAutoFormatDlg, SelFmtHdl)
386 : {
387 0 : nIndex = m_pLbFormat->GetSelectEntryPos();
388 0 : UpdateChecks();
389 :
390 0 : if ( nIndex == 0 )
391 : {
392 0 : m_pBtnRename->Disable();
393 0 : m_pBtnRemove->Disable();
394 : }
395 : else
396 : {
397 0 : m_pBtnRename->Enable();
398 0 : m_pBtnRemove->Enable();
399 : }
400 :
401 0 : ScAutoFormatData* p = pFormat->findByIndex(nIndex);
402 0 : m_pWndPreview->NotifyChange(p);
403 :
404 0 : return 0;
405 : }
406 :
407 0 : OUString ScAutoFormatDlg::GetCurrFormatName()
408 : {
409 0 : const ScAutoFormatData* p = pFormat->findByIndex(nIndex);
410 0 : return p ? p->GetName() : OUString();
411 0 : }
412 :
413 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|