blob: 93a770e1ec5844bc79f0385dc081fdf2c93054ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#ifndef INCLUDED_SC_INC_SCCOMMANDS_H
#define INCLUDED_SC_INC_SCCOMMANDS_H
#define CMD_SID_ADD_PRINTAREA ".uno:AddPrintArea"
#define CMD_SID_DETECTIVE_DEL_ALL ".uno:ClearArrows"
#define CMD_FID_COL_WIDTH ".uno:ColumnWidth"
#define CMD_SID_CREATE_SW_DRAWVIEW ".uno:CreateSWDrawView"
#define CMD_SID_OPENDLG_PIVOTTABLE ".uno:DataDataPilotRun"
#define CMD_SID_DATA_SELECT ".uno:DataSelect"
#define CMD_SID_DEFINE_PRINTAREA ".uno:DefinePrintArea"
#define CMD_FID_DELETE_CELL ".uno:DeleteCell"
#define CMD_FID_DEL_MANUALBREAKS ".uno:DeleteAllBreaks"
#define CMD_SID_DEL_COLS ".uno:DeleteColumns"
#define CMD_SID_PIVOT_KILL ".uno:DeletePivotTable"
#define CMD_SID_DELETE_PRINTAREA ".uno:DeletePrintArea"
#define CMD_SID_DEL_ROWS ".uno:DeleteRows"
#define CMD_SID_FILL_NONE ".uno:FillModeEnd"
#define CMD_SID_FILL_DEL_PRED ".uno:FillModeRemovePredescessor"
#define CMD_SID_FILL_DEL_SUCC ".uno:FillModeRemoveSuccessor"
#define CMD_SID_FILL_ADD_PRED ".uno:FillModeTracePredescessor"
#define CMD_SID_FILL_ADD_SUCC ".uno:FillModeTraceSuccessor"
#define CMD_FID_CELL_FORMAT ".uno:FormatCellDialog"
#define CMD_FID_TABLE_HIDE ".uno:Hide"
#define CMD_FID_COL_HIDE ".uno:HideColumn"
#define CMD_FID_ROW_HIDE ".uno:HideRow"
#define CMD_FID_INS_TABLE ".uno:Insert"
#define CMD_FID_INS_CELL ".uno:InsertCell"
#define CMD_FID_INS_COLBRK ".uno:InsertColumnBreak"
#define CMD_FID_INS_COLUMN ".uno:InsertColumns"
#define CMD_FID_INS_ROWBRK ".uno:InsertRowBreak"
#define CMD_FID_INS_ROW ".uno:InsertRows"
#define CMD_FID_MERGE_ON ".uno:MergeCells"
#define CMD_FID_MERGE_OFF ".uno:SplitCell"
#define CMD_SID_OBJECT_MIRROR ".uno:Mirror"
#define CMD_FID_TAB_MOVE ".uno:Move"
#define CMD_SID_PREVIEW_NEXT ".uno:NextPage"
#define CMD_FID_SHOW_NOTE ".uno:ShowNote"
#define CMD_FID_HIDE_NOTE ".uno:HideNote"
#define CMD_SID_DELETE_NOTE ".uno:DeleteNote"
#define CMD_SID_MIRROR_HORIZONTAL ".uno:ObjectMirrorHorizontal"
#define CMD_SID_MIRROR_VERTICAL ".uno:ObjectMirrorVertical"
#define CMD_SID_ORIGINALSIZE ".uno:OriginalSize"
#define CMD_SID_FORMATPAGE ".uno:PageFormatDialog"
#define CMD_SID_PREVIEW_PREVIOUS ".uno:PreviousPage"
#define CMD_FID_PROTECT_TABLE ".uno:Protect"
#define CMD_SID_PIVOT_RECALC ".uno:RecalcPivotTable"
#define CMD_FID_DELETE_TABLE ".uno:Remove"
#define CMD_SID_TITLE_DESCRIPTION_OBJECT ".uno:ObjectTitleDescription"
#define CMD_SID_RENAME_OBJECT ".uno:RenameObject"
#define CMD_SID_CELL_FORMAT_RESET ".uno:ResetAttributes"
#define CMD_FID_RESET_PRINTZOOM ".uno:ResetPrintZoom"
#define CMD_FID_ROW_HEIGHT ".uno:RowHeight"
#define CMD_SID_ANCHOR_CELL ".uno:SetAnchorToCell"
#define CMD_SID_ANCHOR_PAGE ".uno:SetAnchorToPage"
#define CMD_FID_COL_OPT_WIDTH ".uno:SetOptimalColumnWidth"
#define CMD_FID_ROW_OPT_HEIGHT ".uno:SetOptimalRowHeight"
#define CMD_FID_TABLE_SHOW ".uno:Show"
#define CMD_FID_COL_SHOW ".uno:ShowColumn"
#define CMD_FID_ROW_SHOW ".uno:ShowRow"
#define CMD_SID_TEXT_STANDARD ".uno:StandardTextAttributes"
#define CMD_FID_TAB_MENU_RENAME ".uno:RenameTable"
#define CMD_FID_TAB_SELECTALL ".uno:TableSelectAll"
#define CMD_FID_TAB_DESELECTALL ".uno:TableDeselectAll"
#define CMD_SID_DRAWTEXT_ATTR_DLG ".uno:TextAttributes"
#define CMD_SID_ASSIGNMACRO ".uno:AssignMacro"
#define CMD_SID_ULINE_VAL_DOUBLE ".uno:UnderlineDouble"
#define CMD_SID_DP_FILTER ".uno:DataPilotFilter"
#define CMD_FID_TAB_RTL ".uno:SheetRightToLeft"
#define CMD_FID_TAB_EVENTS ".uno:TableEvents"
#define CMD_FID_TAB_MENU_SET_TAB_BG_COLOR ".uno:SetTabBgColor"
#define CMD_FID_TAB_SET_TAB_BG_COLOR ".uno:TabBgColor"
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|