xref: /aoo41x/main/sw/source/ui/docvw/edtwin3.cxx (revision cdf0e10c)
1*cdf0e10cSrcweir /*************************************************************************
2*cdf0e10cSrcweir  *
3*cdf0e10cSrcweir  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir  *
5*cdf0e10cSrcweir  * Copyright 2000, 2010 Oracle and/or its affiliates.
6*cdf0e10cSrcweir  *
7*cdf0e10cSrcweir  * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir  *
9*cdf0e10cSrcweir  * This file is part of OpenOffice.org.
10*cdf0e10cSrcweir  *
11*cdf0e10cSrcweir  * OpenOffice.org is free software: you can redistribute it and/or modify
12*cdf0e10cSrcweir  * it under the terms of the GNU Lesser General Public License version 3
13*cdf0e10cSrcweir  * only, as published by the Free Software Foundation.
14*cdf0e10cSrcweir  *
15*cdf0e10cSrcweir  * OpenOffice.org is distributed in the hope that it will be useful,
16*cdf0e10cSrcweir  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*cdf0e10cSrcweir  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*cdf0e10cSrcweir  * GNU Lesser General Public License version 3 for more details
19*cdf0e10cSrcweir  * (a copy is included in the LICENSE file that accompanied this code).
20*cdf0e10cSrcweir  *
21*cdf0e10cSrcweir  * You should have received a copy of the GNU Lesser General Public License
22*cdf0e10cSrcweir  * version 3 along with OpenOffice.org.  If not, see
23*cdf0e10cSrcweir  * <http://www.openoffice.org/license.html>
24*cdf0e10cSrcweir  * for a copy of the LGPLv3 License.
25*cdf0e10cSrcweir  *
26*cdf0e10cSrcweir  ************************************************************************/
27*cdf0e10cSrcweir 
28*cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
29*cdf0e10cSrcweir #include "precompiled_sw.hxx"
30*cdf0e10cSrcweir 
31*cdf0e10cSrcweir 
32*cdf0e10cSrcweir 
33*cdf0e10cSrcweir #include <hintids.hxx>
34*cdf0e10cSrcweir #include <vcl/settings.hxx>
35*cdf0e10cSrcweir #include <svx/ruler.hxx>
36*cdf0e10cSrcweir #include <viewopt.hxx>
37*cdf0e10cSrcweir #include "view.hxx"
38*cdf0e10cSrcweir #include "wrtsh.hxx"
39*cdf0e10cSrcweir #include "basesh.hxx"
40*cdf0e10cSrcweir #include "pview.hxx"
41*cdf0e10cSrcweir #include "mdiexp.hxx"
42*cdf0e10cSrcweir #include "edtwin.hxx"
43*cdf0e10cSrcweir #include "swmodule.hxx"
44*cdf0e10cSrcweir #include "modcfg.hxx"
45*cdf0e10cSrcweir #include "swtable.hxx"
46*cdf0e10cSrcweir #include "docsh.hxx"
47*cdf0e10cSrcweir #include "pagedesc.hxx"     // Aktuelles Seitenformat
48*cdf0e10cSrcweir #include <frmatr.hxx>
49*cdf0e10cSrcweir #include <editeng/frmdiritem.hxx>
50*cdf0e10cSrcweir 
51*cdf0e10cSrcweir 
52*cdf0e10cSrcweir /*--------------------------------------------------------------------
53*cdf0e10cSrcweir 	Beschreibung:	Core-Notify
54*cdf0e10cSrcweir  --------------------------------------------------------------------*/
55*cdf0e10cSrcweir 
56*cdf0e10cSrcweir 
57*cdf0e10cSrcweir 
58*cdf0e10cSrcweir void ScrollMDI( ViewShell* pVwSh, const SwRect &rRect,
59*cdf0e10cSrcweir 				sal_uInt16 nRangeX, sal_uInt16 nRangeY)
60*cdf0e10cSrcweir {
61*cdf0e10cSrcweir 	SfxViewShell *pSfxVwSh = pVwSh->GetSfxViewShell();
62*cdf0e10cSrcweir 	if (pSfxVwSh && pSfxVwSh->ISA(SwView))
63*cdf0e10cSrcweir 		((SwView *)pSfxVwSh)->Scroll( rRect.SVRect(), nRangeX, nRangeY );
64*cdf0e10cSrcweir }
65*cdf0e10cSrcweir 
66*cdf0e10cSrcweir /*--------------------------------------------------------------------
67*cdf0e10cSrcweir 	Beschreibung:	Docmdi - verschiebbar
68*cdf0e10cSrcweir  --------------------------------------------------------------------*/
69*cdf0e10cSrcweir 
70*cdf0e10cSrcweir 
71*cdf0e10cSrcweir 
72*cdf0e10cSrcweir sal_Bool IsScrollMDI( ViewShell* pVwSh, const SwRect &rRect )
73*cdf0e10cSrcweir {
74*cdf0e10cSrcweir 	SfxViewShell *pSfxVwSh = pVwSh->GetSfxViewShell();
75*cdf0e10cSrcweir 	if (pSfxVwSh && pSfxVwSh->ISA(SwView))
76*cdf0e10cSrcweir 		return (((SwView *)pSfxVwSh)->IsScroll(rRect.SVRect()));
77*cdf0e10cSrcweir 	return sal_False;
78*cdf0e10cSrcweir }
79*cdf0e10cSrcweir 
80*cdf0e10cSrcweir /*--------------------------------------------------------------------
81*cdf0e10cSrcweir 	Beschreibung:	Notify fuer Groessen-Aenderung
82*cdf0e10cSrcweir  --------------------------------------------------------------------*/
83*cdf0e10cSrcweir 
84*cdf0e10cSrcweir 
85*cdf0e10cSrcweir 
86*cdf0e10cSrcweir void SizeNotify(ViewShell* pVwSh, const Size &rSize)
87*cdf0e10cSrcweir {
88*cdf0e10cSrcweir 	SfxViewShell *pSfxVwSh = pVwSh->GetSfxViewShell();
89*cdf0e10cSrcweir 	if (pSfxVwSh)
90*cdf0e10cSrcweir 	{
91*cdf0e10cSrcweir 		if (pSfxVwSh->ISA(SwView))
92*cdf0e10cSrcweir 			((SwView *)pSfxVwSh)->DocSzChgd(rSize);
93*cdf0e10cSrcweir 		else if (pSfxVwSh->ISA(SwPagePreView))
94*cdf0e10cSrcweir 			((SwPagePreView *)pSfxVwSh)->DocSzChgd( rSize );
95*cdf0e10cSrcweir 	}
96*cdf0e10cSrcweir }
97*cdf0e10cSrcweir 
98*cdf0e10cSrcweir /*--------------------------------------------------------------------
99*cdf0e10cSrcweir 	Beschreibung:	Notify fuer Seitenzahl-Update
100*cdf0e10cSrcweir  --------------------------------------------------------------------*/
101*cdf0e10cSrcweir 
102*cdf0e10cSrcweir 
103*cdf0e10cSrcweir 
104*cdf0e10cSrcweir void PageNumNotify( ViewShell* pVwSh, sal_uInt16 nPhyNum, sal_uInt16 nVirtNum,
105*cdf0e10cSrcweir 													const String& rPgStr)
106*cdf0e10cSrcweir {
107*cdf0e10cSrcweir 	SfxViewShell *pSfxVwSh = pVwSh->GetSfxViewShell();
108*cdf0e10cSrcweir 	if ( pSfxVwSh && pSfxVwSh->ISA(SwView) &&
109*cdf0e10cSrcweir 		 ((SwView*)pSfxVwSh)->GetCurShell() )
110*cdf0e10cSrcweir 			((SwView *)pSfxVwSh)->UpdatePageNums(nPhyNum, nVirtNum, rPgStr);
111*cdf0e10cSrcweir }
112*cdf0e10cSrcweir 
113*cdf0e10cSrcweir /******************************************************************************
114*cdf0e10cSrcweir  *	Methode		:	void FrameNotify( DocMDIBase *pWin, FlyMode eMode )
115*cdf0e10cSrcweir  *	Beschreibung:
116*cdf0e10cSrcweir  *	Erstellt	:	OK 08.02.94 13:49
117*cdf0e10cSrcweir  *	Aenderung	:
118*cdf0e10cSrcweir  ******************************************************************************/
119*cdf0e10cSrcweir 
120*cdf0e10cSrcweir 
121*cdf0e10cSrcweir 
122*cdf0e10cSrcweir void FrameNotify( ViewShell* pVwSh, FlyMode eMode )
123*cdf0e10cSrcweir {
124*cdf0e10cSrcweir 	if ( pVwSh->ISA(SwCrsrShell) )
125*cdf0e10cSrcweir 		SwBaseShell::SetFrmMode( eMode, (SwWrtShell*)pVwSh );
126*cdf0e10cSrcweir }
127*cdf0e10cSrcweir 
128*cdf0e10cSrcweir /*--------------------------------------------------------------------
129*cdf0e10cSrcweir 	Beschreibung:	Notify fuer Seitenzahl-Update
130*cdf0e10cSrcweir  --------------------------------------------------------------------*/
131*cdf0e10cSrcweir sal_Bool SwEditWin::RulerColumnDrag( const MouseEvent& rMEvt, sal_Bool bVerticalMode)
132*cdf0e10cSrcweir {
133*cdf0e10cSrcweir     SvxRuler& rRuler = bVerticalMode ?  rView.GetVLineal() : rView.GetHLineal();
134*cdf0e10cSrcweir     return (!rRuler.StartDocDrag( rMEvt, RULER_TYPE_BORDER ) &&
135*cdf0e10cSrcweir             !rRuler.StartDocDrag( rMEvt, RULER_TYPE_MARGIN1) &&
136*cdf0e10cSrcweir             !rRuler.StartDocDrag( rMEvt, RULER_TYPE_MARGIN2));
137*cdf0e10cSrcweir }
138*cdf0e10cSrcweir 
139*cdf0e10cSrcweir // #i23726#
140*cdf0e10cSrcweir // --> OD 2005-02-18 #i42921# - add 3rd parameter <bVerticalMode> in order
141*cdf0e10cSrcweir // to consider vertical layout
142*cdf0e10cSrcweir sal_Bool SwEditWin::RulerMarginDrag( const MouseEvent& rMEvt,
143*cdf0e10cSrcweir                                  const bool bVerticalMode )
144*cdf0e10cSrcweir {
145*cdf0e10cSrcweir     SvxRuler& rRuler = bVerticalMode ?  rView.GetVLineal() : rView.GetHLineal();
146*cdf0e10cSrcweir     return !rRuler.StartDocDrag( rMEvt, RULER_TYPE_INDENT);
147*cdf0e10cSrcweir }
148*cdf0e10cSrcweir // <--
149*cdf0e10cSrcweir 
150*cdf0e10cSrcweir LAYOUT_NS Dialog* GetSearchDialog()
151*cdf0e10cSrcweir {
152*cdf0e10cSrcweir 	return SwView::GetSearchDialog();
153*cdf0e10cSrcweir }
154*cdf0e10cSrcweir 
155*cdf0e10cSrcweir TblChgMode GetTblChgDefaultMode()
156*cdf0e10cSrcweir {
157*cdf0e10cSrcweir 	SwModuleOptions* pOpt = SW_MOD()->GetModuleConfig();
158*cdf0e10cSrcweir 	return pOpt ? pOpt->GetTblMode() : TBLVAR_CHGABS;
159*cdf0e10cSrcweir }
160*cdf0e10cSrcweir 
161*cdf0e10cSrcweir void RepaintPagePreview( ViewShell* pVwSh, const SwRect& rRect )
162*cdf0e10cSrcweir {
163*cdf0e10cSrcweir 	SfxViewShell *pSfxVwSh = pVwSh->GetSfxViewShell();
164*cdf0e10cSrcweir 	if (pSfxVwSh && pSfxVwSh->ISA( SwPagePreView ))
165*cdf0e10cSrcweir 		((SwPagePreView *)pSfxVwSh)->RepaintCoreRect( rRect );
166*cdf0e10cSrcweir }
167*cdf0e10cSrcweir 
168*cdf0e10cSrcweir sal_Bool JumpToSwMark( ViewShell* pVwSh, const String& rMark )
169*cdf0e10cSrcweir {
170*cdf0e10cSrcweir 	SfxViewShell *pSfxVwSh = pVwSh->GetSfxViewShell();
171*cdf0e10cSrcweir 	if( pSfxVwSh && pSfxVwSh->ISA( SwView ) )
172*cdf0e10cSrcweir 		return ((SwView *)pSfxVwSh)->JumpToSwMark( rMark );
173*cdf0e10cSrcweir 	return sal_False;
174*cdf0e10cSrcweir }
175*cdf0e10cSrcweir 
176*cdf0e10cSrcweir void SwEditWin::DataChanged( const DataChangedEvent& rDCEvt )
177*cdf0e10cSrcweir {
178*cdf0e10cSrcweir 	Window::DataChanged( rDCEvt );
179*cdf0e10cSrcweir 
180*cdf0e10cSrcweir     SwWrtShell* pSh = GetView().GetWrtShellPtr();
181*cdf0e10cSrcweir     //#99906#   DataChanged() is sometimes called prior to creating
182*cdf0e10cSrcweir     //          the SwWrtShell
183*cdf0e10cSrcweir     if(!pSh)
184*cdf0e10cSrcweir         return;
185*cdf0e10cSrcweir     sal_Bool bViewWasLocked = pSh->IsViewLocked(), bUnlockPaint = sal_False;
186*cdf0e10cSrcweir     pSh->LockView( sal_True );
187*cdf0e10cSrcweir 	switch( rDCEvt.GetType() )
188*cdf0e10cSrcweir 	{
189*cdf0e10cSrcweir 	case DATACHANGED_SETTINGS:
190*cdf0e10cSrcweir 		// ScrollBars neu anordnen bzw. Resize ausloesen, da sich
191*cdf0e10cSrcweir 		// ScrollBar-Groesse geaendert haben kann. Dazu muss dann im
192*cdf0e10cSrcweir 		// Resize-Handler aber auch die Groesse der ScrollBars aus
193*cdf0e10cSrcweir 		// den Settings abgefragt werden.
194*cdf0e10cSrcweir 		if( rDCEvt.GetFlags() & SETTINGS_STYLE )
195*cdf0e10cSrcweir 		{
196*cdf0e10cSrcweir             pSh->LockPaint();
197*cdf0e10cSrcweir 			bUnlockPaint = sal_True;
198*cdf0e10cSrcweir             ViewShell::DeleteReplacementBitmaps();
199*cdf0e10cSrcweir 			GetView().InvalidateBorder();				//Scrollbarbreiten
200*cdf0e10cSrcweir 		}
201*cdf0e10cSrcweir 		break;
202*cdf0e10cSrcweir 
203*cdf0e10cSrcweir 	case DATACHANGED_PRINTER:
204*cdf0e10cSrcweir 	case DATACHANGED_DISPLAY:
205*cdf0e10cSrcweir 	case DATACHANGED_FONTS:
206*cdf0e10cSrcweir 	case DATACHANGED_FONTSUBSTITUTION:
207*cdf0e10cSrcweir         pSh->LockPaint();
208*cdf0e10cSrcweir 		bUnlockPaint = sal_True;
209*cdf0e10cSrcweir 		GetView().GetDocShell()->UpdateFontList();	//z.B. Druckerwechsel
210*cdf0e10cSrcweir 		break;
211*cdf0e10cSrcweir 	}
212*cdf0e10cSrcweir     pSh->LockView( bViewWasLocked );
213*cdf0e10cSrcweir 	if( bUnlockPaint )
214*cdf0e10cSrcweir         pSh->UnlockPaint();
215*cdf0e10cSrcweir }
216*cdf0e10cSrcweir 
217