1*cdf0e10cSrcweir/************************************************************************* 2*cdf0e10cSrcweir * 3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4*cdf0e10cSrcweir * 5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates. 6*cdf0e10cSrcweir * 7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite 8*cdf0e10cSrcweir * 9*cdf0e10cSrcweir * This file is part of OpenOffice.org. 10*cdf0e10cSrcweir * 11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify 12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3 13*cdf0e10cSrcweir * only, as published by the Free Software Foundation. 14*cdf0e10cSrcweir * 15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful, 16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of 17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details 19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code). 20*cdf0e10cSrcweir * 21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License 22*cdf0e10cSrcweir * version 3 along with OpenOffice.org. If not, see 23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html> 24*cdf0e10cSrcweir * for a copy of the LGPLv3 License. 25*cdf0e10cSrcweir * 26*cdf0e10cSrcweir ************************************************************************/ 27*cdf0e10cSrcweir#ifndef __com_sun_star_frame_CommandGroup_idl__ 28*cdf0e10cSrcweir#define __com_sun_star_frame_CommandGroup_idl__ 29*cdf0e10cSrcweir 30*cdf0e10cSrcweir//============================================================================= 31*cdf0e10cSrcweir 32*cdf0e10cSrcweirmodule com { module sun { module star { module frame { 33*cdf0e10cSrcweir 34*cdf0e10cSrcweir//============================================================================= 35*cdf0e10cSrcweir/** provides information about a supported command 36*cdf0e10cSrcweir 37*cdf0e10cSrcweir @see XDispatchInformationProvider 38*cdf0e10cSrcweir @see Controller 39*cdf0e10cSrcweir 40*cdf0e10cSrcweir @since OOo 2.0 41*cdf0e10cSrcweir */ 42*cdf0e10cSrcweirpublished constants CommandGroup 43*cdf0e10cSrcweir{ 44*cdf0e10cSrcweir //------------------------------------------------------------------------- 45*cdf0e10cSrcweir /** specifies interal commands. 46*cdf0e10cSrcweir */ 47*cdf0e10cSrcweir const short INTERNAL = 0; 48*cdf0e10cSrcweir 49*cdf0e10cSrcweir //------------------------------------------------------------------------- 50*cdf0e10cSrcweir /** specifies application based commands. 51*cdf0e10cSrcweir */ 52*cdf0e10cSrcweir const short APPLICATION = 1; 53*cdf0e10cSrcweir 54*cdf0e10cSrcweir //------------------------------------------------------------------------- 55*cdf0e10cSrcweir /** specifies view specific commands. 56*cdf0e10cSrcweir */ 57*cdf0e10cSrcweir const short VIEW = 2; 58*cdf0e10cSrcweir 59*cdf0e10cSrcweir //------------------------------------------------------------------------- 60*cdf0e10cSrcweir /** specifies document specific commands. 61*cdf0e10cSrcweir */ 62*cdf0e10cSrcweir const short DOCUMENT = 3; 63*cdf0e10cSrcweir 64*cdf0e10cSrcweir //------------------------------------------------------------------------- 65*cdf0e10cSrcweir /** specifies edit specific commands. 66*cdf0e10cSrcweir */ 67*cdf0e10cSrcweir const short EDIT = 4; 68*cdf0e10cSrcweir 69*cdf0e10cSrcweir //------------------------------------------------------------------------- 70*cdf0e10cSrcweir /** specifies commands used by the built-in Basic. 71*cdf0e10cSrcweir */ 72*cdf0e10cSrcweir const short MACRO = 5; 73*cdf0e10cSrcweir 74*cdf0e10cSrcweir //------------------------------------------------------------------------- 75*cdf0e10cSrcweir /** specifies commands to change options. 76*cdf0e10cSrcweir */ 77*cdf0e10cSrcweir const short OPTIONS = 6; 78*cdf0e10cSrcweir 79*cdf0e10cSrcweir //------------------------------------------------------------------------- 80*cdf0e10cSrcweir /** specifies math specific commands. 81*cdf0e10cSrcweir */ 82*cdf0e10cSrcweir const short MATH = 7; 83*cdf0e10cSrcweir 84*cdf0e10cSrcweir //------------------------------------------------------------------------- 85*cdf0e10cSrcweir /** specifies navigate commands. 86*cdf0e10cSrcweir */ 87*cdf0e10cSrcweir const short NAVIGATOR = 8; 88*cdf0e10cSrcweir 89*cdf0e10cSrcweir //------------------------------------------------------------------------- 90*cdf0e10cSrcweir /** specifies insert commands. 91*cdf0e10cSrcweir */ 92*cdf0e10cSrcweir const short INSERT = 9; 93*cdf0e10cSrcweir 94*cdf0e10cSrcweir //------------------------------------------------------------------------- 95*cdf0e10cSrcweir /** specifies commands that are related to formats. 96*cdf0e10cSrcweir */ 97*cdf0e10cSrcweir const short FORMAT = 10; 98*cdf0e10cSrcweir 99*cdf0e10cSrcweir //------------------------------------------------------------------------- 100*cdf0e10cSrcweir /** specifies commands that are related to templates. 101*cdf0e10cSrcweir */ 102*cdf0e10cSrcweir const short TEMPLATE = 11; 103*cdf0e10cSrcweir 104*cdf0e10cSrcweir //------------------------------------------------------------------------- 105*cdf0e10cSrcweir /** specifies text specific commands. 106*cdf0e10cSrcweir */ 107*cdf0e10cSrcweir const short TEXT = 12; 108*cdf0e10cSrcweir 109*cdf0e10cSrcweir //------------------------------------------------------------------------- 110*cdf0e10cSrcweir /** specifies frame specific commands. 111*cdf0e10cSrcweir */ 112*cdf0e10cSrcweir const short FRAME = 13; 113*cdf0e10cSrcweir 114*cdf0e10cSrcweir //------------------------------------------------------------------------- 115*cdf0e10cSrcweir /** specifies commands that are related to graphical data. 116*cdf0e10cSrcweir */ 117*cdf0e10cSrcweir const short GRAPHIC = 14; 118*cdf0e10cSrcweir 119*cdf0e10cSrcweir //------------------------------------------------------------------------- 120*cdf0e10cSrcweir /** specifies commands that are related to tables. 121*cdf0e10cSrcweir */ 122*cdf0e10cSrcweir const short TABLE = 15; 123*cdf0e10cSrcweir 124*cdf0e10cSrcweir //------------------------------------------------------------------------- 125*cdf0e10cSrcweir /** specifies commands that are related to bullets and numbering. 126*cdf0e10cSrcweir */ 127*cdf0e10cSrcweir const short ENUMERATION = 16; 128*cdf0e10cSrcweir 129*cdf0e10cSrcweir //------------------------------------------------------------------------- 130*cdf0e10cSrcweir /** specifies commands that are related to data. 131*cdf0e10cSrcweir */ 132*cdf0e10cSrcweir const short DATA = 17; 133*cdf0e10cSrcweir 134*cdf0e10cSrcweir //------------------------------------------------------------------------- 135*cdf0e10cSrcweir /** specifies special commands. 136*cdf0e10cSrcweir */ 137*cdf0e10cSrcweir const short SPECIAL = 18; 138*cdf0e10cSrcweir 139*cdf0e10cSrcweir //------------------------------------------------------------------------- 140*cdf0e10cSrcweir /** specifies commands that are related to images. 141*cdf0e10cSrcweir */ 142*cdf0e10cSrcweir const short IMAGE = 19; 143*cdf0e10cSrcweir 144*cdf0e10cSrcweir //------------------------------------------------------------------------- 145*cdf0e10cSrcweir /** specifies chart specific commands. 146*cdf0e10cSrcweir */ 147*cdf0e10cSrcweir const short CHART = 20; 148*cdf0e10cSrcweir 149*cdf0e10cSrcweir //------------------------------------------------------------------------- 150*cdf0e10cSrcweir /** specifies explorer specific commands. 151*cdf0e10cSrcweir */ 152*cdf0e10cSrcweir const short EXPLORER = 21; 153*cdf0e10cSrcweir 154*cdf0e10cSrcweir //------------------------------------------------------------------------- 155*cdf0e10cSrcweir /** specifies commands that are related to connectors. 156*cdf0e10cSrcweir */ 157*cdf0e10cSrcweir const short CONNECTOR = 22; 158*cdf0e10cSrcweir 159*cdf0e10cSrcweir //------------------------------------------------------------------------- 160*cdf0e10cSrcweir /** specifies commands that are related to modifications. 161*cdf0e10cSrcweir */ 162*cdf0e10cSrcweir const short MODIFY = 23; 163*cdf0e10cSrcweir 164*cdf0e10cSrcweir //------------------------------------------------------------------------- 165*cdf0e10cSrcweir /** specifies commands that are related to drawing. 166*cdf0e10cSrcweir */ 167*cdf0e10cSrcweir const short DRAWING = 24; 168*cdf0e10cSrcweir 169*cdf0e10cSrcweir //------------------------------------------------------------------------- 170*cdf0e10cSrcweir /** specifies commands that are related to controls. 171*cdf0e10cSrcweir */ 172*cdf0e10cSrcweir const short CONTROLS = 25; 173*cdf0e10cSrcweir}; 174*cdf0e10cSrcweir 175*cdf0e10cSrcweir//============================================================================= 176*cdf0e10cSrcweir 177*cdf0e10cSrcweir}; }; }; }; 178*cdf0e10cSrcweir 179*cdf0e10cSrcweir#endif 180