tdf#130857 qt weld: Implement QtInstanceWidget::get_text_height
[LibreOffice.git] / offapi / com / sun / star / text / TextSortDescriptor.idl
blobe1904ce4e8a63bf77025c97ed2d898bd3cadb2b8
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
22 module com { module sun { module star { module text {
24 /** describes sort criteria for sorting text.
26 @deprecated
28 published service TextSortDescriptor
30 service com::sun::star::util::SortDescriptor;
32 /** contains the character that marks the separation of columns.
34 [property] char Delimiter;
36 /** determines if the content of a table is to be sorted.
38 [property] boolean IsSortInTable;
40 /** contains the row or column index used in the first search key.
42 [property] long SortRowOrColumnNo0;
44 /** determines if the sorting in the first search key is done
45 numeric or alphanumeric order.
47 [property] boolean IsSortNumeric0;
49 /** determines if the sorting in the first search key is done
50 in ascending or descending order.
52 [property] boolean IsSortAscending0;
54 /** contains the row or column index used in the second search key.
56 [property] long SortRowOrColumnNo1;
58 /** determines if the sorting in the second search key is done
59 in numeric or alphanumeric order.
61 [property] boolean IsSortNumeric1;
63 /** determines if the sorting in the second search key is done
64 in ascending or descending order.
66 [property] boolean IsSortAscending1;
68 /** contains the row or column index used in the third search key.
70 [property] long SortRowOrColumnNo2;
72 /** determines if the sorting in the third search key is done
73 in numeric or alphanumeric order.
75 [property] boolean IsSortNumeric2;
77 /** determines if the sorting in the third search key is done
78 in ascending or descending order.
80 [property] boolean IsSortAscending2;
85 }; }; }; };
87 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */