Lines Matching refs:rControlCommand

159 …Controller::executeControlCommand( const ::com::sun::star::frame::ControlCommand& rControlCommand )  in executeControlCommand()  argument
166 if ( rControlCommand.Command.equalsAsciiL( "SetList", 7 )) in executeControlCommand()
168 for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ ) in executeControlCommand()
170 if ( rControlCommand.Arguments[i].Name.equalsAsciiL( "List", 4 )) in executeControlCommand()
175 rControlCommand.Arguments[i].Value >>= aList; in executeControlCommand()
191 else if ( rControlCommand.Command.equalsAsciiL( "CheckItemPos", 12 )) in executeControlCommand()
193 for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ ) in executeControlCommand()
195 if ( rControlCommand.Arguments[i].Name.equalsAsciiL( "Pos", 3 )) in executeControlCommand()
199 rControlCommand.Arguments[i].Value >>= nPos; in executeControlCommand()
218 else if ( rControlCommand.Command.equalsAsciiL( "AddEntry", 8 )) in executeControlCommand()
221 for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ ) in executeControlCommand()
223 if ( rControlCommand.Arguments[i].Name.equalsAsciiL( "Text", 4 )) in executeControlCommand()
225 if ( rControlCommand.Arguments[i].Value >>= aText ) in executeControlCommand()
231 else if ( rControlCommand.Command.equalsAsciiL( "InsertEntry", 11 )) in executeControlCommand()
236 for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ ) in executeControlCommand()
238 if ( rControlCommand.Arguments[i].Name.equalsAsciiL( "Pos", 3 )) in executeControlCommand()
241 if ( rControlCommand.Arguments[i].Value >>= nTmpPos ) in executeControlCommand()
247 else if ( rControlCommand.Arguments[i].Name.equalsAsciiL( "Text", 4 )) in executeControlCommand()
248 rControlCommand.Arguments[i].Value >>= aText; in executeControlCommand()
255 else if ( rControlCommand.Command.equalsAsciiL( "RemoveEntryPos", 14 )) in executeControlCommand()
257 for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ ) in executeControlCommand()
259 if ( rControlCommand.Arguments[i].Name.equalsAsciiL( "Pos", 3 )) in executeControlCommand()
262 if ( rControlCommand.Arguments[i].Value >>= nPos ) in executeControlCommand()
275 else if ( rControlCommand.Command.equalsAsciiL( "RemoveEntryText", 15 )) in executeControlCommand()
277 for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ ) in executeControlCommand()
279 if ( rControlCommand.Arguments[i].Name.equalsAsciiL( "Text", 4 )) in executeControlCommand()
282 if ( rControlCommand.Arguments[i].Value >>= aText ) in executeControlCommand()