Lines Matching refs:rControlCommand

239 …Controller::executeControlCommand( const ::com::sun::star::frame::ControlCommand& rControlCommand )  in executeControlCommand()  argument
241 if ( rControlCommand.Command.equalsAsciiL( "SetList", 7 )) in executeControlCommand()
243 for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ ) in executeControlCommand()
245 if ( rControlCommand.Arguments[i].Name.equalsAsciiL( "List", 4 )) in executeControlCommand()
250 rControlCommand.Arguments[i].Value >>= aList; in executeControlCommand()
268 else if ( rControlCommand.Command.equalsAsciiL( "AddEntry", 8 )) in executeControlCommand()
272 for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ ) in executeControlCommand()
274 if ( rControlCommand.Arguments[i].Name.equalsAsciiL( "Text", 4 )) in executeControlCommand()
276 if ( rControlCommand.Arguments[i].Value >>= aText ) in executeControlCommand()
282 else if ( rControlCommand.Command.equalsAsciiL( "InsertEntry", 11 )) in executeControlCommand()
286 for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ ) in executeControlCommand()
288 if ( rControlCommand.Arguments[i].Name.equalsAsciiL( "Pos", 3 )) in executeControlCommand()
291 if ( rControlCommand.Arguments[i].Value >>= nTmpPos ) in executeControlCommand()
298 else if ( rControlCommand.Arguments[i].Name.equalsAsciiL( "Text", 4 )) in executeControlCommand()
299 rControlCommand.Arguments[i].Value >>= aText; in executeControlCommand()
304 else if ( rControlCommand.Command.equalsAsciiL( "RemoveEntryPos", 14 )) in executeControlCommand()
306 for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ ) in executeControlCommand()
308 if ( rControlCommand.Arguments[i].Name.equalsAsciiL( "Pos", 3 )) in executeControlCommand()
311 if ( rControlCommand.Arguments[i].Value >>= nPos ) in executeControlCommand()
320 else if ( rControlCommand.Command.equalsAsciiL( "RemoveEntryText", 15 )) in executeControlCommand()
322 for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ ) in executeControlCommand()
324 if ( rControlCommand.Arguments[i].Name.equalsAsciiL( "Text", 4 )) in executeControlCommand()
327 if ( rControlCommand.Arguments[i].Value >>= aText ) in executeControlCommand()
333 else if ( rControlCommand.Command.equalsAsciiL( "SetDropDownLines", 16 )) in executeControlCommand()
335 for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ ) in executeControlCommand()
337 if ( rControlCommand.Arguments[i].Name.equalsAsciiL( "Lines", 5 )) in executeControlCommand()
340 rControlCommand.Arguments[i].Value >>= nValue; in executeControlCommand()