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 : #include <vcl/msgbox.hxx>
26 :
27 : #include "mvtabdlg.hxx"
28 : #include "document.hxx"
29 : #include "docsh.hxx"
30 : #include "miscdlgs.hrc"
31 : #include "global.hxx"
32 : #include "scresid.hxx"
33 : #include "globstr.hrc"
34 :
35 0 : ScMoveTableDlg::ScMoveTableDlg(Window* pParent, const OUString& rDefault)
36 :
37 : : ModalDialog ( pParent, "MoveCopySheetDialog", "modules/scalc/ui/movecopysheet.ui" ),
38 : maDefaultName( rDefault ),
39 : mnCurrentDocPos( 0 ),
40 : nDocument ( 0 ),
41 : nTable ( 0 ),
42 : bCopyTable ( false ),
43 : bRenameTable( false ),
44 0 : mbEverEdited( false )
45 : {
46 0 : get(pBtnMove, "move");
47 0 : get(pBtnCopy, "copy");
48 0 : get(pLbDoc, "toDocument");
49 :
50 : assert(pLbDoc->GetEntryCount() == 2);
51 0 : msCurrentDoc = pLbDoc->GetEntry(0);
52 0 : msNewDoc = pLbDoc->GetEntry(1);
53 0 : pLbDoc->Clear();
54 : assert(pLbDoc->GetEntryCount() == 0);
55 :
56 0 : get(pLbTable, "insertBefore");
57 0 : pLbTable->set_height_request(pLbTable->GetTextHeight() * 8);
58 0 : get(pEdTabName, "newName");
59 0 : get(pFtWarn, "newNameWarn");
60 0 : get(pBtnOk, "ok");
61 :
62 0 : msStrTabNameUsed = get<FixedText>("warnunused")->GetText();
63 0 : msStrTabNameEmpty = get<FixedText>("warnempty")->GetText();
64 0 : msStrTabNameInvalid = get<FixedText>("warninvalid")->GetText();
65 :
66 0 : Init();
67 0 : }
68 :
69 0 : ScMoveTableDlg::~ScMoveTableDlg()
70 : {
71 0 : }
72 :
73 0 : sal_uInt16 ScMoveTableDlg::GetSelectedDocument () const { return nDocument; }
74 :
75 0 : SCTAB ScMoveTableDlg::GetSelectedTable () const { return nTable; }
76 :
77 0 : bool ScMoveTableDlg::GetCopyTable () const { return bCopyTable; }
78 :
79 0 : bool ScMoveTableDlg::GetRenameTable () const { return bRenameTable; }
80 :
81 0 : void ScMoveTableDlg::GetTabNameString( OUString& rString ) const
82 : {
83 0 : rString = pEdTabName->GetText();
84 0 : }
85 :
86 0 : void ScMoveTableDlg::SetForceCopyTable()
87 : {
88 0 : pBtnCopy->Check(true);
89 0 : pBtnMove->Disable();
90 0 : pBtnCopy->Disable();
91 0 : }
92 :
93 0 : void ScMoveTableDlg::EnableCopyTable(bool bFlag)
94 : {
95 0 : if(bFlag)
96 0 : pBtnCopy->Enable();
97 : else
98 0 : pBtnCopy->Disable();
99 0 : }
100 :
101 0 : void ScMoveTableDlg::EnableRenameTable(bool bFlag)
102 : {
103 0 : bRenameTable = bFlag;
104 0 : pEdTabName->Enable(bFlag);
105 0 : ResetRenameInput();
106 0 : }
107 :
108 0 : void ScMoveTableDlg::ResetRenameInput()
109 : {
110 0 : if (mbEverEdited)
111 : {
112 : // Don't reset the name when the sheet name has ever been edited.
113 : // But check the name, as this is also called for change of copy/move
114 : // buttons and document listbox selection.
115 0 : CheckNewTabName();
116 0 : return;
117 : }
118 :
119 0 : if (!pEdTabName->IsEnabled())
120 : {
121 0 : pEdTabName->SetText(OUString());
122 0 : return;
123 : }
124 :
125 0 : bool bVal = pBtnCopy->IsChecked();
126 0 : if (bVal)
127 : {
128 : // copy
129 0 : ScDocument* pDoc = GetSelectedDoc();
130 0 : if (pDoc)
131 : {
132 0 : OUString aStr = maDefaultName;
133 0 : pDoc->CreateValidTabName(aStr);
134 0 : pEdTabName->SetText(aStr);
135 : }
136 : else
137 0 : pEdTabName->SetText(maDefaultName);
138 : }
139 : else
140 : // move
141 0 : pEdTabName->SetText(maDefaultName);
142 :
143 0 : CheckNewTabName();
144 : }
145 :
146 0 : void ScMoveTableDlg::CheckNewTabName()
147 : {
148 0 : const OUString aNewName = pEdTabName->GetText();
149 0 : if (aNewName.isEmpty())
150 : {
151 : // New sheet name is empty. This is not good.
152 0 : pFtWarn->Show(true);
153 0 : pFtWarn->SetControlBackground(Color(COL_YELLOW));
154 0 : pFtWarn->SetText(msStrTabNameEmpty);
155 0 : pBtnOk->Disable();
156 0 : return;
157 : }
158 :
159 0 : if (!ScDocument::ValidTabName(aNewName))
160 : {
161 : // New sheet name contains invalid characters.
162 0 : pFtWarn->Show(true);
163 0 : pFtWarn->SetControlBackground(Color(COL_YELLOW));
164 0 : pFtWarn->SetText(msStrTabNameInvalid);
165 0 : pBtnOk->Disable();
166 0 : return;
167 : }
168 :
169 0 : bool bMoveInCurrentDoc = (pBtnMove->IsChecked() && IsCurrentDocSelected());
170 0 : bool bFound = false;
171 0 : sal_uInt16 nLast = pLbTable->GetEntryCount() - 1;
172 0 : for ( sal_uInt16 i=0; i<=nLast && !bFound; ++i )
173 : {
174 0 : if ( aNewName.equals(pLbTable->GetEntry(i)) )
175 : {
176 : // Only for move within same document the same name is allowed.
177 0 : if (!bMoveInCurrentDoc || !maDefaultName.equals( pEdTabName->GetText()))
178 0 : bFound = true;
179 : }
180 : }
181 :
182 0 : if ( bFound )
183 : {
184 0 : pFtWarn->Show(true);
185 0 : pFtWarn->SetControlBackground(Color(COL_YELLOW));
186 0 : pFtWarn->SetText(msStrTabNameUsed);
187 0 : pBtnOk->Disable();
188 : }
189 : else
190 : {
191 0 : pFtWarn->Hide();
192 0 : pFtWarn->SetControlBackground();
193 0 : pFtWarn->SetText(OUString());
194 0 : pBtnOk->Enable();
195 0 : }
196 : }
197 :
198 0 : ScDocument* ScMoveTableDlg::GetSelectedDoc()
199 : {
200 0 : sal_Int32 nPos = pLbDoc->GetSelectEntryPos();
201 0 : return static_cast<ScDocument*>(pLbDoc->GetEntryData(nPos));
202 : }
203 :
204 0 : bool ScMoveTableDlg::IsCurrentDocSelected() const
205 : {
206 0 : return pLbDoc->GetSelectEntryPos() == mnCurrentDocPos;
207 : }
208 :
209 0 : void ScMoveTableDlg::Init()
210 : {
211 0 : pBtnOk->SetClickHdl ( LINK( this, ScMoveTableDlg, OkHdl ) );
212 0 : pLbDoc->SetSelectHdl ( LINK( this, ScMoveTableDlg, SelHdl ) );
213 0 : pBtnCopy->SetToggleHdl( LINK( this, ScMoveTableDlg, CheckBtnHdl ) );
214 0 : pEdTabName->SetModifyHdl( LINK( this, ScMoveTableDlg, CheckNameHdl ) );
215 0 : pBtnMove->Check( true );
216 0 : pBtnCopy->Check( false );
217 0 : pEdTabName->Enable(false);
218 0 : pFtWarn->Hide();
219 0 : InitDocListBox();
220 0 : SelHdl( pLbDoc );
221 0 : }
222 :
223 0 : void ScMoveTableDlg::InitDocListBox()
224 : {
225 0 : SfxObjectShell* pSh = SfxObjectShell::GetFirst();
226 0 : ScDocShell* pScSh = NULL;
227 0 : sal_uInt16 nSelPos = 0;
228 0 : sal_uInt16 i = 0;
229 0 : OUString aEntryName;
230 :
231 0 : pLbDoc->Clear();
232 0 : pLbDoc->SetUpdateMode( false );
233 :
234 0 : while ( pSh )
235 : {
236 0 : pScSh = PTR_CAST( ScDocShell, pSh );
237 :
238 0 : if ( pScSh )
239 : {
240 0 : aEntryName = pScSh->GetTitle();
241 :
242 0 : if ( pScSh == SfxObjectShell::Current() )
243 : {
244 0 : mnCurrentDocPos = nSelPos = i;
245 0 : aEntryName += " ";
246 0 : aEntryName += msCurrentDoc;
247 : }
248 :
249 0 : pLbDoc->InsertEntry( aEntryName, i );
250 0 : pLbDoc->SetEntryData( i, (void*)pScSh->GetDocument() );
251 :
252 0 : i++;
253 : }
254 0 : pSh = SfxObjectShell::GetNext( *pSh );
255 : }
256 :
257 0 : pLbDoc->SetUpdateMode( true );
258 0 : pLbDoc->InsertEntry(msNewDoc);
259 0 : pLbDoc->SelectEntryPos( nSelPos );
260 0 : }
261 :
262 :
263 : // Handler:
264 :
265 0 : IMPL_LINK( ScMoveTableDlg, CheckBtnHdl, void *, pBtn )
266 : {
267 0 : if (pBtn == pBtnCopy)
268 0 : ResetRenameInput();
269 :
270 0 : return 0;
271 : }
272 :
273 0 : IMPL_LINK_NOARG(ScMoveTableDlg, OkHdl)
274 : {
275 0 : sal_uInt16 nDocSel = pLbDoc->GetSelectEntryPos();
276 0 : sal_uInt16 nDocLast = pLbDoc->GetEntryCount()-1;
277 0 : sal_uInt16 nTabSel = pLbTable->GetSelectEntryPos();
278 0 : sal_uInt16 nTabLast = pLbTable->GetEntryCount()-1;
279 :
280 0 : nDocument = (nDocSel != nDocLast) ? nDocSel : SC_DOC_NEW;
281 0 : nTable = (nTabSel != nTabLast) ? static_cast<SCTAB>(nTabSel) : SC_TAB_APPEND;
282 0 : bCopyTable = pBtnCopy->IsChecked();
283 :
284 0 : if (bCopyTable)
285 : {
286 : // Return an empty string when the new name is the same as the
287 : // automatic name assigned by the document.
288 0 : OUString aCopyName = maDefaultName;
289 0 : ScDocument* pDoc = GetSelectedDoc();
290 0 : if (pDoc)
291 0 : pDoc->CreateValidTabName(aCopyName);
292 0 : if (aCopyName == pEdTabName->GetText())
293 0 : pEdTabName->SetText( OUString() );
294 : }
295 : else
296 : {
297 : // Return an empty string, when the new name is the same as the
298 : // original name.
299 0 : if (maDefaultName.equals(pEdTabName->GetText()))
300 0 : pEdTabName->SetText(OUString());
301 : }
302 :
303 0 : EndDialog( RET_OK );
304 :
305 0 : return 0;
306 : }
307 :
308 0 : IMPL_LINK( ScMoveTableDlg, SelHdl, ListBox *, pLb )
309 : {
310 0 : if ( pLb == pLbDoc )
311 : {
312 0 : ScDocument* pDoc = GetSelectedDoc();
313 0 : OUString aName;
314 :
315 0 : pLbTable->Clear();
316 0 : pLbTable->SetUpdateMode( false );
317 0 : if ( pDoc )
318 : {
319 0 : SCTAB nLast = pDoc->GetTableCount()-1;
320 0 : for ( SCTAB i=0; i<=nLast; i++ )
321 : {
322 0 : pDoc->GetName( i, aName );
323 0 : pLbTable->InsertEntry( aName, static_cast<sal_uInt16>(i) );
324 : }
325 : }
326 0 : pLbTable->InsertEntry( ScGlobal::GetRscString(STR_MOVE_TO_END) );
327 0 : pLbTable->SetUpdateMode( true );
328 0 : pLbTable->SelectEntryPos( 0 );
329 0 : ResetRenameInput();
330 : }
331 :
332 0 : return 0;
333 : }
334 :
335 0 : IMPL_LINK( ScMoveTableDlg, CheckNameHdl, Edit *, pEdt )
336 : {
337 0 : if ( pEdt == pEdTabName )
338 : {
339 0 : mbEverEdited = true;
340 0 : CheckNewTabName();
341 : }
342 :
343 0 : return 0;
344 : }
345 :
346 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|