| /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ |
| /* |
| * This file is part of the Collabora Office 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 . |
| */ |
| |
| #pragma once |
| |
| #include <svl/solar.hrc> |
| |
| class SdOptionsPrintItem; |
| class SfxInt32Item; |
| class SfxStringItem; |
| class SfxUInt32Item; |
| class XColorItem; |
| |
| // Layer attributes |
| #define ATTR_LAYER_START SID_SD_START + 1234 |
| #define ATTR_LAYER_NAME TypedWhichId<SfxStringItem>(ATTR_LAYER_START) |
| #define ATTR_LAYER_VISIBLE ATTR_LAYER_START + 1 |
| #define ATTR_LAYER_PRINTABLE ATTR_LAYER_START + 2 |
| #define ATTR_LAYER_LOCKED ATTR_LAYER_START + 3 |
| #define ATTR_LAYER_THISPAGE ATTR_LAYER_START + 4 |
| #define ATTR_LAYER_TITLE TypedWhichId<SfxStringItem>(ATTR_LAYER_START + 5) |
| #define ATTR_LAYER_DESC TypedWhichId<SfxStringItem>(ATTR_LAYER_START + 6) |
| #define ATTR_LAYER_END ATTR_LAYER_DESC |
| |
| // presentation attributes |
| #define ATTR_PRESENT_START ATTR_LAYER_END + 1 |
| #define ATTR_PRESENT_ALL ATTR_PRESENT_START |
| #define ATTR_PRESENT_CUSTOMSHOW ATTR_PRESENT_START + 1 |
| #define ATTR_PRESENT_DIANAME TypedWhichId<SfxStringItem>(ATTR_PRESENT_START + 2) |
| #define ATTR_PRESENT_ENDLESS ATTR_PRESENT_START + 3 |
| #define ATTR_PRESENT_MANUEL ATTR_PRESENT_START + 4 |
| #define ATTR_PRESENT_MOUSE ATTR_PRESENT_START + 5 |
| #define ATTR_PRESENT_PEN ATTR_PRESENT_START + 6 |
| #define ATTR_PRESENT_NAVIGATOR ATTR_PRESENT_START + 7 |
| #define ATTR_PRESENT_CHANGE_PAGE ATTR_PRESENT_START + 8 |
| #define ATTR_PRESENT_ALWAYS_ON_TOP ATTR_PRESENT_START + 9 |
| #define ATTR_PRESENT_FULLSCREEN ATTR_PRESENT_START + 10 |
| #define ATTR_PRESENT_ANIMATION_ALLOWED ATTR_PRESENT_START + 12 |
| #define ATTR_PRESENT_PAUSE_TIMEOUT TypedWhichId<SfxUInt32Item>(ATTR_PRESENT_START + 13) |
| #define ATTR_PRESENT_SHOW_PAUSELOGO ATTR_PRESENT_START + 14 |
| #define ATTR_PRESENT_DISPLAY TypedWhichId<SfxInt32Item>(ATTR_PRESENT_START + 15) |
| #define ATTR_PRESENT_INTERACTIVE ATTR_PRESENT_START + 16 |
| |
| #define ATTR_PRESENT_END ATTR_PRESENT_INTERACTIVE |
| |
| // animation attributes |
| #define ATTR_ANIMATION_START ATTR_PRESENT_END + 1 |
| #define ATTR_ANIMATION_ACTIVE ATTR_ANIMATION_START |
| #define ATTR_ANIMATION_EFFECT TypedWhichId<SfxUInt16Item>(ATTR_ANIMATION_START + 1) |
| #define ATTR_ANIMATION_SPEED TypedWhichId<SfxUInt16Item>(ATTR_ANIMATION_START + 2) |
| #define ATTR_ANIMATION_INVISIBLE ATTR_ANIMATION_START + 3 |
| #define ATTR_ANIMATION_FADEOUT ATTR_ANIMATION_START + 4 |
| #define ATTR_ANIMATION_COLOR ATTR_ANIMATION_START + 5 |
| #define ATTR_ANIMATION_SOUNDON ATTR_ANIMATION_START + 6 |
| #define ATTR_ANIMATION_SOUNDFILE TypedWhichId<SfxStringItem>(ATTR_ANIMATION_START + 7) |
| #define ATTR_ANIMATION_PLAYFULL ATTR_ANIMATION_START + 8 |
| #define ATTR_ANIMATION_TEXTEFFECT ATTR_ANIMATION_START + 10 |
| #define ATTR_ANIMATION_END ATTR_ANIMATION_TEXTEFFECT |
| |
| #define ATTR_ACTION_START ATTR_ANIMATION_END + 1 |
| #define ATTR_ACTION TypedWhichId<SfxUInt16Item>(ATTR_ACTION_START) |
| #define ATTR_ACTION_EFFECT TypedWhichId<SfxUInt16Item>(ATTR_ACTION_START + 1) |
| #define ATTR_ACTION_EFFECTSPEED TypedWhichId<SfxUInt16Item>(ATTR_ACTION_START + 2) |
| #define ATTR_ACTION_FILENAME TypedWhichId<SfxStringItem>(ATTR_ACTION_START + 3) |
| #define ATTR_ACTION_SOUNDON ATTR_ACTION_START + 4 |
| #define ATTR_ACTION_PLAYFULL ATTR_ACTION_START + 5 |
| #define ATTR_ACTION_END ATTR_ACTION_PLAYFULL |
| |
| #define ATTR_COPY_START ATTR_ACTION_END + 1 |
| #define ATTR_COPY_NUMBER TypedWhichId<SfxUInt16Item>(ATTR_COPY_START) |
| #define ATTR_COPY_MOVE_X TypedWhichId<SfxInt32Item>(ATTR_COPY_START + 1) |
| #define ATTR_COPY_MOVE_Y TypedWhichId<SfxInt32Item>(ATTR_COPY_START + 2) |
| #define ATTR_COPY_ANGLE TypedWhichId<SdrAngleItem>(ATTR_COPY_START + 3) |
| #define ATTR_COPY_WIDTH TypedWhichId<SfxInt32Item>(ATTR_COPY_START + 4) |
| #define ATTR_COPY_HEIGHT TypedWhichId<SfxInt32Item>(ATTR_COPY_START + 5) |
| #define ATTR_COPY_START_COLOR TypedWhichId<XColorItem>(ATTR_COPY_START + 6) |
| #define ATTR_COPY_END_COLOR TypedWhichId<XColorItem>(ATTR_COPY_START + 7) |
| #define ATTR_COPY_END ATTR_COPY_END_COLOR |
| |
| #define ATTR_SNAPLINE_START ATTR_COPY_END + 1 |
| #define ATTR_SNAPLINE_KIND TypedWhichId<SfxUInt16Item>(ATTR_SNAPLINE_START) |
| #define ATTR_SNAPLINE_X TypedWhichId<SfxInt32Item>(ATTR_SNAPLINE_START + 1) |
| #define ATTR_SNAPLINE_Y TypedWhichId<SfxInt32Item>(ATTR_SNAPLINE_START + 2) |
| #define ATTR_SNAPLINE_END ATTR_SNAPLINE_Y |
| |
| #define ATTR_OPTIONS_START ATTR_SNAPLINE_END + 1 |
| #define ATTR_OPTIONS_LAYOUT ATTR_OPTIONS_START + 1 |
| #define ATTR_OPTIONS_MISC TypedWhichId<SdOptionsMiscItem>(ATTR_OPTIONS_START + 2) |
| #define ATTR_OPTIONS_PRINT TypedWhichId<SdOptionsPrintItem>(ATTR_OPTIONS_START + 3) |
| #define ATTR_OPTIONS_END ATTR_OPTIONS_PRINT |
| |
| #define ATTR_OPTIONS_SCALE_START ATTR_OPTIONS_END + 1 |
| #define ATTR_OPTIONS_SCALE_X TypedWhichId<SfxInt32Item>(ATTR_OPTIONS_SCALE_START) |
| #define ATTR_OPTIONS_SCALE_Y TypedWhichId<SfxInt32Item>(ATTR_OPTIONS_SCALE_START + 1) |
| #define ATTR_OPTIONS_SCALE_WIDTH TypedWhichId<SfxUInt32Item>(ATTR_OPTIONS_SCALE_START + 2) |
| #define ATTR_OPTIONS_SCALE_HEIGHT TypedWhichId<SfxUInt32Item>(ATTR_OPTIONS_SCALE_START + 3) |
| #define ATTR_OPTIONS_SCALE_END ATTR_OPTIONS_SCALE_HEIGHT |
| |
| #define ATTR_PRESLAYOUT_START ATTR_OPTIONS_SCALE_END + 1 |
| #define ATTR_PRESLAYOUT_NAME TypedWhichId<SfxStringItem>(ATTR_PRESLAYOUT_START) |
| #define ATTR_PRESLAYOUT_LOAD ATTR_PRESLAYOUT_START + 1 |
| #define ATTR_PRESLAYOUT_MASTER_PAGE TypedWhichId<SfxBoolItem>(ATTR_PRESLAYOUT_START + 2) |
| #define ATTR_PRESLAYOUT_CHECK_MASTERS ATTR_PRESLAYOUT_START + 3 |
| #define ATTR_PRESLAYOUT_END ATTR_PRESLAYOUT_CHECK_MASTERS |
| |
| // paragraph numbering attributes |
| #define ATTR_PARANUMBERING_START ATTR_PRESLAYOUT_END + 1 |
| #define ATTR_NUMBER_NEWSTART TypedWhichId<SfxBoolItem>(ATTR_PARANUMBERING_START) |
| #define ATTR_NUMBER_NEWSTART_AT TypedWhichId<SfxInt16Item>(ATTR_PARANUMBERING_START + 1) |
| #define ATTR_PARANUMBERING_END ATTR_NUMBER_NEWSTART_AT |
| |
| /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |