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/morebtn.hxx>
21 : #include <svtools/stdctrl.hxx>
22 :
23 : #include "anyrefdg.hxx"
24 : #include "rangeutl.hxx"
25 : #include "dbdata.hxx"
26 : #include "viewdata.hxx"
27 : #include "document.hxx"
28 : #include "queryparam.hxx"
29 : #include "globalnames.hxx"
30 :
31 : #define _FOPTMGR_CXX
32 : #include "foptmgr.hxx"
33 : #undef _FOPTMGR_CXX
34 :
35 : //----------------------------------------------------------------------------
36 :
37 0 : ScFilterOptionsMgr::ScFilterOptionsMgr(
38 : ScViewData* ptrViewData,
39 : const ScQueryParam& refQueryData,
40 : MoreButton& refBtnMore,
41 : CheckBox& refBtnCase,
42 : CheckBox& refBtnRegExp,
43 : CheckBox& refBtnHeader,
44 : CheckBox& refBtnUnique,
45 : CheckBox& refBtnCopyResult,
46 : CheckBox& refBtnDestPers,
47 : ListBox& refLbCopyArea,
48 : Edit& refEdCopyArea,
49 : formula::RefButton& refRbCopyArea,
50 : FixedText& refFtDbAreaLabel,
51 : FixedInfo& refFtDbArea,
52 : FixedLine& refFlOptions,
53 : const String& refStrUndefined )
54 :
55 : : pViewData ( ptrViewData ),
56 : pDoc ( ptrViewData ? ptrViewData->GetDocument() : NULL ),
57 : rBtnMore ( refBtnMore ),
58 : rBtnCase ( refBtnCase ),
59 : rBtnRegExp ( refBtnRegExp ),
60 : rBtnHeader ( refBtnHeader ),
61 : rBtnUnique ( refBtnUnique ),
62 : rBtnCopyResult ( refBtnCopyResult ),
63 : rBtnDestPers ( refBtnDestPers ),
64 : rLbCopyPos ( refLbCopyArea ),
65 : rEdCopyPos ( refEdCopyArea ),
66 : rRbCopyPos ( refRbCopyArea ),
67 : rFtDbAreaLabel ( refFtDbAreaLabel ),
68 : rFtDbArea ( refFtDbArea ),
69 : rFlOptions ( refFlOptions ),
70 : rStrUndefined ( refStrUndefined ),
71 0 : rQueryData ( refQueryData )
72 : {
73 0 : Init();
74 0 : }
75 :
76 :
77 : //----------------------------------------------------------------------------
78 :
79 0 : ScFilterOptionsMgr::~ScFilterOptionsMgr()
80 : {
81 0 : sal_uInt16 nEntries = rLbCopyPos.GetEntryCount();
82 : sal_uInt16 i;
83 :
84 0 : for ( i=2; i<nEntries; i++ )
85 0 : delete (String*)rLbCopyPos.GetEntryData( i );
86 0 : }
87 :
88 :
89 : //----------------------------------------------------------------------------
90 :
91 0 : void ScFilterOptionsMgr::Init()
92 : {
93 : //moggi:TODO
94 : OSL_ENSURE( pViewData && pDoc, "Init failed :-/" );
95 :
96 0 : rLbCopyPos.SetSelectHdl ( LINK( this, ScFilterOptionsMgr, LbPosSelHdl ) );
97 0 : rEdCopyPos.SetModifyHdl ( LINK( this, ScFilterOptionsMgr, EdPosModifyHdl ) );
98 0 : rBtnCopyResult.SetClickHdl( LINK( this, ScFilterOptionsMgr, BtnCopyResultHdl ) );
99 :
100 0 : rBtnMore.AddWindow( &rBtnCase );
101 0 : rBtnMore.AddWindow( &rBtnRegExp );
102 0 : rBtnMore.AddWindow( &rBtnHeader );
103 0 : rBtnMore.AddWindow( &rBtnUnique );
104 0 : rBtnMore.AddWindow( &rBtnCopyResult );
105 0 : rBtnMore.AddWindow( &rBtnDestPers );
106 0 : rBtnMore.AddWindow( &rLbCopyPos );
107 0 : rBtnMore.AddWindow( &rEdCopyPos );
108 0 : rBtnMore.AddWindow( &rRbCopyPos );
109 0 : rBtnMore.AddWindow( &rFtDbAreaLabel );
110 0 : rBtnMore.AddWindow( &rFtDbArea );
111 0 : rBtnMore.AddWindow( &rFlOptions );
112 :
113 0 : rBtnCase .Check( rQueryData.bCaseSens );
114 0 : rBtnHeader .Check( rQueryData.bHasHeader );
115 0 : rBtnRegExp .Check( rQueryData.bRegExp );
116 0 : rBtnUnique .Check( !rQueryData.bDuplicate );
117 :
118 0 : if ( pViewData && pDoc )
119 : {
120 0 : rtl::OUString theAreaStr;
121 : ScRange theCurArea ( ScAddress( rQueryData.nCol1,
122 : rQueryData.nRow1,
123 0 : pViewData->GetTabNo() ),
124 : ScAddress( rQueryData.nCol2,
125 : rQueryData.nRow2,
126 0 : pViewData->GetTabNo() ) );
127 0 : ScDBCollection* pDBColl = pDoc->GetDBCollection();
128 0 : rtl::OUStringBuffer theDbArea;
129 0 : rtl::OUString theDbName(RTL_CONSTASCII_USTRINGPARAM(STR_DB_LOCAL_NONAME));
130 0 : const formula::FormulaGrammar::AddressConvention eConv = pDoc->GetAddressConvention();
131 :
132 0 : theCurArea.Format( theAreaStr, SCR_ABS_3D, pDoc, eConv );
133 :
134 : // Zielbereichsliste fuellen
135 :
136 0 : rLbCopyPos.Clear();
137 0 : rLbCopyPos.InsertEntry( rStrUndefined, 0 );
138 :
139 0 : ScAreaNameIterator aIter( pDoc );
140 0 : String aName;
141 0 : ScRange aRange;
142 0 : String aRefStr;
143 0 : while ( aIter.Next( aName, aRange ) )
144 : {
145 0 : sal_uInt16 nInsert = rLbCopyPos.InsertEntry( aName );
146 :
147 0 : aRange.aStart.Format( aRefStr, SCA_ABS_3D, pDoc, eConv );
148 0 : rLbCopyPos.SetEntryData( nInsert, new String( aRefStr ) );
149 : }
150 :
151 0 : rBtnDestPers.Check( sal_True ); // beim Aufruf immer an
152 0 : rLbCopyPos.SelectEntryPos( 0 );
153 0 : rEdCopyPos.SetText( EMPTY_STRING );
154 :
155 : /*
156 : * Ueberpruefen, ob es sich bei dem uebergebenen
157 : * Bereich um einen Datenbankbereich handelt:
158 : */
159 :
160 0 : theDbArea = theAreaStr;
161 :
162 0 : if ( pDBColl )
163 : {
164 0 : ScAddress& rStart = theCurArea.aStart;
165 0 : ScAddress& rEnd = theCurArea.aEnd;
166 : const ScDBData* pDBData = pDBColl->GetDBAtArea(
167 0 : rStart.Tab(), rStart.Col(), rStart.Row(), rEnd.Col(), rEnd.Row());
168 :
169 0 : if ( pDBData )
170 : {
171 0 : rBtnHeader.Check( pDBData->HasHeader() );
172 0 : theDbName = pDBData->GetName();
173 :
174 0 : if ( theDbName == STR_DB_LOCAL_NONAME )
175 0 : rBtnHeader.Enable();
176 : else
177 0 : rBtnHeader.Disable();
178 : }
179 : }
180 :
181 0 : if ( !theDbName.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(STR_DB_LOCAL_NONAME)) )
182 : {
183 0 : theDbArea.appendAscii(RTL_CONSTASCII_STRINGPARAM(" ("));
184 0 : theDbArea.append(theDbName).append(')');
185 0 : rFtDbArea.SetText( theDbArea.makeStringAndClear() );
186 : }
187 : else
188 : {
189 0 : rFtDbAreaLabel.SetText( rtl::OUString() );
190 0 : rFtDbArea.SetText( rtl::OUString() );
191 : }
192 :
193 : //------------------------------------------------------
194 : // Kopierposition:
195 :
196 0 : if ( !rQueryData.bInplace )
197 : {
198 0 : String aString;
199 :
200 : ScAddress( rQueryData.nDestCol,
201 : rQueryData.nDestRow,
202 : rQueryData.nDestTab
203 0 : ).Format( aString, SCA_ABS_3D, pDoc, eConv );
204 :
205 0 : rBtnCopyResult.Check( sal_True );
206 0 : rEdCopyPos.SetText( aString );
207 0 : EdPosModifyHdl( &rEdCopyPos );
208 0 : rLbCopyPos.Enable();
209 0 : rEdCopyPos.Enable();
210 0 : rRbCopyPos.Enable();
211 0 : rBtnDestPers.Enable();
212 : }
213 : else
214 : {
215 0 : rBtnCopyResult.Check( false );
216 0 : rEdCopyPos.SetText( EMPTY_STRING );
217 0 : rLbCopyPos.Disable();
218 0 : rEdCopyPos.Disable();
219 0 : rRbCopyPos.Disable();
220 0 : rBtnDestPers.Disable();
221 0 : }
222 : }
223 : else
224 0 : rEdCopyPos.SetText( EMPTY_STRING );
225 0 : }
226 :
227 :
228 : //----------------------------------------------------------------------------
229 :
230 0 : sal_Bool ScFilterOptionsMgr::VerifyPosStr( const String& rPosStr ) const
231 : {
232 0 : String aPosStr( rPosStr );
233 0 : xub_StrLen nColonPos = aPosStr.Search( ':' );
234 :
235 0 : if ( STRING_NOTFOUND != nColonPos )
236 0 : aPosStr.Erase( nColonPos );
237 :
238 0 : sal_uInt16 nResult = ScAddress().Parse( aPosStr, pDoc, pDoc->GetAddressConvention() );
239 :
240 0 : return ( SCA_VALID == (nResult & SCA_VALID) );
241 : }
242 :
243 :
244 : //----------------------------------------------------------------------------
245 : // Handler:
246 :
247 : //----------------------------------------------------------------------------
248 :
249 0 : IMPL_LINK( ScFilterOptionsMgr, LbPosSelHdl, ListBox*, pLb )
250 : {
251 0 : if ( pLb == &rLbCopyPos )
252 : {
253 0 : String aString;
254 0 : sal_uInt16 nSelPos = rLbCopyPos.GetSelectEntryPos();
255 :
256 0 : if ( nSelPos > 0 )
257 0 : aString = *(String*)rLbCopyPos.GetEntryData( nSelPos );
258 :
259 0 : rEdCopyPos.SetText( aString );
260 : }
261 :
262 0 : return 0;
263 : }
264 :
265 :
266 : //----------------------------------------------------------------------------
267 :
268 0 : IMPL_LINK( ScFilterOptionsMgr, EdPosModifyHdl, Edit*, pEd )
269 : {
270 0 : if ( pEd == &rEdCopyPos )
271 : {
272 0 : String theCurPosStr = pEd->GetText();
273 0 : sal_uInt16 nResult = ScAddress().Parse( theCurPosStr, pDoc, pDoc->GetAddressConvention() );
274 :
275 0 : if ( SCA_VALID == (nResult & SCA_VALID) )
276 : {
277 0 : String* pStr = NULL;
278 0 : sal_Bool bFound = false;
279 0 : sal_uInt16 i = 0;
280 0 : sal_uInt16 nCount = rLbCopyPos.GetEntryCount();
281 :
282 0 : for ( i=2; i<nCount && !bFound; i++ )
283 : {
284 0 : pStr = (String*)rLbCopyPos.GetEntryData( i );
285 0 : bFound = (theCurPosStr == *pStr);
286 : }
287 :
288 0 : if ( bFound )
289 0 : rLbCopyPos.SelectEntryPos( --i );
290 : else
291 0 : rLbCopyPos.SelectEntryPos( 0 );
292 : }
293 : else
294 0 : rLbCopyPos.SelectEntryPos( 0 );
295 : }
296 :
297 0 : return 0;
298 : }
299 :
300 :
301 : //----------------------------------------------------------------------------
302 :
303 0 : IMPL_LINK( ScFilterOptionsMgr, BtnCopyResultHdl, CheckBox*, pBox )
304 : {
305 0 : if ( pBox == &rBtnCopyResult )
306 : {
307 0 : if ( pBox->IsChecked() )
308 : {
309 0 : rBtnDestPers.Enable();
310 0 : rLbCopyPos.Enable();
311 0 : rEdCopyPos.Enable();
312 0 : rRbCopyPos.Enable();
313 0 : rEdCopyPos.GrabFocus();
314 : }
315 : else
316 : {
317 0 : rBtnDestPers.Disable();
318 0 : rLbCopyPos.Disable();
319 0 : rEdCopyPos.Disable();
320 0 : rRbCopyPos.Disable();
321 : }
322 : }
323 :
324 0 : return 0;
325 15 : }
326 :
327 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|