1/************************************************************************* 2 * 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 * 5 * Copyright 2000, 2010 Oracle and/or its affiliates. 6 * 7 * OpenOffice.org - a multi-platform office productivity suite 8 * 9 * This file is part of OpenOffice.org. 10 * 11 * OpenOffice.org is free software: you can redistribute it and/or modify 12 * it under the terms of the GNU Lesser General Public License version 3 13 * only, as published by the Free Software Foundation. 14 * 15 * OpenOffice.org is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU Lesser General Public License version 3 for more details 19 * (a copy is included in the LICENSE file that accompanied this code). 20 * 21 * You should have received a copy of the GNU Lesser General Public License 22 * version 3 along with OpenOffice.org. If not, see 23 * <http://www.openoffice.org/license.html> 24 * for a copy of the LGPLv3 License. 25 * 26 ************************************************************************/ 27 28module 29"2DADF501-1F00-101C-A2E4-00001B4C5CE7" 30"33A1C840-1F00-101C-A2E4-00001B4C5CE7" 31StarDraw 32[ 33HelpText( "StarDraw Application" ) 34SlotIdFile( "sdslots.hrc" ) 35ModulePrefix( "Sd" ) 36] 37{ 38 include "sfx2/sfxitems.sdi" 39 include "sfx2/sfx.sdi" 40 include "svx/svxitems.sdi" 41 include "svx/xoitems.sdi" 42 include "svx/svx.sdi" 43 44 item UINT16 TbxImageItem; 45 46 enum FadeEffect 47 { 48 FADE_EFFECT_NONE , 49 FADE_EFFECT_FADE_FROM_LEFT , 50 FADE_EFFECT_FADE_FROM_TOP , 51 FADE_EFFECT_FADE_FROM_RIGHT , 52 FADE_EFFECT_FADE_FROM_BOTTOM , 53 FADE_EFFECT_FADE_TO_CENTER , 54 FADE_EFFECT_FADE_FROM_CENTER , 55 FADE_EFFECT_MOVE_FROM_LEFT , 56 FADE_EFFECT_MOVE_FROM_TOP , 57 FADE_EFFECT_MOVE_FROM_RIGHT , 58 FADE_EFFECT_MOVE_FROM_BOTTOM , 59 FADE_EFFECT_ROLL_FROM_LEFT , 60 FADE_EFFECT_ROLL_FROM_TOP , 61 FADE_EFFECT_ROLL_FROM_RIGHT , 62 FADE_EFFECT_ROLL_FROM_BOTTOM , 63 FADE_EFFECT_VERTICAL_STRIPES , 64 FADE_EFFECT_HORIZONTAL_STRIPES , 65 FADE_EFFECT_OPEN_VERTICAL , 66 FADE_EFFECT_CLOSE_VERTICAL , 67 FADE_EFFECT_OPEN_HORIZONTAL , 68 FADE_EFFECT_CLOSE_HORIZONTAL , 69 FADE_EFFECT_CLEAR_AWAY , 70 FADE_EFFECT_OVERLAY 71 } 72 73 enum FadeSpeed 74 { 75 FADE_SPEED_SLOW , 76 FADE_SPEED_MEDIUM , 77 FADE_SPEED_FAST 78 } 79 80 enum PresChange 81 { 82 PRESCHANGE_MANUAL, 83 PRESCHANGE_AUTO, 84 PRESCHANGE_SEMIAUTO 85 }; 86 87 // Items 88 item UINT32 DiaTimeItem ; 89 item PresChange DiaAutoItem ; 90 item FadeEffect DiaEffectItem ; 91 item FadeSpeed DiaSpeedItem ; 92 93 include "sdraw.sdi" 94 include "app.sdi" 95 include "_drvwsh.sdi" 96 include "drviewsh.sdi" 97 include "outlnvsh.sdi" 98 include "drtxtob.sdi" 99 include "drbezob.sdi" 100 include "_docsh.sdi" 101 include "docshell.sdi" 102 include "drgrfob.sdi" 103 include "SlideSorterController.sdi" 104 include "ViewShellBase.sdi" 105 include "mediaob.sdi" 106 include "tables.sdi" 107 include "ToolPanelViewShell.sdi" 108} 109