1/*
2 * This file is part of the LibreOffice project.
3 *
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 *
8 * This file incorporates work covered by the following license notice:
9 *
10 *   Licensed to the Apache Software Foundation (ASF) under one or more
11 *   contributor license agreements. See the NOTICE file distributed
12 *   with this work for additional information regarding copyright
13 *   ownership. The ASF licenses this file to you under the Apache
14 *   License, Version 2.0 (the "License"); you may not use this file
15 *   except in compliance with the License. You may obtain a copy of
16 *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
17 */
18
19interface BaseTextList
20{
21    FN_NUM_BULLET_DOWN // status(final|play)
22    [
23        ExecMethod = Execute ;
24        StateMethod = GetState ;
25        DisableFlags="SfxDisableFlags::SwOnProtectedCursor";
26    ]
27
28    FN_NUM_BULLET_NEXT // status(final|play)
29    [
30        ExecMethod = Execute ;
31        StateMethod = GetState ;
32        DisableFlags="SfxDisableFlags::SwOnProtectedCursor";
33    ]
34
35    FN_NUM_BULLET_NONUM // status(final|play)
36    [
37        ExecMethod = Execute ;
38        StateMethod = GetState ;
39        DisableFlags="SfxDisableFlags::SwOnProtectedCursor";
40    ]
41
42    FN_NUM_BULLET_OFF // status(final|play)
43    [
44        ExecMethod = Execute ;
45        StateMethod = GetState ;
46        DisableFlags="SfxDisableFlags::SwOnProtectedCursor";
47    ]
48
49    FN_NUM_BULLET_OUTLINE_DOWN  // status(final|play)
50    [
51        ExecMethod = Execute ;
52        StateMethod = GetState ;
53        DisableFlags="SfxDisableFlags::SwOnProtectedCursor";
54    ]
55
56    FN_NUM_BULLET_OUTLINE_MOVEDOWN // status(final|play)
57    [
58        ExecMethod = Execute ;
59        StateMethod = GetState ;
60        DisableFlags="SfxDisableFlags::SwOnProtectedCursor";
61    ]
62
63    FN_NUM_BULLET_OUTLINE_MOVEUP // status(final|play)
64    [
65        ExecMethod = Execute ;
66        StateMethod = GetState ;
67        DisableFlags="SfxDisableFlags::SwOnProtectedCursor";
68    ]
69
70    FN_NUM_BULLET_OUTLINE_UP   // status(final|play)
71    [
72        ExecMethod = Execute ;
73        StateMethod = GetState ;
74        DisableFlags="SfxDisableFlags::SwOnProtectedCursor";
75    ]
76
77    FN_NUM_BULLET_PREV  // status(final|play)
78    [
79        ExecMethod = Execute ;
80        StateMethod = GetState ;
81        DisableFlags="SfxDisableFlags::SwOnProtectedCursor";
82    ]
83
84    FN_NUM_BULLET_UP // status(final|play)
85    [
86        ExecMethod = Execute ;
87        StateMethod = GetState ;
88        DisableFlags="SfxDisableFlags::SwOnProtectedCursor";
89    ]
90
91    FN_NUM_OR_NONUM // status(play)
92    [
93        ExecMethod = Execute ;
94        StateMethod = GetState ;
95        DisableFlags="SfxDisableFlags::SwOnProtectedCursor";
96    ]
97}
98
99