Lines Matching refs:rControlCommand

289 …Controller::executeControlCommand( const ::com::sun::star::frame::ControlCommand& rControlCommand )  in executeControlCommand()  argument
291 if ( rControlCommand.Command.equalsAsciiL( "SetText", 7 )) in executeControlCommand()
293 for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ ) in executeControlCommand()
295 if ( rControlCommand.Arguments[i].Name.equalsAsciiL( "Text", 4 )) in executeControlCommand()
298 rControlCommand.Arguments[i].Value >>= aText; in executeControlCommand()
307 else if ( rControlCommand.Command.equalsAsciiL( "SetList", 7 )) in executeControlCommand()
309 for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ ) in executeControlCommand()
311 if ( rControlCommand.Arguments[i].Name.equalsAsciiL( "List", 4 )) in executeControlCommand()
316 rControlCommand.Arguments[i].Value >>= aList; in executeControlCommand()
332 else if ( rControlCommand.Command.equalsAsciiL( "AddEntry", 8 )) in executeControlCommand()
336 for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ ) in executeControlCommand()
338 if ( rControlCommand.Arguments[i].Name.equalsAsciiL( "Text", 4 )) in executeControlCommand()
340 if ( rControlCommand.Arguments[i].Value >>= aText ) in executeControlCommand()
346 else if ( rControlCommand.Command.equalsAsciiL( "InsertEntry", 11 )) in executeControlCommand()
350 for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ ) in executeControlCommand()
352 if ( rControlCommand.Arguments[i].Name.equalsAsciiL( "Pos", 3 )) in executeControlCommand()
355 if ( rControlCommand.Arguments[i].Value >>= nTmpPos ) in executeControlCommand()
362 else if ( rControlCommand.Arguments[i].Name.equalsAsciiL( "Text", 4 )) in executeControlCommand()
363 rControlCommand.Arguments[i].Value >>= aText; in executeControlCommand()
368 else if ( rControlCommand.Command.equalsAsciiL( "RemoveEntryPos", 14 )) in executeControlCommand()
370 for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ ) in executeControlCommand()
372 if ( rControlCommand.Arguments[i].Name.equalsAsciiL( "Pos", 3 )) in executeControlCommand()
375 if ( rControlCommand.Arguments[i].Value >>= nPos ) in executeControlCommand()
384 else if ( rControlCommand.Command.equalsAsciiL( "RemoveEntryText", 15 )) in executeControlCommand()
386 for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ ) in executeControlCommand()
388 if ( rControlCommand.Arguments[i].Name.equalsAsciiL( "Text", 4 )) in executeControlCommand()
391 if ( rControlCommand.Arguments[i].Value >>= aText ) in executeControlCommand()
397 else if ( rControlCommand.Command.equalsAsciiL( "SetDropDownLines", 16 )) in executeControlCommand()
399 for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ ) in executeControlCommand()
401 if ( rControlCommand.Arguments[i].Name.equalsAsciiL( "Lines", 5 )) in executeControlCommand()
404 rControlCommand.Arguments[i].Value >>= nValue; in executeControlCommand()
410 else if ( rControlCommand.Command.equalsAsciiL( "SetBackgroundColor", 18 )) in executeControlCommand()
412 for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ ) in executeControlCommand()
414 if ( rControlCommand.Arguments[i].Name.equalsAsciiL( "Color", 5 )) in executeControlCommand()
417 if ( rControlCommand.Arguments[i].Value >>= aColor ) in executeControlCommand()
426 else if ( rControlCommand.Command.equalsAsciiL( "SetTextColor", 12 )) in executeControlCommand()
428 for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ ) in executeControlCommand()
430 if ( rControlCommand.Arguments[i].Name.equalsAsciiL( "Color", 5 )) in executeControlCommand()
433 if ( rControlCommand.Arguments[i].Value >>= aColor ) in executeControlCommand()