1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * This file is part of OpenOffice.org.
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org. If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
26 ************************************************************************/
28 // MARKER(update_precomp.py): autogen include statement, do not remove
29 #include "precompiled_sfx2.hxx"
31 #if OSL_DEBUG_LEVEL > 1
32 #include <tools/stream.hxx>
36 #include <sfx2/request.hxx>
37 #include <sfx2/msg.hxx>
39 //====================================================================
41 SV_DECL_PTRARR_DEL( SfxStatements_Impl
, SfxMacroStatement
*, 16, 8 )
42 SV_IMPL_PTRARR( SfxStatements_Impl
, SfxMacroStatement
* );
44 //--------------------------------------------------------------------
50 Implementations-Struktur der Klasse <SfxMacro>.
54 SfxMacroMode eMode
; /* Zweck der <SfxMacro>-Instanz,
55 Bedeutung siehe enum <SfxMacroMode> */
56 SfxStatements_Impl aList
; /* Liste von aufgezeichneten Statements */
59 //====================================================================
61 SfxMacroStatement::SfxMacroStatement
63 const SfxShell
& /*rShell*/, // <SfxShell>, die den Request ausf"uhrte
64 const String
& /*rTarget*/, // Name des Zielobjektes vor der Ausf"urhung
65 sal_Bool
/*bAbsolute*/, // obsolet
66 const SfxSlot
& rSlot
, // der <SfxSlot>, der das Statement abspielen kann
67 sal_Bool bRequestDone
, // wurde der Request tats"achlich ausgef"uhrt
68 ::com::sun::star::uno::Sequence
< ::com::sun::star::beans::PropertyValue
>& rArgs
73 Dieser Konstruktor der Klasse SfxMacroStatement erzeugt ein Statement,
74 bei dem ein Objekt angesprochen wird, welches durch 'rShell' angegeben
75 ist. Dabei erfolgt die Addressierung je nach 'bAbsolute' absolut,
76 also z.B. als '[mydoc.sdc]' oder relativ, also z.B. 'ActiveDocument'.
78 Je nach Art der Subklasse von 'rShell' ergeben sich folgende
82 -----------------------------------------------------------------------
83 SfxApplication' | 'StarCalc' 'Application'
84 SfxViewFrame' | '[mydoc.sdc:1]' 'ActiveWindow'
85 SfxViewShell' | '[mydoc.sdc:1]' 'AvtiveWindow'
86 SfxObjectShell' | '[mydoc.sdc]' 'ActiveDocument'
87 sonstige (Sub-Shells) | '[mydoc.sdc:1]' 'ActiveWindow'
89 Dabei sind 'StarCalc' stellvertretend fuer den Namen der Applikation
90 (Application::GetAppName()const). In der absoluten Fassung k"onnte
91 die Selektion auch deskriptiv z.B. als 'CellSelection("A5-D8")')
92 angesprochen werden, dazu mu\ jedoch vom Anwendungsprogrammierer der
93 Konstruktor <SfxMacroStatement::SfxMacroStatement(const String&,
94 const SfxSlot&,sal_Bool,SfxArguments*)> verwendet werden.
96 F"ur das so bezeichnete Objekt wird dann je nach Typ des Slots
97 eine Zuweisung an eines seiner Properties oder der Aufruf einer seiner
98 Methoden ausgedr"uckt.
104 SCalc3.OpenDocument( "\docs\mydoc.sdd", "StarDraw Presentation", 0, 0 )
105 [mydoc.sdd].Activate()
106 [mydoc.sdd:1].SwitchToView( 2 )
107 [mydoc.sdc:1:1].CellSelection( "A5-D8" ).LineColor = 192357
110 ActiveWindow.LineColor = 192357
115 <SfxMacroStatement::SfxMacroStatement(const String&,const SfxSlot&,sal_Bool,SfxArguments*)>
116 <SfxMacroStatement::SfxMacroStatement(const String&)>
119 : nSlotId( rSlot
.GetSlotId() ),
121 bDone( bRequestDone
),
124 // Workaround Recording nicht exportierter Slots (#25386#)
128 // Objekt-Typ bestimmen
129 bool bIsApp = rShell.ISA(SfxApplication);
130 bool bIsDoc = rShell.ISA(SfxObjectShell);
131 bool bIsWin = !bIsApp && !bIsDoc &&
132 ( rShell.ISA(SfxViewShell) || rShell.ISA(SfxViewFrame) );
133 bool bIsSel = !bIsApp && !bIsDoc && !bIsWin;
135 // Objekt nicht schon im Slot-Namen enthalten?
136 if ( bIsSel || rSlot.pName[0] == '.' )
138 // absolutes Aufzeichnen?
139 if ( rSlot.IsMode( SFX_SLOT_RECORDABSOLUTE ) )
141 // an der Applikation oder am Modul
142 if ( rShell.ISA(SfxApplication) || rShell.ISA(SfxModule) )
143 aStatement = rTarget;
148 else if ( rShell.ISA(SfxObjectShell) )
151 aStatement += rTarget;
152 aStatement += 0x005D;
155 else if ( rShell.ISA(SfxViewFrame) )
158 aStatement += String::CreateFromAscii("ViewFrame");//rShell.GetSbxObject()->GetName();
159 aStatement += 0x005D;
164 // an der View oder Sub-Shell
165 SfxViewShell *pViewShell = rShell.GetViewShell();
167 aStatement += String::CreateFromAscii("ViewShell");//pViewShell->GetViewFrame()->GetSbxObject()->GetName();
168 aStatement += 0x005D;
169 if ( !rShell.ISA(SfxViewFrame) )
170 // an einer Sub-Shell zus"atlich ".Selection" anh"angen
171 aStatement += DEFINE_CONST_UNICODE(".Selection");
174 else // relatives Aufzeichnen
176 // an der Application?
177 if ( rShell.ISA(SfxApplication) )
178 aStatement = DEFINE_CONST_UNICODE("Application");
181 else if ( rShell.ISA(SfxModule) )
182 aStatement = DEFINE_CONST_UNICODE("ActiveModule");
185 else if ( rShell.ISA(SfxObjectShell) )
186 aStatement = DEFINE_CONST_UNICODE("ActiveDocument");
189 else if ( rShell.ISA(SfxViewShell) || rShell.ISA(SfxViewFrame) )
190 aStatement = DEFINE_CONST_UNICODE("ActiveWindow");
193 // an einer Sub-Shell
194 aStatement = DEFINE_CONST_UNICODE("Selection");
200 // bei Selection ggf. noch den Namen der SubShell anh"angen
201 const SfxShellObject *pShObj =
202 (const SfxShellObject*) rShell.GetSbxObject();
205 const SfxShellObject *pParentObj =
206 (const SfxShellObject*) pShObj->GetParent();
207 SfxShell *pParentSh = pParentObj->GetShell();
208 DBG_ASSERT( pParentSh->ISA(SfxViewFrame),
209 "parent of SubShell must be a Frame" );
210 if ( rSlot.pName[0] == '.' )
213 aStatement += rShell.GetSbxObject()->GetName();
217 DBG_ASSERT( rSlot.pName[0] != '0', "recording unnamed object" );
220 aStatement
= DEFINE_CONST_UNICODE("Selection");
222 // an diesen Objekt-Ausdruck den Methoden-/Property-Namen und Parameter
223 GenerateNameAndArgs_Impl( SfxRequest::GetRecordingMacro(), rSlot
, bRequestDone
, aArgs
);
226 //--------------------------------------------------------------------
228 SfxMacroStatement::SfxMacroStatement
230 const String
& rTarget
, // Objekt, was beim Playing angesprochen wird
231 const SfxSlot
& rSlot
, // der <SfxSlot>, der das Statement abspielen kann
232 sal_Bool bRequestDone
, // wurde der Request tats"achlich ausgef"uhrt
233 ::com::sun::star::uno::Sequence
< ::com::sun::star::beans::PropertyValue
>& rArgs
241 <SfxMacroStatement::SfxMacroStatement(const String&)>
242 <SfxMacroStatement::SfxMacroStatement(const SfxShell&,sal_Bool,const SfxSlot&,sal_Bool,SfxArguments*)>
245 : nSlotId( rSlot
.GetSlotId() ),
247 bDone( bRequestDone
),
250 aStatement
= rTarget
;
252 GenerateNameAndArgs_Impl( SfxRequest::GetRecordingMacro(), rSlot
, bRequestDone
, aArgs
);
255 //--------------------------------------------------------------------
257 SfxMacroStatement::SfxMacroStatement
259 const String
& rStatement
// manuell erzeugte(s) Statement(s)
264 Dieser Konstruktor erzeugt eine SfxMacroStatement-Instanz, deren
265 Aufbau vollst"andig vom Applikationsentwickler bestimmt wird. Da der
266 angegebene String auch mehrere mit CR/LF getrennte Statements
267 enthalten darf, ist damit ein weitgehender Eingriff in das Aufzeichnen
268 von BASIC-Makros m"oglich, um Spezialf"alle zu behandeln.
273 <SfxMacroStatement::SfxMacroStatement(const String&,const SfxSlot&,sal_Bool,SfxArguments*)>
274 <SfxMacroStatement::SfxMacroStatement(const SfxShell&,sal_Bool,const SfxSlot&,sal_Bool,SfxArguments*)>
278 aStatement( rStatement
),
284 //--------------------------------------------------------------------
286 SfxMacroStatement::SfxMacroStatement
288 const SfxMacroStatement
& rOrig
// Original, von dem kopiert wird
293 Copy-Konstruktor der SfxMacroStatement-Klasse.
296 : nSlotId( rOrig
.nSlotId
),
297 aStatement( rOrig
.aStatement
),
298 bDone( rOrig
.bDone
),
304 //--------------------------------------------------------------------
306 SfxMacroStatement::~SfxMacroStatement()
310 Destruktor der Klasse SfxMacroStatement. Gibt die Liste der
311 aktuellen Parameter frei.
317 //--------------------------------------------------------------------
319 void SfxMacroStatement::GenerateNameAndArgs_Impl
321 SfxMacro
* /*pMacro*/, // darin wird aufgezeichnet
322 const SfxSlot
& rSlot
, // der Slot, der das Statement abspielen kann
323 sal_Bool bRequestDone
, // sal_True=wurde ausgef"uhrt, sal_False=abgebrochen
324 ::com::sun::star::uno::Sequence
< ::com::sun::star::beans::PropertyValue
>& /*rArgs*/
329 Interne Hilfsmethode zum generieren des Funktions-/Property-Names
330 sowie der Parameter. Diese Methode wird nur verwendet, wenn der
331 Anwendungsprogrammierer keinen eigenen Source an den <SfxRequest>
336 if ( aStatement
.Len() && aStatement
.GetChar( aStatement
.Len() - 1 ) != '.'
337 && rSlot
.pName
[0] != '.' )
340 // der Name des Slots ist der Name der Methode / des Properties
341 aStatement
+= String::CreateFromAscii(rSlot
.pName
);
342 if ( rSlot
.IsMode(SFX_SLOT_METHOD
) )
343 aStatement
+= DEFINE_CONST_UNICODE("( ");
345 aStatement
+= DEFINE_CONST_UNICODE(" = ");
347 // alle zusammengesuchten Parameter rausschreiben
348 if ( aArgs
.getLength() )
349 for ( sal_uInt16 nArg
= 0; nArg
< aArgs
.getLength(); ++nArg
)
351 // den Parameter textuell darstellen
353 ::com::sun::star::uno::Any
& rValue
= aArgs
[nArg
].Value
;
354 ::com::sun::star::uno::Type pType
= rValue
.getValueType();
355 if ( pType
== ::getBooleanCppuType() )
357 sal_Bool bTemp
= false;
359 aArg
= bTemp
? DEFINE_CONST_UNICODE("TRUE") : DEFINE_CONST_UNICODE("FALSE");
361 else if ( pType
== ::getCppuType((const sal_Int16
*)0) )
363 sal_uInt16 nTemp
= 0;
365 aArg
= String::CreateFromInt32( (sal_Int32
) nTemp
);
367 else if ( pType
== ::getCppuType((const sal_Int32
*)0) )
369 sal_uInt32 nTemp
= 0;
371 aArg
= String::CreateFromInt32( nTemp
);
373 else if ( pType
== ::getCppuType((const ::rtl::OUString
*)0) )
375 ::rtl::OUString sTemp
;
378 // Anf"uhrungszeichen werden verdoppelt
379 XubString
aRecordable( sTemp
);
383 nPos
= aRecordable
.SearchAndReplace( DEFINE_CONST_UNICODE('"'), DEFINE_CONST_UNICODE("\"\""), nPos
);
384 if ( STRING_NOTFOUND
== nPos
)
389 // nicht druckbare Zeichen werden als chr$(...) geschrieben
390 bool bPrevReplaced
= sal_False
;
391 for ( sal_uInt16 n
= 0; n
< aRecordable
.Len(); ++n
)
393 sal_Unicode cChar
= aRecordable
.GetChar(n
);
394 if ( !( cChar
>=32 && cChar
!=127 ) ) // ALS ERSATZ FUER String::IsPrintable()!
396 XubString
aReplacement( DEFINE_CONST_UNICODE("+chr$(") );
397 aReplacement
+= cChar
;
401 aRecordable
.Insert( aReplacement
, n
- 2 );
402 n
= n
+ aReplacement
.Len();
403 aRecordable
.SetChar((unsigned short) (n
-2), 0x0029);// ')' = 29h
404 aRecordable
.Replace( n
-1, 2, DEFINE_CONST_UNICODE("+\"") );
409 aReplacement
+= DEFINE_CONST_UNICODE(")+\"");
410 aRecordable
.SetChar(n
, 0x0022 );// '"' = 22h
411 aRecordable
.Insert( aReplacement
, n
+ 1 );
412 n
= n
+ aReplacement
.Len();
414 bPrevReplaced
= sal_True
;
417 bPrevReplaced
= sal_False
;
419 // Argument in Anf"uhrungszeichen
427 // als Zahl darstellen
428 aArg = (sal_uInt16) rVar.GetByte();
436 pType
== ::getVoidCppuType(), "Unknown Type in recorder!" );
439 // den Parameter anh"angen
441 aStatement
+= DEFINE_CONST_UNICODE(", ");
445 if ( aArgs
.getLength() )
446 aStatement
.Erase( aStatement
.Len() - 2, 1 );
448 aStatement
.Erase( aStatement
.Len() - 1, 1 );
449 if ( rSlot
.IsMode(SFX_SLOT_METHOD
) )
453 // nicht als "Done()" gekennzeichnete Statements auskommentieren
454 aStatement
.InsertAscii( "rem ", 0 );
457 //--------------------------------------------------------------------
461 SfxMacroMode eMode
// Zweck der Instanz, siehe <SfxMacroMode>
466 Konstruktor der Klasse SfxMacro. Instanzen dieser Klasse werden im
467 SFx zu zwei Zwecken ben"otigt:
469 1. zum Aufzeichnen von Makros
470 In diesem Fall wird der Konstruktor mit SFX_MACRO_RECORDINGABSOLUTE
471 oder SFX_MACRO_RECORDINGRELATIVE aufgerufen. Es sollte sich um eine
472 Instanz einer abgeleiteten Klasse handeln, um in der Ableitung
473 die Information dar"uber unterzubringen, wo das Makro gespeichert
474 werden soll. Ein solches Makro solle sich dann in seinem Destruktor
475 an der vom Benutzer gew"ahlten Stelle speichern.
477 2. zum Zuordnen von exisitierenden Makros
478 In diesem Fall wird der Konstruktor mit SFX_MACRO_EXISTING aufgerufen.
479 Eine solche Instanz wird z.B. ben"otigt, wenn Makros auf Events
480 oder <SfxControllerItem>s konfiguriert werden sollen.
483 : pImp( new SfxMacro_Impl
)
489 //--------------------------------------------------------------------
491 SfxMacro::~SfxMacro()
495 Virtueller Destruktor der Klasse SfxMacro. Dieser sollte in den
496 abgeleiteten Klassen "uberladen werden, um in den Modi
497 SFX_MACRO_RECORDINGABSOLUTE und SFX_MACRO_RECORDINGRELATIVE den
498 aufgezeichneten Source abzuspeichern.
503 <SfxMacro::GenerateSource()const>
507 #if OSL_DEBUG_LEVEL > 1
508 SvFileStream
aStream( String::CreateFromAscii("file:///f:/testmacro.bas" ), STREAM_STD_READWRITE
| STREAM_TRUNC
);
509 aStream
<< ByteString( GenerateSource(), RTL_TEXTENCODING_UTF8
).GetBuffer();
514 //--------------------------------------------------------------------
516 SfxMacroMode
SfxMacro::GetMode() const
520 Liefert den Modus, der besagt zu welchem Zweck das SfxMacro konstruiert
533 //--------------------------------------------------------------------
535 void SfxMacro::Record
537 SfxMacroStatement
* pStatement
// aufzuzeichnendes <SfxMacroStatement>
542 Diese Methode zeichnet das als Parameter "ubergeben Statement auf.
543 Die Instanz auf die der "ubergebe Pointer zeigt, geht in das Eigentum
546 Der Aufruf ist nur g"ultig, wenn es sich um ein SfxMacro handelt,
547 welches mit SFX_MACRO_RECORDINGABSOLUTE oder SFX_MACRO_RECORDINGRELATIVE
553 <SfxMacro::Replace(SfxMacroStatement*)>
555 <SfxMacro::GetLastStatement()const>
559 DBG_ASSERT( pImp
->eMode
!= SFX_MACRO_EXISTING
, "invalid call to non-recording SfxMacro" );
560 pImp
->aList
.C40_INSERT( SfxMacroStatement
, pStatement
, pImp
->aList
.Count() );
563 //--------------------------------------------------------------------
565 void SfxMacro::Replace
567 SfxMacroStatement
* pStatement
// aufzuzeichnendes <SfxMacroStatement>
572 Diese Methode zeichnet das als Parameter "ubergeben Statement auf.
573 Dabei wird das jeweils zuletzt aufgezeichnete Statement "uberschrieben.
574 Die Instanz auf die der "ubergebe Pointer zeigt, geht in das Eigentum
577 Mit dieser Methode ist es m"oglich, Statements zusammenzufassen. Z.B.
578 anstelle f"unfmal hintereinander 'CursorLeft()' aufzurufen, k"onnte
579 das zu 'CursorLeft(5)' zusammengefa\st werden. Oder anstelle ein Wort
580 Buchstabe f"ur Buchstabe aufzubauen, k"onnte dies durch ein einziges
581 Statement 'InsertString("Hallo")' ersetzt werden.
583 Der Aufruf ist nur g"ultig, wenn es sich um ein SfxMacro handelt,
584 welches mit SFX_MACRO_RECORDINGABSOLUTE oder SFX_MACRO_RECORDINGRELATIVE
585 konstruiert wurde und bereits ein aufgezeichnetes Statement vorhanden
591 Diese Methode wird typischerweise aus den Execute-Methoden der
592 <SfxSlot>s von den Applikationsentwicklern gerufen.
597 <SfxMacro::Record(SfxMacroStatement*)>
599 <SfxMacro::GetLastStatement()const>
603 DBG_ASSERT( pImp
->eMode
!= SFX_MACRO_EXISTING
, "invalid call to non-recording SfxMacro" );
604 DBG_ASSERT( pImp
->aList
.Count(), "no replaceable statement available" );
605 pImp
->aList
.Remove( pImp
->aList
.Count() - 1 );
606 pImp
->aList
.C40_INSERT( SfxMacroStatement
,pStatement
, pImp
->aList
.Count() );
609 //--------------------------------------------------------------------
611 void SfxMacro::Remove()
615 Diese Methode l"oscht das zuletzt aufgezeichnete <SfxMacroStatement>
616 und entfernt es aus dem Macro.
618 Mit dieser Methode ist es m"oglich, Statements zusammenzufassen. Z.B.
619 anstelle f"unfmal hintereinander 'CursorLeft()' aufzurufen, k"onnte
620 das zu 'CursorLeft(5)' zusammengefa\st werden. Oder anstelle ein Wort
621 Buchstabe f"ur Buchstabe aufzubauen, k"onnte dies durch ein einziges
622 Statement 'InsertString("Hallo")' ersetzt werden.
624 Der Aufruf ist nur g"ultig, wenn es sich um ein SfxMacro handelt,
625 welches mit SFX_MACRO_RECORDINGABSOLUTE oder SFX_MACRO_RECORDINGRELATIVE
626 konstruiert wurde und bereits ein aufgezeichnetes Statement vorhanden
632 Diese Methode wird typischerweise aus den Execute-Methoden der
633 <SfxSlot>s von den Applikationsentwicklern gerufen.
638 <SfxMacro::Replace(SfxMacroStatement*)>
639 <SfxMacro::Record(SfxMacroStatement*)>
640 <SfxMacro::GetLastStatement()const>
644 DBG_ASSERT( pImp
->eMode
!= SFX_MACRO_EXISTING
, "invalid call to non-recording SfxMacro" );
645 DBG_ASSERT( pImp
->aList
.Count(), "no replaceable statement available" );
646 pImp
->aList
.Remove( pImp
->aList
.Count() - 1 );
649 //--------------------------------------------------------------------
651 const SfxMacroStatement
* SfxMacro::GetLastStatement() const
655 Mit dieser Methode kann auf das jeweils zuletzt aufgezeichnete Statement
656 lesend zugegriffen werden. Zusammen mit der Methode
657 <SfxMacro::Replace(SfxMacroStatement*)> ergibt sich dadurch die
658 M"oglichkeit, Statements zusammenzufassen.
660 Der Aufruf ist nur g"ultig, wenn es sich um ein SfxMacro handelt,
661 welches mit SFX_MACRO_RECORDINGABSOLUTE oder SFX_MACRO_RECORDINGRELATIVE
667 <SfxMacro::Record(SfxMacroStatement*)>
668 <SfxMacro::Replace(SfxMacroStatement*)>
672 DBG_ASSERT( pImp
->eMode
!= SFX_MACRO_EXISTING
, "invalid call to non-recording SfxMacro" );
673 if ( pImp
->aList
.Count() )
674 return pImp
->aList
.GetObject( pImp
->aList
.Count() - 1 );
678 //--------------------------------------------------------------------
680 String
SfxMacro::GenerateSource() const
684 Diese Funktion generiert aus den, seit dem Konstruieren der Instanz
685 bis zum Zeitpunkt des Aufrufs dieser Methode aufgezeichneten
686 <SfxMacroStatement>s einen BASIC-Sourcecode, der die Statements,
687 jedoch nicht den Header ('Sub X') und den Footer ('End Sub') enth"alt.
692 <SfxMacro::Record(SfxMacroStatement*)>
693 <SfxMacro::Repeat(SfxMacroStatement*)>
697 DBG_ASSERT( pImp
->eMode
!= SFX_MACRO_EXISTING
, "invalid call to non-recording SfxMacro" );
699 for ( sal_uInt16 n
= 0; n
< pImp
->aList
.Count(); ++n
)
701 aSource
+= pImp
->aList
.GetObject(n
)->GetStatement();
702 if ( (n
+1) < pImp
->aList
.Count() )
703 aSource
+= DEFINE_CONST_UNICODE("\n");