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 <svx/svxids.hrc>
21 : #include <sfx2/app.hxx>
22 : #include <sfx2/childwin.hxx>
23 : #include <sfx2/bindings.hxx>
24 : #include <svx/svdmark.hxx>
25 : #include <svx/svdview.hxx>
26 : #include <svx/fmglob.hxx>
27 : #include <svx/svdouno.hxx>
28 : #include <com/sun/star/form/FormButtonType.hpp>
29 : #include <com/sun/star/beans/XPropertySet.hpp>
30 : #include <svx/htmlmode.hxx>
31 : #include "wrtsh.hxx"
32 : #include "view.hxx"
33 : #include "IMark.hxx"
34 : #include "doc.hxx"
35 : #include "wrtsh.hrc"
36 :
37 : #include <unomid.h>
38 :
39 :
40 : using namespace ::com::sun::star;
41 : using ::rtl::OUString;
42 :
43 : extern sal_Bool bNoInterrupt; // in mainwn.cxx
44 :
45 0 : sal_Bool SwWrtShell::MoveBookMark( BookMarkMove eFuncId, const ::sw::mark::IMark* const pMark)
46 : {
47 0 : addCurrentPosition();
48 0 : (this->*fnKillSel)( 0, sal_False );
49 :
50 0 : sal_Bool bRet = sal_True;
51 0 : switch(eFuncId)
52 : {
53 0 : case BOOKMARK_INDEX:bRet = SwCrsrShell::GotoMark( pMark );break;
54 0 : case BOOKMARK_NEXT: bRet = SwCrsrShell::GoNextBookmark();break;
55 0 : case BOOKMARK_PREV: bRet = SwCrsrShell::GoPrevBookmark();break;
56 : default:;//prevent warning
57 : }
58 :
59 0 : if( bRet && IsSelFrmMode() )
60 : {
61 0 : UnSelectFrm();
62 0 : LeaveSelFrmMode();
63 : }
64 0 : if( IsSelection() )
65 : {
66 0 : fnKillSel = &SwWrtShell::ResetSelect;
67 0 : fnSetCrsr = &SwWrtShell::SetCrsrKillSel;
68 : }
69 0 : return bRet;
70 : }
71 :
72 0 : sal_Bool SwWrtShell::GotoField( const SwFmtFld& rFld )
73 : {
74 0 : (this->*fnKillSel)( 0, sal_False );
75 :
76 0 : sal_Bool bRet = SwCrsrShell::GotoFld( rFld );
77 0 : if( bRet && IsSelFrmMode() )
78 : {
79 0 : UnSelectFrm();
80 0 : LeaveSelFrmMode();
81 : }
82 :
83 0 : if( IsSelection() )
84 : {
85 0 : fnKillSel = &SwWrtShell::ResetSelect;
86 0 : fnSetCrsr = &SwWrtShell::SetCrsrKillSel;
87 : }
88 :
89 0 : return bRet;
90 : }
91 :
92 0 : bool SwWrtShell::GotoFieldmark(::sw::mark::IFieldmark const * const pMark)
93 : {
94 0 : (this->*fnKillSel)( 0, sal_False );
95 0 : bool bRet = SwCrsrShell::GotoFieldmark(pMark);
96 0 : if( bRet && IsSelFrmMode() )
97 : {
98 0 : UnSelectFrm();
99 0 : LeaveSelFrmMode();
100 : }
101 0 : if( IsSelection() )
102 : {
103 0 : fnKillSel = &SwWrtShell::ResetSelect;
104 0 : fnSetCrsr = &SwWrtShell::SetCrsrKillSel;
105 : }
106 0 : return bRet;
107 : }
108 :
109 : /*--------------------------------------------------------------------
110 : Beschreibung: FontWork-Slots invalidieren
111 : --------------------------------------------------------------------*/
112 :
113 :
114 0 : void SwWrtShell::DrawSelChanged( )
115 : {
116 : static sal_uInt16 const aInval[] =
117 : {
118 : SID_ATTR_FILL_STYLE, SID_ATTR_FILL_COLOR, SID_ATTR_LINE_STYLE,
119 : SID_ATTR_LINE_WIDTH, SID_ATTR_LINE_COLOR, 0
120 : };
121 :
122 0 : GetView().GetViewFrame()->GetBindings().Invalidate(aInval);
123 :
124 0 : sal_Bool bOldVal = bNoInterrupt;
125 0 : bNoInterrupt = sal_True; // Trick, um AttrChangedNotify ueber Timer auszufuehren
126 0 : GetView().AttrChangedNotify(this);
127 0 : bNoInterrupt = bOldVal;
128 0 : }
129 :
130 0 : sal_Bool SwWrtShell::GotoMark( const ::rtl::OUString& rName )
131 : {
132 0 : IDocumentMarkAccess::const_iterator_t ppMark = getIDocumentMarkAccess()->findMark( rName );
133 0 : if(ppMark == getIDocumentMarkAccess()->getMarksEnd()) return false;
134 0 : return MoveBookMark( BOOKMARK_INDEX, ppMark->get() );
135 : }
136 :
137 :
138 0 : sal_Bool SwWrtShell::GotoMark( const ::sw::mark::IMark* const pMark )
139 : {
140 0 : return MoveBookMark( BOOKMARK_INDEX, pMark );
141 : }
142 :
143 :
144 0 : sal_Bool SwWrtShell::GoNextBookmark()
145 : {
146 0 : return MoveBookMark( BOOKMARK_NEXT );
147 : }
148 :
149 :
150 0 : sal_Bool SwWrtShell::GoPrevBookmark()
151 : {
152 0 : return MoveBookMark( BOOKMARK_PREV );
153 : }
154 :
155 :
156 0 : void SwWrtShell::ExecMacro( const SvxMacro& rMacro, String* pRet, SbxArray* pArgs )
157 : {
158 : // OD 11.02.2003 #100556# - execute macro, if it is allowed.
159 0 : if ( IsMacroExecAllowed() )
160 : {
161 0 : GetDoc()->ExecMacro( rMacro, pRet, pArgs );
162 : }
163 0 : }
164 :
165 :
166 0 : sal_uInt16 SwWrtShell::CallEvent( sal_uInt16 nEvent, const SwCallMouseEvent& rCallEvent,
167 : bool bChkPtr, SbxArray* pArgs,
168 : const Link* pCallBack )
169 : {
170 0 : return GetDoc()->CallEvent( nEvent, rCallEvent, bChkPtr, pArgs, pCallBack );
171 : }
172 :
173 :
174 : // fall ein util::URL-Button selektiert ist, dessen util::URL returnen, ansonsten
175 : // einen LeerString
176 0 : sal_Bool SwWrtShell::GetURLFromButton( String& rURL, String& rDescr ) const
177 : {
178 0 : sal_Bool bRet = sal_False;
179 0 : const SdrView *pDView = GetDrawView();
180 0 : if( pDView )
181 : {
182 : // Ein Fly ist genau dann erreichbar, wenn er selektiert ist.
183 0 : const SdrMarkList &rMarkList = pDView->GetMarkedObjectList();
184 :
185 0 : if (rMarkList.GetMark(0))
186 : {
187 0 : SdrUnoObj* pUnoCtrl = PTR_CAST(SdrUnoObj, rMarkList.GetMark(0)->GetMarkedSdrObj());
188 0 : if (pUnoCtrl && FmFormInventor == pUnoCtrl->GetObjInventor())
189 : {
190 0 : uno::Reference< awt::XControlModel > xControlModel = pUnoCtrl->GetUnoControlModel();
191 :
192 : OSL_ENSURE( xControlModel.is(), "UNO-Control without Model" );
193 0 : if( !xControlModel.is() )
194 0 : return bRet;
195 :
196 0 : uno::Reference< beans::XPropertySet > xPropSet(xControlModel, uno::UNO_QUERY);
197 :
198 0 : uno::Any aTmp;
199 :
200 0 : form::FormButtonType eButtonType = form::FormButtonType_URL;
201 0 : uno::Reference< beans::XPropertySetInfo > xInfo = xPropSet->getPropertySetInfo();
202 0 : if(xInfo->hasPropertyByName( "ButtonType" ))
203 : {
204 0 : aTmp = xPropSet->getPropertyValue( "ButtonType" );
205 : form::FormButtonType eTmpButtonType;
206 0 : aTmp >>= eTmpButtonType;
207 0 : if( eButtonType == eTmpButtonType)
208 : {
209 : // Label
210 0 : aTmp = xPropSet->getPropertyValue( "Label" );
211 0 : OUString uTmp;
212 0 : if( (aTmp >>= uTmp) && !uTmp.isEmpty())
213 : {
214 0 : rDescr = String(uTmp);
215 : }
216 :
217 : // util::URL
218 0 : aTmp = xPropSet->getPropertyValue( "TargetURL" );
219 0 : if( (aTmp >>= uTmp) && !uTmp.isEmpty())
220 : {
221 0 : rURL = String(uTmp);
222 : }
223 0 : bRet = sal_True;
224 : }
225 0 : }
226 : }
227 : }
228 : }
229 :
230 0 : return bRet;
231 : }
232 :
233 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|