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 : #ifndef SC_INPUTHDL_HXX
21 : #define SC_INPUTHDL_HXX
22 :
23 : #include "global.hxx"
24 : #include "address.hxx"
25 : #include "typedstrdata.hxx"
26 :
27 : #include <tools/fract.hxx>
28 : #include <tools/gen.hxx>
29 : #include "tools/link.hxx"
30 : #include "vcl/vclevent.hxx"
31 : #include <editeng/svxenum.hxx>
32 :
33 : #include <set>
34 :
35 : #include <boost/noncopyable.hpp>
36 :
37 : class ScDocument;
38 : class ScTabViewShell;
39 : class ScInputWindow;
40 : class ScPatternAttr;
41 : class ScEditEngineDefaulter;
42 : class EditView;
43 : class EditTextObject;
44 : class ScInputHdlState;
45 : class ScRangeFindList;
46 : class Timer;
47 : class KeyEvent;
48 : class CommandEvent;
49 :
50 : struct ESelection;
51 :
52 :
53 : // ScInputHandler
54 :
55 :
56 : class ScInputHandler : boost::noncopyable
57 : {
58 : private:
59 : ScInputWindow* pInputWin;
60 :
61 : ScEditEngineDefaulter* pEngine; // edited data in the sheet
62 : EditView* pTableView; // associated active EditView
63 : EditView* pTopView; // EditView in dthe input row
64 :
65 : ScTypedCaseStrSet* pColumnData;
66 : ScTypedCaseStrSet* pFormulaData;
67 : ScTypedCaseStrSet* pFormulaDataPara;
68 : ScTypedCaseStrSet::const_iterator miAutoPosColumn;
69 : ScTypedCaseStrSet::const_iterator miAutoPosFormula;
70 :
71 : Window* pTipVisibleParent;
72 : sal_uLong nTipVisible;
73 : Window* pTipVisibleSecParent;
74 : sal_uLong nTipVisibleSec;
75 : OUString aManualTip;
76 : OUString aAutoSearch;
77 :
78 : OUString aCurrentText;
79 :
80 : OUString aFormText; // for autopilot function
81 : sal_Int32 nFormSelStart; // Selection for autopilot function
82 : sal_Int32 nFormSelEnd;
83 :
84 : sal_uInt16 nAutoPar; // autom.parentheses than can be overwritten
85 :
86 : ScAddress aCursorPos;
87 : ScInputMode eMode;
88 : bool bUseTab:1; // Scrolling possible
89 : bool bTextValid:1; // Text is not in edit engine
90 : bool bModified:1;
91 : bool bSelIsRef:1;
92 : bool bFormulaMode:1;
93 : bool bInRangeUpdate:1;
94 : bool bParenthesisShown:1;
95 : bool bCreatingFuncView:1;
96 : bool bInEnterHandler:1;
97 : bool bCommandErrorShown:1;
98 : bool bInOwnChange:1;
99 :
100 : bool bProtected:1;
101 : bool bCellHasPercentFormat:1;
102 : bool bLastIsSymbol:1;
103 : bool mbDocumentDisposing:1;
104 : sal_uLong nValidation;
105 : SvxCellHorJustify eAttrAdjust;
106 :
107 : Fraction aScaleX; // for ref MapMode
108 : Fraction aScaleY;
109 :
110 : ScTabViewShell* pRefViewSh;
111 : ScTabViewShell* pActiveViewSh;
112 :
113 : const ScPatternAttr* pLastPattern;
114 : SfxItemSet* pEditDefaults;
115 :
116 : ScInputHdlState* pLastState;
117 : Timer* pDelayTimer;
118 :
119 : ScRangeFindList* pRangeFindList;
120 :
121 : static bool bAutoComplete; // from app options
122 : static bool bOptLoaded;
123 :
124 : private:
125 : void UpdateActiveView();
126 : void SyncViews( EditView* pSourceView = NULL );
127 : /**
128 : * @param cTyped typed character. If 0, look at existing document content
129 : * for text or number.
130 : * @param bInputActivated true if the cell input mode is activated (via
131 : * F2), false otherwise.
132 : * @return true if the new edit mode has been started.
133 : */
134 : bool StartTable( sal_Unicode cTyped, bool bFromCommand, bool bInputActivated );
135 : void RemoveSelection();
136 : void UpdateFormulaMode();
137 : void InvalidateAttribs();
138 : void ImplCreateEditEngine();
139 : DECL_LINK( DelayTimer, Timer* );
140 : void GetColData();
141 : void UseColData();
142 : void NextAutoEntry( bool bBack );
143 : void UpdateAdjust( sal_Unicode cTyped );
144 : void GetFormulaData();
145 : void UseFormulaData();
146 : void NextFormulaEntry( bool bBack );
147 : void PasteFunctionData();
148 : void PasteManualTip();
149 : EditView* GetFuncEditView();
150 : void RemoveAdjust();
151 : void RemoveRangeFinder();
152 : void DeleteRangeFinder();
153 : void UpdateParenthesis();
154 : void UpdateAutoCorrFlag();
155 : void ResetAutoPar();
156 : void AutoParAdded();
157 : bool CursorAtClosingPar();
158 : void SkipClosingPar();
159 : DECL_LINK( ModifyHdl, void* );
160 : DECL_LINK( ShowHideTipVisibleParentListener, VclWindowEvent* );
161 : DECL_LINK( ShowHideTipVisibleSecParentListener, VclWindowEvent* );
162 :
163 : public:
164 : ScInputHandler();
165 : virtual ~ScInputHandler();
166 :
167 : void SetMode( ScInputMode eNewMode );
168 0 : bool IsInputMode() const { return (eMode != SC_INPUT_NONE); }
169 0 : bool IsEditMode() const { return (eMode != SC_INPUT_NONE &&
170 0 : eMode != SC_INPUT_TYPE); }
171 0 : bool IsTopMode() const { return (eMode == SC_INPUT_TOP); }
172 :
173 : const OUString& GetEditString();
174 0 : const OUString& GetFormString() const { return aFormText; }
175 :
176 0 : const ScAddress& GetCursorPos() const { return aCursorPos; }
177 :
178 : bool GetTextAndFields( ScEditEngineDefaulter& rDestEngine );
179 :
180 : bool KeyInput( const KeyEvent& rKEvt, bool bStartEdit = false );
181 : void EnterHandler( sal_uInt8 nBlockMode = 0 );
182 : void CancelHandler();
183 : void SetReference( const ScRange& rRef, ScDocument* pDoc );
184 : void AddRefEntry();
185 :
186 : bool InputCommand( const CommandEvent& rCEvt, bool bForce );
187 :
188 : void InsertFunction( const OUString& rFuncName, bool bAddPar = true );
189 : void ClearText();
190 :
191 : void InputSelection( EditView* pView );
192 : void InputChanged( EditView* pView, bool bFromNotify = false );
193 :
194 : void ViewShellGone(ScTabViewShell* pViewSh);
195 0 : void SetRefViewShell(ScTabViewShell* pRefVsh) {pRefViewSh=pRefVsh;}
196 :
197 : void NotifyChange( const ScInputHdlState* pState, bool bForce = false,
198 : ScTabViewShell* pSourceSh = NULL,
199 : bool bStopEditing = true);
200 : void UpdateCellAdjust( SvxCellHorJustify eJust );
201 :
202 : void ResetDelayTimer(); //BugId 54702
203 :
204 : void HideTip();
205 : void HideTipBelow();
206 : void ShowTipCursor();
207 : void ShowTip( const OUString& rText ); // at Cursor
208 : void ShowTipBelow( const OUString& rText );
209 :
210 : void SetRefScale( const Fraction& rX, const Fraction& rY );
211 : void UpdateRefDevice();
212 :
213 : EditView* GetActiveView();
214 0 : EditView* GetTableView() { return pTableView; }
215 0 : EditView* GetTopView() { return pTopView; }
216 :
217 : bool DataChanging( sal_Unicode cTyped = 0, bool bFromCommand = false );
218 : void DataChanged( bool bFromTopNotify = false, bool bSetModified = true );
219 :
220 0 : bool TakesReturn() const { return ( nTipVisible != 0 ); }
221 :
222 0 : void SetModified() { bModified = true; }
223 :
224 0 : bool GetSelIsRef() const { return bSelIsRef; }
225 0 : void SetSelIsRef(bool bSet) { bSelIsRef = bSet; }
226 :
227 : void ShowRefFrame();
228 :
229 0 : ScRangeFindList* GetRangeFindList() { return pRangeFindList; }
230 :
231 : void UpdateRange( sal_uInt16 nIndex, const ScRange& rNew );
232 :
233 : // Communication with the autopilot function
234 : void InputGetSelection ( sal_Int32& rStart, sal_Int32& rEnd );
235 : void InputSetSelection ( sal_Int32 nStart, sal_Int32 nEnd );
236 : void InputReplaceSelection ( const OUString& rStr );
237 : void InputTurnOffWinEngine();
238 :
239 0 : bool IsFormulaMode() const { return bFormulaMode; }
240 0 : ScInputWindow* GetInputWindow() { return pInputWin; }
241 0 : void SetInputWindow( ScInputWindow* pNew ) { pInputWin = pNew; }
242 : void StopInputWinEngine( bool bAll );
243 :
244 0 : bool IsInEnterHandler() const { return bInEnterHandler; }
245 0 : bool IsInOwnChange() const { return bInOwnChange; }
246 :
247 : bool IsModalMode( SfxObjectShell* pDocSh );
248 :
249 : void ForgetLastPattern();
250 :
251 : void UpdateSpellSettings( bool bFromStartTab = false );
252 :
253 : void FormulaPreview();
254 :
255 : Size GetTextSize(); // in 1/100mm
256 :
257 : // actually private, public for SID_INPUT_SUM
258 : void InitRangeFinder(const OUString& rFormula);
259 :
260 : void SetDocumentDisposing( bool b );
261 :
262 0 : static void SetAutoComplete(bool bSet) { bAutoComplete = bSet; }
263 : };
264 :
265 :
266 : // ScInputHdlState
267 :
268 : class ScInputHdlState
269 : {
270 : friend class ScInputHandler;
271 :
272 : public:
273 : ScInputHdlState( const ScAddress& rCurPos,
274 : const ScAddress& rStartPos,
275 : const ScAddress& rEndPos,
276 : const OUString& rString,
277 : const EditTextObject* pData );
278 : ScInputHdlState( const ScInputHdlState& rCpy );
279 : ~ScInputHdlState();
280 :
281 : ScInputHdlState& operator= ( const ScInputHdlState& r );
282 : bool operator==( const ScInputHdlState& r ) const;
283 : bool operator!=( const ScInputHdlState& r ) const
284 : { return !operator==( r ); }
285 :
286 0 : const ScAddress& GetPos() const { return aCursorPos; }
287 0 : const ScAddress& GetStartPos() const { return aStartPos; }
288 0 : const ScAddress& GetEndPos() const { return aEndPos; }
289 0 : const OUString& GetString() const { return aString; }
290 0 : const EditTextObject* GetEditData() const { return pEditData; }
291 :
292 : private:
293 : ScAddress aCursorPos;
294 : ScAddress aStartPos;
295 : ScAddress aEndPos;
296 : OUString aString;
297 : EditTextObject* pEditData;
298 : };
299 :
300 : #endif
301 :
302 :
303 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|