Lines Matching refs:rControlCommand

365 …Controller::executeControlCommand( const ::com::sun::star::frame::ControlCommand& rControlCommand )  in executeControlCommand()  argument
373 if ( rControlCommand.Command.equalsAsciiL( "SetStep", 7 )) in executeControlCommand()
375 for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ ) in executeControlCommand()
381 if ( rControlCommand.Arguments[i].Name.equalsAsciiL( "Step", 4 )) in executeControlCommand()
383 if ( impl_getValue( rControlCommand.Arguments[i].Value, nValue, fValue, bFloat )) in executeControlCommand()
390 else if ( rControlCommand.Command.equalsAsciiL( "SetValue", 8 )) in executeControlCommand()
392 for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ ) in executeControlCommand()
394 if ( rControlCommand.Arguments[i].Name.equalsAsciiL( "Value", 5 )) in executeControlCommand()
400 if ( impl_getValue( rControlCommand.Arguments[i].Value, nValue, fValue, bFloat )) in executeControlCommand()
409 else if ( rControlCommand.Command.equalsAsciiL( "SetValues", 9 )) in executeControlCommand()
411 for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ ) in executeControlCommand()
417 rtl::OUString aName = rControlCommand.Arguments[i].Name; in executeControlCommand()
418 if ( impl_getValue( rControlCommand.Arguments[i].Value, nValue, fValue, bFloat )) in executeControlCommand()
436 rControlCommand.Arguments[i].Value >>= m_aOutFormat; in executeControlCommand()
439 else if ( rControlCommand.Command.equalsAsciiL( "SetLowerLimit", 13 )) in executeControlCommand()
441 for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ ) in executeControlCommand()
447 if ( rControlCommand.Arguments[i].Name.equalsAsciiL( "LowerLimit", 10 )) in executeControlCommand()
449 if ( impl_getValue( rControlCommand.Arguments[i].Value, nValue, fValue, bFloat )) in executeControlCommand()
456 else if ( rControlCommand.Command.equalsAsciiL( "SetUpperLimit", 13 )) in executeControlCommand()
458 for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ ) in executeControlCommand()
464 if ( rControlCommand.Arguments[i].Name.equalsAsciiL( "UpperLimit", 10 )) in executeControlCommand()
466 if ( impl_getValue( rControlCommand.Arguments[i].Value, nValue, fValue, bFloat )) in executeControlCommand()
473 else if ( rControlCommand.Command.equalsAsciiL( "SetOutputFormat", 15 )) in executeControlCommand()
475 for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ ) in executeControlCommand()
477 if ( rControlCommand.Arguments[i].Name.equalsAsciiL( "OutputFormat", 10 )) in executeControlCommand()
479 rControlCommand.Arguments[i].Value >>= m_aOutFormat; in executeControlCommand()