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