1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
24 const SwMoveFnCollection aFwrd
= {
26 /* fnPos */ &GoNextPos
,
27 /* fnDoc */ &GoEndDoc
,
28 /* fnSections */ &GoEndSection
,
29 /* fnCmpOp */ &SwPosition::operator<,
30 /* fnGetHint */ &GetFrwrdTextHint
,
31 /* fnSearch */ &utl::TextSearch::SearchForward
,
32 /* fnSection */ &GoStartOfSection
35 const SwMoveFnCollection aBwrd
= {
36 /* fnNd */ &GoPrevious
,
37 /* fnPos */ &GoPreviousPos
,
38 /* fnDoc */ &GoStartDoc
,
39 /* fnSections */ &GoStartSection
,
40 /* fnCmpOp */ &SwPosition::operator>,
41 /* fnGetHint */ &GetBkwrdTextHint
,
42 /* fnSearch */ &utl::TextSearch::SearchBackward
,
43 /* fnSection */ &GoEndOfSection
46 SwMoveFnCollection
const & fnParaStart
= aFwrd
;
47 SwMoveFnCollection
const & fnParaEnd
= aBwrd
;
49 SwMoveFnCollection
const & fnSectionStart
= aFwrd
;
50 SwMoveFnCollection
const & fnSectionEnd
= aBwrd
;
52 SwMoveFnCollection
const & fnTableStart
= aFwrd
;
53 SwMoveFnCollection
const & fnTableEnd
= aBwrd
;
55 SwMoveFnCollection
const & fnRegionStart
= aFwrd
;
56 SwMoveFnCollection
const & fnRegionEnd
= aBwrd
;
58 SwMoveFnCollection
const & fnMoveBackward
= aBwrd
;
59 SwMoveFnCollection
const & fnMoveForward
= aFwrd
;
61 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */