1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: CommandGroup.idl,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
30 #ifndef __com_sun_star_frame_CommandGroup_idl__
31 #define __com_sun_star_frame_CommandGroup_idl__
33 //=============================================================================
35 module com
{ module sun
{ module star
{ module frame
{
37 //=============================================================================
38 /** provides information about a supported command
40 @see XDispatchInformationProvider
45 published constants CommandGroup
47 //-------------------------------------------------------------------------
48 /** specifies interal commands.
50 const short INTERNAL
= 0;
52 //-------------------------------------------------------------------------
53 /** specifies application based commands.
55 const short APPLICATION
= 1;
57 //-------------------------------------------------------------------------
58 /** specifies view specific commands.
62 //-------------------------------------------------------------------------
63 /** specifies document specific commands.
65 const short DOCUMENT
= 3;
67 //-------------------------------------------------------------------------
68 /** specifies edit specific commands.
72 //-------------------------------------------------------------------------
73 /** specifies commands used by the built-in Basic.
75 const short MACRO
= 5;
77 //-------------------------------------------------------------------------
78 /** specifies commands to change options.
80 const short OPTIONS
= 6;
82 //-------------------------------------------------------------------------
83 /** specifies math specific commands.
87 //-------------------------------------------------------------------------
88 /** specifies navigate commands.
90 const short NAVIGATOR
= 8;
92 //-------------------------------------------------------------------------
93 /** specifies insert commands.
95 const short INSERT
= 9;
97 //-------------------------------------------------------------------------
98 /** specifies commands that are related to formats.
100 const short FORMAT
= 10;
102 //-------------------------------------------------------------------------
103 /** specifies commands that are related to templates.
105 const short TEMPLATE
= 11;
107 //-------------------------------------------------------------------------
108 /** specifies text specific commands.
110 const short TEXT
= 12;
112 //-------------------------------------------------------------------------
113 /** specifies frame specific commands.
115 const short FRAME
= 13;
117 //-------------------------------------------------------------------------
118 /** specifies commands that are related to graphical data.
120 const short GRAPHIC
= 14;
122 //-------------------------------------------------------------------------
123 /** specifies commands that are related to tables.
125 const short TABLE
= 15;
127 //-------------------------------------------------------------------------
128 /** specifies commands that are related to bullets and numbering.
130 const short ENUMERATION
= 16;
132 //-------------------------------------------------------------------------
133 /** specifies commands that are related to data.
135 const short DATA
= 17;
137 //-------------------------------------------------------------------------
138 /** specifies special commands.
140 const short SPECIAL
= 18;
142 //-------------------------------------------------------------------------
143 /** specifies commands that are related to images.
145 const short IMAGE
= 19;
147 //-------------------------------------------------------------------------
148 /** specifies chart specific commands.
150 const short CHART
= 20;
152 //-------------------------------------------------------------------------
153 /** specifies explorer specific commands.
155 const short EXPLORER
= 21;
157 //-------------------------------------------------------------------------
158 /** specifies commands that are related to connectors.
160 const short CONNECTOR
= 22;
162 //-------------------------------------------------------------------------
163 /** specifies commands that are related to modifications.
165 const short MODIFY
= 23;
167 //-------------------------------------------------------------------------
168 /** specifies commands that are related to drawing.
170 const short DRAWING
= 24;
172 //-------------------------------------------------------------------------
173 /** specifies commands that are related to controls.
175 const short CONTROLS
= 25;
178 //=============================================================================