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 "csvcontrol.hxx"
21 : #include <vcl/svapp.hxx>
22 : #include <vcl/settings.hxx>
23 : #include "AccessibleCsvControl.hxx"
24 :
25 0 : ScCsvLayoutData::ScCsvLayoutData() :
26 : mnPosCount( 1 ),
27 : mnPosOffset( 0 ),
28 : mnWinWidth( 1 ),
29 : mnHdrWidth( 0 ),
30 : mnCharWidth( 1 ),
31 : mnLineCount( 1 ),
32 : mnLineOffset( 0 ),
33 : mnWinHeight( 1 ),
34 : mnHdrHeight( 0 ),
35 : mnLineHeight( 1 ),
36 : mnPosCursor( CSV_POS_INVALID ),
37 : mnColCursor( 0 ),
38 : mnNoRepaint( 0 ),
39 0 : mbAppRTL( !!Application::GetSettings().GetLayoutRTL() )
40 : {
41 0 : }
42 :
43 0 : ScCsvDiff ScCsvLayoutData::GetDiff( const ScCsvLayoutData& rData ) const
44 : {
45 0 : ScCsvDiff nRet = CSV_DIFF_EQUAL;
46 0 : if( mnPosCount != rData.mnPosCount ) nRet |= CSV_DIFF_POSCOUNT;
47 0 : if( mnPosOffset != rData.mnPosOffset ) nRet |= CSV_DIFF_POSOFFSET;
48 0 : if( mnHdrWidth != rData.mnHdrWidth ) nRet |= CSV_DIFF_HDRWIDTH;
49 0 : if( mnCharWidth != rData.mnCharWidth ) nRet |= CSV_DIFF_CHARWIDTH;
50 0 : if( mnLineCount != rData.mnLineCount ) nRet |= CSV_DIFF_LINECOUNT;
51 0 : if( mnLineOffset != rData.mnLineOffset ) nRet |= CSV_DIFF_LINEOFFSET;
52 0 : if( mnHdrHeight != rData.mnHdrHeight ) nRet |= CSV_DIFF_HDRHEIGHT;
53 0 : if( mnLineHeight != rData.mnLineHeight ) nRet |= CSV_DIFF_LINEHEIGHT;
54 0 : if( mnPosCursor != rData.mnPosCursor ) nRet |= CSV_DIFF_RULERCURSOR;
55 0 : if( mnColCursor != rData.mnColCursor ) nRet |= CSV_DIFF_GRIDCURSOR;
56 0 : return nRet;
57 : }
58 :
59 0 : ScCsvControl::ScCsvControl( ScCsvControl& rParent ) :
60 : Control( &rParent, WB_TABSTOP | WB_NODIALOGCONTROL ),
61 0 : mrData( rParent.GetLayoutData() ),
62 : mpAccessible( NULL ),
63 0 : mbValidGfx( false )
64 : {
65 0 : }
66 :
67 0 : ScCsvControl::ScCsvControl( vcl::Window* pParent, const ScCsvLayoutData& rData, WinBits nBits ) :
68 : Control( pParent, nBits ),
69 : mrData( rData ),
70 : mpAccessible( NULL ),
71 0 : mbValidGfx( false )
72 : {
73 0 : }
74 :
75 0 : ScCsvControl::~ScCsvControl()
76 : {
77 0 : if( mpAccessible )
78 0 : mpAccessible->dispose();
79 0 : }
80 :
81 : // event handling -------------------------------------------------------------
82 :
83 0 : void ScCsvControl::GetFocus()
84 : {
85 0 : Control::GetFocus();
86 0 : AccSendFocusEvent( true );
87 0 : }
88 :
89 0 : void ScCsvControl::LoseFocus()
90 : {
91 0 : Control::LoseFocus();
92 0 : AccSendFocusEvent( false );
93 0 : }
94 :
95 0 : void ScCsvControl::AccSendFocusEvent( bool bFocused )
96 : {
97 0 : if( mpAccessible )
98 0 : mpAccessible->SendFocusEvent( bFocused );
99 0 : }
100 :
101 0 : void ScCsvControl::AccSendCaretEvent()
102 : {
103 0 : if( mpAccessible )
104 0 : mpAccessible->SendCaretEvent();
105 0 : }
106 :
107 0 : void ScCsvControl::AccSendVisibleEvent()
108 : {
109 0 : if( mpAccessible )
110 0 : mpAccessible->SendVisibleEvent();
111 0 : }
112 :
113 0 : void ScCsvControl::AccSendSelectionEvent()
114 : {
115 0 : if( mpAccessible )
116 0 : mpAccessible->SendSelectionEvent();
117 0 : }
118 :
119 0 : void ScCsvControl::AccSendTableUpdateEvent( sal_uInt32 nFirstColumn, sal_uInt32 nLastColumn, bool bAllRows )
120 : {
121 0 : if( mpAccessible )
122 0 : mpAccessible->SendTableUpdateEvent( nFirstColumn, nLastColumn, bAllRows );
123 0 : }
124 :
125 0 : void ScCsvControl::AccSendInsertColumnEvent( sal_uInt32 nFirstColumn, sal_uInt32 nLastColumn )
126 : {
127 0 : if( mpAccessible )
128 0 : mpAccessible->SendInsertColumnEvent( nFirstColumn, nLastColumn );
129 0 : }
130 :
131 0 : void ScCsvControl::AccSendRemoveColumnEvent( sal_uInt32 nFirstColumn, sal_uInt32 nLastColumn )
132 : {
133 0 : if( mpAccessible )
134 0 : mpAccessible->SendRemoveColumnEvent( nFirstColumn, nLastColumn );
135 0 : }
136 :
137 : // repaint helpers ------------------------------------------------------------
138 :
139 0 : void ScCsvControl::Repaint( bool bInvalidate )
140 : {
141 0 : if( bInvalidate )
142 0 : InvalidateGfx();
143 0 : if( !IsNoRepaint() )
144 0 : Execute( CSVCMD_REPAINT );
145 0 : }
146 :
147 0 : void ScCsvControl::DisableRepaint()
148 : {
149 0 : ++mrData.mnNoRepaint;
150 0 : }
151 :
152 0 : void ScCsvControl::EnableRepaint( bool bInvalidate )
153 : {
154 : OSL_ENSURE( IsNoRepaint(), "ScCsvControl::EnableRepaint - invalid call" );
155 0 : --mrData.mnNoRepaint;
156 0 : Repaint( bInvalidate );
157 0 : }
158 :
159 : // command handling -----------------------------------------------------------
160 :
161 0 : void ScCsvControl::Execute( ScCsvCmdType eType, sal_Int32 nParam1, sal_Int32 nParam2 )
162 : {
163 0 : maCmd.Set( eType, nParam1, nParam2 );
164 0 : maCmdHdl.Call( this );
165 0 : }
166 :
167 : // layout helpers -------------------------------------------------------------
168 :
169 0 : sal_Int32 ScCsvControl::GetVisPosCount() const
170 : {
171 0 : return (mrData.mnWinWidth - GetHdrWidth()) / GetCharWidth();
172 : }
173 :
174 0 : sal_Int32 ScCsvControl::GetMaxPosOffset() const
175 : {
176 0 : return std::max( GetPosCount() - GetVisPosCount() + 2L, 0L );
177 : }
178 :
179 0 : bool ScCsvControl::IsValidSplitPos( sal_Int32 nPos ) const
180 : {
181 0 : return (0 < nPos) && (nPos < GetPosCount() );
182 : }
183 :
184 0 : bool ScCsvControl::IsVisibleSplitPos( sal_Int32 nPos ) const
185 : {
186 0 : return IsValidSplitPos( nPos ) && (GetFirstVisPos() <= nPos) && (nPos <= GetLastVisPos());
187 : }
188 :
189 0 : sal_Int32 ScCsvControl::GetHdrX() const
190 : {
191 0 : return IsRTL() ? (mrData.mnWinWidth - GetHdrWidth()) : 0;
192 : }
193 :
194 0 : sal_Int32 ScCsvControl::GetFirstX() const
195 : {
196 0 : return IsRTL() ? 0 : GetHdrWidth();
197 : }
198 :
199 0 : sal_Int32 ScCsvControl::GetLastX() const
200 : {
201 0 : return mrData.mnWinWidth - (IsRTL() ? GetHdrWidth() : 0) - 1;
202 : }
203 :
204 0 : sal_Int32 ScCsvControl::GetX( sal_Int32 nPos ) const
205 : {
206 0 : return GetFirstX() + (nPos - GetFirstVisPos()) * GetCharWidth();
207 : }
208 :
209 0 : sal_Int32 ScCsvControl::GetPosFromX( sal_Int32 nX ) const
210 : {
211 0 : return (nX - GetFirstX() + GetCharWidth() / 2) / GetCharWidth() + GetFirstVisPos();
212 : }
213 :
214 0 : sal_Int32 ScCsvControl::GetVisLineCount() const
215 : {
216 0 : return (mrData.mnWinHeight - GetHdrHeight() - 2) / GetLineHeight() + 1;
217 : }
218 :
219 0 : sal_Int32 ScCsvControl::GetLastVisLine() const
220 : {
221 0 : return std::min( GetFirstVisLine() + GetVisLineCount(), GetLineCount() ) - 1;
222 : }
223 :
224 0 : sal_Int32 ScCsvControl::GetMaxLineOffset() const
225 : {
226 0 : return std::max( GetLineCount() - GetVisLineCount() + 1L, 0L );
227 : }
228 :
229 0 : bool ScCsvControl::IsValidLine( sal_Int32 nLine ) const
230 : {
231 0 : return (0 <= nLine) && (nLine < GetLineCount());
232 : }
233 :
234 0 : bool ScCsvControl::IsVisibleLine( sal_Int32 nLine ) const
235 : {
236 0 : return IsValidLine( nLine ) && (GetFirstVisLine() <= nLine) && (nLine <= GetLastVisLine());
237 : }
238 :
239 0 : sal_Int32 ScCsvControl::GetY( sal_Int32 nLine ) const
240 : {
241 0 : return GetHdrHeight() + (nLine - GetFirstVisLine()) * GetLineHeight();
242 : }
243 :
244 0 : sal_Int32 ScCsvControl::GetLineFromY( sal_Int32 nY ) const
245 : {
246 0 : return (nY - GetHdrHeight()) / GetLineHeight() + GetFirstVisLine();
247 : }
248 :
249 : // static helpers -------------------------------------------------------------
250 :
251 0 : void ScCsvControl::ImplInvertRect( OutputDevice& rOutDev, const Rectangle& rRect )
252 : {
253 0 : rOutDev.Push( PushFlags::LINECOLOR | PushFlags::FILLCOLOR | PushFlags::RASTEROP );
254 0 : rOutDev.SetLineColor( Color( COL_BLACK ) );
255 0 : rOutDev.SetFillColor( Color( COL_BLACK ) );
256 0 : rOutDev.SetRasterOp( ROP_INVERT );
257 0 : rOutDev.DrawRect( rRect );
258 0 : rOutDev.Pop();
259 0 : }
260 :
261 0 : ScMoveMode ScCsvControl::GetHorzDirection( sal_uInt16 nCode, bool bHomeEnd )
262 : {
263 0 : switch( nCode )
264 : {
265 0 : case KEY_LEFT: return MOVE_PREV;
266 0 : case KEY_RIGHT: return MOVE_NEXT;
267 : }
268 0 : if( bHomeEnd ) switch( nCode )
269 : {
270 0 : case KEY_HOME: return MOVE_FIRST;
271 0 : case KEY_END: return MOVE_LAST;
272 : }
273 0 : return MOVE_NONE;
274 : }
275 :
276 0 : ScMoveMode ScCsvControl::GetVertDirection( sal_uInt16 nCode, bool bHomeEnd )
277 : {
278 0 : switch( nCode )
279 : {
280 0 : case KEY_UP: return MOVE_PREV;
281 0 : case KEY_DOWN: return MOVE_NEXT;
282 0 : case KEY_PAGEUP: return MOVE_PREVPAGE;
283 0 : case KEY_PAGEDOWN: return MOVE_NEXTPAGE;
284 : }
285 0 : if( bHomeEnd ) switch( nCode )
286 : {
287 0 : case KEY_HOME: return MOVE_FIRST;
288 0 : case KEY_END: return MOVE_LAST;
289 : }
290 0 : return MOVE_NONE;
291 : }
292 :
293 : // accessibility --------------------------------------------------------------
294 :
295 0 : ScCsvControl::XAccessibleRef ScCsvControl::CreateAccessible()
296 : {
297 0 : mpAccessible = ImplCreateAccessible();
298 0 : mxAccessible = mpAccessible;
299 0 : return mxAccessible;
300 228 : }
301 :
302 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|