xref: /trunk/main/sw/sdi/_listsh.sdi (revision cdf0e10c)
1/*************************************************************************
2 *
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
6 *
7 * OpenOffice.org - a multi-platform office productivity suite
8 *
9 * This file is part of OpenOffice.org.
10 *
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
14 *
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
20 *
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org.  If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
25 *
26 ************************************************************************/
27
28interface BaseTextList
29[
30	Automation = FALSE
31]
32{
33	FN_NUM_BULLET_DOWN // status(final|play)
34	[
35		ExecMethod = Execute ;
36		StateMethod = GetState ;
37		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
38	]
39
40	FN_NUM_BULLET_NEXT // status(final|play)
41	[
42		ExecMethod = Execute ;
43		StateMethod = GetState ;
44		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
45	]
46
47	FN_NUM_BULLET_NONUM // status(final|play)
48	[
49		ExecMethod = Execute ;
50		StateMethod = GetState ;
51		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
52	]
53
54	FN_NUM_BULLET_OFF // status(final|play)
55	[
56		ExecMethod = Execute ;
57		StateMethod = GetState ;
58		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
59	]
60
61
62	FN_NUM_BULLET_OUTLINE_DOWN  // status(final|play)
63	[
64		ExecMethod = Execute ;
65		StateMethod = GetState ;
66		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
67	]
68
69	FN_NUM_BULLET_OUTLINE_MOVEDOWN // status(final|play)
70	[
71		ExecMethod = Execute ;
72		StateMethod = GetState ;
73		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
74	]
75
76	FN_NUM_BULLET_OUTLINE_MOVEUP // status(final|play)
77	[
78		ExecMethod = Execute ;
79		StateMethod = GetState ;
80		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
81	]
82
83	FN_NUM_BULLET_OUTLINE_UP   // status(final|play)
84	[
85		ExecMethod = Execute ;
86		StateMethod = GetState ;
87		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
88	]
89
90	FN_NUM_BULLET_PREV  // status(final|play)
91	[
92		ExecMethod = Execute ;
93		StateMethod = GetState ;
94		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
95	]
96
97	FN_NUM_BULLET_UP // status(final|play)
98	[
99		ExecMethod = Execute ;
100		StateMethod = GetState ;
101		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
102	]
103
104	FN_NUM_OR_NONUM // status(play)
105	[
106		ExecMethod = Execute ;
107		StateMethod = GetState ;
108		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
109	]
110}
111
112