/************************************************************** * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * *************************************************************/ #ifndef __com_sun_star_awt_grid_SortableGridDataModel_idl__ #define __com_sun_star_awt_grid_SortableGridDataModel_idl__ #include #include //================================================================================================================== module com { module sun { module star { module awt { module grid { interface XSortableMutableGridDataModel; interface XMutableGridDataModel; //================================================================================================================== /** provides a default implementation of a XSortableGridData.

This service must be created with a secondary grid data model, which all actual data requests are delegated to. But before providing this data to the service's own clients, it is sorted, according to the sort order defined via the XSortableGridData interface.

The service implementation is able to compare the default scalar types, plus strings.

For determining the data type of a column which the data should be sorted by, the first non- data encountered in this column is taken into account. Further read requests to this column will assume that all non- data is of the same type.

Consequently, you cannot use this service with data sets containing heterogenous data in a given column.

All requests made via the XMutableGridDataModel are delegated to the XMutableGridDataModel instance passed in the service constructor.

Note that changing the data might result in the sort order being destroyed. If you want to ensure that the data represented by the model is still sorted after your modifications, you should call XSortableGridData::sortByColumn, again.

*/ service SortableGridDataModel : XSortableMutableGridDataModel { /** creates a new instance of the SortableGridDataModel

For string comparison, a default Collator, based on the system's locale, will be used.

@param DelegatorModel the data model to which read requests are delegated. @throws ::com::sun::star::lang::IllegalArgumentException if the given DelegatorModel is */ create( [in] XMutableGridDataModel DelegatorModel ) raises ( ::com::sun::star::lang::IllegalArgumentException ); /** creates a new instance of the ScortableDefaultGridDataModel, passing a collator to be used for string comparison. @param DelegatorModel is the data model to which read requests are delegated @param Collator is the collator to be used for string comparison @throws ::com::sun::star::lang::IllegalArgumentException if the given DelegatorModel is */ createWithCollator( [in] XMutableGridDataModel DelegatorModel, [in] ::com::sun::star::i18n::XCollator Collator ) raises ( ::com::sun::star::lang::IllegalArgumentException ); }; //================================================================================================================== }; }; }; }; }; //================================================================================================================== #endif