Branch libreoffice-5-0-4
[LibreOffice.git] / include / svtools / table / tablesort.hxx
blob493f7c19970471e656286034fe2f23f95dfaee68
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 .
20 #ifndef INCLUDED_SVTOOLS_TABLE_TABLESORT_HXX
21 #define INCLUDED_SVTOOLS_TABLE_TABLESORT_HXX
23 #include <svtools/table/tabletypes.hxx>
26 namespace svt { namespace table
31 //= ColumnSortDirection
33 enum ColumnSortDirection
35 ColumnSortAscending,
36 ColumnSortDescending
40 //= ColumnSort
42 struct ColumnSort
44 ColPos nColumnPos;
45 ColumnSortDirection eSortDirection;
47 ColumnSort()
48 :nColumnPos( COL_INVALID )
49 ,eSortDirection( ColumnSortAscending )
53 ColumnSort( ColPos const i_columnPos, ColumnSortDirection const i_sortDirection )
54 :nColumnPos( i_columnPos )
55 ,eSortDirection( i_sortDirection )
61 //= ITableDataSort
63 /** provides sorting functionality for the datta underlying an ITableModel
65 class SAL_NO_VTABLE ITableDataSort
67 public:
68 /** sorts the rows in the model by the given column's data, in the given direction.
70 virtual void sortByColumn( ColPos const i_column, ColumnSortDirection const i_sortDirection ) = 0;
72 /** retrieves the current sort order of the data
74 If the <code>nColumnIndex</code> member of the returned srtructure is <code>COL_INVALID</code>, then
75 the data is currently not sorted.
77 virtual ColumnSort getCurrentSortOrder() const = 0;
79 protected:
80 ~ITableDataSort() {}
84 } } // namespace svt::table
87 #endif // INCLUDED_SVTOOLS_TABLE_TABLESORT_HXX
89 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */