diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 16:51:28 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 16:51:28 +0000 |
commit | 940b4d1848e8c70ab7642901a68594e8016caffc (patch) | |
tree | eb72f344ee6c3d9b80a7ecc079ea79e9fba8676d /sd/sdi/tables.sdi | |
parent | Initial commit. (diff) | |
download | libreoffice-upstream.tar.xz libreoffice-upstream.zip |
Adding upstream version 1:7.0.4.upstream/1%7.0.4upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | sd/sdi/tables.sdi | 188 |
1 files changed, 188 insertions, 0 deletions
diff --git a/sd/sdi/tables.sdi b/sd/sdi/tables.sdi new file mode 100644 index 000000000..a5918af49 --- /dev/null +++ b/sd/sdi/tables.sdi @@ -0,0 +1,188 @@ +/* + * 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 . + */ + +shell TableObjectBar +{ + SID_FRAME_LINESTYLE + [ + ExecMethod = Execute; + StateMethod = GetAttrState; + ] + SID_FRAME_LINECOLOR + [ + ExecMethod = Execute; + StateMethod = GetAttrState; + ] + SID_ATTR_BORDER + [ + ExecMethod = Execute; + StateMethod = GetAttrState; + ] + SID_TABLE_MERGE_CELLS + [ + ExecMethod = Execute; + StateMethod = GetState; + ] + SID_TABLE_SPLIT_CELLS + [ + ExecMethod = Execute; + StateMethod = GetState; + ] + SID_OPTIMIZE_TABLE + [ + ExecMethod = Execute; + StateMethod = GetState; + ] + SID_TABLE_VERT_BOTTOM + [ + ExecMethod = Execute; + StateMethod = GetState; + ] + SID_TABLE_VERT_CENTER + [ + ExecMethod = Execute; + StateMethod = GetState; + ] + SID_TABLE_VERT_NONE + [ + ExecMethod = Execute; + StateMethod = GetState; + ] + SID_TABLE_INSERT_ROW + [ + ExecMethod = Execute; + StateMethod = GetState; + ] + SID_TABLE_INSERT_COL + [ + ExecMethod = Execute; + StateMethod = GetState; + ] + SID_TABLE_INSERT_ROW_DLG + [ + ExecMethod = Execute; + StateMethod = GetState; + ] + SID_TABLE_INSERT_ROW_BEFORE + [ + ExecMethod = Execute; + StateMethod = GetState; + ] + SID_TABLE_INSERT_ROW_AFTER + [ + ExecMethod = Execute; + StateMethod = GetState; + ] + SID_TABLE_INSERT_COL_DLG + [ + ExecMethod = Execute; + StateMethod = GetState; + ] + SID_TABLE_INSERT_COL_BEFORE + [ + ExecMethod = Execute; + StateMethod = GetState; + ] + SID_TABLE_INSERT_COL_AFTER + [ + ExecMethod = Execute; + StateMethod = GetState; + ] + SID_TABLE_DELETE_ROW + [ + ExecMethod = Execute; + StateMethod = GetState; + ] + SID_TABLE_DELETE_COL + [ + ExecMethod = Execute; + StateMethod = GetState; + ] + SID_TABLE_SELECT_ALL + [ + ExecMethod = Execute; + StateMethod = GetState; + ] + SID_TABLE_SELECT_COL + [ + ExecMethod = Execute; + StateMethod = GetState; + ] + SID_TABLE_SELECT_ROW + [ + ExecMethod = Execute; + StateMethod = GetState; + ] + SID_FORMAT_TABLE_DLG + [ + ExecMethod = Execute; + StateMethod = GetState; + ] + SID_TABLE_SORT_DIALOG + [ + ExecMethod = Execute; + StateMethod = GetState; + ] + SID_TABLE_AUTOSUM + [ + ExecMethod = Execute; + StateMethod = GetState; + ] + + SID_TABLE_MINIMAL_COLUMN_WIDTH + [ + ExecMethod = Execute; + StateMethod = GetState; + ] + + SID_TABLE_OPTIMAL_COLUMN_WIDTH + [ + ExecMethod = Execute; + StateMethod = GetState; + ] + + SID_TABLE_DISTRIBUTE_COLUMNS + [ + ExecMethod = Execute; + StateMethod = GetState; + ] + + SID_TABLE_MINIMAL_ROW_HEIGHT + [ + ExecMethod = Execute; + StateMethod = GetState; + ] + + SID_TABLE_OPTIMAL_ROW_HEIGHT + [ + ExecMethod = Execute; + StateMethod = GetState; + ] + + SID_TABLE_DISTRIBUTE_ROWS + [ + ExecMethod = Execute; + StateMethod = GetState; + ] + SID_TABLE_CHANGE_CURRENT_BORDER_POSITION + [ + ExecMethod = Execute; + ] + +} + |