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 "scitems.hxx"
21 : #include <editeng/eeitem.hxx>
22 :
23 : #include <editeng/editobj.hxx>
24 : #include <editeng/editstat.hxx>
25 : #include <editeng/editview.hxx>
26 : #include <editeng/flditem.hxx>
27 : #include <editeng/adjustitem.hxx>
28 : #include <sfx2/basedlgs.hxx>
29 : #include <sfx2/objsh.hxx>
30 : #include <vcl/msgbox.hxx>
31 : #include <vcl/svapp.hxx>
32 : #include <vcl/settings.hxx>
33 : #include <vcl/builderfactory.hxx>
34 :
35 : #include "tphfedit.hxx"
36 : #include "editutil.hxx"
37 : #include "global.hxx"
38 : #include "attrib.hxx"
39 : #include "patattr.hxx"
40 : #include "scresid.hxx"
41 : #include "sc.hrc"
42 : #include "globstr.hrc"
43 : #include "tabvwsh.hxx"
44 : #include "prevwsh.hxx"
45 : #include "AccessibleEditObject.hxx"
46 :
47 : #include "scabstdlg.hxx"
48 : #include <boost/scoped_ptr.hpp>
49 :
50 : // STATIC DATA -----------------------------------------------------------
51 52 : static VclPtr<ScEditWindow> pActiveEdWnd = NULL;
52 :
53 0 : ScEditWindow* GetScEditWindow ()
54 : {
55 0 : return pActiveEdWnd;
56 : }
57 :
58 0 : static void lcl_GetFieldData( ScHeaderFieldData& rData )
59 : {
60 0 : SfxViewShell* pShell = SfxViewShell::Current();
61 0 : if (pShell)
62 : {
63 0 : if (pShell->ISA(ScTabViewShell))
64 0 : static_cast<ScTabViewShell*>(pShell)->FillFieldData(rData);
65 0 : else if (pShell->ISA(ScPreviewShell))
66 0 : static_cast<ScPreviewShell*>(pShell)->FillFieldData(rData);
67 : }
68 0 : }
69 :
70 : // class ScEditWindow
71 :
72 0 : ScEditWindow::ScEditWindow( vcl::Window* pParent, WinBits nBits, ScEditWindowLocation eLoc )
73 : : Control( pParent, nBits ),
74 : eLocation(eLoc),
75 0 : pAcc(NULL)
76 : {
77 0 : EnableRTL(false);
78 :
79 0 : const StyleSettings& rStyleSettings = Application::GetSettings().GetStyleSettings();
80 0 : Color aBgColor = rStyleSettings.GetWindowColor();
81 :
82 0 : SetMapMode( MAP_TWIP );
83 0 : SetPointer( PointerStyle::Text );
84 0 : SetBackground( aBgColor );
85 :
86 0 : Size aSize( GetOutputSize() );
87 0 : aSize.Height() *= 4;
88 :
89 0 : pEdEngine = new ScHeaderEditEngine( EditEngine::CreatePool(), true );
90 0 : pEdEngine->SetPaperSize( aSize );
91 0 : pEdEngine->SetRefDevice( this );
92 :
93 0 : ScHeaderFieldData aData;
94 0 : lcl_GetFieldData( aData );
95 :
96 : // Feldbefehle:
97 0 : pEdEngine->SetData( aData );
98 0 : pEdEngine->SetControlWord( pEdEngine->GetControlWord() | EEControlBits::MARKFIELDS );
99 0 : mbRTL = ScGlobal::IsSystemRTL();
100 0 : if (mbRTL)
101 0 : pEdEngine->SetDefaultHorizontalTextDirection(EE_HTEXTDIR_R2L);
102 :
103 0 : pEdView = new EditView( pEdEngine, this );
104 0 : pEdView->SetOutputArea( Rectangle( Point(0,0), GetOutputSize() ) );
105 :
106 0 : pEdView->SetBackgroundColor( aBgColor );
107 0 : pEdEngine->InsertView( pEdView );
108 0 : }
109 :
110 0 : void ScEditWindow::Resize()
111 : {
112 0 : Size aOutputSize(GetOutputSize());
113 0 : Size aSize(aOutputSize);
114 0 : aSize.Height() *= 4;
115 0 : pEdEngine->SetPaperSize(aSize);
116 0 : pEdView->SetOutputArea(Rectangle(Point(0,0), aOutputSize));
117 0 : Control::Resize();
118 0 : }
119 :
120 0 : ScEditWindow::~ScEditWindow()
121 : {
122 0 : disposeOnce();
123 0 : }
124 :
125 0 : void ScEditWindow::dispose()
126 : {
127 : // delete Accessible object before deleting EditEngine and EditView
128 0 : if (pAcc)
129 : {
130 0 : ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > xTemp = xAcc;
131 0 : if (xTemp.is())
132 0 : pAcc->dispose();
133 : }
134 0 : delete pEdEngine;
135 0 : delete pEdView;
136 0 : Control::dispose();
137 0 : }
138 :
139 0 : VCL_BUILDER_DECL_FACTORY(ScEditWindow)
140 : {
141 : (void)rMap;
142 0 : rRet = VclPtr<ScEditWindow>::Create(pParent, WB_BORDER|WB_TABSTOP, Left);
143 0 : }
144 :
145 0 : void ScEditWindow::SetNumType(SvxNumType eNumType)
146 : {
147 0 : pEdEngine->SetNumType(eNumType);
148 0 : pEdEngine->UpdateFields();
149 0 : }
150 :
151 0 : EditTextObject* ScEditWindow::CreateTextObject()
152 : {
153 : // Absatzattribute zuruecksetzen
154 : // (GetAttribs beim Format-Dialog-Aufruf gibt immer gesetzte Items zurueck)
155 :
156 0 : const SfxItemSet& rEmpty = pEdEngine->GetEmptyItemSet();
157 0 : sal_Int32 nParCnt = pEdEngine->GetParagraphCount();
158 0 : for (sal_Int32 i=0; i<nParCnt; i++)
159 0 : pEdEngine->SetParaAttribs( i, rEmpty );
160 :
161 0 : return pEdEngine->CreateTextObject();
162 : }
163 :
164 0 : void ScEditWindow::SetFont( const ScPatternAttr& rPattern )
165 : {
166 0 : SfxItemSet* pSet = new SfxItemSet( pEdEngine->GetEmptyItemSet() );
167 0 : rPattern.FillEditItemSet( pSet );
168 : // FillEditItemSet adjusts font height to 1/100th mm,
169 : // but for header/footer twips is needed, as in the PatternAttr:
170 0 : pSet->Put( rPattern.GetItem(ATTR_FONT_HEIGHT), EE_CHAR_FONTHEIGHT );
171 0 : pSet->Put( rPattern.GetItem(ATTR_CJK_FONT_HEIGHT), EE_CHAR_FONTHEIGHT_CJK );
172 0 : pSet->Put( rPattern.GetItem(ATTR_CTL_FONT_HEIGHT), EE_CHAR_FONTHEIGHT_CTL );
173 0 : if (mbRTL)
174 0 : pSet->Put( SvxAdjustItem( SVX_ADJUST_RIGHT, EE_PARA_JUST ) );
175 0 : pEdEngine->SetDefaults( pSet );
176 0 : }
177 :
178 0 : void ScEditWindow::SetText( const EditTextObject& rTextObject )
179 : {
180 0 : pEdEngine->SetText( rTextObject );
181 0 : }
182 :
183 0 : void ScEditWindow::InsertField( const SvxFieldItem& rFld )
184 : {
185 0 : pEdView->InsertField( rFld );
186 0 : }
187 :
188 0 : void ScEditWindow::SetCharAttributes()
189 : {
190 0 : SfxObjectShell* pDocSh = SfxObjectShell::Current();
191 :
192 0 : SfxViewShell* pViewSh = SfxViewShell::Current();
193 :
194 0 : ScTabViewShell* pTabViewSh = PTR_CAST(ScTabViewShell, SfxViewShell::Current());
195 :
196 : OSL_ENSURE( pDocSh, "Current DocShell not found" );
197 : OSL_ENSURE( pViewSh, "Current ViewShell not found" );
198 :
199 0 : if ( pDocSh && pViewSh )
200 : {
201 0 : if(pTabViewSh!=NULL) pTabViewSh->SetInFormatDialog(true);
202 :
203 0 : SfxItemSet aSet( pEdView->GetAttribs() );
204 :
205 0 : ScAbstractDialogFactory* pFact = ScAbstractDialogFactory::Create();
206 : OSL_ENSURE(pFact, "ScAbstractFactory create fail!");
207 :
208 : boost::scoped_ptr<SfxAbstractTabDialog> pDlg(pFact->CreateScCharDlg(
209 0 : GetParent(), &aSet, pDocSh));
210 : OSL_ENSURE(pDlg, "Dialog create fail!");
211 0 : pDlg->SetText( ScGlobal::GetRscString( STR_TEXTATTRS ) );
212 0 : if ( pDlg->Execute() == RET_OK )
213 : {
214 0 : aSet.ClearItem();
215 0 : aSet.Put( *pDlg->GetOutputItemSet() );
216 0 : pEdView->SetAttribs( aSet );
217 : }
218 :
219 0 : if(pTabViewSh!=NULL) pTabViewSh->SetInFormatDialog(false);
220 : }
221 0 : }
222 :
223 0 : void ScEditWindow::Paint( vcl::RenderContext& rRenderContext, const Rectangle& rRect )
224 : {
225 0 : const StyleSettings& rStyleSettings = Application::GetSettings().GetStyleSettings();
226 0 : Color aBgColor = rStyleSettings.GetWindowColor();
227 :
228 0 : pEdView->SetBackgroundColor( aBgColor );
229 :
230 0 : SetBackground( aBgColor );
231 :
232 0 : Control::Paint(rRenderContext, rRect);
233 :
234 0 : pEdView->Paint(rRect);
235 :
236 0 : if( HasFocus() )
237 0 : pEdView->ShowCursor(true,true);
238 0 : }
239 :
240 0 : void ScEditWindow::MouseMove( const MouseEvent& rMEvt )
241 : {
242 0 : pEdView->MouseMove( rMEvt );
243 0 : }
244 :
245 0 : void ScEditWindow::MouseButtonDown( const MouseEvent& rMEvt )
246 : {
247 0 : if ( !HasFocus() )
248 0 : GrabFocus();
249 :
250 0 : pEdView->MouseButtonDown( rMEvt );
251 0 : }
252 :
253 0 : void ScEditWindow::MouseButtonUp( const MouseEvent& rMEvt )
254 : {
255 0 : pEdView->MouseButtonUp( rMEvt );
256 0 : }
257 :
258 0 : void ScEditWindow::KeyInput( const KeyEvent& rKEvt )
259 : {
260 0 : sal_uInt16 nKey = rKEvt.GetKeyCode().GetModifier()
261 0 : + rKEvt.GetKeyCode().GetCode();
262 :
263 0 : if ( nKey == KEY_TAB || nKey == KEY_TAB + KEY_SHIFT )
264 : {
265 0 : Control::KeyInput( rKEvt );
266 : }
267 0 : else if ( !pEdView->PostKeyEvent( rKEvt ) )
268 : {
269 0 : Control::KeyInput( rKEvt );
270 : }
271 0 : else if ( !rKEvt.GetKeyCode().IsMod1() && !rKEvt.GetKeyCode().IsShift() &&
272 0 : rKEvt.GetKeyCode().IsMod2() && rKEvt.GetKeyCode().GetCode() == KEY_DOWN )
273 : {
274 0 : if (aObjectSelectLink.IsSet() )
275 0 : aObjectSelectLink.Call(this);
276 : }
277 0 : }
278 :
279 0 : void ScEditWindow::Command( const CommandEvent& rCEvt )
280 : {
281 0 : pEdView->Command( rCEvt );
282 0 : }
283 :
284 0 : void ScEditWindow::GetFocus()
285 : {
286 0 : pEdView->ShowCursor(true,true);
287 0 : pActiveEdWnd = this;
288 :
289 0 : ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > xTemp = xAcc;
290 0 : if (xTemp.is() && pAcc)
291 : {
292 0 : pAcc->GotFocus();
293 : }
294 : else
295 0 : pAcc = NULL;
296 :
297 0 : Control::GetFocus();
298 0 : }
299 :
300 0 : void ScEditWindow::LoseFocus()
301 : {
302 0 : ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > xTemp = xAcc;
303 0 : if (xTemp.is() && pAcc)
304 : {
305 0 : pAcc->LostFocus();
306 : }
307 : else
308 0 : pAcc = NULL;
309 0 : Control::LoseFocus();
310 0 : }
311 :
312 0 : ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > ScEditWindow::CreateAccessible()
313 : {
314 0 : OUString sName;
315 0 : OUString sDescription(GetHelpText());
316 0 : switch (eLocation)
317 : {
318 : case Left:
319 : {
320 0 : sName = OUString(ScResId(STR_ACC_LEFTAREA_NAME));
321 : }
322 0 : break;
323 : case Center:
324 : {
325 0 : sName = OUString(ScResId(STR_ACC_CENTERAREA_NAME));
326 : }
327 0 : break;
328 : case Right:
329 : {
330 0 : sName = OUString(ScResId(STR_ACC_RIGHTAREA_NAME));
331 : }
332 0 : break;
333 : }
334 : pAcc = new ScAccessibleEditObject(GetAccessibleParentWindow()->GetAccessible(), pEdView, this,
335 0 : OUString(sName), OUString(sDescription), ScAccessibleEditObject::EditControl);
336 0 : ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > xAccessible = pAcc;
337 0 : xAcc = xAccessible;
338 0 : return pAcc;
339 : }
340 :
341 0 : ScExtIButton::ScExtIButton(vcl::Window* pParent, WinBits nBits )
342 0 : : ImageButton(pParent,nBits), pPopupMenu(NULL)
343 : {
344 0 : nSelected=0;
345 0 : aIdle.SetPriority(SchedulerPriority::LOWEST);
346 0 : SetDropDown(PushButtonDropdownStyle::Toolbox);
347 0 : }
348 :
349 0 : VCL_BUILDER_FACTORY_ARGS(ScExtIButton, 0 /* WB_BORDER|WB_TABSTOP */)
350 :
351 0 : void ScExtIButton::SetPopupMenu(PopupMenu* pPopUp)
352 : {
353 0 : pPopupMenu=pPopUp;
354 0 : }
355 :
356 0 : void ScExtIButton::MouseButtonDown( const MouseEvent& rMEvt )
357 : {
358 0 : if(!aIdle.IsActive())
359 : {
360 0 : aIdle.SetIdleHdl(LINK( this, ScExtIButton, TimerHdl));
361 0 : aIdle.Start();
362 : }
363 :
364 0 : ImageButton::MouseButtonDown(rMEvt );
365 0 : }
366 :
367 0 : void ScExtIButton::MouseButtonUp( const MouseEvent& rMEvt)
368 : {
369 0 : aIdle.Stop();
370 0 : aIdle.SetIdleHdl(Link<Idle *, void>());
371 0 : ImageButton::MouseButtonUp(rMEvt );
372 0 : }
373 :
374 0 : void ScExtIButton::Click()
375 : {
376 0 : aIdle.Stop();
377 0 : aIdle.SetIdleHdl(Link<Idle *, void>());
378 0 : ImageButton::Click();
379 0 : }
380 :
381 0 : void ScExtIButton::StartPopup()
382 : {
383 0 : nSelected=0;
384 0 : aSelectedIdent.clear();
385 :
386 0 : if(pPopupMenu!=NULL)
387 : {
388 0 : SetPressed( true );
389 0 : EndSelection();
390 0 : Point aPoint(0,0);
391 0 : aPoint.Y()=GetOutputSizePixel().Height();
392 :
393 0 : nSelected = pPopupMenu->Execute( this, aPoint );
394 :
395 0 : if(nSelected)
396 : {
397 0 : aSelectedIdent = pPopupMenu->GetItemIdent(nSelected);
398 0 : aMLink.Call(this);
399 : }
400 :
401 0 : SetPressed( false);
402 : }
403 0 : }
404 :
405 0 : bool ScExtIButton::PreNotify( NotifyEvent& rNEvt )
406 : {
407 0 : MouseNotifyEvent nSwitch=rNEvt.GetType();
408 0 : if(nSwitch==MouseNotifyEvent::MOUSEBUTTONUP)
409 : {
410 0 : MouseButtonUp(*rNEvt.GetMouseEvent());
411 : }
412 :
413 0 : return ImageButton::PreNotify(rNEvt );
414 : }
415 :
416 0 : IMPL_LINK_NOARG_TYPED(ScExtIButton, TimerHdl, Idle *, void)
417 : {
418 0 : StartPopup();
419 156 : }
420 :
421 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|