tdf#130857 qt weld: Support mail merge "Server Auth" dialog
[LibreOffice.git] / offapi / com / sun / star / frame / CommandGroup.idl
blob86d37b901af2fe3262d45837244b1d89065364eb
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 .
21 module com { module sun { module star { module frame {
23 /** provides information about a supported command
25 @see XDispatchInformationProvider
26 @see Controller
28 @since OOo 2.0
30 published constants CommandGroup
32 /** specifies internal commands.
34 const short INTERNAL = 0;
36 /** specifies application based commands.
38 const short APPLICATION = 1;
40 /** specifies view specific commands.
42 const short VIEW = 2;
44 /** specifies document specific commands.
46 const short DOCUMENT = 3;
48 /** specifies edit specific commands.
50 const short EDIT = 4;
52 /** specifies commands used by the built-in Basic.
54 const short MACRO = 5;
56 /** specifies commands to change options.
58 const short OPTIONS = 6;
60 /** specifies math specific commands.
62 const short MATH = 7;
64 /** specifies navigate commands.
66 const short NAVIGATOR = 8;
68 /** specifies insert commands.
70 const short INSERT = 9;
72 /** specifies commands that are related to formats.
74 const short FORMAT = 10;
76 /** specifies commands that are related to templates.
78 const short TEMPLATE = 11;
80 /** specifies text specific commands.
82 const short TEXT = 12;
84 /** specifies frame specific commands.
86 const short FRAME = 13;
88 /** specifies commands that are related to graphical data.
90 const short GRAPHIC = 14;
92 /** specifies commands that are related to tables.
94 const short TABLE = 15;
96 /** specifies commands that are related to bullets and numbering.
98 const short ENUMERATION = 16;
100 /** specifies commands that are related to data.
102 const short DATA = 17;
104 /** specifies special commands.
106 const short SPECIAL = 18;
108 /** specifies commands that are related to images.
110 const short IMAGE = 19;
112 /** specifies chart specific commands.
114 const short CHART = 20;
116 /** specifies explorer specific commands.
118 const short EXPLORER = 21;
120 /** specifies commands that are related to connectors.
122 const short CONNECTOR = 22;
124 /** specifies commands that are related to modifications.
126 const short MODIFY = 23;
128 /** specifies commands that are related to drawing.
130 const short DRAWING = 24;
132 /** specifies commands that are related to controls.
134 const short CONTROLS = 25;
138 }; }; }; };
140 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */