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 <svx/svdtrans.hxx>
21 : #include <unotools/localedatawrapper.hxx>
22 :
23 : #include "colrowba.hxx"
24 : #include "document.hxx"
25 : #include "scmod.hxx"
26 : #include "tabvwsh.hxx"
27 : #include "docsh.hxx"
28 : #include "appoptio.hxx"
29 : #include "globstr.hrc"
30 : #include "markdata.hxx"
31 :
32 : // STATIC DATA -----------------------------------------------------------
33 :
34 : //==================================================================
35 :
36 0 : static String lcl_MetricString( long nTwips, const String& rText )
37 : {
38 0 : if ( nTwips <= 0 )
39 0 : return ScGlobal::GetRscString(STR_TIP_HIDE);
40 : else
41 : {
42 0 : FieldUnit eUserMet = SC_MOD()->GetAppOptions().GetAppMetric();
43 :
44 0 : sal_Int64 nUserVal = MetricField::ConvertValue( nTwips*100, 1, 2, FUNIT_TWIP, eUserMet );
45 :
46 0 : String aStr = rText;
47 0 : aStr += ' ';
48 0 : aStr += ScGlobal::pLocaleData->getNum( nUserVal, 2 );
49 0 : aStr += ' ';
50 0 : aStr += SdrFormatter::GetUnitStr(eUserMet);
51 :
52 0 : return aStr;
53 : }
54 : }
55 :
56 : //==================================================================
57 :
58 0 : ScColBar::ScColBar( Window* pParent, ScViewData* pData, ScHSplitPos eWhichPos,
59 : ScHeaderFunctionSet* pFunc, ScHeaderSelectionEngine* pEng ) :
60 : ScHeaderControl( pParent, pEng, MAXCOL+1, false ),
61 : pViewData( pData ),
62 : eWhich( eWhichPos ),
63 0 : pFuncSet( pFunc )
64 : {
65 0 : Show();
66 0 : }
67 :
68 0 : ScColBar::~ScColBar()
69 : {
70 0 : }
71 :
72 0 : inline sal_Bool ScColBar::UseNumericHeader() const
73 : {
74 0 : return pViewData->GetDocument()->GetAddressConvention() == formula::FormulaGrammar::CONV_XL_R1C1;
75 : }
76 :
77 0 : SCCOLROW ScColBar::GetPos()
78 : {
79 0 : return pViewData->GetPosX(eWhich);
80 : }
81 :
82 0 : sal_uInt16 ScColBar::GetEntrySize( SCCOLROW nEntryNo )
83 : {
84 0 : ScDocument* pDoc = pViewData->GetDocument();
85 0 : SCTAB nTab = pViewData->GetTabNo();
86 0 : if (pDoc->ColHidden(static_cast<SCCOL>(nEntryNo), nTab))
87 0 : return 0;
88 : else
89 0 : return (sal_uInt16) ScViewData::ToPixel( pDoc->GetColWidth( static_cast<SCCOL>(nEntryNo), nTab ), pViewData->GetPPTX() );
90 : }
91 :
92 0 : String ScColBar::GetEntryText( SCCOLROW nEntryNo )
93 : {
94 0 : return UseNumericHeader()
95 : ? String::CreateFromInt32( nEntryNo + 1 )
96 0 : : ScColToAlpha( static_cast<SCCOL>(nEntryNo) );
97 : }
98 :
99 0 : void ScColBar::SetEntrySize( SCCOLROW nPos, sal_uInt16 nNewSize )
100 : {
101 : sal_uInt16 nSizeTwips;
102 0 : ScSizeMode eMode = SC_SIZE_DIRECT;
103 0 : if (nNewSize>0 && nNewSize<10) nNewSize=10; // (Pixel)
104 :
105 0 : if ( nNewSize == HDR_SIZE_OPTIMUM )
106 : {
107 0 : nSizeTwips = STD_EXTRA_WIDTH;
108 0 : eMode = SC_SIZE_OPTIMAL;
109 : }
110 : else
111 0 : nSizeTwips = (sal_uInt16) ( nNewSize / pViewData->GetPPTX() );
112 :
113 0 : ScMarkData& rMark = pViewData->GetMarkData();
114 :
115 0 : SCCOLROW* pRanges = new SCCOLROW[MAXCOL+1];
116 0 : SCCOL nRangeCnt = 0;
117 0 : if ( rMark.IsColumnMarked( static_cast<SCCOL>(nPos) ) )
118 : {
119 0 : SCCOL nStart = 0;
120 0 : while (nStart<=MAXCOL)
121 : {
122 0 : while (nStart<MAXCOL && !rMark.IsColumnMarked(nStart))
123 0 : ++nStart;
124 0 : if (rMark.IsColumnMarked(nStart))
125 : {
126 0 : SCCOL nEnd = nStart;
127 0 : while (nEnd<MAXCOL && rMark.IsColumnMarked(nEnd))
128 0 : ++nEnd;
129 0 : if (!rMark.IsColumnMarked(nEnd))
130 0 : --nEnd;
131 0 : pRanges[static_cast<size_t>(2*nRangeCnt) ] = nStart;
132 0 : pRanges[static_cast<size_t>(2*nRangeCnt+1)] = nEnd;
133 0 : ++nRangeCnt;
134 0 : nStart = nEnd+1;
135 : }
136 : else
137 0 : nStart = MAXCOL+1;
138 : }
139 : }
140 : else
141 : {
142 0 : pRanges[0] = nPos;
143 0 : pRanges[1] = nPos;
144 0 : nRangeCnt = 1;
145 : }
146 :
147 0 : pViewData->GetView()->SetWidthOrHeight( sal_True, nRangeCnt, pRanges, eMode, nSizeTwips );
148 0 : delete[] pRanges;
149 0 : }
150 :
151 0 : void ScColBar::HideEntries( SCCOLROW nStart, SCCOLROW nEnd )
152 : {
153 : SCCOLROW nRange[2];
154 0 : nRange[0] = nStart;
155 0 : nRange[1] = nEnd;
156 0 : pViewData->GetView()->SetWidthOrHeight( sal_True, 1, nRange, SC_SIZE_DIRECT, 0 );
157 0 : }
158 :
159 0 : void ScColBar::SetMarking( sal_Bool bSet )
160 : {
161 0 : pViewData->GetMarkData().SetMarking( bSet );
162 0 : if (!bSet)
163 : {
164 0 : pViewData->GetView()->UpdateAutoFillMark();
165 : }
166 0 : }
167 :
168 0 : void ScColBar::SelectWindow()
169 : {
170 0 : ScTabViewShell* pViewSh = pViewData->GetViewShell();
171 :
172 0 : pViewSh->SetActive(); // Appear and SetViewFrame
173 0 : pViewSh->DrawDeselectAll();
174 :
175 0 : ScSplitPos eActive = pViewData->GetActivePart();
176 0 : if (eWhich==SC_SPLIT_LEFT)
177 : {
178 0 : if (eActive==SC_SPLIT_TOPRIGHT) eActive=SC_SPLIT_TOPLEFT;
179 0 : if (eActive==SC_SPLIT_BOTTOMRIGHT) eActive=SC_SPLIT_BOTTOMLEFT;
180 : }
181 : else
182 : {
183 0 : if (eActive==SC_SPLIT_TOPLEFT) eActive=SC_SPLIT_TOPRIGHT;
184 0 : if (eActive==SC_SPLIT_BOTTOMLEFT) eActive=SC_SPLIT_BOTTOMRIGHT;
185 : }
186 0 : pViewSh->ActivatePart( eActive );
187 :
188 0 : pFuncSet->SetColumn( sal_True );
189 0 : pFuncSet->SetWhich( eActive );
190 :
191 0 : pViewSh->ActiveGrabFocus();
192 0 : }
193 :
194 0 : sal_Bool ScColBar::IsDisabled()
195 : {
196 0 : ScModule* pScMod = SC_MOD();
197 0 : return pScMod->IsFormulaMode() || pScMod->IsModalMode();
198 : }
199 :
200 0 : sal_Bool ScColBar::ResizeAllowed()
201 : {
202 0 : return !pViewData->HasEditView( pViewData->GetActivePart() );
203 : }
204 :
205 0 : void ScColBar::DrawInvert( long nDragPosP )
206 : {
207 0 : Rectangle aRect( nDragPosP,0, nDragPosP+HDR_SLIDERSIZE-1,GetOutputSizePixel().Width()-1 );
208 0 : Update();
209 0 : Invert(aRect);
210 :
211 0 : pViewData->GetView()->InvertVertical(eWhich,nDragPosP);
212 0 : }
213 :
214 0 : String ScColBar::GetDragHelp( long nVal )
215 : {
216 0 : long nTwips = (long) ( nVal / pViewData->GetPPTX() );
217 0 : return lcl_MetricString( nTwips, ScGlobal::GetRscString(STR_TIP_WIDTH) );
218 : }
219 :
220 0 : sal_Bool ScColBar::IsLayoutRTL() // overloaded only for columns
221 : {
222 0 : return pViewData->GetDocument()->IsLayoutRTL( pViewData->GetTabNo() );
223 : }
224 :
225 : //==================================================================
226 :
227 0 : ScRowBar::ScRowBar( Window* pParent, ScViewData* pData, ScVSplitPos eWhichPos,
228 : ScHeaderFunctionSet* pFunc, ScHeaderSelectionEngine* pEng ) :
229 : ScHeaderControl( pParent, pEng, MAXROW+1, true ),
230 : pViewData( pData ),
231 : eWhich( eWhichPos ),
232 0 : pFuncSet( pFunc )
233 : {
234 0 : Show();
235 0 : }
236 :
237 0 : ScRowBar::~ScRowBar()
238 : {
239 0 : }
240 :
241 0 : SCCOLROW ScRowBar::GetPos()
242 : {
243 0 : return pViewData->GetPosY(eWhich);
244 : }
245 :
246 0 : sal_uInt16 ScRowBar::GetEntrySize( SCCOLROW nEntryNo )
247 : {
248 0 : ScDocument* pDoc = pViewData->GetDocument();
249 0 : SCTAB nTab = pViewData->GetTabNo();
250 0 : SCROW nLastRow = -1;
251 0 : if (pDoc->RowHidden(nEntryNo, nTab, NULL, &nLastRow))
252 0 : return 0;
253 : else
254 : return (sal_uInt16) ScViewData::ToPixel( pDoc->GetOriginalHeight( nEntryNo,
255 0 : nTab ), pViewData->GetPPTY() );
256 : }
257 :
258 0 : String ScRowBar::GetEntryText( SCCOLROW nEntryNo )
259 : {
260 0 : return String::CreateFromInt32( nEntryNo + 1 );
261 : }
262 :
263 0 : void ScRowBar::SetEntrySize( SCCOLROW nPos, sal_uInt16 nNewSize )
264 : {
265 : sal_uInt16 nSizeTwips;
266 0 : ScSizeMode eMode = SC_SIZE_DIRECT;
267 0 : if (nNewSize>0 && nNewSize<10) nNewSize=10; // (Pixel)
268 :
269 0 : if ( nNewSize == HDR_SIZE_OPTIMUM )
270 : {
271 0 : nSizeTwips = 0;
272 0 : eMode = SC_SIZE_OPTIMAL;
273 : }
274 : else
275 0 : nSizeTwips = (sal_uInt16) ( nNewSize / pViewData->GetPPTY() );
276 :
277 0 : ScMarkData& rMark = pViewData->GetMarkData();
278 :
279 0 : SCCOLROW* pRanges = new SCCOLROW[MAXROW+1];
280 0 : SCROW nRangeCnt = 0;
281 0 : if ( rMark.IsRowMarked( nPos ) )
282 : {
283 0 : SCROW nStart = 0;
284 0 : while (nStart<=MAXROW)
285 : {
286 0 : while (nStart<MAXROW && !rMark.IsRowMarked(nStart))
287 0 : ++nStart;
288 0 : if (rMark.IsRowMarked(nStart))
289 : {
290 0 : SCROW nEnd = nStart;
291 0 : while (nEnd<MAXROW && rMark.IsRowMarked(nEnd))
292 0 : ++nEnd;
293 0 : if (!rMark.IsRowMarked(nEnd))
294 0 : --nEnd;
295 0 : pRanges[static_cast<size_t>(2*nRangeCnt) ] = nStart;
296 0 : pRanges[static_cast<size_t>(2*nRangeCnt+1)] = nEnd;
297 0 : ++nRangeCnt;
298 0 : nStart = nEnd+1;
299 : }
300 : else
301 0 : nStart = MAXROW+1;
302 : }
303 : }
304 : else
305 : {
306 0 : pRanges[0] = nPos;
307 0 : pRanges[1] = nPos;
308 0 : nRangeCnt = 1;
309 : }
310 :
311 0 : pViewData->GetView()->SetWidthOrHeight( false, nRangeCnt, pRanges, eMode, nSizeTwips );
312 0 : delete[] pRanges;
313 0 : }
314 :
315 0 : void ScRowBar::HideEntries( SCCOLROW nStart, SCCOLROW nEnd )
316 : {
317 : SCCOLROW nRange[2];
318 0 : nRange[0] = nStart;
319 0 : nRange[1] = nEnd;
320 0 : pViewData->GetView()->SetWidthOrHeight( false, 1, nRange, SC_SIZE_DIRECT, 0 );
321 0 : }
322 :
323 0 : void ScRowBar::SetMarking( sal_Bool bSet )
324 : {
325 0 : pViewData->GetMarkData().SetMarking( bSet );
326 0 : if (!bSet)
327 : {
328 0 : pViewData->GetView()->UpdateAutoFillMark();
329 : }
330 0 : }
331 :
332 0 : void ScRowBar::SelectWindow()
333 : {
334 0 : ScTabViewShell* pViewSh = pViewData->GetViewShell();
335 :
336 0 : pViewSh->SetActive(); // Appear and SetViewFrame
337 0 : pViewSh->DrawDeselectAll();
338 :
339 0 : ScSplitPos eActive = pViewData->GetActivePart();
340 0 : if (eWhich==SC_SPLIT_TOP)
341 : {
342 0 : if (eActive==SC_SPLIT_BOTTOMLEFT) eActive=SC_SPLIT_TOPLEFT;
343 0 : if (eActive==SC_SPLIT_BOTTOMRIGHT) eActive=SC_SPLIT_TOPRIGHT;
344 : }
345 : else
346 : {
347 0 : if (eActive==SC_SPLIT_TOPLEFT) eActive=SC_SPLIT_BOTTOMLEFT;
348 0 : if (eActive==SC_SPLIT_TOPRIGHT) eActive=SC_SPLIT_BOTTOMRIGHT;
349 : }
350 0 : pViewSh->ActivatePart( eActive );
351 :
352 0 : pFuncSet->SetColumn( false );
353 0 : pFuncSet->SetWhich( eActive );
354 :
355 0 : pViewSh->ActiveGrabFocus();
356 0 : }
357 :
358 0 : sal_Bool ScRowBar::IsDisabled()
359 : {
360 0 : ScModule* pScMod = SC_MOD();
361 0 : return pScMod->IsFormulaMode() || pScMod->IsModalMode();
362 : }
363 :
364 0 : sal_Bool ScRowBar::ResizeAllowed()
365 : {
366 0 : return !pViewData->HasEditView( pViewData->GetActivePart() );
367 : }
368 :
369 0 : void ScRowBar::DrawInvert( long nDragPosP )
370 : {
371 0 : Rectangle aRect( 0,nDragPosP, GetOutputSizePixel().Width()-1,nDragPosP+HDR_SLIDERSIZE-1 );
372 0 : Update();
373 0 : Invert(aRect);
374 :
375 0 : pViewData->GetView()->InvertHorizontal(eWhich,nDragPosP);
376 0 : }
377 :
378 0 : String ScRowBar::GetDragHelp( long nVal )
379 : {
380 0 : long nTwips = (long) ( nVal / pViewData->GetPPTY() );
381 0 : return lcl_MetricString( nTwips, ScGlobal::GetRscString(STR_TIP_HEIGHT) );
382 : }
383 :
384 0 : SCROW ScRowBar::GetHiddenCount( SCROW nEntryNo ) // overloaded only for rows
385 : {
386 0 : ScDocument* pDoc = pViewData->GetDocument();
387 0 : SCTAB nTab = pViewData->GetTabNo();
388 0 : return pDoc->GetHiddenRowCount( nEntryNo, nTab );
389 : }
390 :
391 0 : sal_Bool ScRowBar::IsMirrored() // overloaded only for rows
392 : {
393 0 : return pViewData->GetDocument()->IsLayoutRTL( pViewData->GetTabNo() );
394 15 : }
395 :
396 :
397 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|