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_INPUTWIN_HXX
21 : #define SC_INPUTWIN_HXX
22 :
23 : #include <vector>
24 : #include <vcl/toolbox.hxx>
25 : #include <sfx2/childwin.hxx>
26 : #include <svl/lstner.hxx>
27 : #include <vcl/button.hxx>
28 : #include <vcl/combobox.hxx>
29 : #include <vcl/scrbar.hxx>
30 : #include <vcl/window.hxx>
31 : #include <svtools/transfer.hxx>
32 :
33 : class ScEditEngineDefaulter;
34 : class EditView;
35 : struct ESelection;
36 : class ScInputHandler;
37 : class ScAccessibleEditLineTextData;
38 : struct EENotify;
39 : class ScRangeList;
40 : class ScTabViewShell;
41 : class Accelerator;
42 :
43 0 : class ScTextWndBase : public Window
44 : {
45 : public:
46 : ScTextWndBase( Window* pParent, WinBits nStyle );
47 : virtual void InsertAccessibleTextData( ScAccessibleEditLineTextData& rTextData ) = 0;
48 : virtual void RemoveAccessibleTextData( ScAccessibleEditLineTextData& rTextData ) = 0;
49 : virtual void SetTextString( const OUString& rString ) = 0;
50 : virtual const OUString& GetTextString() const = 0;
51 : virtual void StartEditEngine() = 0;
52 : virtual void StopEditEngine( bool bAll ) = 0;
53 : virtual EditView* GetEditView() = 0;
54 : virtual void MakeDialogEditView() = 0;
55 : virtual void SetFormulaMode( bool bSet ) = 0;
56 : virtual bool IsInputActive() = 0;
57 : virtual void TextGrabFocus() = 0;
58 : };
59 :
60 : class ScTextWnd : public ScTextWndBase, public DragSourceHelper // edit window
61 : {
62 : public:
63 : ScTextWnd( Window* pParent, ScTabViewShell* pViewSh );
64 : virtual ~ScTextWnd();
65 :
66 : virtual void SetTextString( const OUString& rString ) SAL_OVERRIDE;
67 : virtual const OUString& GetTextString() const SAL_OVERRIDE;
68 :
69 : bool IsInputActive() SAL_OVERRIDE;
70 : virtual EditView* GetEditView() SAL_OVERRIDE;
71 :
72 : // for function autopilots
73 : virtual void MakeDialogEditView() SAL_OVERRIDE;
74 :
75 : virtual void StartEditEngine() SAL_OVERRIDE;
76 : virtual void StopEditEngine( bool bAll ) SAL_OVERRIDE;
77 :
78 : virtual void TextGrabFocus() SAL_OVERRIDE;
79 :
80 : virtual void DataChanged( const DataChangedEvent& rDCEvt ) SAL_OVERRIDE;
81 :
82 : virtual void SetFormulaMode( bool bSet ) SAL_OVERRIDE;
83 :
84 : virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > CreateAccessible() SAL_OVERRIDE;
85 :
86 : virtual void InsertAccessibleTextData( ScAccessibleEditLineTextData& rTextData ) SAL_OVERRIDE;
87 : virtual void RemoveAccessibleTextData( ScAccessibleEditLineTextData& rTextData ) SAL_OVERRIDE;
88 :
89 : DECL_LINK( NotifyHdl, void* );
90 :
91 : protected:
92 : virtual void Paint( const Rectangle& rRect ) SAL_OVERRIDE;
93 : virtual void Resize() SAL_OVERRIDE;
94 :
95 : virtual void MouseMove( const MouseEvent& rMEvt ) SAL_OVERRIDE;
96 : virtual void MouseButtonDown( const MouseEvent& rMEvt ) SAL_OVERRIDE;
97 : virtual void MouseButtonUp( const MouseEvent& rMEvt ) SAL_OVERRIDE;
98 : virtual void Command( const CommandEvent& rCEvt ) SAL_OVERRIDE;
99 : virtual void KeyInput(const KeyEvent& rKEvt) SAL_OVERRIDE;
100 : virtual void GetFocus() SAL_OVERRIDE;
101 : virtual void LoseFocus() SAL_OVERRIDE;
102 :
103 : virtual void StartDrag( sal_Int8 nAction, const Point& rPosPixel ) SAL_OVERRIDE;
104 :
105 : virtual OUString GetText() const SAL_OVERRIDE;
106 :
107 : void ImplInitSettings();
108 : void UpdateAutoCorrFlag();
109 :
110 : ScTabViewShell* GetViewShell();
111 :
112 : typedef ::std::vector< ScAccessibleEditLineTextData* > AccTextDataVector;
113 :
114 : OUString aString;
115 : Font aTextFont;
116 : ScEditEngineDefaulter* pEditEngine; // only created when needed
117 : EditView* pEditView;
118 : AccTextDataVector maAccTextDatas; // #i105267# text datas may be cloned, remember all copies
119 : bool bIsRTL;
120 : bool bIsInsertMode;
121 : bool bFormulaMode;
122 :
123 : // #102710#; this flag should be true if a key input or a command is handled
124 : // it prevents the call of InputChanged in the ModifyHandler of the EditEngine
125 : bool bInputMode;
126 :
127 : private:
128 : ScTabViewShell* mpViewShell;
129 : };
130 :
131 : class ScPosWnd : public ComboBox, public SfxListener // Display position
132 : {
133 : private:
134 : OUString aPosStr;
135 : Accelerator* pAccel;
136 : sal_uLong nTipVisible;
137 : bool bFormulaMode;
138 :
139 : public:
140 : ScPosWnd( Window* pParent );
141 : virtual ~ScPosWnd();
142 :
143 : void SetPos( const OUString& rPosStr ); // Displayed Text
144 : void SetFormulaMode( bool bSet );
145 :
146 : protected:
147 : virtual void Select() SAL_OVERRIDE;
148 : virtual void Modify() SAL_OVERRIDE;
149 :
150 : virtual bool Notify( NotifyEvent& rNEvt ) SAL_OVERRIDE;
151 :
152 : virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) SAL_OVERRIDE;
153 :
154 : private:
155 : void FillRangeNames();
156 : void FillFunctions();
157 : void DoEnter();
158 : void HideTip();
159 :
160 : void ReleaseFocus_Impl();
161 : };
162 :
163 :
164 : class ScInputBarGroup;
165 :
166 : class ScMultiTextWnd : public ScTextWnd
167 : {
168 : public:
169 : ScMultiTextWnd( ScInputBarGroup* pParent, ScTabViewShell* pViewSh );
170 : virtual ~ScMultiTextWnd();
171 : virtual void StartEditEngine() SAL_OVERRIDE;
172 : virtual void StopEditEngine( bool bAll ) SAL_OVERRIDE;
173 : virtual void Resize() SAL_OVERRIDE;
174 : virtual EditView* GetEditView() SAL_OVERRIDE;
175 : long GetPixelHeightForLines( long nLines );
176 : long GetEditEngTxtHeight();
177 :
178 : void DoScroll();
179 : virtual void SetTextString( const OUString& rString ) SAL_OVERRIDE;
180 : void SetNumLines( long nLines );
181 0 : long GetNumLines() { return mnLines; }
182 0 : long GetLastNumExpandedLines() { return mnLastExpandedLines; }
183 : protected:
184 : void SetScrollBarRange();
185 : void InitEditEngine();
186 :
187 : virtual void Paint( const Rectangle& rRect ) SAL_OVERRIDE;
188 : DECL_LINK( NotifyHdl, EENotify* );
189 : DECL_LINK( ModifyHdl, EENotify* );
190 : private:
191 : long GetPixelTextHeight();
192 : ScInputBarGroup& mrGroupBar;
193 : long mnLines;
194 : long mnLastExpandedLines;
195 : long mnBorderHeight;
196 : bool mbInvalidate;
197 : };
198 :
199 : class ScInputBarGroup : public ScTextWndBase
200 : {
201 :
202 : public:
203 : ScInputBarGroup( Window* Parent, ScTabViewShell* pViewSh );
204 : virtual ~ScInputBarGroup();
205 : virtual void InsertAccessibleTextData( ScAccessibleEditLineTextData& rTextData ) SAL_OVERRIDE;
206 : virtual void RemoveAccessibleTextData( ScAccessibleEditLineTextData& rTextData ) SAL_OVERRIDE;
207 : // virtual void Paint(const Rectangle& rRect );
208 : void SetTextString( const OUString& rString ) SAL_OVERRIDE;
209 : void StartEditEngine() SAL_OVERRIDE;
210 : EditView* GetEditView() SAL_OVERRIDE;
211 : void SetSize(Size aSize);
212 : virtual void Resize() SAL_OVERRIDE;
213 : virtual const OUString& GetTextString() const SAL_OVERRIDE;
214 : virtual void StopEditEngine( bool bAll ) SAL_OVERRIDE;
215 : virtual void TextGrabFocus() SAL_OVERRIDE;
216 : void InitEditEngine(SfxObjectShell* pObjSh);
217 : void SetFormulaMode( bool bSet ) SAL_OVERRIDE;
218 : bool IsFocus();
219 : void MakeDialogEditView() SAL_OVERRIDE;
220 : bool IsInputActive() SAL_OVERRIDE;
221 0 : ScrollBar& GetScrollBar() { return aScrollBar; }
222 : void IncrementVerticalSize();
223 : void DecrementVerticalSize();
224 0 : long GetNumLines() { return aMultiTextWnd.GetNumLines(); }
225 0 : long GetVertOffset() { return nVertOffset; }
226 : private:
227 : void TriggerToolboxLayout();
228 : ScMultiTextWnd aMultiTextWnd;
229 : ImageButton aButton;
230 : ScrollBar aScrollBar;
231 : long nVertOffset;
232 : DECL_LINK( ClickHdl, void* );
233 : DECL_LINK( Impl_ScrollHdl, void* );
234 :
235 : };
236 :
237 :
238 : class ScInputWindow : public ToolBox // Parent toolbox
239 : {
240 : public:
241 : ScInputWindow( Window* pParent, SfxBindings* pBind );
242 : virtual ~ScInputWindow();
243 :
244 : virtual void Paint( const Rectangle& rRect ) SAL_OVERRIDE;
245 : virtual void Resize() SAL_OVERRIDE;
246 : virtual void Select() SAL_OVERRIDE;
247 :
248 : void SetFuncString( const OUString& rString, bool bDoEdit = true );
249 : void SetPosString( const OUString& rStr );
250 : void SetTextString( const OUString& rString );
251 :
252 : void SetOkCancelMode();
253 : void SetSumAssignMode();
254 : void EnableButtons( bool bEnable = true );
255 :
256 : void SetFormulaMode( bool bSet );
257 :
258 : virtual bool IsInputActive();
259 : EditView* GetEditView();
260 :
261 : void TextGrabFocus();
262 : void TextInvalidate();
263 : void SwitchToTextWin();
264 :
265 : void PosGrabFocus();
266 :
267 : // For function autopilots
268 : void MakeDialogEditView();
269 :
270 : void StopEditEngine( bool bAll );
271 :
272 : void SetInputHandler( ScInputHandler* pNew );
273 :
274 0 : ScInputHandler* GetInputHandler(){ return pInputHdl;}
275 :
276 : void StateChanged( StateChangedType nType ) SAL_OVERRIDE;
277 : virtual void DataChanged( const DataChangedEvent& rDCEvt ) SAL_OVERRIDE;
278 : virtual void MouseButtonUp( const MouseEvent& rMEvt ) SAL_OVERRIDE;
279 : virtual void MouseButtonDown( const MouseEvent& rMEvt ) SAL_OVERRIDE;
280 : virtual void MouseMove( const MouseEvent& rMEvt ) SAL_OVERRIDE;
281 0 : bool IsMultiLineInput() { return mbIsMultiLine; }
282 : protected:
283 : virtual void SetText( const OUString& rString ) SAL_OVERRIDE;
284 : virtual OUString GetText() const SAL_OVERRIDE;
285 :
286 : bool UseSubTotal( ScRangeList* pRangeList ) const;
287 : bool IsPointerAtResizePos();
288 : private:
289 : ScPosWnd aWndPos;
290 : std::auto_ptr<ScTextWndBase> pRuntimeWindow;
291 : ScTextWndBase& aTextWindow;
292 : ScInputHandler* pInputHdl;
293 : OUString aTextOk;
294 : OUString aTextCancel;
295 : OUString aTextSum;
296 : OUString aTextEqual;
297 : long mnMaxY;
298 : bool bIsOkCancelMode;
299 : bool bInResize;
300 : bool mbIsMultiLine;
301 : };
302 :
303 0 : class ScInputWindowWrapper : public SfxChildWindow
304 : {
305 : public:
306 : ScInputWindowWrapper( Window* pParent,
307 : sal_uInt16 nId,
308 : SfxBindings* pBindings,
309 : SfxChildWinInfo* pInfo );
310 :
311 : SFX_DECL_CHILDWINDOW_WITHID(ScInputWindowWrapper);
312 : };
313 :
314 :
315 : #endif
316 :
317 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|